]> git.lyx.org Git - lyx.git/blob - lib/doc/depend.py
Update TOC building for all the translated languages. (Documentation)
[lyx.git] / lib / doc / depend.py
1 #! /usr/bin/env python
2 # -*- coding: iso-8859-1 -*-
3 # This file is part of the LyX Documentation
4 # Copyright (C) 2004 José Matos <jamatos@lyx.org>
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License
8 # as published by the Free Software Foundation; either version 2
9 # of the License, or (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
20 # This script creates a "master table of contents" for a set of LyX docs.
21 # It does so by going through the files and printing out all of the
22 # chapter, section, and sub(sub)section headings out. (It numbers the
23 # sections sequentially; hopefully noone's using Section* in the docs.)
24
25 import sys
26 import os
27
28 import re
29 from glob import glob
30
31 possible_documents = ("Intro", "FAQ", "Tutorial", "UserGuide", "Extended", "Customization")
32 lang_pattern = re.compile('^([a-z]{2})_')
33
34 def documents(prefix):
35     result = []
36     for file in possible_documents:
37         fname = prefix + file + '.lyx'
38         if os.access(fname, os.F_OK):
39             result.append(fname)
40     return result
41
42
43 def main(argv):
44     print """# This is a Makefile for the TOC.lyx files.
45 # It was automatically generated by %s
46 #
47 # First come the rules for each xx_TOC.lyx file. Then comes the
48 # TOCs target, which prints all the TOC files.
49 """ % argv[0]
50
51     # What are the languages available? And its documents?
52     languages = {}
53     for file in glob('*'):
54         lang = lang_pattern.match(file)
55         if lang:
56             if lang.group(1) not in languages:
57                 languages[lang.group(1)] = [file]
58             else:
59                 languages[lang.group(1)].append(file)
60
61     # sort languages alphabetically
62     langs = languages.keys()
63     langs.sort()
64
65     # The default language is english and doesn't need any prefix
66     print 'TOC.lyx:', '.lyx '.join(possible_documents) + '.lyx'
67     print '\tpython doc_toc.py'
68     print
69     tocs = ['TOC.lyx']
70
71     # Write rules for other languages
72     for lang in langs:
73         toc_name = lang + '_TOC.lyx'
74         tocs.append(toc_name)
75
76         languages[lang].remove(toc_name)
77
78         print toc_name + ':', ' '.join(languages[lang])
79         print '\tpython doc_toc.py %s' % lang
80         print
81
82     # Write meta-rule to call all the other rules
83     print 'TOCs:', ' '.join(tocs)
84     print '\t@echo Made TOCs succesfully.'
85
86
87 if __name__ == "__main__":
88     main(sys.argv)