Skip to content

Commit

Permalink
Use date issued in web documents if exists (#5418)
Browse files Browse the repository at this point in the history
AZR Rz 88 requires the date issued to be used, prefixed with "Stand" if
it exists.
  • Loading branch information
georgd committed May 28, 2021
1 parent 8377ec8 commit 96e8114
Showing 1 changed file with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,14 @@
<text variable="title" suffix=" "/>
<text variable="URL" suffix=" "/>
<text variable="locator" prefix="(" suffix="), "/>
<date variable="accessed" prefix="(aufgerufen am " suffix=")" form="numeric"/>
<choose>
<if variable="issued">
<date variable="issued" prefix="(Stand " suffix=")" form="numeric"/>
</if>
<else>
<date variable="accessed" prefix="(aufgerufen am " suffix=")" form="numeric"/>
</else>
</choose>
</else-if>
<else>
<group delimiter=", ">
Expand Down Expand Up @@ -466,7 +473,14 @@
<text variable="title" suffix=" "/>
<text variable="URL" suffix=" "/>
<text variable="locator" prefix="(" suffix="), "/>
<date variable="accessed" prefix="(aufgerufen am " suffix=")" form="numeric"/>
<choose>
<if variable="issued">
<date variable="issued" prefix="(Stand " suffix=")" form="numeric"/>
</if>
<else>
<date variable="accessed" prefix="(aufgerufen am " suffix=")" form="numeric"/>
</else>
</choose>
</else-if>
<else>
<group delimiter=", ">
Expand Down

0 comments on commit 96e8114

Please sign in to comment.