-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtxt2tags-0.1.py
executable file
·461 lines (392 loc) · 15.1 KB
/
txt2tags-0.1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
#!/usr/bin/python
# txt2tags.py
# 20010726 <[email protected]> ** debut
# TODO || moincel ||, TABcel1TABcel2, --- forget table for now.
# TODO \ == <BR> --- mmmm, no.
# TODO allow lists inside quotes? (mgp TAB problems)
# TODO =title=[label])
# TODO mgp error (escape ^% - how???)
# TODO mgp: subquote (increase prefix) ----mmmm, maybe not (big letters, few hspace)
# TODO pm6 : check quote
#
# BUG: sgml: title after quote left a blank line before </quote>
#
#i pm6: paragraph == 1 line
import re, string, os, sys
from time import strftime,time,localtime
my_url = 'http://txt2tags.sourceforge.net'
my_email = '[email protected]'
usage = 'usage: %s -t|--type txt,sgml,html,pm6,mgp,moin file.txt\n'%(sys.argv[0])
# soon i'll use getopts &:)
if len(sys.argv) != 4:
print usage
sys.exit(1)
doctype = sys.argv[2]
file = sys.argv[3]
tags = ['txt', 'sgml', 'html', 'pm6', 'mgp', 'moin']
try: T = tags.index(doctype)
except ValueError:
print "invalid type '%s'"%(doctype)
print usage
sys.exit(1)
if not os.path.isfile(file):
print 'file not found: '+file
sys.exit(1)
### all the registered tags
TAGparagraph = ['', '<p>', '<P>', '<@Normal:>', '%font "normal", size 5\n', '']
TAGtitle1 = [' \a' , '<sect>\a'+TAGparagraph[1] , '<H1>\a</H1>', '\n<@Title1:>\a', '%page\n\n\a', '= \a =']
TAGtitle2 = ['\t\a' , '<sect1>\a'+TAGparagraph[1], '<H2>\a</H2>', '\n<@Title2:>\a', '%page\n\n\a', '== \a ==']
TAGtitle3 = ['\t\t\a' , '<sect2>\a'+TAGparagraph[1], '<H3>\a</H3>', '\n<@Title3:>\a', '%page\n\n\a', '=== \a ===']
TAGtitle4 = ['\t\t\t\a' , '<sect3>\a'+TAGparagraph[1], '<H4>\a</H4>', '\n<@Title4:>\a', '%page\n\n\a', '==== \a ====']
TAGtitle5 = ['\t\t\t\t\a', '<sect4>\a'+TAGparagraph[1], '<H5>\a</H5>', '\n<@Title5:>\a', '%page\n\n\a', '===== \a =====']
TAGareaPreOpen = ['', '<tscreen><verb>', '<PRE>', '<@PreFormat:>', '\n%font "mono"', '{{{']
TAGareaPreClose = ['', '</verb></tscreen>', '</PRE>', '', '%font "normal"', '}}}']
TAGareaQuoteOpen = [' ', '<quote>', '<BLOCKQUOTE>', '<@Quote:>', '%prefix " "', ' ']
TAGareaQuoteClose = ['', '</quote>', '</BLOCKQUOTE>', '', '%prefix ""', '']
TAGfontMonoOpen = ['', '<tt>', '<CODE>', '<FONT "Lucida Console"><SIZE 9>', '\n%cont, font "mono"\n', '{{{']
TAGfontMonoClose = ['', '</tt>', '</CODE>', '<SIZE$><FONT$>', '\n%cont, font "normal"\n', '}}}']
TAGfontBoldOpen = ['', '<bf>', '<B>', '<B>', '\n%cont, font "normal-b"\n', "'''"]
TAGfontBoldClose = ['', '</bf>', '</B>', '<P>', '\n%cont, font "normal"\n', "'''"]
TAGfontItalicOpen = ['', '<em>', '<I>', '<I>', '\n%cont, font "normal-i"\n', "''"]
TAGfontItalicClose = ['', '</em>', '</I>', '<P>', '\n%cont, font "normal"\n', "''"]
TAGfontBoldItalicOpen = ['', '<bf><em>', '<B><I>', '<B><I>', '\n%cont, font "normal-bi"\n', "'''''"]
TAGfontBoldItalicClose = ['', '</em></bf>', '</I></B>', '<P>', '\n%cont, font "normal"\n', "'''''"]
TAGfontUnderlineOpen = ['', TAGfontBoldItalicOpen[1], '<U>', '<U>', '\n%cont, fore "cyan"\n', TAGfontBoldItalicOpen[5]]
TAGfontUnderlineClose = ['', TAGfontBoldItalicClose[1], '</U>', '<P>', '\n%cont, fore "white"\n', TAGfontBoldItalicClose[5]]
TAGlistOpen = ['', '<itemize>', '<UL>', '<@Bullet:>', '', '']
TAGlistClose = ['', '</itemize>', '</UL>', '', '', '']
TAGlistItem = ['- ', '<item>', '<LI>', '• ', '', ' * ']
TAGbar1 = ['\a', '<!-- \a -->', '<HR NOSHADE SIZE=1>', '\a', '%bar "white" 5', '----']
TAGbar2 = ['\a', '<!-- \a -->', '<HR NOSHADE SIZE=5>', '\a', '%pause', '----']
TAGurl = ['\a', '<htmlurl url="\a" name="\a">', '<A HREF="\a">\a</A>', TAGfontUnderlineOpen[3]+'\a'+TAGfontUnderlineClose[3], '\n%cont, fore "cyan"\n\a\n%cont, fore "white"\n', '[\a]']
TAGemail = ['\a', '<htmlurl url="mailto:\a" name="\a">', '<A HREF="mailto:\a">\a</A>', '\a', TAGurl[4], '[\a]']
TAGimg = ['[\a]', '<figure><ph vspace=""><img src="\a"></figure>', '<P ALIGN=CENTER><IMG SRC="\a"></P>', '\a', '\n%center\n%newimage -yscrzoom 50"\a", left\n', '[\a]']
TAGEOD = ['', '</article>', '</BODY></HTML>', '', '%%EOD', '']
### the cool regexes
re_title = re.compile(r'^\s*(?P<tag>={1,5})(?P<txt>[^=].*[^=])\1(\[(?P<label>\w+)\])?$')
re_areaPreOpen = re_areaPreClose = re.compile(r'^(---|=--$|^\+==([0-9]+)$|^\+==)$')
re_quote = re.compile(r'^\t+')
re_1linePreOld = re.compile(r'^ {4}([^\s-])')
re_1linePre = re.compile(r'^---([^-])')
re_mono = re.compile(r'`([^`]+)`')
re_bold = re.compile(r'\*\*([^\s*].*?)\*\*')
re_italic = re.compile(r'(^|[^:])//([^ /].*?)//')
re_underline = re.compile(r'__([^_].*?)__')
re_bolditalic = re.compile(r'\*/([^/].*?)/\*')
re_list = re.compile(r'^( *)- ([^ ])')
re_bar =re.compile(r'^\s*([_=-]{20,})\s*$')
re_url = re.compile(r'((https?|ftp|news)://|(www[23]?\.|ftp\.))[A-Za-z0-9._/~%:,-]+',re.I)
re_email = re.compile(r'[A-Za-z0-9_.-]+@[A-Za-z0-9_.-]{4,}',re.I)
re_x = re.compile('\a')
re_blankline = re.compile(r'^\s*$')
re_comment = re.compile(r'^\s*//')
re_date = re.compile(r'%%date\b', re.I)
re_img = re.compile(r'\[([\w_,.+%$#@!?+~/-][\w_,.+%$#@!?+~/ -]+\.(png|jpe?g|gif|eps|bmp))\]', re.L+re.I)
# the defaults
title = 'document title'
author = 'author name'
currdate = strftime('%Y%m%d',localtime(time())) # ISO current date
date = currdate
f_tt = 0
listident = []
f_header = 0
f_lastblank = 0
holdspace = ''
listholdspace = ''
quotedepth = 0
def printHeader(title, author, date):
if doctype == 'sgml':
print "<!doctype linuxdoc system>\n<article>"
print "<title>%s\n<author>%s\n<date>%s\n" %(title,author,date)
elif doctype == 'html':
print '<HTML>\n<HEAD><TITLE>%s</TITLE></HEAD>'%title
print '<BODY BGCOLOR="white" TEXT="black">'
print '<P ALIGN="center"><CENTER><H1>%s</H1>'%title
print '<FONT SIZE=4><I>%s</I><BR>\n%s</FONT></CENTER>\n'%(author,date)
elif doctype == 'pm6':
# TODO style to <HR>
# TODO unix2dos before apply
print """\
<PMTags1.0 win><C-COLORTABLE ("Preto" 1 0 0 0)
><@Normal=
<FONT "Times New Roman"><CCOLOR "Preto"><SIZE 11>
<HORIZONTAL 100><LETTERSPACE 0><CTRACK 127><CSSIZE 70><C+SIZE 58.3>
<C-POSITION 33.3><C+POSITION 33.3><P><CBASELINE 0><CNOBREAK 0><CLEADING -0.05>
<GGRID 0><GLEFT 7.2><GRIGHT 0><GFIRST 0><G+BEFORE 7.2><G+AFTER 0>
<GALIGNMENT "justify"><GMETHOD "proportional"><G& "ENGLISH">
<GPAIRS 12><G% 120><GKNEXT 0><GKWIDOW 0><GKORPHAN 0><GTABS $>
<GHYPHENATION 2 34 0><GWORDSPACE 75 100 150><GSPACE -5 0 25>
><@Bullet=<@-PARENT "Normal"><FONT "Abadi MT Condensed Light">
<GLEFT 14.4><G+BEFORE 2.15><G% 110><GTABS(25.2 l "")>
><@PreFormat=<@-PARENT "Normal"><FONT "Lucida Console"><SIZE 8><CTRACK 0>
<GLEFT 0><G+BEFORE 0><GALIGNMENT "left"><GWORDSPACE 100 100 100><GSPACE 0 0 0>
><@Title1=<@-PARENT "Normal"><FONT "Arial"><SIZE 14><B>
<GCONTENTS><GLEFT 0><G+BEFORE 0><GALIGNMENT "left">
><@Title2=<@-PARENT "Title1"><SIZE 12><G+BEFORE 3.6>
><@Title3=<@-PARENT "Title1"><SIZE 10><GLEFT 7.2><G+BEFORE 7.2>
><@Title4=<@-PARENT "Title3">
><@Title5=<@-PARENT "Title3">
><@Quote=<@-PARENT "Normal"><SIZE 10><I>>
"""
elif doctype == 'mgp':
print """\
#!/usr/X11R6/bin/mgp -t 90
%deffont "normal" xfont "utopia-medium-r", charset "iso8859-1"
%deffont "normal-i" xfont "utopia-medium-i", charset "iso8859-1"
%deffont "normal-b" xfont "utopia-bold-r", charset "iso8859-1"
%deffont "normal-bi" xfont "utopia-bold-i", charset "iso8859-1"
%deffont "mono" xfont "courier-medium-r", charset "iso8859-1"
%default 1 size 5
%default 2 size 8, fore "yellow", font "normal-b", center
%default 3 size 5, fore "white", font "normal", left
%tab 1 size 4, vgap 30, prefix " ", icon arc "red" 40
%tab 2 prefix " ", icon arc "orange" 40
%tab 3 prefix " ", icon arc "brown" 40
%tab 4 prefix " ", icon arc "darkmagenta" 40
%tab 5 prefix " ", icon arc "magenta" 40
%%%%%%%%%%%%%%%%%%%%%%%%%% end of headers %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%page
"""
# 1st title page
print '\n\n\n\n%%size 10, center, fore "yellow"\n%s'%title
print '\n%%font "normal-i", size 6, fore "white", center\n%s'%author
print '%%font "mono", size 7, center\n%s'%date
def printFooter():
if doctype == 'sgml' or doctype == 'html':
print "<!-- %s code generetad by txt2tags (%s) -->"%(doctype,my_url)
elif doctype == 'mgp':
print "%%%% %s code generetad by txt2tags (%s)"%(doctype,my_url)
print TAGEOD[T]
def doEscape(txt):
if doctype == 'html' or doctype == 'sgml':
txt = re.sub('&','&',txt)
txt = re.sub('<','<',txt)
txt = re.sub('>','>',txt)
if doctype == 'sgml': txt = re.sub('ÿ','ÿ',txt)
if doctype == 'pm6' : txt = re.sub('<','<\#60>',txt)
return txt
def doEscapeEscape(txt):
while re.search(r'\\<', txt):
txt = re.sub(r'\\<','<\#92><',txt)
return txt
################################################################################
###MerryChristmas,IdontwanttofighttonightwithyouImissyourbodyandIneedyourlove###
################################################################################
# reading our source file
f = open(file, 'r')
lines = f.readlines()
f.close
# let's mark it up!
linenr = 0
for lineref in range(len(lines)):
linenr = lineref +1
line = doEscape(string.rstrip(lines[lineref]))
# we need (not really) to mark each paragraph
if doctype == 'pm6' and f_lastblank:
if f_tt or f_header or listident: holdspace = ''
else: holdspace = TAGparagraph[T]
# PRE-formatted area
# we'll never support beautifiers inside pre-formatted
if f_tt:
# closing PRE
if re_areaPreClose.search(line):
if doctype != 'pm6': print TAGareaPreClose[T]
f_tt = 0
continue
# normal PRE-inside line
if doctype == 'pm6': line = doEscapeEscape(line)
print line
continue
# detecting PRE
if re_areaPreOpen.search(line):
if f_tt:
print "%d:opening PRE-formatted tag without closing previous one" %linenr
print line
continue
print TAGareaPreOpen[T]
f_tt = 1
continue
# blank lines
#TODO "holdspace" to save <p> to not show in closelist
if re_blankline.search(line):
if f_lastblank: # 2nd consecutive blank line
if listident: # closes list (if any)
while len(listident):
if TAGlistClose[T]: print listident[-1]+TAGlistClose[T]
del listident[-1]
continue # consecutive blanks are trash
if f_header or linenr == 1: # 1st blank after header (if any)
printHeader(title,author,date)
if doctype != 'pm6': print TAGparagraph[T]
f_header = 0 # we're done with header
continue
# paragraph (if any) is wanted inside lists also
if doctype != 'pm6':
if doctype == 'html' or listident:
print TAGparagraph[T]
else: print
f_lastblank = 1
continue
else:
f_lastblank = 0 # reset blank status
# comments
# just skip them
if re_comment.search(line):
f_lastblank = 1
continue
# one line PRE-formatted text
if re_1linePre.search(line):
line = re_1linePre.sub(r'\1',line)
if doctype == 'pm6': line = doEscapeEscape(line)
print '%s\n%s\n%s'%(TAGareaPreOpen[T],line,TAGareaPreClose[T])
continue
# HR line
if re_bar.search(line):
txt = re_bar.search(line).group(1)
if txt[0] == '=': bar = TAGbar2[T]
else : bar = TAGbar1[T]
line = re_bar.sub(bar,line)
print re_x.sub(txt,line)
continue
# quote
if re_quote.search(line):
currquotedepth = len(re_quote.search(line).group(0)) # number of TABs
if doctype == 'sgml' and quotedepth and currquotedepth > quotedepth: currquotedepth = quotedepth
if not TAGareaQuoteClose[T]:
line = re_quote.sub(TAGareaQuoteOpen[T]*currquotedepth, line)
else:
# new (sub)quote
if not quotedepth or currquotedepth > quotedepth:
quotedepth = currquotedepth
print TAGareaQuoteOpen[T]
if doctype != 'html'and doctype != 'sgml':
line = re_quote.sub('', line)
# closing quotes
while currquotedepth < quotedepth:
quotedepth = quotedepth-1
print TAGareaQuoteClose[T]
else:
# closing quotes
while quotedepth:
quotedepth = quotedepth-1
print TAGareaQuoteClose[T]
# list
if re_list.search(line) and doctype != 'txt':
listitemident = re_list.search(line).group(1)
# new sublist
if not listident or len(listitemident) > len(listident[-1]):
listident.append(listitemident)
openlist = listident[-1]+TAGlistOpen[T]
if doctype == 'pm6': listholdspace = openlist
else:
if string.strip(openlist): print openlist
# closing sublists
while len(listitemident) < len(listident[-1]):
if TAGlistClose[T]: print listident[-1]+TAGlistClose[T]
del listident[-1]
# normal item
listid = listident[-1]
if doctype == 'mgp': listid = len(listident)*'\t'
line = re_list.sub(listid+TAGlistItem[T]+r'\2',line)
if listholdspace:
line = listholdspace+line
listholdspace = ''
if doctype == 'sgml': line = re.sub(r'\[', r'[', line)
# title
#TODO set next blank and set f_lastblank or f_lasttitle
if re_title.search(line) and not listident:
m = re_title.search(line)
tag = m.group('tag')
tag = eval('TAGtitle'+`len(tag)`+'[T]')
txt = string.strip(m.group('txt'))
if doctype == 'sgml': txt = re.sub(r'\[', r'[', txt)
txt = re.sub(r'\\', r'\', txt)
line = re_title.sub(tag,line)
print re_x.sub(txt,line)
continue
# labeltxt = ''
# label = m.group('label')
# if label: labeltxt = '<label id="%s">' %label
### BEGIN of at-any-part-of-the-line/various-per-line TAGs.
# date
if re_date.search(line):
line = re_date.sub(currdate,line)
# bold
if re_bold.search(line):
txt = r'%s\1%s'%(TAGfontBoldOpen[T],TAGfontBoldClose[T])
line = re_bold.sub(txt,line)
# italic
if re_italic.search(line):
txt = r'\1%s\2%s'%(TAGfontItalicOpen[T],TAGfontItalicClose[T])
line = re_italic.sub(txt,line)
# bolditalic
if re_bolditalic.search(line):
txt = r'%s\1%s'%(TAGfontBoldItalicOpen[T],TAGfontBoldItalicClose[T])
line = re_bolditalic.sub(txt,line)
# underline
if re_underline.search(line):
txt = r'%s\1%s'%(TAGfontUnderlineOpen[T],TAGfontUnderlineClose[T])
line = re_underline.sub(txt,line)
# image
if re_img.search(line):
txt = re_img.search(line).group(1)
line = re_img.sub(TAGimg[T],line)
line = re_x.sub(txt,line)
if doctype == 'sgml': line = re.sub(r'\[', r'[', line)
# font PRE
if re_mono.search(line):
txt = r'%s\1%s'%(TAGfontMonoOpen[T],TAGfontMonoClose[T])
line = re_mono.sub(txt,line)
# URL
if re_url.search(line):
txt = re_url.search(line).group(0)
line = re_url.sub(TAGurl[T],line)
line = re_x.sub(txt,line)
# Email
if re_email.search(line):
txt = re_email.search(line).group(0)
line = re_email.sub(TAGemail[T],line)
line = re_x.sub(txt,line)
# header
if linenr == 1:
title = line
f_header = 1
continue
if f_header:
if linenr == 2:
author = line
continue
elif linenr == 3:
date = line
continue
else:
printHeader(title,author,date)
f_header = 0
# convert all \ before <...> to tag
if doctype == 'pm6': line = doEscapeEscape(line)
if listident: holdspace = ''
print holdspace+line
holdspace = ''
printFooter()
# RESOURCES
# inside verb:
# if doctype == 'sgml': line = re.sub('</','&etago;',line)
#tabela SGML
#<table>
#<tabular ca="cl">
#cel1-1<colsep>cel1-2<rowsep>
#cel2-1<colsep>cel2-2<rowsep>
#</tabular>
#</table>
#pm6: <font$> volta ao normal do estilo
#pm6: <#comentários#> <font #comment# $>
# pagemaker table
# 1 = 0,55
# 2 = 1,10
# 3 = 1,65
# 4 = 2,20
#
# |__1_| | | | | |
# |_______2_| | | | |
# |____________3_| | | |
# sgml: www.linuxdoc.org