1
0
mirror of https://github.com/moparisthebest/xeps synced 2024-08-13 16:53:48 -04:00
xeps/gen.sh
Peter Saint-Andre 45361ac7be xep stuff
git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@113 4b5297f7-1745-476d-ba37-a9c6900126ab
2006-10-16 21:31:13 +00:00

14 lines
342 B
Bash
Executable File

#!/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)
xeppath=/var/www/xmpp.org/extensions
xsltproc xep.xsl xep-$1.xml > $xeppath/xep-$1.html
xsltproc ref.xsl xep-$1.xml > $xeppath/refs/reference.JSF.XEP-$1.xml
cp xep-$1.xml $xeppath/
# END