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