mirror of
https://github.com/moparisthebest/xeps
synced 2024-11-21 16:55:07 -05:00
fixes
git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@53 4b5297f7-1745-476d-ba37-a9c6900126ab
This commit is contained in:
parent
56412aa8c0
commit
ef100f4f27
22
all.sh
22
all.sh
@ -1,14 +1,24 @@
|
||||
#!/bin/sh
|
||||
# for one XEP, generates HTML file and IETF reference, then copies XML file
|
||||
# usage: ./gen.sh xxxx
|
||||
# (where xxxx is the 4-digit XEP number)
|
||||
# for all XEPs, generates HTML files and IETF-style reference, then copies XML file
|
||||
# usage: ./all.sh
|
||||
|
||||
xeppath=/var/www/stage.xmpp.org/extensions
|
||||
|
||||
xsltproc xep.xsl xep-$1.xml > $xeppath/jep-$1.html
|
||||
xsltproc ref.xsl xep-$1.xml > $xeppath/refs/reference.JSF.XEP-$1.xml
|
||||
ls xep-0*.xml > tmp.txt
|
||||
sed s/xep-\(.*\).xml/\1/ tmp.txt > nums.txt
|
||||
rm tmp.txt
|
||||
|
||||
cp xep-$1.xml $xeppath/
|
||||
while read f
|
||||
do
|
||||
xsltproc xep.xsl xep-$f.xml > $xeppath/xep-$f.html
|
||||
xsltproc ref.xsl xep-$f.xml > $xeppath/refs/reference.JSF.XEP-$f.xml
|
||||
cp xep-$f.xml $xeppath/
|
||||
done < nums.txt
|
||||
|
||||
rm nums.txt
|
||||
|
||||
xsltproc xep.xsl xep-README.xml > $xeppath/README.html
|
||||
xsltproc xep.xsl xep-template.xml > $xeppath/template.html
|
||||
|
||||
cp *.dtd $xeppath/
|
||||
cp *.ent $xeppath/
|
||||
|
Loading…
Reference in New Issue
Block a user