Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

apparatus refactoring #308

Merged
merged 33 commits into from
Aug 9, 2019
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
cacaed6
replace "..." with „...“ in quotations
jakosch Jul 13, 2019
fae2e0c
enquote template und Funktion für Apparat und Incipit
jakosch Jul 15, 2019
9318e26
fix wega:enquote() to cope with arbitrary input
peterstadler Jul 15, 2019
5bd86a1
some refactoring
peterstadler Jul 15, 2019
73bfa05
force named template to stick to the current mode
peterstadler Jul 15, 2019
a4816cd
updates regarding the new enquote policy
peterstadler Jul 15, 2019
62c427b
update expected results (part 1)
peterstadler Jul 15, 2019
11b618b
update expected results (part 2)
peterstadler Jul 15, 2019
5612dec
tei_lemma styling for popover and apparatus (#302)
jakosch Jul 15, 2019
71a8a31
update mode for processing of lemmas
peterstadler Jul 15, 2019
3dbf04e
update expected results
peterstadler Jul 15, 2019
e4986ef
re: shorten lemmas (#303)
jakosch Jul 16, 2019
5ee690d
Merge branch 'issue-302-fix-enquotes' into issue-302
peterstadler Jul 18, 2019
d0016d5
refactor processing to use one dedicated template
peterstadler Jul 18, 2019
0806287
make the 'sic' version the default
peterstadler Jul 18, 2019
3777509
process quotations etc. in every mode
peterstadler Jul 18, 2019
dddaf52
suppress empty quotation marks
peterstadler Jul 18, 2019
a6d3f91
remove old commented code
peterstadler Jul 18, 2019
d56cc03
fix duplicate output of tei:gap in apparatus
peterstadler Jul 18, 2019
27295a5
display tei:gap in lemmata
peterstadler Jul 18, 2019
a701845
add rend='erased' to processing of tei:del
peterstadler Jul 19, 2019
f54bbae
remove whitespace and full stops and add delErased
peterstadler Jul 19, 2019
92cbe24
update expected results
peterstadler Jul 19, 2019
fbbd449
lemmata styling
jakosch Jul 19, 2019
94120d5
fix css rule
jakosch Jul 19, 2019
4a3a11f
enquote rdg
jakosch Jul 21, 2019
c2ccc79
re #308: source attribution
jakosch Jul 29, 2019
4a281bc
fix rdg lemma, removed note count in apparatus
jakosch Jul 30, 2019
b1dfb60
prevent unintended witness output
jakosch Aug 3, 2019
7430181
postpone inclusion of listWit
peterstadler Aug 9, 2019
6a4b838
restructure sections to hide empty contents
peterstadler Aug 9, 2019
ac4577f
refactor tei:app sections
peterstadler Aug 9, 2019
51b12ec
update expected results
peterstadler Aug 9, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
force named template to stick to the current mode
  • Loading branch information
peterstadler committed Jul 15, 2019
commit 73bfa053c9155ea50b5090be438f31b1737c7711
8 changes: 4 additions & 4 deletions xsl/common_main.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -143,15 +143,15 @@
<!-- German double quotation marks -->
<xsl:when test="$lang eq 'de' and $double">
<xsl:text>„</xsl:text>
<xsl:apply-templates/>
<xsl:apply-templates mode="#current"/>
<xsl:if test="$ellipsis">
<xsl:text>…</xsl:text>
</xsl:if>
<xsl:text>“</xsl:text>
</xsl:when>
<xsl:when test="$lang eq 'en' and $double">
<xsl:text>“</xsl:text>
<xsl:apply-templates/>
<xsl:apply-templates mode="#current"/>
<xsl:if test="$ellipsis">
<xsl:text>…</xsl:text>
</xsl:if>
Expand All @@ -160,12 +160,12 @@
<!-- German single quotation marks -->
<xsl:when test="$lang eq 'de' and not($double)">
<xsl:text>‚</xsl:text>
<xsl:apply-templates/>
<xsl:apply-templates mode="#current"/>
<xsl:text>‘</xsl:text>
</xsl:when>
<xsl:when test="$lang eq 'en' and not($double)">
<xsl:text>‘</xsl:text>
<xsl:apply-templates/>
<xsl:apply-templates mode="#current"/>
<xsl:text>’</xsl:text>
</xsl:when>
</xsl:choose>
Expand Down