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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
|
#!/usr/bin/env ruby
# program : ctxtools
# copyright : PRAGMA Advanced Document Engineering
# version : 2004-2005
# author : Hans Hagen
#
# project : ConTeXt / eXaMpLe
# concept : Hans Hagen
# info : j.hagen@xs4all.nl
# www : www.pragma-ade.com
# This script will harbor some handy manipulations on context
# related files.
# todo: move scite here
#
# todo: move kpse call to kpse class/module
banner = ['CtxTools', 'version 1.2.2', '2004/2005', 'PRAGMA ADE/POD']
unless defined? ownpath
ownpath = $0.sub(/[\\\/][a-z0-9\-]*?\.rb/i,'')
$: << ownpath
end
require 'base/switch'
require 'base/logger'
require 'base/system'
require 'rexml/document'
require 'ftools'
require 'kconv'
exit if defined?(REQUIRE2LIB)
class String
def i_translate(element, attribute, category)
self.gsub!(/(<#{element}.*?#{attribute}=)([\"\'])(.*?)\2/) do
if category.key?($3) then
# puts "#{element} #{$3} -> #{category[$3]}\n" if element == 'cd:inherit'
# puts "#{element} #{$3} => #{category[$3]}\n" if element == 'cd:command'
"#{$1}#{$2}#{category[$3]}#{$2}"
else
# puts "#{element} #{$3} -> ?\n" if element == 'cd:inherit'
# puts "#{element} #{$3} => ?\n" if element == 'cd:command'
"#{$1}#{$2}#{$3}#{$2}" # unchanged
end
end
end
def i_load(element, category)
self.scan(/<#{element}.*?name=([\"\'])(.*?)\1.*?value=\1(.*?)\1/) do
category[$2] = $3
end
end
end
class Commands
include CommandBase
public
def touchcontextfile
dowithcontextfile(1)
end
def contextversion
dowithcontextfile(2)
end
private
def dowithcontextfile(action)
maincontextfile = 'context.tex'
unless FileTest.file?(maincontextfile) then
begin
maincontextfile = `kpsewhich -progname=context #{maincontextfile}`.chomp
rescue
maincontextfile = ''
end
end
unless maincontextfile.empty? then
case action
when 1 then touchfile(maincontextfile)
when 2 then reportversion(maincontextfile)
end
end
end
def touchfile(filename)
if FileTest.file?(filename) then
if data = IO.read(filename) then
timestamp = Time.now.strftime('%Y.%m.%d')
prevstamp = ''
begin
data.gsub!(/\\contextversion\{(\d+\.\d+\.\d+)\}/) do
prevstamp = $1
"\\contextversion{#{timestamp}}"
end
rescue
else
begin
File.delete(filename+'.old')
rescue
end
begin
File.copy(filename,filename+'.old')
rescue
end
begin
if f = File.open(filename,'w') then
f.puts(data)
f.close
end
rescue
end
end
if prevstamp.empty? then
report("#{filename} is not updated, no timestamp found")
else
report("#{filename} is updated from #{prevstamp} to #{timestamp}")
end
end
else
report("#{filename} is not found")
end
end
def reportversion(filename)
version = 'unknown'
begin
if FileTest.file?(filename) && IO.read(filename).match(/\\contextversion\{(\d+\.\d+\.\d+)\}/) then
version = $1
end
rescue
end
if @commandline.option("pipe") then
print version
else
report("context version: #{version}")
end
end
end
class Commands
include CommandBase
public
def jeditinterface
editinterface('jedit')
end
def bbeditinterface
editinterface('bbedit')
end
def sciteinterface
editinterface('scite')
end
def rawinterface
editinterface('raw')
end
private
def editinterface(type='raw')
return unless FileTest.file?("cont-en.xml")
interfaces = @commandline.arguments
if interfaces.empty? then
interfaces = ['en', 'cz','de','it','nl','ro']
end
interfaces.each do |interface|
begin
collection = Hash.new
mappings = Hash.new
if f = open("keys-#{interface}.xml") then
while str = f.gets do
if str =~ /\<cd\:command\s+name=\"(.*?)\"\s+value=\"(.*?)\".*?\>/o then
mappings[$1] = $2
end
end
f.close
if f = open("cont-en.xml") then
while str = f.gets do
if str =~ /\<cd\:command\s+name=\"(.*?)\"\s+type=\"environment\".*?\>/o then
collection["start#{mappings[$1]}"] = ''
collection["stop#{mappings[$1]}"] = ''
elsif str =~ /\<cd\:command\s+name=\"(.*?)\".*?\>/o then
collection["#{mappings[$1]}"] = ''
end
end
f.close
case type
when 'jedit' then
if f = open("context-jedit-#{interface}.xml", 'w') then
f.puts("<?xml version='1.0'?>\n\n")
f.puts("<!DOCTYPE MODE SYSTEM 'xmode.dtd'>\n\n")
f.puts("<MODE>\n")
f.puts(" <RULES>\n")
f.puts(" <KEYWORDS>\n")
collection.keys.sort.each do |name|
f.puts(" <KEYWORD2>\\#{name}</KEYWORD2>\n") unless name.empty?
end
f.puts(" </KEYWORDS>\n")
f.puts(" </RULES>\n")
f.puts("</MODE>\n")
f.close
end
when 'bbedit' then
if f = open("context-bbedit-#{interface}.xml", 'w') then
f.puts("<?xml version='1.0'?>\n\n")
f.puts("<key>BBLMKeywordList</key>\n")
f.puts("<array>\n")
collection.keys.sort.each do |name|
f.puts(" <string>\\#{name}</string>\n") unless name.empty?
end
f.puts("</array>\n")
f.close
end
when 'scite' then
if f = open("cont-#{interface}-scite.properties", 'w') then
i = 0
f.write("keywordclass.macros.context.#{interface}=")
collection.keys.sort.each do |name|
unless name.empty? then
if i==0 then
f.write("\\\n ")
i = 5
else
i = i - 1
end
f.write("#{name} ")
end
end
f.write("\n")
f.close
end
else # raw
collection.keys.sort.each do |name|
puts("\\#{name}\n") unless name.empty?
end
end
end
end
end
end
end
end
class Commands
include CommandBase
public
def translateinterface
# since we know what kind of file we're dealing with,
# we do it quick and dirty instead of using rexml or
# xslt
interfaces = @commandline.arguments
if interfaces.empty? then
interfaces = ['cz','de','it','nl','ro']
else
interfaces.delete('en')
end
interfaces.flatten.each do |interface|
variables, constants, strings, list, data = Hash.new, Hash.new, Hash.new, '', ''
keyfile, intfile, outfile = "keys-#{interface}.xml", "cont-en.xml", "cont-#{interface}.xml"
report("generating #{keyfile}")
begin
one = "texexec --make --alone --all #{interface}"
two = "texexec --batch --silent --interface=#{interface} x-set-01"
if @commandline.option("force") then
system(one)
system(two)
elsif not system(two) then
system(one)
system(two)
end
rescue
end
unless File.file?(keyfile) then
report("no #{keyfile} generated")
next
end
report("loading #{keyfile}")
begin
list = IO.read(keyfile)
rescue
list = empty
end
if list.empty? then
report("error in loading #{keyfile}")
next
end
list.i_load('cd:variable', variables)
list.i_load('cd:constant', constants)
list.i_load('cd:command' , strings)
# list.i_load('cd:element' , strings)
report("loading #{intfile}")
begin
data = IO.read(intfile)
rescue
data = empty
end
if data.empty? then
report("error in loading #{intfile}")
next
end
report("translating interface en to #{interface}")
data.i_translate('cd:string' , 'value', strings)
data.i_translate('cd:variable' , 'value', variables)
data.i_translate('cd:parameter', 'name' , constants)
data.i_translate('cd:constant' , 'type' , variables)
data.i_translate('cd:variable' , 'type' , variables)
data.i_translate('cd:inherit' , 'name' , strings)
# data.i_translate('cd:command' , 'name' , strings)
report("saving #{outfile}")
begin
if f = File.open(outfile, 'w') then
f.write(data)
f.close
end
rescue
end
end
end
end
class Commands
include CommandBase
public
def purgefiles(all=false)
pattern = @commandline.arguments
purgeall = @commandline.option("all") || all
recurse = @commandline.option("recurse")
$dontaskprefixes.push(Dir.glob("mpx-*"))
$dontaskprefixes.flatten!
$dontaskprefixes.sort!
if purgeall then
$forsuresuffixes.push($texnonesuffixes)
$texnonesuffixes = []
$forsuresuffixes.flatten!
end
if ! pattern || pattern.empty? then
globbed = if recurse then "**/*.*" else "*.*" end
files = Dir.glob(globbed)
report("purging files : #{globbed}")
else
pattern.each do |pat|
globbed = if recurse then "**/#{pat}-*.*" else "#{pat}-*.*" end
files = Dir.glob(globbed)
globbed = if recurse then "**/#{pat}.*" else "#{pat}.*" end
files.push(Dir.glob(globbed))
end
report("purging files : #{pattern.join(' ')}")
end
files.flatten!
files.sort!
$dontaskprefixes.each do |file|
removecontextfile(file)
end
$dontasksuffixes.each do |suffix|
files.each do |file|
removecontextfile(file) if file =~ /#{suffix}$/i
end
end
$forsuresuffixes.each do |suffix|
files.each do |file|
removecontextfile(file) if file =~ /\.#{suffix}$/i
end
end
files.each do |file|
if file =~ /(.*?)\.\d+$/o then
basename = $1
if file =~ /mp(graph|run)/o || FileTest.file?("#{basename}.mp") then
removecontextfile($file)
end
end
end
$texnonesuffixes.each do |suffix|
files.each do |file|
if file =~ /(.*)\.#{suffix}$/i then
if FileTest.file?("#{$1}.tex") || FileTest.file?("#{$1}.xml") || FileTest.file?("#{$1}.fo") then
keepcontextfile(file)
else
strippedname = $1.gsub(/\-[a-z]$/io, '')
if FileTest.file?("#{strippedname}.tex") || FileTest.file?("#{strippedname}.xml") then
keepcontextfile("#{file} (potential result file)")
else
removecontextfile(file)
end
end
end
end
end
files = Dir.glob("*.*")
$dontasksuffixes.each do |suffix|
files.each do |file|
removecontextfile(file) if file =~ /^#{suffix}$/i
end
end
if $removedfiles || $keptfiles || $persistentfiles then
report("removed files : #{$removedfiles}")
report("kept files : #{$keptfiles}")
report("persistent files : #{$persistentfiles}")
report("reclaimed bytes : #{$reclaimedbytes}")
end
end
def purgeallfiles
purgefiles(true) # for old times sake
end
private
$removedfiles = 0
$keptfiles = 0
$persistentfiles = 0
$reclaimedbytes = 0
$dontaskprefixes = [
# "tex-form.tex", "tex-edit.tex", "tex-temp.tex",
"texexec.tex", "texexec.tui", "texexec.tuo",
"texexec.ps", "texexec.pdf", "texexec.dvi",
"cont-opt.tex", "cont-opt.bak"
]
$dontasksuffixes = [
"mp(graph|run)\\.mp", "mp(graph|run)\\.mpd", "mp(graph|run)\\.mpo", "mp(graph|run)\\.mpy",
"mp(graph|run)\\.\\d+",
"xlscript\\.xsl"
]
$forsuresuffixes = [
"tui", "tup", "ted", "tes", "top",
"log", "tmp", "run", "bck", "rlg",
"mpt", "mpx", "mpd", "mpo"
]
$texonlysuffixes = [
"dvi", "ps", "pdf"
]
$texnonesuffixes = [
"tuo", "tub", "top"
]
def removecontextfile (filename)
if filename && FileTest.file?(filename) then
begin
filesize = FileTest.size(filename)
File.delete(filename)
rescue
report("problematic : #{filename}")
else
if FileTest.file?(filename) then
$persistentfiles += 1
report("persistent : #{filename}")
else
$removedfiles += 1
$reclaimedbytes += filesize
report("removed : #{filename}")
end
end
end
end
def keepcontextfile (filename)
if filename && FileTest.file?(filename) then
$keptfiles += 1
report("not removed : #{filename}")
end
end
end
#D Documentation can be woven into a source file. The next
#D routine generates a new, \TEX\ ready file with the
#D documentation and source fragments properly tagged. The
#D documentation is included as comment:
#D
#D \starttypen
#D %D ...... some kind of documentation
#D %M ...... macros needed for documenation
#D %S B begin skipping
#D %S E end skipping
#D \stoptypen
#D
#D The most important tag is \type {%D}. Both \TEX\ and \METAPOST\
#D files use \type{%} as a comment chacacter, while \PERL, \RUBY\
#D and alike use \type{#}. Therefore \type{#D} is also handled.
#D
#D The generated file gets the suffix \type{ted} and is
#D structured as:
#D
#D \starttypen
#D \startmodule[type=suffix]
#D \startdocumentation
#D \stopdocumentation
#D \startdefinition
#D \stopdefinition
#D \stopmodule
#D \stoptypen
#D
#D Macro definitions specific to the documentation are not
#D surrounded by start||stop commands. The suffix specifaction
#D can be overruled at runtime, but defaults to the file
#D extension. This specification can be used for language
#D depended verbatim typesetting.
class Commands
include CommandBase
public
def documentation
files = @commandline.arguments
processtype = @commandline.option("type")
files.each do |fullname|
if fullname =~ /(.*)\.(.+?)$/o then
filename, filesuffix = $1, $2
else
filename, filesuffix = fullname, 'tex'
end
filesuffix = 'tex' if filesuffix.empty?
fullname, resultname = "#{filename}.#{filesuffix}", "#{filename}.ted"
if ! FileTest.file?(fullname)
report("empty input file #{fullname}")
elsif ! tex = File.open(fullname)
report("invalid input file #{fullname}")
elsif ! ted = File.open(resultname,'w') then
report("unable to openresult file #{resultname}")
else
report("input file : #{fullname}")
report("output file : #{resultname}")
nofdocuments, nofdefinitions, nofskips = 0, 0, 0
skiplevel, indocument, indefinition, skippingbang = 0, false, false, false
if processtype.empty? then
filetype = filesuffix.downcase
else
filetype = processtype.downcase
end
report("filetype : #{filetype}")
# we need to signal to texexec what interface to use
firstline = tex.gets
if firstline =~ /^\%.*interface\=/ then
ted.puts(firstline)
else
tex.rewind # seek(0)
end
ted.puts("\\startmodule[type=#{filetype}]\n")
while str = tex.gets do
if skippingbang then
skippingbang = false
else
str.chomp!
str.sub!(/\s*$/o, '')
case str
when /^[%\#]D/io then
if skiplevel == 0 then
someline = if str.length < 3 then "" else str[3,str.length-1] end
if indocument then
ted.puts("#{someline}\n")
else
if indefinition then
ted.puts("\\stopdefinition\n")
indefinition = false
end
unless indocument then
ted.puts("\n\\startdocumentation\n")
end
ted.puts("#{someline}\n")
indocument = true
nofdocuments += 1
end
end
when /^[%\#]M/io then
if skiplevel == 0 then
someline = if str.length < 3 then "" else str[3,str.length-1] end
ted.puts("#{someline}\n")
end
when /^[%\%]S B/io then
skiplevel += 1
nofskips += 1
when /^[%\%]S E/io then
skiplevel -= 1
when /^[%\#]/io then
#nothing
when /^eval \'\(exit \$\?0\)\' \&\& eval \'exec perl/o then
skippingbang = true
else
if skiplevel == 0 then
inlocaldocument = indocument
someline = str
if indocument then
ted.puts("\\stopdocumentation\n")
indocument = false
end
if someline.empty? && indefinition then
ted.puts("\\stopdefinition\n")
indefinition = false
elsif indefinition then
ted.puts("#{someline}\n")
elsif ! someline.empty? then
ted.puts("\n\\startdefinition\n")
indefinition = true
unless inlocaldocument then
nofdefinitions += 1
ted.puts("#{someline}\n")
end
end
end
end
end
end
if indocument then
ted.puts("\\stopdocumentation\n")
end
if indefinition then
ted.puts("\\stopdefinition\n")
end
ted.puts("\\stopmodule\n")
ted.close
if nofdocuments == 0 && nofdefinitions == 0 then
begin
File.delete(resultname)
rescue
end
end
report("documentation sections : #{nofdocuments}")
report("definition sections : #{nofdefinitions}")
report("skipped sections : #{nofskips}")
end
end
end
end
#D This feature was needed when \PDFTEX\ could not yet access page object
#D numbers (versions prior to 1.11).
class Commands
include CommandBase
public
def filterpages # temp feature / no reporting
filename = @commandline.argument('first')
filename.sub!(/\.([a-z]+?)$/io,'')
pdffile = "#{filename}.pdf"
tuofile = "#{filename}.tuo"
if FileTest.file?(pdffile) then
begin
prevline, n = '', 0
if (pdf = File.open(pdffile)) && (tuo = File.open(tuofile,'a')) then
report('filtering page object numbers')
pdf.binmode
while line = pdf.gets do
line.chomp
# typical pdftex search
if (line =~ /\/Type \/Page/o) && (prevline =~ /^(\d+)\s+0\s+obj/o) then
p = $1
n += 1
tuo.puts("\\objectreference{PDFP}{#{n}}{#{p}}{#{n}}\n")
else
prevline = line
end
end
end
pdf.close
tuo.close
report("number of pages : #{n}")
rescue
report("fatal error in filtering pages")
end
end
end
end
# This script is used to generate hyphenation pattern files
# that suit ConTeXt. One reason for independent files is that
# over the years too many uncommunicated changes took place
# as well that inconsistency in content, naming, and location
# in the texmf tree takes more time than I'm willing to spend
# on it. Pattern files are normally shipped for LaTeX (and
# partially plain). A side effect of independent files is that
# we can make them encoding independent.
#
# Maybe I'll make this hyptools.tex
class Language
include CommandBase
def initialize(commandline=nil, language='en', filenames=nil, encoding='ec')
@commandline= commandline
@language = language
@filenames = filenames
@remapping = Array.new
@unicode = Hash.new
@encoding = encoding
@data = ''
@read = ''
preload_accents()
preload_unicode() if @commandline.option('utf8')
case @encoding.downcase
when 't1', 'ec', 'cork' then preload_vector('ec')
when 'y', 'texnansi' then preload_vector('texnansi')
end
end
def report(str)
if @commandline then
@commandline.report(str)
else
puts("#{str}\n")
end
end
def remap(from, to)
@remapping.push([from,to])
end
def load(filenames=@filenames)
begin
if filenames then
@filenames.each do |fileset|
[fileset].flatten.each do |filename|
begin
if fname = located(filename) then
data = IO.read(fname)
@data += data.gsub(/\%.*$/, '')
data.gsub!(/(\\patterns|\\hyphenation)\s*\{.*/mo) do '' end
@read += "\n% preamble of file #{fname}\n\n#{data}\n"
report("file #{fname} is loaded")
break # next fileset
end
rescue
report("file #{filename} is not readable")
end
end
end
end
rescue
end
end
def valid?
! @data.empty?
end
def convert
if @data then
n = 0
@remapping.each do |k|
@data.gsub!(k[0]) do
# report("#{k[0]} => #{k[1]}")
n += 1
k[1]
end
end
report("#{n} changes in patterns and exceptions")
if @commandline.option('utf8') then
n = 0
@data.gsub!(/\[(.*?)\]/o) do
n += 1
@unicode[$1] || $1
end
report("#{n} unicode utf8 entries")
end
return true
else
return false
end
end
def comment(str)
str.gsub!(/^\n/o, '')
str.chomp!
if @commandline.option('xml') then
"<!-- #{str.strip} -->\n\n"
else
"% #{str.strip}\n\n"
end
end
def content(tag, str)
lst = str.split(/\s+/)
lst.collect! do |l|
l.strip
end
if lst.length>0 then
lst = "\n#{lst.join("\n")}\n"
else
lst = ""
end
if @commandline.option('xml') then
lst.gsub!(/\[(.*?)\]/o) do
"&#{$1};"
end
"<#{tag}>#{lst}</#{tag}>\n\n"
else
"\\#{tag} \{#{lst}\}\n\n"
end
end
def banner
if @commandline.option('xml') then
"<?xml version='1.0' standalone='yes' ?>\n\n"
end
end
def triggerunicode
if @commandline.option('utf8') then
"% xetex needs utf8 encoded patterns and for patterns\n" +
"% coded as such we need to enable this regime when\n" +
"% not in xetex; this code will be moved into context\n" +
"% as soon as we've spread the generic patterns\n" +
"\n" +
"\\ifx\\XeTeXversion\\undefined \\else\n" +
" \\ifx\\enableregime\\undefined \\else\n" +
" \\enableregime[utf]\n" +
" \\fi\n" +
"\\fi\n" +
"\n"
end
end
def save
xml = @commandline.option("xml")
patname = "lang-#{@language}.pat"
hypname = "lang-#{@language}.hyp"
rmename = "lang-#{@language}.rme"
logname = "lang-#{@language}.log"
desname = "lang-all.xml"
@data.gsub!(/\\[nc]\{(.+?)\}/) do $1 end
@data.gsub!(/\{\}/) do '' end
@data.gsub!(/\n+/mo) do "\n" end
@read.gsub!(/\n+/mo) do "\n" end
description = ''
commentfile = rmename.dup
begin
desfile = `kpsewhich -progname=context #{desname}`.chomp
if f = File.new(desfile) then
if doc = REXML::Document.new(f) then
if e = REXML::XPath.first(doc.root,"/descriptions/description[@language='#{@language}']") then
description = e.to_s
end
end
end
rescue
description = ''
else
unless description.empty? then
commentfile = desname.dup
str = "<!-- copied from lang-all.xml\n\n"
str << "<?xml version='1.0' standalone='yes'?>\n\n"
str << description.chomp
str << "\n\nend of copy -->\n"
str.gsub!(/^/io, "% ") unless @commandline.option('xml')
description = comment("begin description data")
description << str + "\n"
description << comment("end description data")
report("description found for language #{@language}")
end
end
begin
if description.empty? || @commandline.option('log') then
if f = File.open(logname,'w') then
report("saving #{@remapping.length} remap patterns in #{logname}")
@remapping.each do |m|
f.puts("#{m[0].inspect} => #{m[1]}\n")
end
f.close
end
else
File.delete(logname) if FileTest.file?(logname)
end
rescue
end
begin
if description.empty? || @commandline.option('log') then
if f = File.open(rmename,'w') then
data = @read.dup
data.gsub!(/(\s*\n\s*)+/mo, "\n")
f << comment("comment copied from public hyphenation files}")
f << comment("source of data: #{@filenames.join(' ')}")
f << comment("begin original comment")
f << "#{data}\n"
f << comment("end original comment")
f.close
report("comment saved in file #{rmename}")
else
report("file #{rmename} is not writable")
end
else
File.delete(rmename) if FileTest.file?(rmename)
end
rescue
end
begin
if f = File.open(patname,'w') then
data = ''
@data.scan(/\\patterns\s*\{\s*(.*?)\s*\}/m) do
report("merging patterns")
data += $1 + "\n"
end
data.gsub!(/(\s*\n\s*)+/mo, "\n")
f << banner
f << comment("context pattern file, see #{commentfile} for original comment")
f << comment("source of data: #{@filenames.join(' ')}")
f << description
f << comment("begin pattern data")
f << triggerunicode
f << content('patterns', data)
f << comment("end pattern data")
f.close
report("patterns saved in file #{patname}")
else
report("file #{patname} is not writable")
end
rescue
report("problems with file #{patname}")
end
begin
if f = File.open(hypname,'w') then
data = ''
@data.scan(/\\hyphenation\s*\{\s*(.*?)\s*\}/m) do
report("merging exceptions")
data += $1 + "\n"
end
data.gsub!(/(\s*\n\s*)+/mo, "\n")
f << banner
f << comment("context hyphenation file, see #{commentfile} for original comment")
f << comment("source of data: #{@filenames.join(' ')}")
f << description
f << comment("begin hyphenation data")
f << triggerunicode
f << content('hyphenation', data)
f << comment("end hyphenation data")
f.close
report("exceptions saved in file #{hypname}")
else
report("file #{hypname} is not writable")
end
rescue
report("problems with file #{hypname}")
end
end
def process
load
if valid? then
convert
save
else
report("aborted due to missing files")
end
end
def Language::generate(commandline, language='', filenames='', encoding='ec')
if ! language.empty? && ! filenames.empty? then
commandline.report("processing language #{language}")
commandline.report("")
language = Language.new(commandline,language,filenames,encoding)
language.load
language.convert
language.save
commandline.report("")
end
end
private
def located(filename)
begin
fname = `kpsewhich -progname=context #{filename}`.chomp
if FileTest.file?(fname) then
report("using file #{fname}")
return fname
else
report("file #{filename} is not present")
return nil
end
rescue
report("file #{filename} cannot be located using kpsewhich")
return nil
end
end
def preload_accents
begin
if filename = located("enco-acc.tex") then
if data = IO.read(filename) then
report("preloading accent conversions")
data.scan(/\\defineaccent\s*\\*(.+?)\s*\{*(.+?)\}*\s*\{\\(.+?)\}/o) do
one, two, three = $1, $2, $3
one.gsub!(/[\`\~\!\^\*\_\-\+\=\:\;\"\'\,\.\?]/o) do
"\\#{one}"
end
remap(/\\#{one} #{two}/, "[#{three}]")
remap(/\\#{one}#{two}/, "[#{three}]") unless one =~ /[a-zA-Z]/o
remap(/\\#{one}\{#{two}\}/, "[#{three}]")
end
end
end
rescue
end
end
def preload_unicode
# \definecharacter Agrave {\uchar0{192}}
begin
if filename = located("enco-uc.tex") then
if data = IO.read(filename) then
report("preloading unicode conversions")
data.scan(/\\definecharacter\s*(.+?)\s*\{\\uchar\{*(\d+)\}*\s*\{(\d+)\}/o) do
one, two, three = $1, $2.to_i, $3.to_i
@unicode[one] = [(two*256 + three)].pack("U")
end
end
end
rescue
report("error in loading unicode mapping (#{$!})")
end
end
def preload_vector(encoding='')
# funny polish
case @language
when 'pl' then
remap(/\/a/, "[aogonek]") ; remap(/\/A/, "[Aogonek]")
remap(/\/c/, "[cacute]") ; remap(/\/C/, "[Cacute]")
remap(/\/e/, "[eogonek]") ; remap(/\/E/, "[Eogonek]")
remap(/\/l/, "[lstroke]") ; remap(/\/L/, "[Lstroke]")
remap(/\/n/, "[nacute]") ; remap(/\/N/, "[Nacute]")
remap(/\/o/, "[oacute]") ; remap(/\/O/, "[Oacute]")
remap(/\/s/, "[sacute]") ; remap(/\/S/, "[Sacute]")
remap(/\/x/, "[zacute]") ; remap(/\/X/, "[Zacute]")
remap(/\/z/, "[zdotaccent]") ; remap(/\/Z/, "[Zdotaccent]")
when 'sl' then
remap(/\"c/,"[ccaron]") ; remap(/\"C/,"[Ccaron]")
remap(/\"s/,"[scaron]") ; remap(/\"S/,"[Scaron]")
remap(/\"z/,"[zcaron]") ; remap(/\"Z/,"[Zcaron]")
when 'da' then
remap(/X/, "[aeligature]")
remap(/Y/, "[ostroke]")
remap(/Z/, "[aring]")
when 'ca' then
remap(/\\c\{.*?\}/, "")
when 'de', 'deo' then
remap(/\\c\{.*?\}/, "")
remap(/\\n\{\}/, "")
remap(/\\3/, "[ssharp]")
remap(/\\9/, "[ssharp]")
remap(/\"a/, "[adiaeresis]")
remap(/\"o/, "[odiaeresis]")
remap(/\"u/, "[udiaeresis]")
when 'fr' then
remap(/\\ae/, "[adiaeresis]")
remap(/\\oe/, "[odiaeresis]")
when 'la' then
# \lccode`'=`' somewhere else, todo
remap(/\\c\{.*?\}/, "")
remap(/\\a\s*/, "[aeligature]")
remap(/\\o\s*/, "[oeligature]")
else
end
if ! encoding.empty? then
begin
filename = `kpsewhich -progname=context enco-#{encoding}.tex`
if data = IO.read(filename.chomp) then
report("preloading #{encoding} character mappings")
data.scan(/\\definecharacter\s*([a-zA-Z]+)\s*(\d+)\s*/o) do
name, number = $1, $2
remap(/\^\^#{sprintf("%02x",number)}/, "[#{name}]")
end
end
rescue
end
end
end
end
class Commands
include CommandBase
public
@@languagedata = Hash.new
def patternfiles
language = @commandline.argument('first')
if (language == 'all') || language.empty? then
languages = @@languagedata.keys.sort
elsif @@languagedata.key?(language) then
languages = [language]
else
languages = []
end
languages.each do |language|
encoding = @@languagedata[language][0] || ''
files = @@languagedata[language][1] || []
Language::generate(self,language,files,encoding)
end
end
private
# todo: filter the fallback list from context
# The first entry in the array is the encoding which will be used
# when interpreting th eraw patterns. The second entry is a list of
# filesets (string|aray), each first match of a set is taken.
@@languagedata['ba' ] = [ 'ec' , ['bahyph.tex'] ]
@@languagedata['ca' ] = [ 'ec' , ['cahyph.tex'] ]
@@languagedata['cy' ] = [ 'ec' , ['cyhyph.tex'] ]
@@languagedata['cz' ] = [ 'ec' , ['czhyphen.tex','czhyphen.ex'] ]
@@languagedata['de' ] = [ 'ec' , ['dehyphn.tex'] ]
@@languagedata['deo'] = [ 'ec' , ['dehypht.tex'] ]
@@languagedata['da' ] = [ 'ec' , ['dkspecial.tex','dkcommon.tex'] ]
# elhyph.tex
@@languagedata['es' ] = [ 'ec' , ['eshyph.tex'] ]
@@languagedata['fi' ] = [ 'ec' , ['ethyph.tex'] ]
@@languagedata['fi' ] = [ 'ec' , ['fihyph.tex'] ]
@@languagedata['fr' ] = [ 'ec' , ['frhyph.tex'] ]
# ghyphen.readme ghyph31.readme grphyph
@@languagedata['hr' ] = [ 'ec' , ['hrhyph.tex'] ]
@@languagedata['hu' ] = [ 'ec' , ['huhyphn.tex'] ]
@@languagedata['en' ] = [ 'default' , [['ushyphmax.tex','ushyph.tex','hyphen.tex']] ]
# inhyph.tex
@@languagedata['is' ] = [ 'ec' , ['ishyph.tex'] ]
@@languagedata['it' ] = [ 'ec' , ['ithyph.tex'] ]
@@languagedata['la' ] = [ 'ec' , ['lahyph.tex'] ]
# mnhyph
@@languagedata['nl' ] = [ 'ec' , ['nehyph96.tex'] ]
@@languagedata['no' ] = [ 'ec' , ['nohyph.tex'] ]
# oldgrhyph.tex
@@languagedata['pl' ] = [ 'ec' , ['plhyph.tex'] ]
@@languagedata['pt' ] = [ 'ec' , ['pthyph.tex'] ]
@@languagedata['ro' ] = [ 'ec' , ['rohyph.tex'] ]
@@languagedata['sl' ] = [ 'ec' , ['sihyph.tex'] ]
@@languagedata['sk' ] = [ 'ec' , ['skhyphen.tex','skhyphen.ex'] ]
# sorhyph.tex / upper sorbian
# srhyphc.tex / cyrillic
@@languagedata['sv' ] = [ 'ec' , ['svhyph.tex'] ]
@@languagedata['tr' ] = [ 'ec' , ['tkhyph.tex'] ]
@@languagedata['uk' ] = [ 'default' , [['ukhyphen.tex','ukhyph.tex']] ]
end
class Commands
include CommandBase
def dpxmapfiles
force = @commandline.option("force")
texmfroot = @commandline.argument('first')
texmfroot = '.' if texmfroot.empty?
maproot = "#{texmfroot}/fonts/map/pdftex/context"
if File.directory?(maproot) then
if files = Dir.glob("#{maproot}/*.map") and files.size > 0 then
files.each do |pdffile|
next if File.basename(pdffile) == 'pdftex.map'
pdffile = File.expand_path(pdffile)
dpxfile = File.expand_path(pdffile.sub(/pdftex/i,'dvipdfm'))
unless pdffile == dpxfile then
begin
if data = File.read(pdffile) then
report("< #{File.basename(pdffile)} - pdf(e)tex")
n = 0
data = data.collect do |line|
if line =~ /^[\%\#]+/mo then
''
else
encoding = if line =~ /([a-z0-9\-]+)\.enc/io then $1 else '' end
fontfile = if line =~ /([a-z0-9\-]+)\.(pfb|ttf)/io then $1 else nil end
metrics = if line =~ /^([a-z0-9\-]+)[\s\<]+/io then $1 else nil end
slant = if line =~ /\"([\d\.]+)\s+SlantFont\"/io then "-s #{$1}" else '' end
if metrics && encoding && fontfile then
n += 1
"#{metrics} #{encoding} #{fontfile} #{slant}"
else
''
end
end
end
data.delete_if do |line|
line.gsub(/\s+/,'').empty?
end
begin
if force then
if n > 0 then
File.makedirs(File.dirname(dpxfile))
if f = File.open(dpxfile,'w') then
report("> #{File.basename(dpxfile)} - dvipdfm(x) - #{n}")
f.puts(data)
f.close
else
report("? #{File.basename(dpxfile)} - dvipdfm(x)")
end
else
report("- #{File.basename(dpxfile)} - dvipdfm(x)")
begin File.delete(dpxname) ; rescue ; end
end
else
report(". #{File.basename(dpxfile)} - dvipdfm(x) - #{n}")
end
rescue
report("error in saving dvipdfm file")
end
else
report("error in loading pdftex file")
end
rescue
report("error in processing pdftex file")
end
end
end
if force then
begin
report("regenerating database for #{texmfroot}")
system("mktexlsr #{texmfroot}")
rescue
end
end
else
report("no mapfiles found in #{maproot}")
end
else
report("provide proper texmfroot")
end
end
end
class Commands
include CommandBase
# usage : ctxtools --listentities entities.xml
# document: <!DOCTYPE something SYSTEM "entities.xml">
def flushentities(handle,entities,doctype=nil) # 'stylesheet'
tab = if doctype then "\t" else "" end
handle.puts("<!DOCTYPE #{doctype} [") if doctype
entities.keys.sort.each do |k|
handle.puts("#{tab}<!ENTITY #{k} \"\&\##{entities[k]};\">")
end
handle.puts("]>") if doctype
end
def listentities
# filename = `texmfstart tmftools.rb --progname=context enco-uc.tex`.chomp
filename = `kpsewhich --progname=context enco-uc.tex`.chomp
outputname = @commandline.argument('first')
if filename and not filename.empty? and FileTest.file?(filename) then
entities = Hash.new
IO.readlines(filename).each do |line|
if line =~ /\\definecharacter\s+([a-zA-Z]+)\s+\{\\uchar\{*(\d+)\}*\{(\d+)\}\}/o then
name, low, high = $1, $2.to_i, $3.to_i
entities[name] = low*256 + high
end
end
if outputname and not outputname.empty? then
if f = File.open(outputname,'w') then
flushentities(f,entities)
f.close
else
flushentities($stdout,entities)
end
else
flushentities($stdout,entities)
end
end
end
end
logger = Logger.new(banner.shift)
commandline = CommandLine.new
commandline.registeraction('touchcontextfile', 'update context version')
commandline.registeraction('contextversion', 'report context version')
commandline.registeraction('jeditinterface', 'generate jedit syntax files [--pipe]')
commandline.registeraction('bbeditinterface', 'generate bbedit syntax files [--pipe]')
commandline.registeraction('sciteinterface', 'generate scite syntax files [--pipe]')
commandline.registeraction('rawinterface', 'generate raw syntax files [--pipe]')
commandline.registeraction('translateinterface', 'generate interface files (xml) [nl de ..]')
commandline.registeraction('purgefiles', 'remove temporary files [--all --recurse] [basename]')
commandline.registeraction('documentation', 'generate documentation [--type=] [filename]')
commandline.registeraction('filterpages') # no help, hidden temporary feature
commandline.registeraction('purgeallfiles') # no help, compatibility feature
commandline.registeraction('patternfiles', 'generate pattern files [--all --xml --utf8] [languagecode]')
commandline.registeraction('dpxmapfiles', 'convert pdftex mapfiles to dvipdfmx [--force] [texmfroot]')
commandline.registeraction('listentities', 'create doctype entity definition from enco-uc.tex')
commandline.registervalue('type','')
commandline.registerflag('recurse')
commandline.registerflag('force')
commandline.registerflag('pipe')
commandline.registerflag('all')
commandline.registerflag('xml')
commandline.registerflag('log')
commandline.registerflag('utf8')
# general
commandline.registeraction('help')
commandline.registeraction('version')
commandline.expand
Commands.new(commandline,logger,banner).send(commandline.action || 'help')
|