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