This directory contains a Python script to convert OO.o's existing dialog
resource files into XML layout files.

The main executable file is located in ./source/src2xml.py.

------------------------------------------------------------------------------
HOW TO USE THIS SCRIPT
------------------------------------------------------------------------------

In the simplest case, you just need to do:

  src2xml.py path/to/src/file

then if all goes well, the converted XML file is output to stdout.  You can 
specify multiple input files if needed.  You can also specify the output 
directory like this: 

  src2xml.py --output-dir=./outdir path/to/src/*.src

then each src file will be converted to ./outdir/[rootname].xml.

If the original src file needs a header to be included in order for it to be 
parsed correctly, then give a header search path to the script as follows:

  src2xml.py --include-dir=/path/to/include/dir ...

If there are multiple include search paths, you can either use multiple 
--include-dir options, or put all search paths into a single file, and point 
to that file: 

  src2xml.py --include-dir-list=./include.lst
  
where the include.lst contains all your search paths.

You can also put all the original src files paths into a single file, and 
point to that file: 

  src2xml.py --file-list=./src.lst

------------------------------------------------------------------------------
CONTACT
------------------------------------------------------------------------------

Kohei Yoshida  <kyoshida@novell.com>
