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