Refactor the XMl processing of various entity types to make the code
[scons.git] / bin / docdiff
index 59f9472d3d72c6e5a19db7630858291826d16207..c7adb05b9812d5144090999223ccb63c2c67dffb 100644 (file)
@@ -2,15 +2,15 @@
 
 if test $# -eq 0; then
     for f in doc/user/*.in; do
-        sgml=doc/user/`basename $f .in`.sgml
+        xml=doc/user/`basename $f .in`.xml
         echo $f:
-        python bin/sconsoutput.py $f | diff $DIFFFLAGS $sgml -
+        python bin/scons-doc.py $f | diff $DIFFFLAGS $xml -
     done
 else
     for a in $*; do
         f=doc/user/$a.in
-        sgml=doc/user/$a.sgml
+        xml=doc/user/$a.xml
         echo $f:
-        python bin/sconsoutput.py $f | diff $DIFFFLAGS $sgml -
+        python bin/scons-doc.py $f | diff $DIFFFLAGS $xml -
     done
 fi