]> git.lyx.org Git - lyx.git/blobdiff - development/tools/gen_lfuns.py
TR1: move TR1 check to config.h / buildsystem
[lyx.git] / development / tools / gen_lfuns.py
index 1f40b92f295ce6b43496266507ff36cbd08f13b2..0bd65f78bfac2a086f1984857cb34f8290555ded 100755 (executable)
@@ -21,7 +21,7 @@ def error(message):
     sys.exit(1)
 
 def usage(prog_name):
-    return "Usage: %s <path/to/LyXAction.cpp> <where/to/save/LFUNs.lyx>" % prog_name
+    return "Usage: %s <path/to/LyXAction.cpp> [<where/to/save/LFUNs.lyx>]" % prog_name
 
 DOXYGEN_START = "/*!"
 DOXYGEN_END = "*/"
@@ -47,11 +47,18 @@ LFUNS_HEADER = """# gen_lfuns.py generated this file. For more info see http://w
 \\lyxformat 345
 \\begin_document
 \\begin_header
-\\textclass amsart
+\\textclass article
+\\begin_preamble
+\\renewcommand{\\descriptionlabel}[1]{\\hspace\\labelsep\\upshape\\bfseries #1:}
+\\renewenvironment{description}{\\list{}{%
+  \\setlength{\\itemsep}{-2pt}
+  \\advance\\leftmargini6\\p@ \\itemindent-12\\p@
+  \\labelwidth\\z@ \\let\\makelabel\\descriptionlabel}%
+}{
+  \\endlist
+}
+\\end_preamble
 \\use_default_options false
-\\begin_modules
-theorems-ams
-\\end_modules
 \\language english
 \\inputencoding auto
 \\font_roman default
@@ -65,6 +72,7 @@ theorems-ams
 
 \\graphics default
 \\paperfontsize default
+\\spacing single
 \\use_hyperref false
 \\papersize default
 \\use_geometry true
@@ -282,7 +290,7 @@ def write_fields(file, lfun):
 def main(argv):
     # parse command line arguments   
     script_path, script_name = os.path.split(argv[0])
-    if len(argv) != 3:
+    if len(argv) < 2:
         error(usage(script_name))
     # input file
     lyxaction_path = argv[1]
@@ -290,16 +298,19 @@ def main(argv):
         error(script_name + ": %s is not a valid path" % lyxaction_path, usage(argv[0]))
 
     # output file
-    lfuns_path = argv[2]
-    if os.path.isdir(lfuns_path):
-        lfuns_path = lfuns_path + "LFUNs.lyx"
-    elif os.path.exists(lfuns_path):
-        error(script_name + ": %s already exists, delete it and rerun the script" % lfuns_path)
+    if len(argv) == 3:
+        lfuns_path = argv[2]
+        if os.path.isdir(lfuns_path):
+            lfuns_path = lfuns_path + "LFUNs.lyx"
+        elif os.path.exists(lfuns_path):
+            error(script_name + ": %s already exists, delete it and rerun the script" % lfuns_path)
+        lfuns_file = open(lfuns_path, 'wb')
+    else:
+        lfuns_file = sys.stdout
 
-    print(script_name + ": Start processing " + argv[1])
+    sys.stderr.write(script_name + ": Start processing " + argv[1] + '\n')
     # Read the input file and write the output file
     lyxaction_file = open(lyxaction_path, 'rb')
-    lfuns_file = open(lfuns_path, 'wb')
        
     lyxaction_text = lyxaction_file.read()
        
@@ -331,7 +342,7 @@ def main(argv):
             # if no more lfuns are found, EOF reached
             done = 1
             
-    print(script_name + ": Created documentation for " + str(count) + " LFUNs")
+    sys.stderr.write(script_name + ": Created documentation for " + str(count) + " LFUNs\n")
     
     # write the last part of LFUNs.lyx
     lfuns_file.write(LFUNS_FOOTER)
@@ -339,7 +350,7 @@ def main(argv):
     lyxaction_file.close()
     lfuns_file.close()
     
-    print(script_name + ": Finished")
+    sys.stderr.write(script_name + ": Finished\n")
     
 if __name__ == "__main__":
     main(sys.argv)