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