Notes from meeting: todos
Posted by mholmes on 18 Sep 2013 in Activity log
- The output we want for the names dictionaries is the one without component morphemes, learner version.
- Linguist dictionaries should have headwords in orth form, and should sort by them.
- Auto-orths should be done from the phonemic pron, not from the hyph, to avoid the reduplication problem.
- In names dictionaries, only include an entry whose name tag is in a pron.
- sic/corr are still not working properly in the PDF output. That's because this is the template for
<def>, and it does not process tags inside<seg>(so a<persName>containing a<choice>just gets output as text):<xsl:template match="def"> <xsl:for-each select="seg"> <xsl:if test="preceding-sibling::seg"> <fo:inline>; </fo:inline> </xsl:if> <xsl:value-of select="normalize-space(.)"/> </xsl:for-each> </xsl:template>Obviously more subtlety is required here.