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