Mostly workable.

This commit is contained in:
Thomas Gideon 2010-10-08 17:34:30 -04:00
parent a7d7c32b1a
commit e86036eb63
2 changed files with 12 additions and 4 deletions

View File

@ -1,4 +1,10 @@
#!/bin/bash
# TODO copy .gz file based on date
# TODO copy .gz file based on arg
# TODO gunzip original file
xalan -xsl outline.xsl -in contents.xml -text
xalan -xsl outline.xsl -in contents.xml -text -out contents.txt
sed -e "s/^2/ /" -i contents.txt
sed -e "s/^3/ /" -i contents.txt
sed -e "s/^4/ /" -i contents.txt
sed -e "s/^5/ /" -i contents.txt
sed -e "s/^6/ /" -i contents.txt
less contents.txt

View File

@ -6,6 +6,8 @@
<xsl:call-template name="item">
<xsl:with-param name="indent"
select="1"/>
<xsl:with-param name="prefix"
select="*"/>
</xsl:call-template>
</xsl:for-each>
</xsl:template>
@ -16,8 +18,8 @@
<xsl:text>==</xsl:text>
</xsl:when>
<xsl:otherwise>
<!-- TODO generate spaces -->
<xsl:text> - </xsl:text>
<xsl:value-of select="$indent"/>
<xsl:text>- </xsl:text>
</xsl:otherwise>
</xsl:choose>
<xsl:value-of select="values/*[2]/p/run/lit"/>