]> git.lyx.org Git - lyx.git/blob - lib/scripts/layout2layout.py
* layout2layout.py : Don't choke on empty input file.
[lyx.git] / lib / scripts / layout2layout.py
1 #! /usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 # file layout2layout.py
5 # This file is part of LyX, the document processor.
6 # Licence details can be found in the file COPYING.
7
8 # author Georg Baum
9
10 # Full author contact details are available in file CREDITS
11
12 # This script will update a .layout file to current format
13
14
15 import os, re, string, sys
16
17 # Incremented to format 4, 6 April 2007, lasgouttes
18 # Introduction of generic "Provides" declaration
19
20 # Incremented to format 5, 22 August 2007 by vermeer
21 # InsetLayout material
22
23 # Incremented to format 6, 7 January 2008 by spitz
24 # Requires tag added to layout files
25
26 # Incremented to format 7, 24 March 2008 by rgh
27 # AddToPreamble tag added to layout files
28
29 # Incremented to format 8, 25 July 2008 by rgh
30 # UseModule tag added to layout files
31 # CopyStyle added to InsetLayout
32
33 # Incremented to format 9, 5 October 2008 by rgh
34 # ForcePlain and CustomPars tags added to InsetLayout
35
36 # Incremented to format 10, 6 October 2008 by rgh
37 # Change format of counters
38
39 # Incremented to format 11, 14 October 2008 by rgh
40 # Add ProvidesModule, ExcludesModule tags
41
42 # Incremented to format 12, 10 January 2009 by gb
43 # Add I18NPreamble tag
44
45 # Incremented to format 13, 5 February 2009 by rgh
46 # Add InToc tag for InsetLayout
47
48 # Incremented to format 14, 14 February 2009 by gb
49 # Rename I18NPreamble to BabelPreamble and add LangPreamble
50
51 # Incremented to format 15, 28 May 2009 by lasgouttes
52 # Add new tag OutputFormat; modules can be conditioned on feature 
53 # "from->to".
54
55 # Incremented to format 16, 5 June 2009 by rgh
56 # Add new tags for Text Class:
57 #   HTMLPreamble, HTMLAddToPreamble
58 # For Layout:
59 #   HTMLTag, HTMLAttr, HTMLLabel, HTMLLabelAttr, HTMLItem, HTMLItemAttr
60 #   HTMLStyle, and HTMLPreamble
61 # For InsetLayout:
62 #   HTMLTag, HTMLAttr, HTMLStyle, and HTMLPreamble
63 # For Floats:
64 #   HTMLType, HTMLClass, HTMLStyle
65
66 # Incremented to format 17, 12 August 2009 by rgh
67 # Add IfStyle and IfCounter tags for layout.
68
69 # Incremented to format 18, 27 October 2009 by rgh
70 # Added some new tags for HTML output.
71
72 # Incremented to format 19, 17 November 2009 by rgh
73 # Added InPreamble tag.
74
75 # Incremented to format 20, 17 December 2009 by rgh
76 # Added ContentAsLabel tag.
77
78 # Incremented to format 21, 12 January 2010 by rgh
79 # Added HTMLTocLayout and HTMLTitle tags.
80
81 # Incremented to format 22, 20 January 2010 by rgh
82 # Added HTMLFormat tag to Counters.
83
84 # Incremented to format 23, 13 February 2010 by spitz
85 # Added Spellcheck tag.
86
87 # Incremented to format 24, 5 March 2010 by rgh
88 # Changed LaTeXBuiltin tag to NeedsFloatPkg and
89 # added new tag ListCommand.
90
91 # Incremented to format 25, 12 March 2010 by rgh
92 # Added RefPrefix tag for layouts and floats.
93
94 # Incremented to format 26, 29 March 2010 by rgh
95 # Added CiteFormat.
96
97 # Incremented to format 27, 4 June 2010 by rgh
98 # Added RequiredArgs tag.
99
100 # Incremented to format 28, 6 August 2010 by lasgouttes
101 # Added ParbreakIsNewline tag for Layout and InsetLayout.
102
103 # Incremented to format 29, 10 August 2010 by rgh
104 # Changed Custom:Style, CharStyle:Style, and Element:Style
105 # uniformly to Flex:Style.
106
107 # Incremented to format 30, 13 August 2010 by rgh
108 # Introduced ResetsFont tag for InsetLayout.
109
110 # Incremented to format 31, 12 January 2011 by rgh
111 # Introducted NoCounter tag.
112
113 # Incremented to format 32, 30 January 2011 by forenr
114 # Added Display tag for InsetLayout
115
116 # Incremented to format 33, 2 February 2011 by rgh
117 # Changed NeedsFloatPkg to UsesFloatPkg
118
119 # Incremented to format 34, 28 March 2011 by rgh
120 # Remove obsolete Fill_(Top|Bottom) tags
121
122 # Incremented to format 35, 28 March 2011 by rgh
123 # Try to add "Flex:" to any flex insets that don't have it.
124
125 # Do not forget to document format change in Customization
126 # Manual (section "Declaring a new text class").
127
128 # You might also want to consider running the
129 # development/tools/updatelayouts.sh script to update all
130 # layout files to the new format.
131
132 currentFormat = 35
133
134
135 def usage(prog_name):
136     return ("Usage: %s inputfile outputfile\n" % prog_name +
137             "or     %s <inputfile >outputfile" % prog_name)
138
139
140 def error(message):
141     sys.stderr.write(message + '\n')
142     sys.exit(1)
143
144
145 def trim_bom(line):
146     " Remove byte order mark."
147     if line[0:3] == "\357\273\277":
148         return line[3:]
149     else:
150         return line
151
152
153 def read(source):
154     " Read input file and strip lineendings."
155     lines = source.read().splitlines() or ['']
156     lines[0] = trim_bom(lines[0])
157     return lines
158
159
160 def write(output, lines):
161     " Write output file with native lineendings."
162     output.write(os.linesep.join(lines) + os.linesep)
163
164
165 # Concatenates old and new in an intelligent way:
166 # If old is wrapped in ", they are stripped. The result is wrapped in ".
167 def concatenate_label(old, new):
168     # Don't use strip as long as we support python 1.5.2
169     if old[0] == '"':
170         return old[0:-1] + new + '"'
171     else:
172         return '"' + old + new + '"'
173
174 # appends a string to a list unless it's already there
175 def addstring(s, l):
176     if l.count(s) > 0:
177         return
178     l.append(s)
179
180
181 def convert(lines):
182     " Convert to new format."
183     re_Comment = re.compile(r'^(\s*)#')
184     re_Counter = re.compile(r'\s*Counter\s*', re.IGNORECASE)
185     re_Name = re.compile(r'\s*Name\s+(\S+)\s*', re.IGNORECASE)
186     re_UseMod = re.compile(r'^\s*UseModule\s+(.*)', re.IGNORECASE)
187     re_Empty = re.compile(r'^(\s*)$')
188     re_Format = re.compile(r'^(\s*)(Format)(\s+)(\S+)', re.IGNORECASE)
189     re_Preamble = re.compile(r'^(\s*)Preamble', re.IGNORECASE)
190     re_EndPreamble = re.compile(r'^(\s*)EndPreamble', re.IGNORECASE)
191     re_LangPreamble = re.compile(r'^(\s*)LangPreamble', re.IGNORECASE)
192     re_EndLangPreamble = re.compile(r'^(\s*)EndLangPreamble', re.IGNORECASE)
193     re_BabelPreamble = re.compile(r'^(\s*)BabelPreamble', re.IGNORECASE)
194     re_EndBabelPreamble = re.compile(r'^(\s*)EndBabelPreamble', re.IGNORECASE)
195     re_MaxCounter = re.compile(r'^(\s*)(MaxCounter)(\s+)(\S+)', re.IGNORECASE)
196     re_LabelType = re.compile(r'^(\s*)(LabelType)(\s+)(\S+)', re.IGNORECASE)
197     re_LabelString = re.compile(r'^(\s*)(LabelString)(\s+)(("[^"]+")|(\S+))', re.IGNORECASE)
198     re_LabelStringAppendix = re.compile(r'^(\s*)(LabelStringAppendix)(\s+)(("[^"]+")|(\S+))', re.IGNORECASE)
199     re_LatexType = re.compile(r'^(\s*)(LatexType)(\s+)(\S+)', re.IGNORECASE)
200     re_Style = re.compile(r'^(\s*)(Style)(\s+)(\S+)', re.IGNORECASE)
201     re_CopyStyle = re.compile(r'^(\s*)(CopyStyle)(\s+)(\S+)', re.IGNORECASE)
202     re_NoStyle = re.compile(r'^(\s*)(NoStyle)(\s+)(\S+)', re.IGNORECASE)
203     re_End = re.compile(r'^(\s*)(End)(\s*)$', re.IGNORECASE)
204     re_Provides = re.compile(r'^(\s*)Provides(\S+)(\s+)(\S+)', re.IGNORECASE)
205     re_CharStyle = re.compile(r'^(\s*)CharStyle(\s+)(\S+)$', re.IGNORECASE)
206     re_AMSMaths = re.compile(r'^\s*Input ams(?:math|def)s.inc\s*')
207     re_AMSMathsPlain = re.compile(r'^\s*Input amsmaths-plain.inc\s*')
208     re_AMSMathsSeq = re.compile(r'^\s*Input amsmaths-seq.inc\s*')
209     re_TocLevel = re.compile(r'^(\s*)(TocLevel)(\s+)(\S+)', re.IGNORECASE)
210     re_I18nPreamble = re.compile(r'^(\s*)I18nPreamble', re.IGNORECASE)
211     re_EndI18nPreamble = re.compile(r'^(\s*)EndI18nPreamble', re.IGNORECASE)
212     re_Float = re.compile(r'^\s*Float\s*$', re.IGNORECASE)
213     re_Type = re.compile(r'\s*Type\s+(\w+)', re.IGNORECASE)
214     re_Builtin = re.compile(r'^(\s*)LaTeXBuiltin\s+(\w*)', re.IGNORECASE)
215     re_True = re.compile(r'^\s*(?:true|1)\s*$', re.IGNORECASE)
216     re_InsetLayout = re.compile(r'^\s*InsetLayout\s+(?:Custom|CharStyle|Element):(\S+)\s*$', re.IGNORECASE)
217     # with quotes
218     re_QInsetLayout = re.compile(r'^\s*InsetLayout\s+"(?:Custom|CharStyle|Element):([^"]+)"\s*$', re.IGNORECASE)
219     re_InsetLayout_CopyStyle = re.compile(r'^\s*CopyStyle\s+(?:Custom|CharStyle|Element):(\S+)\s*$', re.IGNORECASE)
220     re_QInsetLayout_CopyStyle = re.compile(r'^\s*CopyStyle\s+"(?:Custom|CharStyle|Element):([^"]+)"\s*$', re.IGNORECASE)
221     re_NeedsFloatPkg = re.compile(r'^(\s*)NeedsFloatPkg\s+(\w+)\s*$', re.IGNORECASE)
222     re_Fill = re.compile(r'^\s*Fill_(?:Top|Bottom).*$', re.IGNORECASE)
223     re_InsetLayout2 = re.compile(r'^\s*InsetLayout\s+(\S+)\s*$', re.IGNORECASE)
224     # with quotes
225     re_QInsetLayout2 = re.compile(r'^\s*InsetLayout\s+"([^"]+)"\s*$', re.IGNORECASE)
226     re_IsFlex = re.compile(r'\s*LyXType.*$', re.IGNORECASE)
227     re_CopyStyle2 = re.compile(r'(\s*CopyStyle\s+)"?([^"]+)"?\s*$')
228
229     # counters for sectioning styles (hardcoded in 1.3)
230     counters = {"part"          : "\\Roman{part}",
231                 "chapter"       : "\\arabic{chapter}",
232                 "section"       : "\\arabic{section}",
233                 "subsection"    : "\\arabic{section}.\\arabic{subsection}",
234                 "subsubsection" : "\\arabic{section}.\\arabic{subsection}.\\arabic{subsubsection}",
235                 "paragraph"     : "\\arabic{section}.\\arabic{subsection}.\\arabic{subsubsection}.\\arabic{paragraph}",
236                 "subparagraph"  : "\\arabic{section}.\\arabic{subsection}.\\arabic{subsubsection}.\\arabic{paragraph}.\\arabic{subparagraph}"}
237
238     # counters for sectioning styles in appendix (hardcoded in 1.3)
239     appendixcounters = {"chapter"       : "\\Alph{chapter}",
240                         "section"       : "\\Alph{section}",
241                         "subsection"    : "\\arabic{section}.\\arabic{subsection}",
242                         "subsubsection" : "\\arabic{section}.\\arabic{subsection}.\\arabic{subsubsection}",
243                         "paragraph"     : "\\arabic{section}.\\arabic{subsection}.\\arabic{subsubsection}.\\arabic{paragraph}",
244                         "subparagraph"  : "\\arabic{section}.\\arabic{subsection}.\\arabic{subsubsection}.\\arabic{paragraph}.\\arabic{subparagraph}"}
245
246     # Value of TocLevel for sectioning styles
247     toclevels = {"part"          : 0,
248                  "chapter"       : 0,
249                  "section"       : 1,
250                  "subsection"    : 2,
251                  "subsubsection" : 3,
252                  "paragraph"     : 4,
253                  "subparagraph"  : 5}
254
255     i = 0
256     only_comment = 1
257     counter = ""
258     toclevel = ""
259     label = ""
260     labelstring = ""
261     labelstringappendix = ""
262     space1 = ""
263     labelstring_line = -1
264     labelstringappendix_line = -1
265     labeltype_line = -1
266     latextype = ""
267     latextype_line = -1
268     style = ""
269     maxcounter = 0
270     format = 1
271     formatline = 0
272     usemodules = []
273     flexstyles = []
274
275     while i < len(lines):
276         # Skip comments and empty lines
277         if re_Comment.match(lines[i]) or re_Empty.match(lines[i]):
278             i += 1
279             continue
280
281         # insert file format if not already there
282         if (only_comment):
283             match = re_Format.match(lines[i])
284             if match:
285                 formatline = i
286                 format = int(match.group(4))
287                 if format > 1 and format < currentFormat:
288                     lines[i] = "Format %d" % (format + 1)
289                     only_comment = 0
290                 elif format == currentFormat:
291                     # nothing to do
292                     return format
293                 else:
294                     error('Cannot convert file format %s' % format)
295             else:
296                 lines.insert(i, "Format 2")
297                 only_comment = 0
298                 continue
299
300         # Don't get confused by LaTeX code
301         if re_Preamble.match(lines[i]):
302             i += 1
303             while i < len(lines) and not re_EndPreamble.match(lines[i]):
304                 i += 1
305             continue
306         if re_LangPreamble.match(lines[i]):
307             i += 1
308             while i < len(lines) and not re_EndLangPreamble.match(lines[i]):
309                 i += 1
310             continue
311         if re_BabelPreamble.match(lines[i]):
312             i += 1
313             while i < len(lines) and not re_EndBabelPreamble.match(lines[i]):
314                 i += 1
315             continue
316
317         if format == 34:
318           match = re_InsetLayout2.match(lines[i])
319           if not match:
320             match = re_QInsetLayout2.match(lines[i])
321           if not match:
322             match = re_CopyStyle2.match(lines[i])
323             if not match:
324               i += 1
325               continue
326             style = match.group(2)
327             
328             if flexstyles.count(style):
329               lines[i] = match.group(1) + "\"Flex:" + style + "\""
330             i += 1
331             continue
332
333           name = match.group(1)
334           names = name.split(":", 1)
335           if len(names) > 1 and names[0] == "Flex":
336             i += 1
337             continue
338
339           isflex = False
340           for j in range(i + 1, len(lines)):
341             if re_IsFlex.match(lines[j]):
342               isflex = True
343               break
344             if re_End.match(lines[j]):
345               break
346
347           if isflex:
348             flexstyles.append(name)
349             lines[i] = "InsetLayout \"Flex:" + name + "\""
350
351           i += 1
352           continue
353
354         if format == 33:
355           m = re_Fill.match(lines[i])
356           if m:
357             lines[i] = ""
358           i += 1
359           continue
360
361         if format == 32:
362           match = re_NeedsFloatPkg.match(lines[i])
363           if match:
364             space = match.group(1)
365             val = match.group(2)
366             lines[i] = space + "UsesFloatPkg " + val
367             newval = 'true'
368             if val == '1' or val.lower() == 'true':
369               newval = 'false'
370             lines.insert(i, space + "IsPredefined " + newval)
371             i += 1
372           i += 1
373           continue
374
375         # Only new features
376         if format >= 29 and format <= 31:
377           i += 1
378           continue
379
380         if format == 28:
381           match = re_InsetLayout.match(lines[i])
382           if match:
383             lines[i] = "InsetLayout Flex:" + match.group(1)
384           else:
385             match = re_QInsetLayout.match(lines[i])
386             if match:
387               lines[i] = "InsetLayout \"Flex:" + match.group(1) + "\""
388             else:
389               match = re_InsetLayout_CopyStyle.match(lines[i])
390               if match:
391                 lines[i] = "\tCopyStyle Flex:" + match.group(1)
392               else:
393                 match = re_QInsetLayout_CopyStyle.match(lines[i])
394                 if match:
395                   lines[i] = "\tCopyStyle \"Flex:" + match.group(1) + "\""
396           i += 1
397           continue
398         
399         # Only new features
400         if format >= 24 and format <= 27:
401           i += 1
402           continue
403
404         if format == 23:
405           match = re_Float.match(lines[i])
406           i += 1
407           if not match:
408             continue
409           # we need to do two things:
410           # (i)  Convert Builtin to NeedsFloatPkg
411           # (ii) Write ListCommand lines for the builtin floats table and figure
412           builtin = False
413           cmd = ""
414           while True and i < len(lines):
415             m1 = re_End.match(lines[i])
416             if m1:
417               if builtin and cmd:
418                 line = "    ListCommand " + cmd
419                 lines.insert(i, line)
420                 i += 1
421               break
422             m2 = re_Builtin.match(lines[i])
423             if m2:
424               builtin = True
425               ws1 = m2.group(1)
426               arg = m2.group(2)
427               newarg = ""
428               if re_True.match(arg):
429                 newarg = "false"
430               else:
431                 newarg = "true"
432               lines[i] = ws1 + "NeedsFloatPkg " + newarg
433             m3 = re_Type.match(lines[i])
434             if m3:
435               fltype = m3.group(1)
436               fltype = fltype.lower()
437               if fltype == "table":
438                 cmd = "listoftables"
439               elif fltype == "figure":
440                 cmd = "listoffigures"
441               # else unknown, which is why we're doing this
442             i += 1
443           continue              
444           
445         # This just involved new features, not any changes to old ones
446         if format >= 14 and format <= 22:
447           i += 1
448           continue
449
450         # Rename I18NPreamble to BabelPreamble
451         if format == 13:
452             match = re_I18nPreamble.match(lines[i])
453             if match:
454                 lines[i] = match.group(1) + "BabelPreamble"
455                 i += 1
456                 match = re_EndI18nPreamble.match(lines[i])
457                 while i < len(lines) and not match:
458                     i += 1
459                     match = re_EndI18nPreamble.match(lines[i])
460                 lines[i] = match.group(1) + "EndBabelPreamble"
461                 i += 1
462                 continue
463
464         # These just involved new features, not any changes to old ones
465         if format == 11 or format == 12:
466           i += 1
467           continue
468
469         if format == 10:
470             match = re_UseMod.match(lines[i])
471             if match:
472                 module = match.group(1)
473                 lines[i] = "DefaultModule " + module
474             i += 1
475             continue
476
477         if format == 9:
478             match = re_Counter.match(lines[i])
479             if match:
480                 counterline = i
481                 i += 1
482                 while i < len(lines):
483                     namem = re_Name.match(lines[i])
484                     if namem:
485                         name = namem.group(1)
486                         lines.pop(i)
487                         lines[counterline] = "Counter %s" % name
488                         # we don't need to increment i
489                         continue
490                     endem = re_End.match(lines[i])
491                     if endem:
492                         i += 1
493                         break
494                     i += 1
495             i += 1
496             continue
497
498         if format == 8:
499             # We want to scan for ams-type includes and, if we find them,
500             # add corresponding UseModule tags to the layout.
501             match = re_AMSMaths.match(lines[i])
502             if match:
503                 addstring("theorems-ams", usemodules)
504                 addstring("theorems-ams-extended", usemodules)
505                 addstring("theorems-sec", usemodules)
506                 lines.pop(i)
507                 continue
508             match = re_AMSMathsPlain.match(lines[i])
509             if match:
510                 addstring("theorems-starred", usemodules)
511                 lines.pop(i)
512                 continue
513             match = re_AMSMathsSeq.match(lines[i])
514             if match:
515                 addstring("theorems-ams", usemodules)
516                 addstring("theorems-ams-extended", usemodules)
517                 lines.pop(i)
518                 continue
519             i += 1
520             continue
521
522         # These just involved new features, not any changes to old ones
523         if format >= 5 and format <= 7:
524           i += 1
525           continue
526
527         if format == 4:
528             # Handle conversion to long CharStyle names
529             match = re_CharStyle.match(lines[i])
530             if match:
531                 lines[i] = "InsetLayout CharStyle:%s" % (match.group(3))
532                 i += 1
533                 lines.insert(i, "\tLyXType charstyle")
534                 i += 1
535                 lines.insert(i, "")
536                 lines[i] = "\tLabelString %s" % (match.group(3))
537             i += 1
538             continue
539
540         if format == 3:
541             # convert 'providesamsmath x',  'providesmakeidx x',  'providesnatbib x',  'providesurl x' to
542             #         'provides amsmath x', 'provides makeidx x', 'provides natbib x', 'provides url x'
543             # x is either 0 or 1
544             match = re_Provides.match(lines[i])
545             if match:
546                 lines[i] = "%sProvides %s%s%s" % (match.group(1), match.group(2).lower(),
547                                                   match.group(3), match.group(4))
548             i += 1
549             continue
550
551         if format == 2:
552             caption = []
553
554             # delete caption styles
555             match = re_Style.match(lines[i])
556             if match:
557                 style = string.lower(match.group(4))
558                 if style == "caption":
559                     del lines[i]
560                     while i < len(lines) and not re_End.match(lines[i]):
561                         caption.append(lines[i])
562                         del lines[i]
563                     if i == len(lines):
564                         error('Incomplete caption style.')
565                     else:
566                         del lines[i]
567                         continue
568
569             # delete undefinition of caption styles
570             match = re_NoStyle.match(lines[i])
571             if match:
572                 style = string.lower(match.group(4))
573                 if style == "caption":
574                     del lines[i]
575                     continue
576
577             # replace the CopyStyle statement with the definition of the real
578             # style. This may result in duplicate statements, but that is OK
579             # since the second one will overwrite the first one.
580             match = re_CopyStyle.match(lines[i])
581             if match:
582                 style = string.lower(match.group(4))
583                 if style == "caption":
584                     if len(caption) > 0:
585                         lines[i:i+1] = caption
586                     else:
587                         # FIXME: This style comes from an include file, we
588                         # should replace the real style and not this default.
589                         lines[i:i+1] = ['       Margin                First_Dynamic',
590                                         '       LatexType             Command',
591                                         '       LatexName             caption',
592                                         '       NeedProtect           1',
593                                         '       LabelSep              xx',
594                                         '       ParSkip               0.4',
595                                         '       TopSep                0.5',
596                                         '       Align                 Center',
597                                         '       AlignPossible         Center',
598                                         '       LabelType             Sensitive',
599                                         '       LabelString           "Senseless!"',
600                                         '       OptionalArgs          1',
601                                         '       LabelFont',
602                                         '         Series              Bold',
603                                         '       EndFont']
604
605             i += 1
606             continue
607
608         # Delete MaxCounter and remember the value of it
609         match = re_MaxCounter.match(lines[i])
610         if match:
611             level = match.group(4)
612             if string.lower(level) == "counter_chapter":
613                 maxcounter = 0
614             elif string.lower(level) == "counter_section":
615                 maxcounter = 1
616             elif string.lower(level) == "counter_subsection":
617                 maxcounter = 2
618             elif string.lower(level) == "counter_subsubsection":
619                 maxcounter = 3
620             elif string.lower(level) == "counter_paragraph":
621                 maxcounter = 4
622             elif string.lower(level) == "counter_subparagraph":
623                 maxcounter = 5
624             elif string.lower(level) == "counter_enumi":
625                 maxcounter = 6
626             elif string.lower(level) == "counter_enumii":
627                 maxcounter = 7
628             elif string.lower(level) == "counter_enumiii":
629                 maxcounter = 8
630             del lines[i]
631             continue
632
633         # Replace line
634         #
635         # LabelType Counter_EnumI
636         #
637         # with two lines
638         #
639         # LabelType Counter
640         # LabelCounter EnumI
641         #
642         match = re_LabelType.match(lines[i])
643         if match:
644             label = match.group(4)
645             # Remember indenting space for later reuse in added lines
646             space1 = match.group(1)
647             # Remember the line for adding the LabelCounter later.
648             # We can't do it here because it could shift latextype_line etc.
649             labeltype_line = i
650             if string.lower(label[:8]) == "counter_":
651                 counter = string.lower(label[8:])
652                 lines[i] = re_LabelType.sub(r'\1\2\3Counter', lines[i])
653
654         # Remember the LabelString line
655         match = re_LabelString.match(lines[i])
656         if match:
657             labelstring = match.group(4)
658             labelstring_line = i
659
660         # Remember the LabelStringAppendix line
661         match = re_LabelStringAppendix.match(lines[i])
662         if match:
663             labelstringappendix = match.group(4)
664             labelstringappendix_line = i
665
666         # Remember the LatexType line
667         match = re_LatexType.match(lines[i])
668         if match:
669             latextype = string.lower(match.group(4))
670             latextype_line = i
671
672         # Remember the TocLevel line
673         match = re_TocLevel.match(lines[i])
674         if match:
675             toclevel = string.lower(match.group(4))
676
677         # Reset variables at the beginning of a style definition
678         match = re_Style.match(lines[i])
679         if match:
680             style = string.lower(match.group(4))
681             counter = ""
682             toclevel = ""
683             label = ""
684             space1 = ""
685             labelstring = ""
686             labelstringappendix = ""
687             labelstring_line = -1
688             labelstringappendix_line = -1
689             labeltype_line = -1
690             latextype = ""
691             latextype_line = -1
692
693         if re_End.match(lines[i]):
694
695             # Add a line "LatexType Bib_Environment" if LabelType is Bibliography
696             # (or change the existing LatexType)
697             if string.lower(label) == "bibliography":
698                 if (latextype_line < 0):
699                     lines.insert(i, "%sLatexType Bib_Environment" % space1)
700                     i += 1
701                 else:
702                     lines[latextype_line] = re_LatexType.sub(r'\1\2\3Bib_Environment', lines[latextype_line])
703
704             # Change "LabelType Static" to "LabelType Itemize" for itemize environments
705             if latextype == "item_environment" and string.lower(label) == "static":
706                 lines[labeltype_line] = re_LabelType.sub(r'\1\2\3Itemize', lines[labeltype_line])
707
708             # Change "LabelType Counter_EnumI" to "LabelType Enumerate" for enumerate environments
709             if latextype == "item_environment" and string.lower(label) == "counter_enumi":
710                 lines[labeltype_line] = re_LabelType.sub(r'\1\2\3Enumerate', lines[labeltype_line])
711                 # Don't add the LabelCounter line later
712                 counter = ""
713
714             # Replace
715             #
716             # LabelString "Chapter"
717             #
718             # with
719             #
720             # LabelString "Chapter \arabic{chapter}"
721             #
722             # if this style has a counter. Ditto for LabelStringAppendix.
723             # This emulates the hardcoded article style numbering of 1.3
724             #
725             if counter != "":
726                 if style in counters:
727                     if labelstring_line < 0:
728                         lines.insert(i, '%sLabelString "%s"' % (space1, counters[style]))
729                         i += 1
730                     else:
731                         new_labelstring = concatenate_label(labelstring, counters[style])
732                         lines[labelstring_line] = re_LabelString.sub(
733                                 r'\1\2\3%s' % new_labelstring.replace("\\", "\\\\"),
734                                 lines[labelstring_line])
735                 if style in appendixcounters:
736                     if labelstringappendix_line < 0:
737                         lines.insert(i, '%sLabelStringAppendix "%s"' % (space1, appendixcounters[style]))
738                         i += 1
739                     else:
740                         new_labelstring = concatenate_label(labelstring, appendixcounters[style])
741                         lines[labelstringappendix_line] = re_LabelStringAppendix.sub(
742                                 r'\1\2\3%s' % new_labelstring.replace("\\", "\\\\"),
743                                 lines[labelstringappendix_line])
744
745                 # Now we can safely add the LabelCounter line
746                 lines.insert(labeltype_line + 1, "%sLabelCounter %s" % (space1, counter))
747                 i += 1
748
749             # Add the TocLevel setting for sectioning styles
750             if toclevel == "" and style in toclevels and maxcounter <= toclevels[style]:
751                 lines.insert(i, '%s\tTocLevel %d' % (space1, toclevels[style]))
752                 i += 1
753
754         i += 1
755
756     if only_comment:
757         lines.insert(i, "Format 2")
758     if usemodules:
759         i = formatline + 1
760         for mod in usemodules:
761             lines.insert(i, "UseModule " + mod)
762             i += 1
763
764     return format + 1
765
766
767 def main(argv):
768
769     # Open files
770     if len(argv) == 1:
771         source = sys.stdin
772         output = sys.stdout
773     elif len(argv) == 3:
774         source = open(argv[1], 'rb')
775         output = open(argv[2], 'wb')
776     else:
777         error(usage(argv[0]))
778
779     # Do the real work
780     lines = read(source)
781     format = 1
782     while (format < currentFormat):
783         format = convert(lines)
784     write(output, lines)
785
786     # Close files
787     if len(argv) == 3:
788         source.close()
789         output.close()
790
791     return 0
792
793
794 if __name__ == "__main__":
795     main(sys.argv)