Rename "brief" to "summary"
This commit is contained in:
@@ -1269,7 +1269,7 @@ def testCoreIndex_processComment():
|
||||
# Regular comment
|
||||
assert processComment("%Hi") == (nwComment.PLAIN, "Hi", 0)
|
||||
assert processComment("% Hi") == (nwComment.PLAIN, "Hi", 0)
|
||||
assert processComment("% Hi:you") == (nwComment.PLAIN, "Hi:you", 0)
|
||||
assert processComment("% Hi:You") == (nwComment.PLAIN, "Hi:You", 0)
|
||||
|
||||
# Synopsis
|
||||
assert processComment("%synopsis:") == (nwComment.PLAIN, "synopsis:", 0)
|
||||
@@ -1278,14 +1278,16 @@ def testCoreIndex_processComment():
|
||||
assert processComment("% synopsis : Hi") == (nwComment.SYNOPSIS, "Hi", 13)
|
||||
assert processComment("% Synopsis : Hi") == (nwComment.SYNOPSIS, "Hi", 15)
|
||||
assert processComment("% \t SYNOPSIS : Hi") == (nwComment.SYNOPSIS, "Hi", 16)
|
||||
assert processComment("% \t SYNOPSIS : Hi:You") == (nwComment.SYNOPSIS, "Hi:You", 16)
|
||||
|
||||
# Brief
|
||||
assert processComment("%brief:") == (nwComment.PLAIN, "brief:", 0)
|
||||
assert processComment("%brief: Hi") == (nwComment.BRIEF, "Hi", 7)
|
||||
assert processComment("% brief: Hi") == (nwComment.BRIEF, "Hi", 8)
|
||||
assert processComment("% brief : Hi") == (nwComment.BRIEF, "Hi", 10)
|
||||
assert processComment("% Brief : Hi") == (nwComment.BRIEF, "Hi", 12)
|
||||
assert processComment("% \t BRIEF : Hi") == (nwComment.BRIEF, "Hi", 13)
|
||||
# Summary
|
||||
assert processComment("%summary:") == (nwComment.PLAIN, "summary:", 0)
|
||||
assert processComment("%summary: Hi") == (nwComment.SUMMARY, "Hi", 9)
|
||||
assert processComment("% summary: Hi") == (nwComment.SUMMARY, "Hi", 10)
|
||||
assert processComment("% summary : Hi") == (nwComment.SUMMARY, "Hi", 12)
|
||||
assert processComment("% Summary : Hi") == (nwComment.SUMMARY, "Hi", 14)
|
||||
assert processComment("% \t SUMMARY : Hi") == (nwComment.SUMMARY, "Hi", 15)
|
||||
assert processComment("% \t SUMMARY : Hi:You") == (nwComment.SUMMARY, "Hi:You", 15)
|
||||
|
||||
# END Test testCoreIndex_processComment
|
||||
|
||||
|
||||
@@ -149,7 +149,7 @@ def testCoreToHtml_ConvertFormat(mockGUI):
|
||||
"<p class='break'>Line one<br/>Line two<br/>Line three</p>\n"
|
||||
)
|
||||
|
||||
# Synopsis, Brief
|
||||
# Synopsis, Summary
|
||||
html._text = "%synopsis: The synopsis ...\n"
|
||||
html.tokenizeText()
|
||||
html.doConvert()
|
||||
@@ -164,11 +164,11 @@ def testCoreToHtml_ConvertFormat(mockGUI):
|
||||
)
|
||||
|
||||
html.setSynopsis(True)
|
||||
html._text = "%brief: A description ...\n"
|
||||
html._text = "%summary: A description ...\n"
|
||||
html.tokenizeText()
|
||||
html.doConvert()
|
||||
assert html.theResult == (
|
||||
"<p class='synopsis'><strong>Brief:</strong> A description ...</p>\n"
|
||||
"<p class='synopsis'><strong>Summary:</strong> A description ...</p>\n"
|
||||
)
|
||||
|
||||
# Comment
|
||||
@@ -621,8 +621,8 @@ def testCoreToHtml_Format(mockGUI):
|
||||
assert html._formatSynopsis("synopsis text", True) == (
|
||||
"<p class='synopsis'><strong>Synopsis:</strong> synopsis text</p>\n"
|
||||
)
|
||||
assert html._formatSynopsis("brief text", False) == (
|
||||
"<p class='synopsis'><strong>Brief:</strong> brief text</p>\n"
|
||||
assert html._formatSynopsis("summary text", False) == (
|
||||
"<p class='synopsis'><strong>Summary:</strong> summary text</p>\n"
|
||||
)
|
||||
assert html._formatComments("comment text") == (
|
||||
"<p class='comment'><strong>Comment:</strong> comment text</p>\n"
|
||||
@@ -646,8 +646,8 @@ def testCoreToHtml_Format(mockGUI):
|
||||
assert html._formatSynopsis("synopsis text", True) == (
|
||||
"<p class='comment'><span class='synopsis'>Synopsis:</span> synopsis text</p>\n"
|
||||
)
|
||||
assert html._formatSynopsis("brief text", False) == (
|
||||
"<p class='comment'><span class='synopsis'>Brief:</span> brief text</p>\n"
|
||||
assert html._formatSynopsis("summary text", False) == (
|
||||
"<p class='comment'><span class='synopsis'>Summary:</span> summary text</p>\n"
|
||||
)
|
||||
assert html._formatComments("comment text") == (
|
||||
"<p class='comment'>comment text</p>\n"
|
||||
|
||||
@@ -471,19 +471,19 @@ def testCoreToken_MetaFormat(mockGUI):
|
||||
tokens.tokenizeText()
|
||||
assert tokens.theMarkdown[-1] == "% synopsis: The synopsis\n\n"
|
||||
|
||||
# Brief
|
||||
# Summary
|
||||
tokens.setSynopsis(False)
|
||||
tokens._text = "% brief: A description\n"
|
||||
tokens._text = "% summary: A description\n"
|
||||
tokens.tokenizeText()
|
||||
assert tokens._tokens == [
|
||||
(Tokenizer.T_BRIEF, 0, "A description", None, Tokenizer.A_NONE),
|
||||
(Tokenizer.T_SUMMARY, 0, "A description", None, Tokenizer.A_NONE),
|
||||
(Tokenizer.T_EMPTY, 0, "", None, Tokenizer.A_NONE),
|
||||
]
|
||||
assert tokens.theMarkdown[-1] == "\n"
|
||||
|
||||
tokens.setSynopsis(True)
|
||||
tokens.tokenizeText()
|
||||
assert tokens.theMarkdown[-1] == "% brief: A description\n\n"
|
||||
assert tokens.theMarkdown[-1] == "% summary: A description\n\n"
|
||||
|
||||
# Keyword
|
||||
tokens._text = "@char: Bod\n"
|
||||
|
||||
@@ -106,7 +106,7 @@ def testCoreToMarkdown_ConvertFormat(mockGUI):
|
||||
theMD.doConvert()
|
||||
assert theMD.theResult == "Line one \nLine two \nLine three\n\n"
|
||||
|
||||
# Synopsis, Brief
|
||||
# Synopsis, Summary
|
||||
theMD._text = "%synopsis: The synopsis ...\n"
|
||||
theMD.tokenizeText()
|
||||
theMD.doConvert()
|
||||
@@ -119,10 +119,10 @@ def testCoreToMarkdown_ConvertFormat(mockGUI):
|
||||
assert theMD.theResult == "**Synopsis:** The synopsis ...\n\n"
|
||||
|
||||
theMD.setSynopsis(True)
|
||||
theMD._text = "%brief: A description ...\n"
|
||||
theMD._text = "%summary: A description ...\n"
|
||||
theMD.tokenizeText()
|
||||
theMD.doConvert()
|
||||
assert theMD.theResult == "**Brief:** A description ...\n\n"
|
||||
assert theMD.theResult == "**Summary:** A description ...\n\n"
|
||||
|
||||
# Comment
|
||||
theMD._text = "% A comment ...\n"
|
||||
|
||||
@@ -447,12 +447,12 @@ def testCoreToOdt_Convert(mockGUI):
|
||||
'</office:text>'
|
||||
)
|
||||
|
||||
# Synopsis, Brief, Comment, Keywords
|
||||
# Synopsis, Summary, Comment, Keywords
|
||||
odt._text = (
|
||||
"### Scene\n\n"
|
||||
"@pov: Jane\n\n"
|
||||
"% synopsis: So it begins\n\n"
|
||||
"% brief: Then what\n\n"
|
||||
"% summary: Then what\n\n"
|
||||
"% A plain comment\n\n"
|
||||
)
|
||||
odt.setSynopsis(True)
|
||||
@@ -471,7 +471,7 @@ def testCoreToOdt_Convert(mockGUI):
|
||||
'<text:p text:style-name="Text_20_Meta"><text:span text:style-name="T7">'
|
||||
'Synopsis:</text:span> So it begins</text:p>'
|
||||
'<text:p text:style-name="Text_20_Meta"><text:span text:style-name="T7">'
|
||||
'Brief:</text:span> Then what</text:p>'
|
||||
'Summary:</text:span> Then what</text:p>'
|
||||
'<text:p text:style-name="Text_20_Meta"><text:span text:style-name="T7">'
|
||||
'Comment:</text:span> A plain comment</text:p>'
|
||||
'</office:text>'
|
||||
@@ -810,8 +810,8 @@ def testCoreToOdt_Format(mockGUI):
|
||||
assert odt._formatSynopsis("synopsis text", True) == (
|
||||
"Synopsis: synopsis text", [(0, ToOdt.FMT_B_B), (9, ToOdt.FMT_B_E)]
|
||||
)
|
||||
assert odt._formatSynopsis("brief text", False) == (
|
||||
"Brief: brief text", [(0, ToOdt.FMT_B_B), (6, ToOdt.FMT_B_E)]
|
||||
assert odt._formatSynopsis("summary text", False) == (
|
||||
"Summary: summary text", [(0, ToOdt.FMT_B_B), (8, ToOdt.FMT_B_E)]
|
||||
)
|
||||
assert odt._formatComments("comment text") == (
|
||||
"Comment: comment text", [(0, ToOdt.FMT_B_B), (8, ToOdt.FMT_B_E)]
|
||||
|
||||
Reference in New Issue
Block a user