gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] gzz/metacode umldoc.py


From: Janne V. Kujala
Subject: [Gzz-commits] gzz/metacode umldoc.py
Date: Mon, 03 Feb 2003 11:11:27 -0500

CVSROOT:        /cvsroot/gzz
Module name:    gzz
Changes by:     Janne V. Kujala <address@hidden>        03/02/03 11:11:25

Modified files:
        metacode       : umldoc.py 

Log message:
        Oops..

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/metacode/umldoc.py.diff?tr1=1.18&tr2=1.19&r1=text&r2=text

Patches:
Index: gzz/metacode/umldoc.py
diff -u gzz/metacode/umldoc.py:1.18 gzz/metacode/umldoc.py:1.19
--- gzz/metacode/umldoc.py:1.18 Mon Feb  3 10:58:26 2003
+++ gzz/metacode/umldoc.py      Mon Feb  3 11:11:25 2003
@@ -66,20 +66,20 @@
     return rstfiles
 
 def run_convert(path):
-    global rst2html, rst2latex
     def rst2both(path):
         rst2html(path)
         rst2latex(path)
+    rst2xxx = rst2html
     if path.find("manuscripts/") != -1:
-        rst2html = rst2both
+        rst2xxx = rst2both
         
     if os.path.isdir(path):
        rstfiles = _rstFiles(path)
         for rstfile in rstfiles:
-            rst2html(mputils._slashify(path)+rstfile)
+            rst2xxx(mputils._slashify(path)+rstfile)
 
     elif os.path.isfile(path) or os.path.isfile(path+'.rst'):
-        rst2html(path)
+        rst2xxx(path)
 
     else:
         umltool.set_transition_paths(path)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]