]> git.lyx.org Git - lyx.git/blob - lib/scripts/layout2layout.py
UserGuide.lyx: next update for advanced search
[lyx.git] / lib / scripts / layout2layout.py
1 #! /usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 # file layout2layout.py
5 # This file is part of LyX, the document processor.
6 # Licence details can be found in the file COPYING.
7
8 # author Georg Baum
9
10 # Full author contact details are available in file CREDITS
11
12 # This script will update a .layout file to current format
13
14
15 import os, re, string, sys
16
17 # Incremented to format 4, 6 April 2007, lasgouttes
18 # Introduction of generic "Provides" declaration
19
20 # Incremented to format 5, 22 August 2007 by vermeer
21 # InsetLayout material
22
23 # Incremented to format 6, 7 January 2008 by spitz
24 # Requires tag added to layout files
25
26 # Incremented to format 7, 24 March 2008 by rgh
27 # AddToPreamble tag added to layout files
28
29 # Incremented to format 8, 25 July 2008 by rgh
30 # UseModule tag added to layout files
31 # CopyStyle added to InsetLayout
32
33 # Incremented to format 9, 5 October 2008 by rgh
34 # ForcePlain and CustomPars tags added to InsetLayout
35
36 # Incremented to format 10, 6 October 2008 by rgh
37 # Change format of counters
38
39 # Incremented to format 11, 14 October 2008 by rgh
40 # Add ProvidesModule, ExcludesModule tags
41
42 # Incremented to format 12, 10 January 2009 by gb
43 # Add I18NPreamble tag
44
45 # Incremented to format 13, 5 February 2009 by rgh
46 # Add InToc tag for InsetLayout
47
48 # Incremented to format 14, 14 February 2009 by gb
49 # Rename I18NPreamble to BabelPreamble and add LangPreamble
50
51 # Incremented to format 15, 28 May 2009 by lasgouttes
52 # Add new tag OutputFormat; modules can be conditioned on feature 
53 # "from->to".
54
55 # Incremented to format 16, 5 June 2009 by rgh
56 # Add new tags for Text Class:
57 #   HTMLPreamble, HTMLAddToPreamble
58 # For Layout:
59 #   HTMLTag, HTMLAttr, HTMLLabel, HTMLLabelAttr, HTMLItem, HTMLItemAttr
60 #   HTMLStyle, and HTMLPreamble
61 # For InsetLayout:
62 #   HTMLTag, HTMLAttr, HTMLStyle, and HTMLPreamble
63 # For Floats:
64 #   HTMLType, HTMLClass, HTMLStyle
65
66 # Incremented to format 17, 12 August 2009 by rgh
67 # Add IfStyle and IfCounter tags for layout.
68
69 # Incremented to format 18, 27 October 2009 by rgh
70 # Added some new tags for HTML output.
71
72 # Incremented to format 19, 17 November 2009 by rgh
73 # Added InPreamble tag.
74
75 # Incremented to format 20, 17 December 2009 by rgh
76 # Added ContentAsLabel tag.
77
78 # Incremented to format 21, 12 January 2010 by rgh
79 # Added HTMLTocLayout and HTMLTitle tags.
80
81 # Incremented to format 22, 20 January 2010 by rgh
82 # Added HTMLFormat tag to Counters.
83
84 # Incremented to format 23, 13 February 2010 by spitz
85 # Added Spellcheck tag.
86
87 # Incremented to format 24, 5 March 2010 by rgh
88 # Changed LaTeXBuiltin tag to NeedsFloatPkg and
89 # added new tag ListCommand.
90
91 # Incremented to format 25, 12 March 2010 by rgh
92 # Added RefPrefix tag for layouts and floats.
93
94 # Incremented to format 26, 29 March 2010 by rgh
95 # Added CiteFormat.
96
97 # Incremented to format 27, 4 June 2010 by rgh
98 # Added RequiredArgs tag.
99
100 # Incremented to format 28, 6 August 2010 by lasgouttes
101 # Added ParbreakIsNewline tag for Layout and InsetLayout.
102
103 # Incremented to format 29, 10 August 2010 by rgh
104 # Changed Custom:Style, CharStyle:Style, and Element:Style
105 # uniformly to Flex:Style.
106
107 # Incremented to format 30, 13 August 2010 by rgh
108 # Introduced ResetsFont tag for InsetLayout.
109
110 # Incremented to format 31, 12 January 2011 by rgh
111 # Introducted NoCounter tag.
112
113 # Incremented to format 32, 30 January 2011 by forenr
114 # Added Display tag for InsetLayout
115
116 # Incremented to format 33, 2 February 2011 by rgh
117 # Changed NeedsFloatPkg to UsesFloatPkg
118
119 # Incremented to format 34, 28 March 2011 by rgh
120 # Remove obsolete Fill_(Top|Bottom) tags
121
122 # Incremented to format 35, 28 March 2011 by rgh
123 # Try to add "Flex:" to any flex insets that don't have it.
124
125 # Incremented to format 36, 7 December 2011, by rgh
126 # Added HTMLStyles and AddToHTMLStyles tags.
127
128 # Incremented to format 37, 29 February 2012 by jrioux
129 # Implement the citation engine machinery in layouts.
130 # Change CiteFormat to CiteFormat (default|authoryear|numerical).
131
132 # 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             # There is a conversion with format 40, but it is done within the
355             # initial comment block and so is above.
356             i += 1
357             continue
358
359         if format == 37 or format == 38:
360             i += 1
361             continue
362
363         if format == 36:
364             match = re_CiteFormat.match(lines[i]);
365             if match and match.group(4) == "":
366                 lines[i] = match.group(0) + " default"
367             i += 1
368             continue
369
370         if format == 35:
371           i += 1
372           continue
373
374         if format == 34:
375           match = re_InsetLayout2.match(lines[i])
376           if not match:
377             match = re_QInsetLayout2.match(lines[i])
378           if not match:
379             match = re_CopyStyle2.match(lines[i])
380             if not match:
381               i += 1
382               continue
383             style = match.group(2)
384             
385             if flexstyles.count(style):
386               lines[i] = match.group(1) + "\"Flex:" + style + "\""
387             i += 1
388             continue
389
390           name = match.group(1)
391           names = name.split(":", 1)
392           if len(names) > 1 and names[0] == "Flex":
393             i += 1
394             continue
395
396           isflex = False
397           for j in range(i + 1, len(lines)):
398             if re_IsFlex.match(lines[j]):
399               isflex = True
400               break
401             if re_End.match(lines[j]):
402               break
403
404           if isflex:
405             flexstyles.append(name)
406             lines[i] = "InsetLayout \"Flex:" + name + "\""
407
408           i += 1
409           continue
410
411         if format == 33:
412           m = re_Fill.match(lines[i])
413           if m:
414             lines[i] = ""
415           i += 1
416           continue
417
418         if format == 32:
419           match = re_NeedsFloatPkg.match(lines[i])
420           if match:
421             space = match.group(1)
422             val = match.group(2)
423             lines[i] = space + "UsesFloatPkg " + val
424             newval = 'true'
425             if val == '1' or val.lower() == 'true':
426               newval = 'false'
427             lines.insert(i, space + "IsPredefined " + newval)
428             i += 1
429           i += 1
430           continue
431
432         # Only new features
433         if format >= 29 and format <= 31:
434           i += 1
435           continue
436
437         if format == 28:
438           match = re_InsetLayout.match(lines[i])
439           if match:
440             lines[i] = "InsetLayout Flex:" + match.group(1)
441           else:
442             match = re_QInsetLayout.match(lines[i])
443             if match:
444               lines[i] = "InsetLayout \"Flex:" + match.group(1) + "\""
445             else:
446               match = re_InsetLayout_CopyStyle.match(lines[i])
447               if match:
448                 lines[i] = "\tCopyStyle Flex:" + match.group(1)
449               else:
450                 match = re_QInsetLayout_CopyStyle.match(lines[i])
451                 if match:
452                   lines[i] = "\tCopyStyle \"Flex:" + match.group(1) + "\""
453           i += 1
454           continue
455         
456         # Only new features
457         if format >= 24 and format <= 27:
458           i += 1
459           continue
460
461         if format == 23:
462           match = re_Float.match(lines[i])
463           i += 1
464           if not match:
465             continue
466           # we need to do two things:
467           # (i)  Convert Builtin to NeedsFloatPkg
468           # (ii) Write ListCommand lines for the builtin floats table and figure
469           builtin = False
470           cmd = ""
471           while True and i < len(lines):
472             m1 = re_End.match(lines[i])
473             if m1:
474               if builtin and cmd:
475                 line = "    ListCommand " + cmd
476                 lines.insert(i, line)
477                 i += 1
478               break
479             m2 = re_Builtin.match(lines[i])
480             if m2:
481               builtin = True
482               ws1 = m2.group(1)
483               arg = m2.group(2)
484               newarg = ""
485               if re_True.match(arg):
486                 newarg = "false"
487               else:
488                 newarg = "true"
489               lines[i] = ws1 + "NeedsFloatPkg " + newarg
490             m3 = re_Type.match(lines[i])
491             if m3:
492               fltype = m3.group(1)
493               fltype = fltype.lower()
494               if fltype == "table":
495                 cmd = "listoftables"
496               elif fltype == "figure":
497                 cmd = "listoffigures"
498               # else unknown, which is why we're doing this
499             i += 1
500           continue              
501           
502         # This just involved new features, not any changes to old ones
503         if format >= 14 and format <= 22:
504           i += 1
505           continue
506
507         # Rename I18NPreamble to BabelPreamble
508         if format == 13:
509             match = re_I18nPreamble.match(lines[i])
510             if match:
511                 lines[i] = match.group(1) + "BabelPreamble"
512                 i += 1
513                 match = re_EndI18nPreamble.match(lines[i])
514                 while i < len(lines) and not match:
515                     i += 1
516                     match = re_EndI18nPreamble.match(lines[i])
517                 lines[i] = match.group(1) + "EndBabelPreamble"
518                 i += 1
519                 continue
520
521         # These just involved new features, not any changes to old ones
522         if format == 11 or format == 12:
523           i += 1
524           continue
525
526         if format == 10:
527             match = re_UseMod.match(lines[i])
528             if match:
529                 module = match.group(1)
530                 lines[i] = "DefaultModule " + module
531             i += 1
532             continue
533
534         if format == 9:
535             match = re_Counter.match(lines[i])
536             if match:
537                 counterline = i
538                 i += 1
539                 while i < len(lines):
540                     namem = re_Name.match(lines[i])
541                     if namem:
542                         name = namem.group(1)
543                         lines.pop(i)
544                         lines[counterline] = "Counter %s" % name
545                         # we don't need to increment i
546                         continue
547                     endem = re_End.match(lines[i])
548                     if endem:
549                         i += 1
550                         break
551                     i += 1
552             i += 1
553             continue
554
555         if format == 8:
556             # We want to scan for ams-type includes and, if we find them,
557             # add corresponding UseModule tags to the layout.
558             match = re_AMSMaths.match(lines[i])
559             if match:
560                 addstring("theorems-ams", usemodules)
561                 addstring("theorems-ams-extended", usemodules)
562                 addstring("theorems-sec", usemodules)
563                 lines.pop(i)
564                 continue
565             match = re_AMSMathsPlain.match(lines[i])
566             if match:
567                 addstring("theorems-starred", usemodules)
568                 lines.pop(i)
569                 continue
570             match = re_AMSMathsSeq.match(lines[i])
571             if match:
572                 addstring("theorems-ams", usemodules)
573                 addstring("theorems-ams-extended", usemodules)
574                 lines.pop(i)
575                 continue
576             i += 1
577             continue
578
579         # These just involved new features, not any changes to old ones
580         if format >= 5 and format <= 7:
581           i += 1
582           continue
583
584         if format == 4:
585             # Handle conversion to long CharStyle names
586             match = re_CharStyle.match(lines[i])
587             if match:
588                 lines[i] = "InsetLayout CharStyle:%s" % (match.group(3))
589                 i += 1
590                 lines.insert(i, "\tLyXType charstyle")
591                 i += 1
592                 lines.insert(i, "")
593                 lines[i] = "\tLabelString %s" % (match.group(3))
594             i += 1
595             continue
596
597         if format == 3:
598             # convert 'providesamsmath x',  'providesmakeidx x',  'providesnatbib x',  'providesurl x' to
599             #         'provides amsmath x', 'provides makeidx x', 'provides natbib x', 'provides url x'
600             # x is either 0 or 1
601             match = re_Provides.match(lines[i])
602             if match:
603                 lines[i] = "%sProvides %s%s%s" % (match.group(1), match.group(2).lower(),
604                                                   match.group(3), match.group(4))
605             i += 1
606             continue
607
608         if format == 2:
609             caption = []
610
611             # delete caption styles
612             match = re_Style.match(lines[i])
613             if match:
614                 style = string.lower(match.group(4))
615                 if style == "caption":
616                     del lines[i]
617                     while i < len(lines) and not re_End.match(lines[i]):
618                         caption.append(lines[i])
619                         del lines[i]
620                     if i == len(lines):
621                         error('Incomplete caption style.')
622                     else:
623                         del lines[i]
624                         continue
625
626             # delete undefinition of caption styles
627             match = re_NoStyle.match(lines[i])
628             if match:
629                 style = string.lower(match.group(4))
630                 if style == "caption":
631                     del lines[i]
632                     continue
633
634             # replace the CopyStyle statement with the definition of the real
635             # style. This may result in duplicate statements, but that is OK
636             # since the second one will overwrite the first one.
637             match = re_CopyStyle.match(lines[i])
638             if match:
639                 style = string.lower(match.group(4))
640                 if style == "caption":
641                     if len(caption) > 0:
642                         lines[i:i+1] = caption
643                     else:
644                         # FIXME: This style comes from an include file, we
645                         # should replace the real style and not this default.
646                         lines[i:i+1] = ['       Margin                First_Dynamic',
647                                         '       LatexType             Command',
648                                         '       LatexName             caption',
649                                         '       NeedProtect           1',
650                                         '       LabelSep              xx',
651                                         '       ParSkip               0.4',
652                                         '       TopSep                0.5',
653                                         '       Align                 Center',
654                                         '       AlignPossible         Center',
655                                         '       LabelType             Sensitive',
656                                         '       LabelString           "Senseless!"',
657                                         '       OptionalArgs          1',
658                                         '       LabelFont',
659                                         '         Series              Bold',
660                                         '       EndFont']
661
662             i += 1
663             continue
664
665         # Delete MaxCounter and remember the value of it
666         match = re_MaxCounter.match(lines[i])
667         if match:
668             level = match.group(4)
669             if string.lower(level) == "counter_chapter":
670                 maxcounter = 0
671             elif string.lower(level) == "counter_section":
672                 maxcounter = 1
673             elif string.lower(level) == "counter_subsection":
674                 maxcounter = 2
675             elif string.lower(level) == "counter_subsubsection":
676                 maxcounter = 3
677             elif string.lower(level) == "counter_paragraph":
678                 maxcounter = 4
679             elif string.lower(level) == "counter_subparagraph":
680                 maxcounter = 5
681             elif string.lower(level) == "counter_enumi":
682                 maxcounter = 6
683             elif string.lower(level) == "counter_enumii":
684                 maxcounter = 7
685             elif string.lower(level) == "counter_enumiii":
686                 maxcounter = 8
687             del lines[i]
688             continue
689
690         # Replace line
691         #
692         # LabelType Counter_EnumI
693         #
694         # with two lines
695         #
696         # LabelType Counter
697         # LabelCounter EnumI
698         #
699         match = re_LabelType.match(lines[i])
700         if match:
701             label = match.group(4)
702             # Remember indenting space for later reuse in added lines
703             space1 = match.group(1)
704             # Remember the line for adding the LabelCounter later.
705             # We can't do it here because it could shift latextype_line etc.
706             labeltype_line = i
707             if string.lower(label[:8]) == "counter_":
708                 counter = string.lower(label[8:])
709                 lines[i] = re_LabelType.sub(r'\1\2\3Counter', lines[i])
710
711         # Remember the LabelString line
712         match = re_LabelString.match(lines[i])
713         if match:
714             labelstring = match.group(4)
715             labelstring_line = i
716
717         # Remember the LabelStringAppendix line
718         match = re_LabelStringAppendix.match(lines[i])
719         if match:
720             labelstringappendix = match.group(4)
721             labelstringappendix_line = i
722
723         # Remember the LatexType line
724         match = re_LatexType.match(lines[i])
725         if match:
726             latextype = string.lower(match.group(4))
727             latextype_line = i
728
729         # Remember the TocLevel line
730         match = re_TocLevel.match(lines[i])
731         if match:
732             toclevel = string.lower(match.group(4))
733
734         # Reset variables at the beginning of a style definition
735         match = re_Style.match(lines[i])
736         if match:
737             style = string.lower(match.group(4))
738             counter = ""
739             toclevel = ""
740             label = ""
741             space1 = ""
742             labelstring = ""
743             labelstringappendix = ""
744             labelstring_line = -1
745             labelstringappendix_line = -1
746             labeltype_line = -1
747             latextype = ""
748             latextype_line = -1
749
750         if re_End.match(lines[i]):
751
752             # Add a line "LatexType Bib_Environment" if LabelType is Bibliography
753             # (or change the existing LatexType)
754             if string.lower(label) == "bibliography":
755                 if (latextype_line < 0):
756                     lines.insert(i, "%sLatexType Bib_Environment" % space1)
757                     i += 1
758                 else:
759                     lines[latextype_line] = re_LatexType.sub(r'\1\2\3Bib_Environment', lines[latextype_line])
760
761             # Change "LabelType Static" to "LabelType Itemize" for itemize environments
762             if latextype == "item_environment" and string.lower(label) == "static":
763                 lines[labeltype_line] = re_LabelType.sub(r'\1\2\3Itemize', lines[labeltype_line])
764
765             # Change "LabelType Counter_EnumI" to "LabelType Enumerate" for enumerate environments
766             if latextype == "item_environment" and string.lower(label) == "counter_enumi":
767                 lines[labeltype_line] = re_LabelType.sub(r'\1\2\3Enumerate', lines[labeltype_line])
768                 # Don't add the LabelCounter line later
769                 counter = ""
770
771             # Replace
772             #
773             # LabelString "Chapter"
774             #
775             # with
776             #
777             # LabelString "Chapter \arabic{chapter}"
778             #
779             # if this style has a counter. Ditto for LabelStringAppendix.
780             # This emulates the hardcoded article style numbering of 1.3
781             #
782             if counter != "":
783                 if style in counters:
784                     if labelstring_line < 0:
785                         lines.insert(i, '%sLabelString "%s"' % (space1, counters[style]))
786                         i += 1
787                     else:
788                         new_labelstring = concatenate_label(labelstring, counters[style])
789                         lines[labelstring_line] = re_LabelString.sub(
790                                 r'\1\2\3%s' % new_labelstring.replace("\\", "\\\\"),
791                                 lines[labelstring_line])
792                 if style in appendixcounters:
793                     if labelstringappendix_line < 0:
794                         lines.insert(i, '%sLabelStringAppendix "%s"' % (space1, appendixcounters[style]))
795                         i += 1
796                     else:
797                         new_labelstring = concatenate_label(labelstring, appendixcounters[style])
798                         lines[labelstringappendix_line] = re_LabelStringAppendix.sub(
799                                 r'\1\2\3%s' % new_labelstring.replace("\\", "\\\\"),
800                                 lines[labelstringappendix_line])
801
802                 # Now we can safely add the LabelCounter line
803                 lines.insert(labeltype_line + 1, "%sLabelCounter %s" % (space1, counter))
804                 i += 1
805
806             # Add the TocLevel setting for sectioning styles
807             if toclevel == "" and style in toclevels and maxcounter <= toclevels[style]:
808                 lines.insert(i, '%s\tTocLevel %d' % (space1, toclevels[style]))
809                 i += 1
810
811         i += 1
812
813     if only_comment:
814         lines.insert(i, "Format 2")
815     if usemodules:
816         i = formatline + 1
817         for mod in usemodules:
818             lines.insert(i, "UseModule " + mod)
819             i += 1
820
821     return format + 1
822
823
824 def main(argv):
825
826     # Open files
827     if len(argv) == 1:
828         source = sys.stdin
829         output = sys.stdout
830     elif len(argv) == 3:
831         source = open(argv[1], 'rb')
832         output = open(argv[2], 'wb')
833     else:
834         error(usage(argv[0]))
835
836     # Do the real work
837     lines = read(source)
838     format = 1
839     while (format < currentFormat):
840         format = convert(lines)
841     write(output, lines)
842
843     # Close files
844     if len(argv) == 3:
845         source.close()
846         output.close()
847
848     return 0
849
850
851 if __name__ == "__main__":
852     main(sys.argv)