diff options
author | Murray Cumming <murrayc@usa.net> | 2002-07-10 17:03:36 +0000 |
---|---|---|
committer | Murray Cumming <murrayc@src.gnome.org> | 2002-07-10 17:03:36 +0000 |
commit | a80e5d5eddb7bd099f20f12fb5b4b2ca99a561d7 (patch) | |
tree | 6ae05a3ae14c291cf2135026713b37dec7b26ff5 | |
parent | 33d38d413621d40f9c254c341f85d9360d6d777f (diff) | |
download | pygtk-a80e5d5eddb7bd099f20f12fb5b4b2ca99a561d7.tar.gz |
Used jamesh's new extract_tmpl() function to get the sgml tmpl files. This
2002-07-10 Murray Cumming <murrayc@usa.net>
* codegen/docextract_to_xml.py: Used jamesh's new extract_tmpl()
function to get the sgml tmpl files. This file is only used by
gtkmm at the moment, not pygtk itself.
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | codegen/docextract_to_xml.py | 3 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2002-07-10 Murray Cumming <murrayc@usa.net> + + * codegen/docextract_to_xml.py: Used jamesh's new extract_tmpl() + function to get the sgml tmpl files. This file is only used by + gtkmm at the moment, not pygtk itself. + 2002-07-10 James Henstridge <james@daa.com.au> * configure.in: increment version number to 1.99.11. diff --git a/codegen/docextract_to_xml.py b/codegen/docextract_to_xml.py index 8121a00a..8ff8a80e 100755 --- a/codegen/docextract_to_xml.py +++ b/codegen/docextract_to_xml.py @@ -3,6 +3,8 @@ # # This litte script outputs the C doc comments to an XML format. # So far it's only used by gtkmm (The C++ bindings). Murray Cumming. +# Usage example: +# # ./docextract_to_xml.py -s /gnome/head/cvs/gtk+/gtk/ -s /gnome/head/cvs/gtk+/docs/reference/gtk/tmpl/ > gtk_docs.xml import sys, os, string, re, getopt @@ -41,6 +43,7 @@ if __name__ == '__main__': sys.exit(1) docs = docextract.extract(source_dirs); + docextract.extract_templ(source_dirs, docs); #Try the tmpl sgml files too. # print d.docs |