X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dd35b09a3b4e044abb7fa9c704da649759789f81..9c329f86c647ab2544ec013472d934b8279f4cc9:/wxPython/docs/bin/simplify diff --git a/wxPython/docs/bin/simplify b/wxPython/docs/bin/simplify deleted file mode 100755 index b968fb956c..0000000000 --- a/wxPython/docs/bin/simplify +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash -#---------------------------------------------------------------------- -# Uses simplify.xsl to convert the XML files output by SWIG to a -# simpler XML format that contains only the metadata that we are -# interested in. Converts all input files into a single output file. -#---------------------------------------------------------------------- - -if [ ! -d wxPython ]; then - echo "Please run this script from the root wxPython directory." - exit 1 -fi - - -XSLT=docs/bin/simplify.xsl -MODULES=`python -c "import sys,setup; [sys.stdout.write(e.name[1:]+' ') for e in setup.wxpExtensions]"` -DEST=docs/xml/wxPython-metadata.xml -SRC=docs/xml-raw - - -echo "Using: " $XSLT -echo "Writing to: " $DEST -echo "Modules: " $MODULES - - - -echo "" > $DEST -echo "" >> $DEST - -for m in $MODULES; do - F=$SRC/${m}_swig.xml - echo $F - xsltproc $XSLT $F >> $DEST -done - -echo "" >> $DEST