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