Changeset 7884
- Timestamp:
- 12/20/06 03:07:39 (2 years ago)
- Files:
-
- trunk/BOOK/stylesheets/patcheslist.xsl (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/BOOK/stylesheets/patcheslist.xsl
r7373 r7884 12 12 <!-- Allow select the dest dir at runtime --> 13 13 <xsl:param name="dest.dir"> 14 <xsl:value-of select="concat('/ home/httpd/', substring-after('&patches-root;', 'http://'))"/>14 <xsl:value-of select="concat('/srv/www/', substring-after('&patches-root;', 'http://'))"/> 15 15 </xsl:param> 16 16 … … 24 24 25 25 umask 002 

</xsl:text> 26 26 27 27 <!-- Create dest.dir if it don't exist --> 28 28 <xsl:text>install -d -m 775 -g lfswww </xsl:text> … … 41 41 mail -s "Missing LFS patches" lfs-book@linuxfromscratch.org < copyerrs 42 42 fi

</xsl:text> 43 43 44 44 <xsl:text>exit
</xsl:text> 45 45 </xsl:template> … … 49 49 <xsl:template match="//ulink"> 50 50 <!-- Match only local patches links and skip duplicated URLs splitted for PDF output--> 51 <xsl:if test="contains(@url, '.patch') and contains(@url, '&patches-root;') 51 <xsl:if test="contains(@url, '.patch') and contains(@url, '&patches-root;') 52 52 and not(ancestor-or-self::*/@condition = 'pdf')"> 53 53 <xsl:variable name="patch.name" select="substring-after(@url, '&patches-root;')"/> 54 <xsl:variable name="cut" 54 <xsl:variable name="cut" 55 55 select="translate(substring-after($patch.name, '-'), '0123456789', '0000000000')"/> 56 56 <xsl:variable name="patch.name2"> … … 59 59 <xsl:value-of select="$cut"/> 60 60 </xsl:variable> 61 <xsl:text>copy / home/httpd/www.linuxfromscratch.org/patches/downloads/</xsl:text>61 <xsl:text>copy /srv/www/www.linuxfromscratch.org/patches/downloads/</xsl:text> 62 62 <xsl:value-of select="substring-before($patch.name2, '-0')"/> 63 63 <xsl:text>/</xsl:text>
