summaryrefslogtreecommitdiff
path: root/Build/logs/svnlog
blob: 1d7b6b7b07f96e3cc8c7a3c0b2ffa333bc14554c (plain)
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
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
------------------------------------------------------------------------
r22065 | karl | 2011-04-13 04:20:01 +0200 (Wed, 13 Apr 2011) | 1 line

/home/texlive/karl/Master/tlpkg/bin/tl-update-auto

Changed paths:
   M /trunk/Build/source/build-aux/depcomp
   M /trunk/Build/source/extra/xz/build-aux/depcomp
   M /trunk/Build/source/libs/poppler/poppler-0.12.4/depcomp
   M /trunk/Master/doc.html
   M /trunk/Master/texmf/scripts/texlive/var/texcatalogue.keywords
------------------------------------------------------------------------
r22064 | karl | 2011-04-13 03:15:43 +0200 (Wed, 13 Apr 2011) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r22063 | karl | 2011-04-13 00:58:52 +0200 (Wed, 13 Apr 2011) | 1 line

toptesi (12apr11)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logoEPFL.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logopoliba.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logouniba.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logounibg.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logounibs.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logounige.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logounipi.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logounipmn.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logouniroma1.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logouniroma2.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logouniroma3.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logounisa.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logounito.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logounits.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/logouniur.eps
   M /trunk/Master/texmf-dist/doc/latex/toptesi/manifest.txt
   M /trunk/Master/texmf-dist/doc/latex/toptesi/toptesi-doc.pdf
   M /trunk/Master/texmf-dist/doc/latex/toptesi/toptesi-doc.tex
   M /trunk/Master/texmf-dist/doc/latex/toptesi/toptesi-example.pdf
   M /trunk/Master/texmf-dist/doc/latex/toptesi/toptesi-example.tex
   M /trunk/Master/texmf-dist/doc/latex/toptesi/toptesi.pdf
   M /trunk/Master/texmf-dist/source/latex/toptesi/toptesi.dtx
   M /trunk/Master/texmf-dist/tex/latex/toptesi/topcoman.sty
   M /trunk/Master/texmf-dist/tex/latex/toptesi/topfront.sty
   M /trunk/Master/texmf-dist/tex/latex/toptesi/toptesi.cls
   M /trunk/Master/texmf-dist/tex/latex/toptesi/toptesi.sty
------------------------------------------------------------------------
r22062 | karl | 2011-04-13 00:58:27 +0200 (Wed, 13 Apr 2011) | 1 line

cmpj (12apr11)

Changed paths:
   A /trunk/Master/texmf-dist/bibtex/bst/cmpj
   A /trunk/Master/texmf-dist/bibtex/bst/cmpj/cmpj.bst
   A /trunk/Master/texmf-dist/doc/latex/cmpj
   A /trunk/Master/texmf-dist/doc/latex/cmpj/README
   A /trunk/Master/texmf-dist/doc/latex/cmpj/cmp-logo.eps
   A /trunk/Master/texmf-dist/doc/latex/cmpj/cmp-logo.pdf
   A /trunk/Master/texmf-dist/doc/latex/cmpj/usrguide
   A /trunk/Master/texmf-dist/doc/latex/cmpj/usrguide/eps_demo.eps
   A /trunk/Master/texmf-dist/doc/latex/cmpj/usrguide/eps_demo.pdf
   A /trunk/Master/texmf-dist/doc/latex/cmpj/usrguide/icmphome.eps
   A /trunk/Master/texmf-dist/doc/latex/cmpj/usrguide/icmphome.pdf
   A /trunk/Master/texmf-dist/doc/latex/cmpj/usrguide/mybibdb.bib
   A /trunk/Master/texmf-dist/doc/latex/cmpj/usrguide/template.pdf
   A /trunk/Master/texmf-dist/doc/latex/cmpj/usrguide/template.ps
   A /trunk/Master/texmf-dist/doc/latex/cmpj/usrguide/template.tex
   A /trunk/Master/texmf-dist/tex/latex/cmpj
   A /trunk/Master/texmf-dist/tex/latex/cmpj/cmpj.sty
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   A /trunk/Master/tlpkg/tlpsrc/cmpj.tlpsrc
   M /trunk/Master/tlpkg/tlpsrc/collection-publishers.tlpsrc
------------------------------------------------------------------------
r22061 | karl | 2011-04-13 00:56:39 +0200 (Wed, 13 Apr 2011) | 1 line

oberdiek (12apr11)

Changed paths:
   A /trunk/Master/texmf-dist/bibtex/oberdiek
   A /trunk/Master/texmf-dist/bibtex/oberdiek/oberdiek-bundle.bib
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/accsupp.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/aliascnt.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/alphalph.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/askinclude.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/atbegshi-example1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/atbegshi-example2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/atbegshi.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/atenddvi.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/attachfile2.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/atveryend.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/auxhook.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/bigintcalc.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/bitset.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/bmpsize.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/bookmark-example.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/bookmark.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/catchfile.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/centernot.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/chemarr.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/classlist.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/colonequals.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/dvipscol.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/embedfile-example-collection.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/embedfile-example-plain.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/embedfile.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/engord.pdf
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/eolgrab.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/epstopdf.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/etexcmds.pdf
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/example
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/example/eolgrab-example-env.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/example/eolgrab-example-ltx.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/example/eolgrab-example-sec.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/example-mycolorsetup.sty
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/flags.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/gettitlestring.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/grfext.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/grffile.pdf
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/hobsub.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/hologo.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/holtxdoc.pdf
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/hopatch.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/hycolor.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/hypbmsec.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/hypcap.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/hypdestopt.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/hypdoc.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/hypgotoe.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/hyphsubst.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/ifdraft.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/iflang.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/ifluatex.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/ifpdf.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/ifvtex.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/infwarerr.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/inputenx-licrcmds.txt
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/inputenx-utf8enc.txt
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/inputenx.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/intcalc.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/kvdefinekeys.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/kvoptions.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/kvsetkeys-example.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/kvsetkeys.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/letltxmacro-showcases.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/letltxmacro.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/listingsutf8.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/ltxcmds.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/luacolor.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/luatex.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/magicnum.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/makerobust.pdf
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/mleftright.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/oberdiek.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/pagegrid.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/pagesel.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/pdfcol.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/pdfcolfoot.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/pdfcolmk.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/pdfcolparallel.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/pdfcolparcolumns.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/pdfcrypt.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/pdfescape.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/pdflscape.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/pdfrender.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/pdftexcmds.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/picture.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/pmboxdraw.pdf
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/protecteddef.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/refcount.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/rerunfilecheck.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/resizegather.pdf
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/rotchiffre.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/scrindex.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/selinput.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/setouterhbox.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/settobox.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/soulutf8.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/stackrel.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/stampinclude.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/stringenc.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/tabularht.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/tabularkv.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/telprint.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/alphalph-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-a.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-b.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-c.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test10.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test11.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test12.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test13.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test14.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test15.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test16.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test17.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test18.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test19.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test20.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test21.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test22.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test23.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test24.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test3.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test4.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test5.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test6.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test7.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test8.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/askinclude-test9.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/atbegshi-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/atbegshi-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/atbegshi-test3.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/atveryend-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/bigintcalc-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/bigintcalc-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/bigintcalc-test3.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/bitset-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/bitset-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/bitset-test3.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/catchfile-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/catchfile-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/catchfile-test3.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/embedfile-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/embedfile-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/embedfile-test3.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/embedfile-test4.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/engord-test1.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/eolgrab-test1.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/eolgrab-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/epstopdf-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/etexcmds-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/etexcmds-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/etexcmds-test3.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/etexcmds-test4.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/gettitlestring-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/gettitlestring-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/grfext-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/grfext-test2.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/hobsub-test1.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/hopatch-test1.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/hopatch-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/hycolor-test-xcol1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/hycolor-test-xcol2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/hycolor-test-xcol3.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/hycolor-test-xcol4.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/hycolor-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/hycolor-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/hycolor-test3.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/hyphsubst-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/iflang-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/ifluatex-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/ifpdf-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/ifvtex-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/infwarerr-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/intcalc-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/kvdefinekeys-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/kvoptions-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/kvoptions-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/kvoptions-test3.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/kvoptions-test4.sty
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/kvoptions-test4.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/kvsetkeys-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/kvsetkeys-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/kvsetkeys-test3.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/letltxmacro-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/letltxmacro-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/ltxcmds-test-gobble.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/ltxcmds-test-ifboxempty.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/ltxcmds-test-ifempty.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/ltxcmds-test-zapspace.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/ltxcmds-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/luacolor-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/luacolor-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/luacolor-test3.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/luatex-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/luatex-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/luatex-test3.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/luatex-test4.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/magicnum-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/magicnum-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/magicnum-test3.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/magicnum-test4.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/mleftright-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/pagegrid-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/pdfcol-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/pdfescape-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/pdfescape-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/pdfescape-test3.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/pdfescape-test4.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/pdfescape-test5.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/pdfescape-test6.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/pdfrender-test1.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/pdftexcmds-test-escape.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/pdftexcmds-test-shell.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/pdftexcmds-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/pdftexcmds-test2.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/pmboxdraw-test1.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/protecteddef-test1.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/protecteddef-test2.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/refcount-test1.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/refcount-test2.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/refcount-test3.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/refcount-test4.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/rerunfilecheck-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/resizegather-test1.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/rotchiffre-test1.tex
   A /trunk/Master/texmf-dist/doc/latex/oberdiek/test/rotchiffre-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/setouterhbox-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/soulutf8-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/telprint-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/uniquecounter-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/uniquecounter-test2.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/uniquecounter-test3.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/zref-test-base.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/zref-test-runs.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/zref-test-titleref-memoir.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/test/zref-test1.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/transparent.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/twoopt.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/uniquecounter-example.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/uniquecounter.pdf
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/zref-example-lastpage.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/zref-example-nextpage.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/zref-example.tex
   M /trunk/Master/texmf-dist/doc/latex/oberdiek/zref.pdf
   A /trunk/Master/texmf-dist/scripts/oberdiek/luacolor-pre065.lua
   M /trunk/Master/texmf-dist/scripts/oberdiek/luacolor.lua
   M /trunk/Master/texmf-dist/scripts/oberdiek/magicnum.lua
   A /trunk/Master/texmf-dist/scripts/oberdiek/oberdiek.luacolor-pre065.lua
   M /trunk/Master/texmf-dist/scripts/oberdiek/oberdiek.luacolor.lua
   M /trunk/Master/texmf-dist/scripts/oberdiek/oberdiek.magicnum.lua
   M /trunk/Master/texmf-dist/scripts/oberdiek/oberdiek.pdftexcmds.lua
   M /trunk/Master/texmf-dist/scripts/oberdiek/pdfatfi.pl
   M /trunk/Master/texmf-dist/scripts/oberdiek/pdftexcmds.lua
   M /trunk/Master/texmf-dist/source/latex/oberdiek/accsupp.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/alphalph.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/askinclude.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/atbegshi.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/attachfile2.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/atveryend.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/auxhook.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/bigintcalc.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/bitset.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/bookmark.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/catchfile.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/embedfile.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/engord.dtx
   A /trunk/Master/texmf-dist/source/latex/oberdiek/eolgrab.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/epstopdf.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/etexcmds.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/gettitlestring.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/grfext.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/grffile.dtx
   A /trunk/Master/texmf-dist/source/latex/oberdiek/hobsub.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/hologo.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/holtxdoc.dtx
   A /trunk/Master/texmf-dist/source/latex/oberdiek/hopatch.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/hycolor.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/hypcap.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/hyphsubst.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/iflang.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/ifluatex.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/ifpdf.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/ifvtex.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/infwarerr.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/inputenx.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/intcalc.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/kvdefinekeys.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/kvoptions.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/kvsetkeys.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/letltxmacro.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/listingsutf8.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/ltxcmds.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/luacolor.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/luatex.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/magicnum.dtx
   A /trunk/Master/texmf-dist/source/latex/oberdiek/mleftright.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/oberdiek.ins
   M /trunk/Master/texmf-dist/source/latex/oberdiek/oberdiek.tex
   M /trunk/Master/texmf-dist/source/latex/oberdiek/pagegrid.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/pdfcol.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/pdfescape.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/pdfrender.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/pdftexcmds.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/pmboxdraw.dtx
   A /trunk/Master/texmf-dist/source/latex/oberdiek/protecteddef.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/readme-ctan.txt
   M /trunk/Master/texmf-dist/source/latex/oberdiek/refcount.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/rerunfilecheck.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/resizegather.dtx
   A /trunk/Master/texmf-dist/source/latex/oberdiek/rotchiffre.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/setouterhbox.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/soulutf8.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/stringenc.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/telprint.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/uniquecounter.dtx
   M /trunk/Master/texmf-dist/source/latex/oberdiek/zref.dtx
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/alphalph.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/atbegshi.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/bigintcalc.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/bitset.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/catchfile.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/embedfile.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/engord.sty
   A /trunk/Master/texmf-dist/tex/generic/oberdiek/eolgrab.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/etexcmds.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
   A /trunk/Master/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
   A /trunk/Master/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
   A /trunk/Master/texmf-dist/tex/generic/oberdiek/hobsub.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/hologo-test-spacefactor.tex
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/hologo-test1.tex
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/hologo.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/hyphsubst.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/iflang.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/ifluatex.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/ifpdf.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/ifvtex.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/infwarerr.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/intcalc.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/luatex-loader.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/luatex.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/magicnum.sty
   A /trunk/Master/texmf-dist/tex/generic/oberdiek/mleftright.sty
   D /trunk/Master/texmf-dist/tex/generic/oberdiek/pagegrid.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/pdfcol.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/pdfescape.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/pdfrender.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
   A /trunk/Master/texmf-dist/tex/generic/oberdiek/protecteddef.sty
   A /trunk/Master/texmf-dist/tex/generic/oberdiek/rotchiffre.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/setouterhbox.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/soulutf8.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/stringenc.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/telprint.sty
   M /trunk/Master/texmf-dist/tex/generic/oberdiek/uniquecounter.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/accsupp.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/askinclude.sty
   A /trunk/Master/texmf-dist/tex/latex/oberdiek/atfi-dvipdfmx.def
   A /trunk/Master/texmf-dist/tex/latex/oberdiek/atfi-dvips.def
   A /trunk/Master/texmf-dist/tex/latex/oberdiek/atfi-pdftex.def
   D /trunk/Master/texmf-dist/tex/latex/oberdiek/atfidvips.def
   D /trunk/Master/texmf-dist/tex/latex/oberdiek/atfipdftex.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/attachfile2.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/atveryend.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/auxhook.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/bkm-dvipdfm.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/bkm-dvips.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/bkm-dvipsone.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/bkm-pdftex.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/bkm-textures.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/bkm-vtex.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/bookmark.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/dtx-attach.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/epstopdf.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/grfext.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/grffile.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/holtxdoc.sty
   A /trunk/Master/texmf-dist/tex/latex/oberdiek/hopatch.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/hycolor.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/hypcap.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/inputenx.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/ix-alias.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/ix-math.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/ix-name.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/ix-slot.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/ix-uc.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/ix-utf8enc.dfu
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/kvoptions-patch.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/kvoptions.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/letltxmacro.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/listingsutf8.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/luacolor.sty
   A /trunk/Master/texmf-dist/tex/latex/oberdiek/pagegrid.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/pmboxdraw.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/pmboxdrawenc.dfu
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/refcount.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/resizegather.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-ascii.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-atarist.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-cp1250.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-cp1251.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-cp1252.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-cp1257.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-cp437.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-cp850.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-cp852.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-cp855.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-cp858.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-cp865.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-cp866.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-dec-mcs.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-iso-8859-1.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-iso-8859-10.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-iso-8859-13.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-iso-8859-14.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-iso-8859-15.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-iso-8859-16.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-iso-8859-2.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-iso-8859-3.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-iso-8859-4.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-iso-8859-5.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-iso-8859-8.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-iso-8859-9.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-koi8-r.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-mac-centeuro.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-mac-cyrillic.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-mac-roman.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/x-nextstep.def
   A /trunk/Master/texmf-dist/tex/latex/oberdiek/x-verbatim.def
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/xcolor-patch.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-abspage.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-abspos.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-base.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-counter.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-dotfill.sty
   A /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-env.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-hyperref.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-lastpage.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-marks.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-nextpage.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-pageattr.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-pagelayout.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-perpage.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-runs.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-savepos.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-thepage.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-titleref.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-totpages.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-user.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref-xr.sty
   M /trunk/Master/texmf-dist/tex/latex/oberdiek/zref.sty
------------------------------------------------------------------------
r22060 | peter | 2011-04-12 19:19:46 +0200 (Tue, 12 Apr 2011) | 1 line

Allow to build luaTeX with libpng-1.5.x

Changed paths:
   M /trunk/Build/source/auxdir/auxsub/aclocal.m4
   M /trunk/Build/source/auxdir/auxsub/configure
   M /trunk/Build/source/configure
   M /trunk/Build/source/libs/configure
   M /trunk/Build/source/libs/freetype/aclocal.m4
   M /trunk/Build/source/libs/freetype/configure
   M /trunk/Build/source/libs/freetype2/configure
   M /trunk/Build/source/libs/gd/configure
   M /trunk/Build/source/libs/graphite/aclocal.m4
   M /trunk/Build/source/libs/graphite/configure
   M /trunk/Build/source/libs/icu/configure
   M /trunk/Build/source/libs/libpng/configure
   M /trunk/Build/source/libs/obsdcompat/aclocal.m4
   M /trunk/Build/source/libs/obsdcompat/configure
   M /trunk/Build/source/libs/poppler/configure
   M /trunk/Build/source/libs/t1lib/aclocal.m4
   M /trunk/Build/source/libs/t1lib/configure
   M /trunk/Build/source/libs/teckit/configure
   M /trunk/Build/source/libs/xpdf/aclocal.m4
   M /trunk/Build/source/libs/xpdf/configure
   M /trunk/Build/source/libs/zlib/configure
   M /trunk/Build/source/libs/zziplib/configure
   M /trunk/Build/source/tardate.ac
   M /trunk/Build/source/texk/afm2pl/configure
   M /trunk/Build/source/texk/bibtex8/configure
   M /trunk/Build/source/texk/bibtexu/configure
   M /trunk/Build/source/texk/cjkutils/configure
   M /trunk/Build/source/texk/configure
   M /trunk/Build/source/texk/detex/configure
   M /trunk/Build/source/texk/devnag/configure
   M /trunk/Build/source/texk/dtl/configure
   M /trunk/Build/source/texk/dvi2tty/configure
   M /trunk/Build/source/texk/dvidvi/configure
   M /trunk/Build/source/texk/dviljk/configure
   M /trunk/Build/source/texk/dvipdfmx/configure
   M /trunk/Build/source/texk/dvipng/configure
   M /trunk/Build/source/texk/dvipos/configure
   M /trunk/Build/source/texk/dvipsk/configure
   M /trunk/Build/source/texk/dvipsk/squeeze/configure
   M /trunk/Build/source/texk/dvisvgm/configure
   M /trunk/Build/source/texk/gsftopk/configure
   M /trunk/Build/source/texk/kpathsea/configure
   M /trunk/Build/source/texk/lacheck/configure
   M /trunk/Build/source/texk/lcdf-typetools/configure
   M /trunk/Build/source/texk/makeindexk/configure
   M /trunk/Build/source/texk/makejvf/configure
   M /trunk/Build/source/texk/mendexk/configure
   M /trunk/Build/source/texk/musixflx/configure
   M /trunk/Build/source/texk/ps2pkm/configure
   M /trunk/Build/source/texk/ptexenc/configure
   M /trunk/Build/source/texk/seetexk/configure
   M /trunk/Build/source/texk/tetex/configure
   M /trunk/Build/source/texk/tex4htk/configure
   M /trunk/Build/source/texk/texlive/configure
   M /trunk/Build/source/texk/ttf2pk/configure
   M /trunk/Build/source/texk/ttfdump/ChangeLog
   M /trunk/Build/source/texk/ttfdump/configure
   M /trunk/Build/source/texk/web2c/aclocal.m4
   M /trunk/Build/source/texk/web2c/configure
   M /trunk/Build/source/texk/web2c/luatexdir/ChangeLog
   M /trunk/Build/source/texk/web2c/luatexdir/image/writepng.w
   M /trunk/Build/source/texk/web2c/web2c/configure
   M /trunk/Build/source/texk/xdv2pdf/configure
   M /trunk/Build/source/texk/xdvik/configure
   M /trunk/Build/source/texk/xdvik/squeeze/configure
   M /trunk/Build/source/texk/xdvipdfmx/configure
   M /trunk/Build/source/utils/biber/configure
   M /trunk/Build/source/utils/chktex/configure
   M /trunk/Build/source/utils/configure
   M /trunk/Build/source/utils/dialog/configure
   M /trunk/Build/source/utils/ps2eps/configure
   M /trunk/Build/source/utils/psutils/configure
   M /trunk/Build/source/utils/t1utils/aclocal.m4
   M /trunk/Build/source/utils/t1utils/configure
   M /trunk/Build/source/utils/tpic2pdftex/configure
   M /trunk/Build/source/utils/vlna/aclocal.m4
   M /trunk/Build/source/utils/vlna/configure
   M /trunk/Build/source/utils/xindy/configure
   M /trunk/Build/source/utils/xpdfopen/aclocal.m4
   M /trunk/Build/source/utils/xpdfopen/configure
------------------------------------------------------------------------
r22059 | thoekwater | 2011-04-12 16:17:47 +0200 (Tue, 12 Apr 2011) | 2 lines

check in luatex 0.66.0


Changed paths:
   M /trunk/Build/source/Makefile.in
   M /trunk/Build/source/aclocal.m4
   M /trunk/Build/source/auxdir/auxsub/aclocal.m4
   M /trunk/Build/source/auxdir/auxsub/configure
   M /trunk/Build/source/configure
   M /trunk/Build/source/libs/Makefile.in
   M /trunk/Build/source/libs/README
   M /trunk/Build/source/libs/aclocal.m4
   M /trunk/Build/source/libs/configure
   M /trunk/Build/source/libs/freetype/aclocal.m4
   M /trunk/Build/source/libs/freetype/configure
   M /trunk/Build/source/libs/freetype2/configure
   M /trunk/Build/source/libs/gd/configure
   M /trunk/Build/source/libs/graphite/aclocal.m4
   M /trunk/Build/source/libs/graphite/configure
   M /trunk/Build/source/libs/icu/configure
   M /trunk/Build/source/libs/libpng/configure
   M /trunk/Build/source/libs/obsdcompat/aclocal.m4
   M /trunk/Build/source/libs/obsdcompat/configure
   A /trunk/Build/source/libs/poppler
   A /trunk/Build/source/libs/poppler/Makefile.am
   A /trunk/Build/source/libs/poppler/Makefile.in
   A /trunk/Build/source/libs/poppler/ac
   A /trunk/Build/source/libs/poppler/ac/poppler.ac
   A /trunk/Build/source/libs/poppler/ac/withenable.ac
   A /trunk/Build/source/libs/poppler/aclocal.m4
   A /trunk/Build/source/libs/poppler/aconf.h.in
   A /trunk/Build/source/libs/poppler/configure
   A /trunk/Build/source/libs/poppler/configure.ac
   A /trunk/Build/source/libs/poppler/fofi
   A /trunk/Build/source/libs/poppler/fofi/Makefile.am
   A /trunk/Build/source/libs/poppler/fofi/Makefile.in
   A /trunk/Build/source/libs/poppler/goo
   A /trunk/Build/source/libs/poppler/goo/Makefile.am
   A /trunk/Build/source/libs/poppler/goo/Makefile.in
   A /trunk/Build/source/libs/poppler/hdrs.am
   A /trunk/Build/source/libs/poppler/poppler
   A /trunk/Build/source/libs/poppler/poppler/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/AUTHORS
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/CMakeLists.txt
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/COPYING
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/ChangeLog
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/ConfigureChecks.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/INSTALL
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/NEWS
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/README
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/README-XPDF
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/TODO
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/aclocal.m4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules/COPYING-CMAKE-SCRIPTS
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules/FindCairo.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules/FindFontconfig.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules/FindGTK.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules/FindLCMS.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules/FindLIBOPENJPEG.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules/FindQt3.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules/FindQt4.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules/MacroBoolTo01.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules/MacroEnsureVersion.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules/MacroOptionalFindPackage.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules/MacroPushRequiredVars.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules/PopplerDefaults.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/cmake/modules/PopplerMacros.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/config.guess
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/config.h.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/config.h.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/config.sub
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/configure
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/configure.ac
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/depcomp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/fofi
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/fofi/FoFiBase.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/fofi/FoFiBase.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/fofi/FoFiEncodings.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/fofi/FoFiEncodings.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/fofi/FoFiTrueType.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/fofi/FoFiTrueType.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/fofi/FoFiType1.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/fofi/FoFiType1.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/fofi/FoFiType1C.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/fofi/FoFiType1C.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/fofi/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/fofi/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/CMakeLists.txt
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/CMakeLists.txt
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/annots.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/annots.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/attachments.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/attachments.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/find.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/find.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/fonts.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/fonts.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/forms.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/forms.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/images.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/images.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/info.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/info.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/layers.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/layers.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/links.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/links.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/main.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/outline.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/outline.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/page.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/page.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/render.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/render.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/text.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/text.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/transitions.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/transitions.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/utils.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/demo/utils.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-action.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-action.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-annot.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-annot.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-attachment.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-attachment.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-date.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-date.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-document.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-document.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-enums.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-enums.c.template
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-enums.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-enums.h.template
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-features.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-features.h.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-features.h.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-form-field.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-form-field.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-layer.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-layer.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-page.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-page.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler-private.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/poppler.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/ch01.html
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/home.png
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/index.html
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/index.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/left.png
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/poppler-poppler-action.html
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/poppler-poppler-annot.html
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/poppler-poppler-attachment.html
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/poppler-poppler-document.html
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/poppler-poppler-enums.html
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/poppler-poppler-features.html
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/poppler-poppler-form-field.html
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/poppler-poppler-layer.html
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/poppler-poppler-page.html
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/poppler-poppler.html
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/poppler.devhelp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/poppler.devhelp2
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/right.png
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/style.css
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/html/up.png
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/poppler-docs.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/poppler-overrides.txt
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/poppler-sections.txt
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/poppler.types
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl/poppler-action.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl/poppler-annot.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl/poppler-attachment.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl/poppler-attachment.sgml.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl/poppler-document.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl/poppler-enums.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl/poppler-features.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl/poppler-form-field.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl/poppler-layer.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl/poppler-page.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl/poppler-private.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl/poppler-unused.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl/poppler.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/tmpl/stamp-poppler-enums.sgml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/xml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/xml/api-index-deprecated.xml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/xml/api-index-full.xml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/xml/poppler-action.xml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/xml/poppler-annot.xml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/xml/poppler-attachment.xml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/xml/poppler-document.xml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/xml/poppler-enums.xml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/xml/poppler-features.xml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/xml/poppler-form-field.xml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/xml/poppler-layer.xml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/xml/poppler-page.xml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/xml/poppler-private.xml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/reference/xml/poppler.xml
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/glib/test-poppler-glib.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/FixedPoint.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/FixedPoint.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/GooHash.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/GooHash.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/GooList.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/GooList.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/GooMutex.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/GooString.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/GooString.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/GooTimer.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/GooTimer.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/GooVector.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/PNGWriter.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/PNGWriter.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/gfile.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/gfile.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/gmem.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/gmem.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/gmempp.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/gstrtod.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/gstrtod.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/goo/gtypes.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/gtk-doc.make
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/install-sh
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/ltmain.sh
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/m4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/m4/acx_pthread.m4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/m4/define-dir.m4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/m4/gtk-doc.m4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/m4/libjpeg.m4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/m4/libpng.m4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/m4/libtool.m4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/m4/ltoptions.m4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/m4/ltsugar.m4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/m4/ltversion.m4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/m4/lt~obsolete.m4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/m4/qt.m4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/missing
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/ABWOutputDev.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/ABWOutputDev.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Annot.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Annot.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Array.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Array.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/ArthurOutputDev.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/ArthurOutputDev.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/BuiltinFont.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/BuiltinFont.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/BuiltinFontTables.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/BuiltinFontTables.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/CMap.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/CMap.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/CairoFontEngine.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/CairoFontEngine.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/CairoOutputDev.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/CairoOutputDev.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Catalog.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Catalog.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/CharCodeToUnicode.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/CharCodeToUnicode.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/CharTypes.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/CompactFontTables.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/DCTStream.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/DCTStream.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/DateInfo.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/DateInfo.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Decrypt.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Decrypt.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Dict.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Dict.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Error.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Error.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/ErrorCodes.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/FileSpec.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/FileSpec.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/FlateStream.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/FlateStream.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/FontEncodingTables.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/FontEncodingTables.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/FontInfo.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/FontInfo.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Form.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Form.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Function.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Function.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Gfx.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Gfx.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/GfxFont.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/GfxFont.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/GfxState.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/GfxState.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/GfxState_helpers.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/GlobalParams.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/GlobalParams.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/GlobalParamsWin.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/JArithmeticDecoder.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/JArithmeticDecoder.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/JBIG2Stream.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/JBIG2Stream.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/JPEG2000Stream.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/JPEG2000Stream.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/JPXStream.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/JPXStream.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Lexer.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Lexer.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Link.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Link.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Movie.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Movie.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/NameToCharCode.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/NameToCharCode.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/NameToUnicodeTable.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Object.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Object.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/OptionalContent.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/OptionalContent.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Outline.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Outline.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/OutputDev.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/OutputDev.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PDFDoc.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PDFDoc.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PDFDocEncoding.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PDFDocEncoding.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PSOutputDev.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PSOutputDev.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PSTokenizer.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PSTokenizer.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Page.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Page.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PageLabelInfo.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PageLabelInfo.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PageTransition.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PageTransition.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Parser.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Parser.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PopplerCache.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PopplerCache.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PreScanOutputDev.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/PreScanOutputDev.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/ProfileData.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/ProfileData.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/SecurityHandler.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/SecurityHandler.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Sound.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Sound.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/SplashOutputDev.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/SplashOutputDev.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Stream-CCITT.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Stream.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/Stream.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/TextOutputDev.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/TextOutputDev.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/UTF8.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/UnicodeCClassTables.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/UnicodeCompTables.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/UnicodeDecompTables.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/UnicodeMap.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/UnicodeMap.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/UnicodeMapTables.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/UnicodeTypeTable.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/UnicodeTypeTable.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/XRef.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/XRef.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/XpdfPluginAPI.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/XpdfPluginAPI.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/gen-unicode-tables.py
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/poppler-config.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler/poppler-config.h.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler-cairo.pc.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler-cairo.pc.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler-config.h.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler-glib.pc.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler-glib.pc.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler-qt.pc.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler-qt.pc.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler-qt4.pc.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler-qt4.pc.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler-splash.pc.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler-splash.pc.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler.pc.cmake
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/poppler.pc.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/CMakeLists.txt
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/poppler-document.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/poppler-fontinfo.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/poppler-link-qt3.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/poppler-link.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/poppler-page-transition-private.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/poppler-page-transition.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/poppler-page-transition.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/poppler-page.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/poppler-private.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/poppler-private.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/poppler-qt.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt/test-poppler-qt.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/CMakeLists.txt
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/CMakeLists.txt
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/abstractinfodock.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/abstractinfodock.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/documentobserver.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/documentobserver.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/embeddedfiles.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/embeddedfiles.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/fonts.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/fonts.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/info.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/info.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/main_viewer.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/metadata.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/metadata.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/navigationtoolbar.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/navigationtoolbar.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/optcontent.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/optcontent.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/pageview.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/pageview.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/permissions.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/permissions.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/thumbnails.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/thumbnails.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/toc.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/toc.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/viewer.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/demos/viewer.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/CMakeLists.txt
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-annotation-helper.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-annotation-private.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-annotation.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-annotation.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-base-converter.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-converter-private.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-document.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-embeddedfile.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-export.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-fontinfo.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-form.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-form.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-link-extractor-private.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-link-extractor.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-link.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-link.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-movie.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-optcontent-private.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-optcontent.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-optcontent.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-page-private.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-page-transition-private.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-page-transition.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-page-transition.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-page.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-pdf-converter.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-private.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-private.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-ps-converter.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-qiodeviceoutstream-private.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-qiodeviceoutstream.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-qt4.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-sound.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/src/poppler-textbox.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/CMakeLists.txt
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/check_actualtext.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/check_attachments.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/check_dateConversion.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/check_fonts.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/check_links.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/check_metadata.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/check_optcontent.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/check_pagelayout.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/check_pagemode.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/check_password.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/check_permissions.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/check_search.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/poppler-attachments.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/poppler-fonts.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/stress-poppler-dir.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/stress-poppler-qt4.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/test-password-qt4.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/qt4/tests/test-poppler-qt4.cpp
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/Splash.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/Splash.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashBitmap.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashBitmap.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashClip.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashClip.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashErrorCodes.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashFTFont.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashFTFont.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashFTFontEngine.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashFTFontEngine.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashFTFontFile.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashFTFontFile.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashFont.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashFont.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashFontEngine.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashFontEngine.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashFontFile.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashFontFile.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashFontFileID.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashFontFileID.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashGlyphBitmap.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashMath.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashPath.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashPath.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashPattern.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashPattern.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashScreen.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashScreen.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashState.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashState.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashT1Font.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashT1Font.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashT1FontEngine.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashT1FontEngine.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashT1FontFile.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashT1FontFile.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashTypes.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashXPath.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashXPath.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashXPathScanner.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/splash/SplashXPathScanner.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/test
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/test/CMakeLists.txt
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/test/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/test/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/test/gtk-cairo-test.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/test/gtk-splash-test.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/test/pdf-fullrewrite.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/test/pdf-inspector.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/test/pdf-inspector.ui
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/test/pdf-operators.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/test/perf-test-preview-dummy.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/test/perf-test.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/CMakeLists.txt
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/HtmlFonts.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/HtmlFonts.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/HtmlLinks.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/HtmlLinks.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/HtmlOutputDev.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/HtmlOutputDev.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/ImageOutputDev.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/ImageOutputDev.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/Makefile.am
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/Makefile.in
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/parseargs.c
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/parseargs.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdf2xml.dtd
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdffonts.1
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdffonts.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdfimages.1
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdfimages.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdfinfo.1
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdfinfo.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdftoabw.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdftohtml.1
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdftohtml.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdftoppm.1
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdftoppm.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdftops.1
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdftops.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdftotext.1
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/pdftotext.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/printencodings.cc
   A /trunk/Build/source/libs/poppler/poppler-0.12.4/utils/printencodings.h
   A /trunk/Build/source/libs/poppler/poppler-0.12.4-PATCH1
   M /trunk/Build/source/libs/t1lib/aclocal.m4
   M /trunk/Build/source/libs/t1lib/configure
   M /trunk/Build/source/libs/teckit/configure
   M /trunk/Build/source/libs/xpdf/aclocal.m4
   M /trunk/Build/source/libs/xpdf/configure
   M /trunk/Build/source/libs/zlib/configure
   M /trunk/Build/source/libs/zziplib/configure
   M /trunk/Build/source/m4/kpse-pkgs.m4
   A /trunk/Build/source/m4/kpse-poppler-flags.m4
   M /trunk/Build/source/texk/Makefile.in
   M /trunk/Build/source/texk/aclocal.m4
   M /trunk/Build/source/texk/afm2pl/configure
   M /trunk/Build/source/texk/bibtex8/configure
   M /trunk/Build/source/texk/bibtexu/configure
   M /trunk/Build/source/texk/cjkutils/configure
   M /trunk/Build/source/texk/configure
   M /trunk/Build/source/texk/detex/configure
   M /trunk/Build/source/texk/devnag/configure
   M /trunk/Build/source/texk/dtl/configure
   M /trunk/Build/source/texk/dvi2tty/configure
   M /trunk/Build/source/texk/dvidvi/configure
   M /trunk/Build/source/texk/dviljk/configure
   M /trunk/Build/source/texk/dvipdfmx/configure
   M /trunk/Build/source/texk/dvipng/configure
   M /trunk/Build/source/texk/dvipos/configure
   M /trunk/Build/source/texk/dvipsk/configure
   M /trunk/Build/source/texk/dvipsk/squeeze/configure
   M /trunk/Build/source/texk/dvisvgm/configure
   M /trunk/Build/source/texk/gsftopk/configure
   M /trunk/Build/source/texk/kpathsea/configure
   M /trunk/Build/source/texk/lacheck/configure
   M /trunk/Build/source/texk/lcdf-typetools/configure
   M /trunk/Build/source/texk/makeindexk/configure
   M /trunk/Build/source/texk/makejvf/configure
   M /trunk/Build/source/texk/mendexk/configure
   M /trunk/Build/source/texk/musixflx/configure
   M /trunk/Build/source/texk/ps2pkm/configure
   M /trunk/Build/source/texk/ptexenc/configure
   M /trunk/Build/source/texk/seetexk/configure
   M /trunk/Build/source/texk/tetex/configure
   M /trunk/Build/source/texk/tex4htk/configure
   M /trunk/Build/source/texk/texlive/configure
   M /trunk/Build/source/texk/ttf2pk/configure
   M /trunk/Build/source/texk/ttfdump/configure
   M /trunk/Build/source/texk/web2c/Makefile.am
   M /trunk/Build/source/texk/web2c/Makefile.in
   M /trunk/Build/source/texk/web2c/ac/web2c.ac
   M /trunk/Build/source/texk/web2c/aclocal.m4
   M /trunk/Build/source/texk/web2c/configure
   M /trunk/Build/source/texk/web2c/configure.ac
   M /trunk/Build/source/texk/web2c/doc/Makefile.in
   M /trunk/Build/source/texk/web2c/lib/Makefile.in
   M /trunk/Build/source/texk/web2c/luatexdir/ChangeLog
   M /trunk/Build/source/texk/web2c/luatexdir/NEWS
   M /trunk/Build/source/texk/web2c/luatexdir/am/liblua51.am
   M /trunk/Build/source/texk/web2c/luatexdir/am/libluatex.am
   M /trunk/Build/source/texk/web2c/luatexdir/am/luafontforge.am
   M /trunk/Build/source/texk/web2c/luatexdir/am/luamisc.am
   M /trunk/Build/source/texk/web2c/luatexdir/am/luasocket.am
   M /trunk/Build/source/texk/web2c/luatexdir/am/luatex.am
   A /trunk/Build/source/texk/web2c/luatexdir/am/txt2zlib.am
   M /trunk/Build/source/texk/web2c/luatexdir/dvi/dvigen.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/dofont.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/luafont.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/luatexfont.h
   M /trunk/Build/source/texk/web2c/luatexdir/font/mapfile.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/pkin.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/sfnt.h
   M /trunk/Build/source/texk/web2c/luatexdir/font/sfnt.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/subfont.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/texfont.h
   M /trunk/Build/source/texk/web2c/luatexdir/font/texfont.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/tfmofm.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/tounicode.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/tt_glyf.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/tt_table.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/vfovf.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/vfpacket.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/writecff.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/writeenc.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/writefont.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/writet1.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/writet3.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/writettf.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/writetype0.w
   M /trunk/Build/source/texk/web2c/luatexdir/font/writetype2.w
   M /trunk/Build/source/texk/web2c/luatexdir/image/epdf.h
   M /trunk/Build/source/texk/web2c/luatexdir/image/image.h
   M /trunk/Build/source/texk/web2c/luatexdir/image/pdftoepdf.cc
   M /trunk/Build/source/texk/web2c/luatexdir/image/writeimg.w
   M /trunk/Build/source/texk/web2c/luatexdir/image/writejbig2.h
   M /trunk/Build/source/texk/web2c/luatexdir/image/writejbig2.w
   A /trunk/Build/source/texk/web2c/luatexdir/image/writejp2.h
   A /trunk/Build/source/texk/web2c/luatexdir/image/writejp2.w
   M /trunk/Build/source/texk/web2c/luatexdir/image/writejpg.w
   M /trunk/Build/source/texk/web2c/luatexdir/image/writepng.w
   M /trunk/Build/source/texk/web2c/luatexdir/lang/hyphen.w
   M /trunk/Build/source/texk/web2c/luatexdir/lang/texlang.w
   M /trunk/Build/source/texk/web2c/luatexdir/lua/lcallbacklib.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua/lepdflib.cc
   M /trunk/Build/source/texk/web2c/luatexdir/lua/lfontlib.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua/limglib.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua/liolib.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua/lkpselib.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua/llanglib.c
   A /trunk/Build/source/texk/web2c/luatexdir/lua/llfslibext.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua/llualib.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua/lnodelib.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua/loslibext.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua/lpdflib.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua/lstatslib.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua/ltexiolib.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua/ltexlib.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua/ltokenlib.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua/luagen.w
   M /trunk/Build/source/texk/web2c/luatexdir/lua/luainit.w
   M /trunk/Build/source/texk/web2c/luatexdir/lua/luanode.w
   M /trunk/Build/source/texk/web2c/luatexdir/lua/luastuff.w
   M /trunk/Build/source/texk/web2c/luatexdir/lua/luatex-api.h
   M /trunk/Build/source/texk/web2c/luatexdir/lua/luatoken.w
   M /trunk/Build/source/texk/web2c/luatexdir/lua/texluac.w
   M /trunk/Build/source/texk/web2c/luatexdir/lua51/lauxlib.c
   M /trunk/Build/source/texk/web2c/luatexdir/lua51/luaconf.h
   M /trunk/Build/source/texk/web2c/luatexdir/luafilesystem/Makefile
   M /trunk/Build/source/texk/web2c/luatexdir/luafilesystem/README
   M /trunk/Build/source/texk/web2c/luatexdir/luafilesystem/doc/us/index.html
   M /trunk/Build/source/texk/web2c/luatexdir/luafilesystem/doc/us/manual.html
   M /trunk/Build/source/texk/web2c/luatexdir/luafilesystem/src/lfs.c
   M /trunk/Build/source/texk/web2c/luatexdir/luafilesystem/src/lfs.def
   M /trunk/Build/source/texk/web2c/luatexdir/luafilesystem/tests/test.lua
   M /trunk/Build/source/texk/web2c/luatexdir/luafontloader/fontforge/fontforge/nouiutil.c
   M /trunk/Build/source/texk/web2c/luatexdir/luafontloader/fontforge/fontforge/parsettf.c
   M /trunk/Build/source/texk/web2c/luatexdir/luafontloader/fontforge/fontforge/parsettfatt.c
   M /trunk/Build/source/texk/web2c/luatexdir/luafontloader/src/ffdummies.c
   M /trunk/Build/source/texk/web2c/luatexdir/luafontloader/src/luafflib.c
   M /trunk/Build/source/texk/web2c/luatexdir/luapeg/lpeg.c
   A /trunk/Build/source/texk/web2c/luatexdir/luascripts
   A /trunk/Build/source/texk/web2c/luatexdir/luascripts/pdflua.h
   A /trunk/Build/source/texk/web2c/luatexdir/luascripts/pdflua.lua
   A /trunk/Build/source/texk/web2c/luatexdir/luascripts/txt2zlib.w
   M /trunk/Build/source/texk/web2c/luatexdir/luatex.c
   M /trunk/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pagetree.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfaction.h
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfaction.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfannot.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfcolorstack.h
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfcolorstack.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfdest.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdffont.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfgen.h
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfgen.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfglyph.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfimage.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdflink.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdflistout.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfliteral.w
   A /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfluaapi.h
   A /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfluaapi.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfobj.h
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfobj.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfoutline.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfpage.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfrule.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfsaverestore.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfsetmatrix.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfshipout.h
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfshipout.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdftables.h
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdftables.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfthread.h
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfthread.w
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdftypes.h
   M /trunk/Build/source/texk/web2c/luatexdir/pdf/pdfxform.w
   M /trunk/Build/source/texk/web2c/luatexdir/ptexlib.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/align.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/arithmetic.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/arithmetic.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/buildpage.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/commands.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/commands.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/conditional.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/directions.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/directions.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/dumpdata.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/dumpdata.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/equivalents.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/equivalents.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/errors.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/expand.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/extensions.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/filename.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/inputstack.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/inputstack.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/linebreak.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/linebreak.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/mainbody.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/mainbody.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/maincontrol.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/maincontrol.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/mathcodes.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/memoryword.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/mlist.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/nesting.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/packaging.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/packaging.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/postlinebreak.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/primitive.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/printing.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/scanning.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/scanning.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/stringpool.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/stringpool.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/texdeffont.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/texfileio.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/texfileio.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/texmath.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/texnodes.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/texnodes.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/textcodes.w
   M /trunk/Build/source/texk/web2c/luatexdir/tex/textoken.h
   M /trunk/Build/source/texk/web2c/luatexdir/tex/textoken.w
   M /trunk/Build/source/texk/web2c/luatexdir/utils/avlstuff.w
   M /trunk/Build/source/texk/web2c/luatexdir/utils/managed-sa.w
   M /trunk/Build/source/texk/web2c/luatexdir/utils/synctex-luatex.h
   M /trunk/Build/source/texk/web2c/luatexdir/utils/synctex.c
   M /trunk/Build/source/texk/web2c/luatexdir/utils/utils.w
   M /trunk/Build/source/texk/web2c/man/ChangeLog
   M /trunk/Build/source/texk/web2c/man/Makefile.in
   M /trunk/Build/source/texk/web2c/man/luatex.man
   M /trunk/Build/source/texk/web2c/omegafonts/Makefile.in
   M /trunk/Build/source/texk/web2c/otps/Makefile.in
   M /trunk/Build/source/texk/web2c/window/Makefile.in
   M /trunk/Build/source/texk/xdv2pdf/configure
   M /trunk/Build/source/texk/xdvik/configure
   M /trunk/Build/source/texk/xdvik/squeeze/configure
   M /trunk/Build/source/texk/xdvipdfmx/configure
   M /trunk/Build/source/utils/Makefile.in
   M /trunk/Build/source/utils/aclocal.m4
   M /trunk/Build/source/utils/biber/configure
   M /trunk/Build/source/utils/chktex/configure
   M /trunk/Build/source/utils/configure
   M /trunk/Build/source/utils/dialog/configure
   M /trunk/Build/source/utils/ps2eps/configure
   M /trunk/Build/source/utils/psutils/configure
   M /trunk/Build/source/utils/t1utils/aclocal.m4
   M /trunk/Build/source/utils/t1utils/configure
   M /trunk/Build/source/utils/tpic2pdftex/configure
   M /trunk/Build/source/utils/vlna/aclocal.m4
   M /trunk/Build/source/utils/vlna/configure
   M /trunk/Build/source/utils/xindy/configure
   M /trunk/Build/source/utils/xpdfopen/aclocal.m4
   M /trunk/Build/source/utils/xpdfopen/configure
   A /trunk/Master/texmf-dist/doc/luatex/base/fdata.lua
   A /trunk/Master/texmf-dist/doc/luatex/base/fdata_epdf.lua
   A /trunk/Master/texmf-dist/doc/luatex/base/fdata_img.lua
   A /trunk/Master/texmf-dist/doc/luatex/base/functionref.pdf
   A /trunk/Master/texmf-dist/doc/luatex/base/functionref.tex
   A /trunk/Master/texmf-dist/doc/luatex/base/luatex.man
   M /trunk/Master/texmf-dist/doc/luatex/base/luatexref-env.tex
   M /trunk/Master/texmf-dist/doc/luatex/base/luatexref-t.pdf
   M /trunk/Master/texmf-dist/doc/luatex/base/luatexref-t.tex
------------------------------------------------------------------------
r22058 | karl | 2011-04-12 04:33:23 +0200 (Tue, 12 Apr 2011) | 1 line

regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r22057 | karl | 2011-04-12 04:17:53 +0200 (Tue, 12 Apr 2011) | 1 line

/home/texlive/karl/Master/tlpkg/bin/tl-update-auto

Changed paths:
   M /trunk/Build/source/build-aux/depcomp
   M /trunk/Build/source/extra/xz/build-aux/depcomp
   M /trunk/Master/doc.html
   M /trunk/Master/texmf/scripts/texlive/var/texcatalogue.keywords
------------------------------------------------------------------------
r22056 | karl | 2011-04-12 03:15:06 +0200 (Tue, 12 Apr 2011) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r22055 | karl | 2011-04-12 01:18:19 +0200 (Tue, 12 Apr 2011) | 1 line

chemfig 0.4a (11apr11)

Changed paths:
   M /trunk/Master/texmf-dist/doc/generic/chemfig/README
   M /trunk/Master/texmf-dist/doc/generic/chemfig/chemfig_doc_en.pdf
   M /trunk/Master/texmf-dist/doc/generic/chemfig/chemfig_doc_en.tex
   M /trunk/Master/texmf-dist/doc/generic/chemfig/chemfig_doc_fr.pdf
   M /trunk/Master/texmf-dist/doc/generic/chemfig/chemfig_doc_fr.tex
   M /trunk/Master/texmf-dist/tex/generic/chemfig/chemfig.sty
   M /trunk/Master/texmf-dist/tex/generic/chemfig/chemfig.tex
   M /trunk/Master/texmf-dist/tex/generic/chemfig/t-chemfig.tex
------------------------------------------------------------------------
r22054 | karl | 2011-04-12 01:18:01 +0200 (Tue, 12 Apr 2011) | 1 line

bibleref-parse (11apr11)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/bibleref-parse/bibleref-parse.pdf
   M /trunk/Master/texmf-dist/doc/latex/bibleref-parse/bibleref-parse.tex
   M /trunk/Master/texmf-dist/tex/latex/bibleref-parse/bibleref-parse.sty
------------------------------------------------------------------------
r22053 | karl | 2011-04-11 20:50:28 +0200 (Mon, 11 Apr 2011) | 1 line

bookhands remove conflicts with auncial-new and ptex

Changed paths:
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/tgothic/README
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/tgothic/tgothic.dtx
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/tgothic/tgothic.ins
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/tgothic/tryfont.tex
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/tgothic-README
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/tgothic-tryfont.tex
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/tgoth10.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/tgoth17.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/tgoth7.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/tgothb10.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/tgothb17.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/tgothb7.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/tgothdig.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/tgothl.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/tgothlig.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/tgothpunct.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/tgothtitle.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/tgothu.mf
   D /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/auncl10.tfm
   D /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/aunclb10.tfm
   D /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/tgoth10.tfm
   D /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/tgoth17.tfm
   D /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/tgoth7.tfm
   D /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/tgothb10.tfm
   D /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/tgothb17.tfm
   D /trunk/Master/texmf-dist/source/fonts/bookhands/tgothic.dtx
   D /trunk/Master/texmf-dist/source/fonts/bookhands/tgothic.ins
   D /trunk/Master/texmf-dist/tex/latex/bookhands/alltgoth.sty
   D /trunk/Master/texmf-dist/tex/latex/bookhands/ot1tgoth.fd
   D /trunk/Master/texmf-dist/tex/latex/bookhands/t1tgoth.fd
   D /trunk/Master/texmf-dist/tex/latex/bookhands/tgothic.sty
   M /trunk/Master/tlpkg/libexec/ctan2tds
------------------------------------------------------------------------
r22052 | karl | 2011-04-11 20:23:29 +0200 (Mon, 11 Apr 2011) | 1 line

empty dirs

Changed paths:
   D /trunk/Master/texmf-dist/fonts/afm/hoekwater/stmaryrd
   D /trunk/Master/texmf-dist/fonts/type1/hoekwater/stmaryrd
   D /trunk/Master/texmf-dist/source/latex/bookhands/auncial
   D /trunk/Master/texmf-dist/source/latex/bookhands/carolmin
   D /trunk/Master/texmf-dist/source/latex/bookhands/egothic
   D /trunk/Master/texmf-dist/source/latex/bookhands/humanist
   D /trunk/Master/texmf-dist/source/latex/bookhands/huncial
   D /trunk/Master/texmf-dist/source/latex/bookhands/inslrmaj
   D /trunk/Master/texmf-dist/source/latex/bookhands/inslrmin
   D /trunk/Master/texmf-dist/source/latex/bookhands/pgothic
   D /trunk/Master/texmf-dist/source/latex/bookhands/rotunda
   D /trunk/Master/texmf-dist/source/latex/bookhands/rustic
   D /trunk/Master/texmf-dist/source/latex/bookhands/sqrcaps
   D /trunk/Master/texmf-dist/source/latex/bookhands/tgothic
   D /trunk/Master/texmf-dist/source/latex/bookhands/uncial
   D /trunk/Master/texmf-dist/source/latex/warning
------------------------------------------------------------------------
r22051 | karl | 2011-04-11 20:04:50 +0200 (Mon, 11 Apr 2011) | 1 line

bump xetex version to .5 for 2011

Changed paths:
   M /trunk/Build/source/texk/web2c/xetexdir/ChangeLog
   M /trunk/Build/source/texk/web2c/xetexdir/xetex.ch
------------------------------------------------------------------------
r22050 | karl | 2011-04-11 20:01:50 +0200 (Mon, 11 Apr 2011) | 1 line

relenc license statement (10apr11)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/relenc/README
------------------------------------------------------------------------
r22049 | karl | 2011-04-11 20:01:26 +0200 (Mon, 11 Apr 2011) | 1 line

texdef

Changed paths:
   M /trunk/Build/source/texk/texlive/linked_scripts/texdef/texdef.pl
   M /trunk/Master/texmf-dist/scripts/texdef/texdef.pl
------------------------------------------------------------------------
r22048 | karl | 2011-04-11 20:00:35 +0200 (Mon, 11 Apr 2011) | 1 line

wrapfig doc (9apr11)

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/wrapfig/wrapfig-doc.pdf
   A /trunk/Master/texmf-dist/doc/latex/wrapfig/wrapfig-doc.tex
------------------------------------------------------------------------
r22047 | karl | 2011-04-11 20:00:11 +0200 (Mon, 11 Apr 2011) | 1 line

textgreek (9apr11)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/textgreek/textgreek.pdf
   M /trunk/Master/texmf-dist/source/latex/textgreek/textgreek.dtx
   M /trunk/Master/texmf-dist/tex/latex/textgreek/textgreek.sty
------------------------------------------------------------------------
r22046 | karl | 2011-04-11 19:59:11 +0200 (Mon, 11 Apr 2011) | 1 line

spreadab 0.3c (9apr11)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/spreadtab/README
   M /trunk/Master/texmf-dist/doc/latex/spreadtab/spreadtab_doc_en.pdf
   M /trunk/Master/texmf-dist/doc/latex/spreadtab/spreadtab_doc_en.tex
   M /trunk/Master/texmf-dist/doc/latex/spreadtab/spreadtab_doc_fr.pdf
   M /trunk/Master/texmf-dist/doc/latex/spreadtab/spreadtab_doc_fr.tex
   M /trunk/Master/texmf-dist/tex/latex/spreadtab/spreadtab.sty
------------------------------------------------------------------------
r22045 | karl | 2011-04-11 19:57:51 +0200 (Mon, 11 Apr 2011) | 1 line

path (8apr11)

Changed paths:
   M /trunk/Master/texmf-dist/doc/generic/path/path-doc.pdf
   M /trunk/Master/texmf-dist/doc/generic/path/path-doc.tex
   M /trunk/Master/texmf-dist/tex/generic/path/path.sty
------------------------------------------------------------------------
r22044 | mpg | 2011-04-11 16:01:23 +0200 (Mon, 11 Apr 2011) | 2 lines

texdoctk: update database


Changed paths:
   M /trunk/Master/texmf/texdoctk/texdoctk.dat
------------------------------------------------------------------------
r22043 | peter | 2011-04-11 12:01:47 +0200 (Mon, 11 Apr 2011) | 2 lines

Avoid using strcpy() for overlapping strings
TEXEDIT: use texworks instead of vi for Windows

Changed paths:
   M /trunk/Build/source/README.config
   M /trunk/Build/source/configure
   M /trunk/Build/source/libs/configure
   M /trunk/Build/source/texk/configure
   M /trunk/Build/source/texk/kpathsea/ChangeLog
   M /trunk/Build/source/texk/kpathsea/tex-file.c
   M /trunk/Build/source/texk/kpathsea/texmf.cnf
   M /trunk/Build/source/texk/web2c/ac/web2c.ac
   M /trunk/Build/source/texk/web2c/aclocal.m4
   M /trunk/Build/source/texk/web2c/configure
   M /trunk/Build/source/texk/web2c/configure.ac
   M /trunk/Build/source/utils/configure
------------------------------------------------------------------------
r22042 | karl | 2011-04-11 04:34:29 +0200 (Mon, 11 Apr 2011) | 1 line

regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r22041 | karl | 2011-04-11 04:19:31 +0200 (Mon, 11 Apr 2011) | 1 line

/home/texlive/karl/Master/tlpkg/bin/tl-update-auto

Changed paths:
   M /trunk/Master/doc.html
------------------------------------------------------------------------
r22040 | karl | 2011-04-11 03:15:16 +0200 (Mon, 11 Apr 2011) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r22039 | karl | 2011-04-11 02:03:26 +0200 (Mon, 11 Apr 2011) | 1 line

hyperref (10apr11)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/hyperref/ChangeLog
   M /trunk/Master/texmf-dist/doc/latex/hyperref/ChangeLog.pdf
   M /trunk/Master/texmf-dist/doc/latex/hyperref/backref.pdf
   M /trunk/Master/texmf-dist/doc/latex/hyperref/hyperref.pdf
   M /trunk/Master/texmf-dist/doc/latex/hyperref/nameref.pdf
   M /trunk/Master/texmf-dist/source/latex/hyperref/hyperref.dtx
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hdvipdfm.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hdvips.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hdvipson.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hdviwind.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hpdftex.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/htex4ht.cfg
   M /trunk/Master/texmf-dist/tex/latex/hyperref/htex4ht.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/htexture.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hvtex.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hvtexhtm.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hvtexmrk.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hxetex.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hyperref.sty
   M /trunk/Master/texmf-dist/tex/latex/hyperref/hypertex.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/nohyperref.sty
   M /trunk/Master/texmf-dist/tex/latex/hyperref/pd1enc.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/pdfmark.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/puarenc.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/puenc.def
   M /trunk/Master/texmf-dist/tex/latex/hyperref/puvnenc.def
------------------------------------------------------------------------
r22038 | karl | 2011-04-10 04:33:44 +0200 (Sun, 10 Apr 2011) | 1 line

regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r22037 | karl | 2011-04-10 03:15:02 +0200 (Sun, 10 Apr 2011) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r22036 | karl | 2011-04-09 04:34:52 +0200 (Sat, 09 Apr 2011) | 1 line

regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r22035 | karl | 2011-04-09 04:19:50 +0200 (Sat, 09 Apr 2011) | 1 line

autoupdate via tlmgr generate updmap

Changed paths:
   M /trunk/Master/texmf/fonts/map/dvipdfm/updmap/dvipdfm.map
   M /trunk/Master/texmf/fonts/map/dvipdfm/updmap/dvipdfm_dl14.map
   M /trunk/Master/texmf/fonts/map/dvipdfm/updmap/dvipdfm_ndl14.map
   M /trunk/Master/texmf/fonts/map/dvips/updmap/ps2pk.map
   M /trunk/Master/texmf/fonts/map/dvips/updmap/psfonts.map
   M /trunk/Master/texmf/fonts/map/dvips/updmap/psfonts_pk.map
   M /trunk/Master/texmf/fonts/map/dvips/updmap/psfonts_t1.map
   M /trunk/Master/texmf/fonts/map/pdftex/updmap/pdftex.map
   M /trunk/Master/texmf/fonts/map/pdftex/updmap/pdftex_dl14.map
   M /trunk/Master/texmf/fonts/map/pdftex/updmap/pdftex_ndl14.map
   M /trunk/Master/texmf/web2c/updmap.cfg
------------------------------------------------------------------------
r22034 | karl | 2011-04-09 04:19:01 +0200 (Sat, 09 Apr 2011) | 1 line

/home/texlive/karl/Master/tlpkg/bin/tl-update-auto

Changed paths:
   M /trunk/Master/doc.html
   M /trunk/Master/texmf/scripts/texlive/var/texcatalogue.keywords
------------------------------------------------------------------------
r22033 | karl | 2011-04-09 03:16:26 +0200 (Sat, 09 Apr 2011) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r22032 | karl | 2011-04-09 02:15:56 +0200 (Sat, 09 Apr 2011) | 1 line

empty dir

Changed paths:
   D /trunk/Master/texmf-dist/doc/latex/inlinebib
------------------------------------------------------------------------
r22031 | karl | 2011-04-09 02:15:44 +0200 (Sat, 09 Apr 2011) | 1 line

sync from Master

Changed paths:
   M /trunk/Build/source/utils/biber/TeXLive/TLUtils.pm
------------------------------------------------------------------------
r22030 | karl | 2011-04-09 02:14:42 +0200 (Sat, 09 Apr 2011) | 1 line

some urls to published articles

Changed paths:
   M /trunk/Build/source/texk/web2c/ChangeLog
   M /trunk/Build/source/texk/web2c/doc/ref.txi
   M /trunk/Build/source/texk/web2c/doc/web2c.info
------------------------------------------------------------------------
r22029 | karl | 2011-04-09 02:14:22 +0200 (Sat, 09 Apr 2011) | 1 line

no need for MACOSX_DEPLOYMENT_TARGET

Changed paths:
   M /trunk/Build/source/Build
   M /trunk/Build/source/README
------------------------------------------------------------------------
r22028 | karl | 2011-04-09 02:13:10 +0200 (Sat, 09 Apr 2011) | 1 line

warning (8apr11)

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/warning
   A /trunk/Master/texmf-dist/doc/latex/warning/warning-doc.pdf
   A /trunk/Master/texmf-dist/doc/latex/warning/warning-doc.tex
   D /trunk/Master/texmf-dist/source/latex/warning/warning.xml
------------------------------------------------------------------------
r22027 | karl | 2011-04-09 02:12:29 +0200 (Sat, 09 Apr 2011) | 1 line

stmaryrd (8apr11)

Changed paths:
   A /trunk/Master/texmf-dist/doc/fonts/stmaryrd/INSTALL
   A /trunk/Master/texmf-dist/doc/fonts/stmaryrd/README.hoekwater
   D /trunk/Master/texmf-dist/doc/fonts/stmaryrd/stmaryrd.dvi
   A /trunk/Master/texmf-dist/doc/fonts/stmaryrd/stmaryrd.pdf
   D /trunk/Master/texmf-dist/fonts/afm/hoekwater/stmaryrd/stmary10.afm
   D /trunk/Master/texmf-dist/fonts/afm/hoekwater/stmaryrd/stmary5.afm
   D /trunk/Master/texmf-dist/fonts/afm/hoekwater/stmaryrd/stmary6.afm
   D /trunk/Master/texmf-dist/fonts/afm/hoekwater/stmaryrd/stmary7.afm
   D /trunk/Master/texmf-dist/fonts/afm/hoekwater/stmaryrd/stmary8.afm
   D /trunk/Master/texmf-dist/fonts/afm/hoekwater/stmaryrd/stmary9.afm
   A /trunk/Master/texmf-dist/fonts/afm/public/stmaryrd
   A /trunk/Master/texmf-dist/fonts/afm/public/stmaryrd/stmary10.afm
   A /trunk/Master/texmf-dist/fonts/afm/public/stmaryrd/stmary5.afm
   A /trunk/Master/texmf-dist/fonts/afm/public/stmaryrd/stmary6.afm
   A /trunk/Master/texmf-dist/fonts/afm/public/stmaryrd/stmary7.afm
   A /trunk/Master/texmf-dist/fonts/afm/public/stmaryrd/stmary8.afm
   A /trunk/Master/texmf-dist/fonts/afm/public/stmaryrd/stmary9.afm
   M /trunk/Master/texmf-dist/fonts/tfm/public/stmaryrd/stmary10.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/stmaryrd/stmary5.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/stmaryrd/stmary6.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/stmaryrd/stmary7.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/stmaryrd/stmary8.tfm
   M /trunk/Master/texmf-dist/fonts/tfm/public/stmaryrd/stmary9.tfm
   D /trunk/Master/texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary10.pfb
   D /trunk/Master/texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary10.pfm
   D /trunk/Master/texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary5.pfb
   D /trunk/Master/texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary5.pfm
   D /trunk/Master/texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary6.pfb
   D /trunk/Master/texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary6.pfm
   D /trunk/Master/texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary7.pfb
   D /trunk/Master/texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary7.pfm
   D /trunk/Master/texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary8.pfb
   D /trunk/Master/texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary8.pfm
   D /trunk/Master/texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary9.pfb
   D /trunk/Master/texmf-dist/fonts/type1/hoekwater/stmaryrd/stmary9.pfm
   A /trunk/Master/texmf-dist/fonts/type1/public/stmaryrd
   A /trunk/Master/texmf-dist/fonts/type1/public/stmaryrd/stmary10.pfb
   A /trunk/Master/texmf-dist/fonts/type1/public/stmaryrd/stmary10.pfm
   A /trunk/Master/texmf-dist/fonts/type1/public/stmaryrd/stmary5.pfb
   A /trunk/Master/texmf-dist/fonts/type1/public/stmaryrd/stmary5.pfm
   A /trunk/Master/texmf-dist/fonts/type1/public/stmaryrd/stmary6.pfb
   A /trunk/Master/texmf-dist/fonts/type1/public/stmaryrd/stmary6.pfm
   A /trunk/Master/texmf-dist/fonts/type1/public/stmaryrd/stmary7.pfb
   A /trunk/Master/texmf-dist/fonts/type1/public/stmaryrd/stmary7.pfm
   A /trunk/Master/texmf-dist/fonts/type1/public/stmaryrd/stmary8.pfb
   A /trunk/Master/texmf-dist/fonts/type1/public/stmaryrd/stmary8.pfm
   A /trunk/Master/texmf-dist/fonts/type1/public/stmaryrd/stmary9.pfb
   A /trunk/Master/texmf-dist/fonts/type1/public/stmaryrd/stmary9.pfm
   D /trunk/Master/texmf-dist/source/fonts/stmaryrd/00Description
   D /trunk/Master/texmf-dist/source/fonts/stmaryrd/INSTALL
   M /trunk/Master/texmf-dist/source/fonts/stmaryrd/stmaryrd.dtx
   M /trunk/Master/texmf-dist/source/fonts/stmaryrd/stmaryrd.ins
   M /trunk/Master/texmf-dist/tex/latex/stmaryrd/stmaryrd.sty
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
------------------------------------------------------------------------
r22026 | karl | 2011-04-09 00:46:04 +0200 (Sat, 09 Apr 2011) | 1 line

rm vrsion, nonfree

Changed paths:
   D /trunk/Master/texmf-dist/doc/latex/vrsion
   D /trunk/Master/texmf-dist/source/latex/vrsion
   D /trunk/Master/texmf-dist/tex/latex/vrsion
   M /trunk/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc
   D /trunk/Master/tlpkg/tlpsrc/vrsion.tlpsrc
------------------------------------------------------------------------
r22025 | siepo | 2011-04-08 22:00:58 +0200 (Fri, 08 Apr 2011) | 1 line

Fix double (back)slashes

Changed paths:
   M /trunk/Master/tlpkg/installer/install-menu-perltk-new.pl
   M /trunk/Master/tlpkg/installer/install-menu-text-new.pl
------------------------------------------------------------------------
r22024 | siepo | 2011-04-08 21:56:14 +0200 (Fri, 08 Apr 2011) | 1 line

Portable: copy tlmenu.bat. Uncomment import_settings_from_old_tlpdb

Changed paths:
   M /trunk/Master/install-tl-new
------------------------------------------------------------------------
r22023 | karl | 2011-04-08 18:43:45 +0200 (Fri, 08 Apr 2011) | 1 line

bookhands update (delayed from years ago)

Changed paths:
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/README.auncial
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/README.carolmin
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/README.egothic
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/README.humanist
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/README.huncial
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/README.inslrmaj
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/README.inslrmin
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/README.pgothic
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/README.rotunda
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/README.rustic
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/README.sqrcaps
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/README.tgothic
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/README.uncial
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/allsqrcaps.pdf
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/auncial
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/auncial/allfont.ps.gz
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/auncial/allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/auncial-README
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/auncial-allfont.ps.gz
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/auncial-allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/carolmin
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/carolmin/allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/carolmin-README
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/carolmin-allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/egothic
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/egothic/allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/egothic-README
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/egothic-allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/humanist
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/humanist/allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/humanist-README
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/humanist-allfont.tex
   M /trunk/Master/texmf-dist/doc/fonts/bookhands/humanist-tryfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/huncial
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/huncial/allfont.ps.gz
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/huncial/allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/huncial-README
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/huncial-allfont.ps.gz
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/huncial-allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/inslrmaj
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/inslrmaj/allfont.ps.gz
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/inslrmaj/allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/inslrmaj-README
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/inslrmaj-allfont.ps.gz
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/inslrmaj-allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/inslrmin
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/inslrmin/allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/inslrmin-README
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/inslrmin-allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/pgothic
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/pgothic/allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/pgothic-README
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/pgothic-allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/rotunda
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/rotunda/allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/rotunda-README
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/rotunda-allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/rustic
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/rustic/allfont.ps.gz
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/rustic/allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/rustic-README
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/rustic-allfont.ps.gz
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/rustic-allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/sqrcaps
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/sqrcaps/allsqrcaps.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/sqrcaps-README
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/sqrcaps-allfont.tex
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/sqrcaps-tryfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/sqrcaps.pdf
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/tgothic
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/tgothic/allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/tgothic-README
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/tgothic-allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/trysqrcaps.pdf
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/trysqrcaps.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/uncial
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/uncial/allfont.ps.gz
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/uncial/allfont.tex
   A /trunk/Master/texmf-dist/doc/fonts/bookhands/uncial-README
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/uncial-allfont.ps.gz
   D /trunk/Master/texmf-dist/doc/fonts/bookhands/uncial-allfont.tex
   A /trunk/Master/texmf-dist/fonts/afm/public/bookhands
   A /trunk/Master/texmf-dist/fonts/afm/public/bookhands/sqrc10.afm
   A /trunk/Master/texmf-dist/fonts/afm/public/bookhands/sqrcb10.afm
   A /trunk/Master/texmf-dist/fonts/map/dvips/bookhands
   A /trunk/Master/texmf-dist/fonts/map/dvips/bookhands/sqrcaps.map
   M /trunk/Master/texmf-dist/fonts/source/public/bookhands/hmin10.mf
   M /trunk/Master/texmf-dist/fonts/source/public/bookhands/hmin17.mf
   M /trunk/Master/texmf-dist/fonts/source/public/bookhands/hmin7.mf
   M /trunk/Master/texmf-dist/fonts/source/public/bookhands/hminb10.mf
   M /trunk/Master/texmf-dist/fonts/source/public/bookhands/hminb17.mf
   M /trunk/Master/texmf-dist/fonts/source/public/bookhands/hminb7.mf
   M /trunk/Master/texmf-dist/fonts/source/public/bookhands/hmindig.mf
   M /trunk/Master/texmf-dist/fonts/source/public/bookhands/hminl.mf
   M /trunk/Master/texmf-dist/fonts/source/public/bookhands/hminlig.mf
   M /trunk/Master/texmf-dist/fonts/source/public/bookhands/hminpunct.mf
   M /trunk/Master/texmf-dist/fonts/source/public/bookhands/hmintitle.mf
   M /trunk/Master/texmf-dist/fonts/source/public/bookhands/hminu.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/sqrc10.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/sqrc17.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/sqrc7.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/sqrcb10.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/sqrcb17.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/sqrcb7.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/sqrcdig.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/sqrcl.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/sqrclig.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/sqrcpunct.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/sqrctitle.mf
   D /trunk/Master/texmf-dist/fonts/source/public/bookhands/sqrcu.mf
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/auncl10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/auncl17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/auncl7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/aunclb10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/aunclb17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/aunclb7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/cmin10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/cmin17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/cmin7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/cminb10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/cminb17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/cminb7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/egoth10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/egoth17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/egoth7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/egothb10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/egothb17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/egothb7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/hmin10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/hmin17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/hmin7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/hminb10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/hminb17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/hminb7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/huncl10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/huncl17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/huncl7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/hunclb10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/hunclb17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/hunclb7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/imaj10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/imaj17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/imaj7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/imajb10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/imajb17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/imajb7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/imin10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/imin17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/imin7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/iminb10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/iminb17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/iminb7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/pgoth10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/pgoth17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/pgoth7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/pgothb10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/pgothb17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/rtnd10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/rtnd17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/rtnd7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/rtndb10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/rtndb17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/rtndb7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/rust10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/rust17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/rust7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/rustb10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/rustb17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/rustb7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/sqrc10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/sqrcb10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/tgoth10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/tgoth17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/tgoth7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/tgothb10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/tgothb17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/uncl10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/uncl17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/uncl7.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/unclb10.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/unclb17.tfm
   A /trunk/Master/texmf-dist/fonts/tfm/public/bookhands/unclb7.tfm
   A /trunk/Master/texmf-dist/fonts/type1/public/bookhands
   A /trunk/Master/texmf-dist/fonts/type1/public/bookhands/sqrc10.pfb
   A /trunk/Master/texmf-dist/fonts/type1/public/bookhands/sqrcb10.pfb
   A /trunk/Master/texmf-dist/source/fonts/bookhands
   A /trunk/Master/texmf-dist/source/fonts/bookhands/auncial.dtx
   A /trunk/Master/texmf-dist/source/fonts/bookhands/auncial.ins
   A /trunk/Master/texmf-dist/source/fonts/bookhands/carolmin.dtx
   A /trunk/Master/texmf-dist/source/fonts/bookhands/carolmin.ins
   A /trunk/Master/texmf-dist/source/fonts/bookhands/egothic.dtx
   A /trunk/Master/texmf-dist/source/fonts/bookhands/egothic.ins
   A /trunk/Master/texmf-dist/source/fonts/bookhands/humanist.dtx
   A /trunk/Master/texmf-dist/source/fonts/bookhands/humanist.ins
   A /trunk/Master/texmf-dist/source/fonts/bookhands/huncial.dtx
   A /trunk/Master/texmf-dist/source/fonts/bookhands/huncial.ins
   A /trunk/Master/texmf-dist/source/fonts/bookhands/inslrmaj.dtx
   A /trunk/Master/texmf-dist/source/fonts/bookhands/inslrmaj.ins
   A /trunk/Master/texmf-dist/source/fonts/bookhands/inslrmin.dtx
   A /trunk/Master/texmf-dist/source/fonts/bookhands/inslrmin.ins
   A /trunk/Master/texmf-dist/source/fonts/bookhands/pgothic.dtx
   A /trunk/Master/texmf-dist/source/fonts/bookhands/pgothic.ins
   A /trunk/Master/texmf-dist/source/fonts/bookhands/rotunda.dtx
   A /trunk/Master/texmf-dist/source/fonts/bookhands/rotunda.ins
   A /trunk/Master/texmf-dist/source/fonts/bookhands/rustic.dtx
   A /trunk/Master/texmf-dist/source/fonts/bookhands/rustic.ins
   A /trunk/Master/texmf-dist/source/fonts/bookhands/sqrcaps.dtx
   A /trunk/Master/texmf-dist/source/fonts/bookhands/sqrcaps.ins
   A /trunk/Master/texmf-dist/source/fonts/bookhands/tgothic.dtx
   A /trunk/Master/texmf-dist/source/fonts/bookhands/tgothic.ins
   A /trunk/Master/texmf-dist/source/fonts/bookhands/uncial.dtx
   A /trunk/Master/texmf-dist/source/fonts/bookhands/uncial.ins
   D /trunk/Master/texmf-dist/source/latex/bookhands/auncial/auncial.dtx
   D /trunk/Master/texmf-dist/source/latex/bookhands/auncial/auncial.ins
   D /trunk/Master/texmf-dist/source/latex/bookhands/carolmin/carolmin.dtx
   D /trunk/Master/texmf-dist/source/latex/bookhands/carolmin/carolmin.ins
   D /trunk/Master/texmf-dist/source/latex/bookhands/egothic/egothic.dtx
   D /trunk/Master/texmf-dist/source/latex/bookhands/egothic/egothic.ins
   D /trunk/Master/texmf-dist/source/latex/bookhands/humanist/humanist.dtx
   D /trunk/Master/texmf-dist/source/latex/bookhands/humanist/humanist.ins
   D /trunk/Master/texmf-dist/source/latex/bookhands/huncial/huncial.dtx
   D /trunk/Master/texmf-dist/source/latex/bookhands/huncial/huncial.ins
   D /trunk/Master/texmf-dist/source/latex/bookhands/inslrmaj/inslrmaj.dtx
   D /trunk/Master/texmf-dist/source/latex/bookhands/inslrmaj/inslrmaj.ins
   D /trunk/Master/texmf-dist/source/latex/bookhands/inslrmin/inslrmin.dtx
   D /trunk/Master/texmf-dist/source/latex/bookhands/inslrmin/inslrmin.ins
   D /trunk/Master/texmf-dist/source/latex/bookhands/pgothic/pgothic.dtx
   D /trunk/Master/texmf-dist/source/latex/bookhands/pgothic/pgothic.ins
   D /trunk/Master/texmf-dist/source/latex/bookhands/rotunda/rotunda.dtx
   D /trunk/Master/texmf-dist/source/latex/bookhands/rotunda/rotunda.ins
   D /trunk/Master/texmf-dist/source/latex/bookhands/rustic/rustic.dtx
   D /trunk/Master/texmf-dist/source/latex/bookhands/rustic/rustic.ins
   D /trunk/Master/texmf-dist/source/latex/bookhands/sqrcaps/sqrcaps.dtx
   D /trunk/Master/texmf-dist/source/latex/bookhands/sqrcaps/sqrcaps.ins
   D /trunk/Master/texmf-dist/source/latex/bookhands/tgothic/tgothic.dtx
   D /trunk/Master/texmf-dist/source/latex/bookhands/tgothic/tgothic.ins
   D /trunk/Master/texmf-dist/source/latex/bookhands/uncial/uncial.dtx
   D /trunk/Master/texmf-dist/source/latex/bookhands/uncial/uncial.ins
   M /trunk/Master/texmf-dist/tex/latex/bookhands/allhmin.sty
   M /trunk/Master/texmf-dist/tex/latex/bookhands/allsqrc.sty
   M /trunk/Master/texmf-dist/tex/latex/bookhands/humanist.sty
   M /trunk/Master/texmf-dist/tex/latex/bookhands/ot1hmin.fd
   M /trunk/Master/texmf-dist/tex/latex/bookhands/ot1sqrc.fd
   M /trunk/Master/texmf-dist/tex/latex/bookhands/sqrcaps.sty
   M /trunk/Master/texmf-dist/tex/latex/bookhands/t1hmin.fd
   M /trunk/Master/texmf-dist/tex/latex/bookhands/t1sqrc.fd
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/libexec/ctan2tds
   M /trunk/Master/tlpkg/tlpsrc/bookhands.tlpsrc
------------------------------------------------------------------------
r22022 | karl | 2011-04-08 04:32:55 +0200 (Fri, 08 Apr 2011) | 1 line

regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------
------------------------------------------------------------------------
r22021 | karl | 2011-04-08 04:17:42 +0200 (Fri, 08 Apr 2011) | 1 line

autoupdate via tlmgr generate updmap

Changed paths:
   M /trunk/Master/texmf/fonts/map/dvipdfm/updmap/dvipdfm.map
   M /trunk/Master/texmf/fonts/map/dvipdfm/updmap/dvipdfm_dl14.map
   M /trunk/Master/texmf/fonts/map/dvipdfm/updmap/dvipdfm_ndl14.map
   M /trunk/Master/texmf/fonts/map/dvips/updmap/ps2pk.map
   M /trunk/Master/texmf/fonts/map/dvips/updmap/psfonts.map
   M /trunk/Master/texmf/fonts/map/dvips/updmap/psfonts_pk.map
   M /trunk/Master/texmf/fonts/map/dvips/updmap/psfonts_t1.map
   M /trunk/Master/texmf/fonts/map/pdftex/updmap/pdftex.map
   M /trunk/Master/texmf/fonts/map/pdftex/updmap/pdftex_dl14.map
   M /trunk/Master/texmf/fonts/map/pdftex/updmap/pdftex_ndl14.map
   M /trunk/Master/texmf/web2c/updmap.cfg
------------------------------------------------------------------------
r22020 | karl | 2011-04-08 04:16:54 +0200 (Fri, 08 Apr 2011) | 1 line

/home/texlive/karl/Master/tlpkg/bin/tl-update-auto

Changed paths:
   M /trunk/Master/doc.html
------------------------------------------------------------------------
r22019 | karl | 2011-04-08 03:15:04 +0200 (Fri, 08 Apr 2011) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r22018 | karl | 2011-04-08 01:20:16 +0200 (Fri, 08 Apr 2011) | 1 line

inlinebib non-update

Changed paths:
   A /trunk/Master/texmf-dist/doc/bibtex/inlinebib
   A /trunk/Master/texmf-dist/doc/bibtex/inlinebib/MANIFEST
   A /trunk/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib.htm
   A /trunk/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib.txt
   A /trunk/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib1.gif
   A /trunk/Master/texmf-dist/doc/bibtex/inlinebib/inlinebib2.gif
   D /trunk/Master/texmf-dist/doc/latex/inlinebib/MANIFEST
   D /trunk/Master/texmf-dist/doc/latex/inlinebib/inlinebib.htm
   D /trunk/Master/texmf-dist/doc/latex/inlinebib/inlinebib.txt
   D /trunk/Master/texmf-dist/doc/latex/inlinebib/inlinebib1.gif
   D /trunk/Master/texmf-dist/doc/latex/inlinebib/inlinebib2.gif
   M /trunk/Master/tlpkg/libexec/ctan2tds
   M /trunk/Master/tlpkg/tlpsrc/tcldoc.tlpsrc
------------------------------------------------------------------------
r22017 | karl | 2011-04-08 01:01:16 +0200 (Fri, 08 Apr 2011) | 1 line

standalone (7apr11)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/standalone/standalone.pdf
   A /trunk/Master/texmf-dist/source/latex/standalone/Makefile
   M /trunk/Master/texmf-dist/source/latex/standalone/standalone.dtx
   M /trunk/Master/texmf-dist/tex/latex/standalone/standalone.cfg
   M /trunk/Master/texmf-dist/tex/latex/standalone/standalone.cls
   M /trunk/Master/texmf-dist/tex/latex/standalone/standalone.sty
   M /trunk/Master/texmf-dist/tex/latex/standalone/standalone.tex
------------------------------------------------------------------------
r22016 | karl | 2011-04-08 01:00:42 +0200 (Fri, 08 Apr 2011) | 1 line

Asana-Math (7apr11)

Changed paths:
   M /trunk/Master/texmf-dist/fonts/opentype/public/Asana-Math/Asana-Math.otf
   M /trunk/Master/texmf-dist/fonts/truetype/public/Asana-Math/Asana-Math.ttf
------------------------------------------------------------------------
r22015 | karl | 2011-04-08 01:00:19 +0200 (Fri, 08 Apr 2011) | 1 line

biblatex-ieee 1.0a (7apr11)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/biblatex-ieee/biblatex-ieee.pdf
   M /trunk/Master/texmf-dist/doc/latex/biblatex-ieee/biblatex-ieee.tex
   M /trunk/Master/texmf-dist/tex/latex/biblatex-ieee/ieee.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex-ieee/ieee.cbx
------------------------------------------------------------------------
r22014 | karl | 2011-04-08 00:58:39 +0200 (Fri, 08 Apr 2011) | 1 line

still trying to rename groff to metapost

Changed paths:
   D /trunk/Master/texmf-dist/fonts/map/dvips/groff
   A /trunk/Master/texmf-dist/fonts/map/dvips/metapost (from /trunk/Master/texmf-dist/fonts/map/dvips/groff:22013)
   M /trunk/Master/tlpkg/tlpsrc/metapost.tlpsrc
------------------------------------------------------------------------
r22013 | karl | 2011-04-07 18:40:25 +0200 (Thu, 07 Apr 2011) | 1 line

bardiag doc update

Changed paths:
   A /trunk/Master/texmf-dist/doc/latex/bardiag/bardiag.pdf
   D /trunk/Master/texmf-dist/doc/latex/bardiag/bardiag.ps
   A /trunk/Master/texmf-dist/doc/latex/bardiag/bardiag1.pdf
   D /trunk/Master/texmf-dist/doc/latex/bardiag/bardiag1.ps
   A /trunk/Master/texmf-dist/doc/latex/bardiag/bardiag2.pdf
   D /trunk/Master/texmf-dist/doc/latex/bardiag/bardiag2.ps
   D /trunk/Master/texmf-dist/doc/latex/bardiag/example/barddoc.sty
   D /trunk/Master/texmf-dist/doc/latex/bardiag/example/bardiag.bar
   D /trunk/Master/texmf-dist/doc/latex/bardiag/example/bardiag.cfg
   D /trunk/Master/texmf-dist/doc/latex/bardiag/example/bardiag.sty
   D /trunk/Master/texmf-dist/doc/latex/bardiag/example/pstfp.sty
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/libexec/ctan2tds
------------------------------------------------------------------------
r22012 | karl | 2011-04-07 18:26:41 +0200 (Thu, 07 Apr 2011) | 1 line

rm script, license noinfo, ca.1994 latex209 packages in latex2e

Changed paths:
   D /trunk/Master/texmf-dist/doc/latex/script
   D /trunk/Master/texmf-dist/tex/latex/script
   M /trunk/Master/tlpkg/bin/tlpkg-ctan-check
   M /trunk/Master/tlpkg/libexec/ctan2tds
   M /trunk/Master/tlpkg/tlpsrc/collection-latexextra.tlpsrc
   D /trunk/Master/tlpkg/tlpsrc/script.tlpsrc
------------------------------------------------------------------------
r22011 | siepo | 2011-04-07 18:19:43 +0200 (Thu, 07 Apr 2011) | 1 line

Rename: forgot this one

Changed paths:
   M /trunk/Master/install-tl
------------------------------------------------------------------------
r22010 | siepo | 2011-04-07 14:49:51 +0200 (Thu, 07 Apr 2011) | 1 line

rename DVD/CD => local-[un]compressed

Changed paths:
   M /trunk/Master/install-tl-new
   M /trunk/Master/texmf/scripts/texlive/tlmgr.pl
   M /trunk/Master/tlpkg/TeXLive/TLMedia.pm
   M /trunk/Master/tlpkg/TeXLive/TLPDB.pm
   M /trunk/Master/tlpkg/TeXLive/TLPSRC.pm
   M /trunk/Master/tlpkg/TeXLive/TLUtils.pm
   M /trunk/Master/tlpkg/installer/install-menu-text-new.pl
   M /trunk/Master/tlpkg/installer/install-menu-text.pl
------------------------------------------------------------------------
r22009 | peter | 2011-04-07 14:06:18 +0200 (Thu, 07 Apr 2011) | 1 line

e-TeX Version 2.3

Changed paths:
   M /trunk/Build/source/texk/web2c/eptexdir/ChangeLog.TL
   M /trunk/Build/source/texk/web2c/eptexdir/eptrip/eptrip.diffs
   M /trunk/Build/source/texk/web2c/eptexdir/eptrip/etrip.log
   M /trunk/Build/source/texk/web2c/eptexdir/eptrip/etrip.tex
   M /trunk/Build/source/texk/web2c/etexdir/ChangeLog
   M /trunk/Build/source/texk/web2c/etexdir/etex.ch
   M /trunk/Build/source/texk/web2c/etexdir/etrip/etrip.diffs
   M /trunk/Build/source/texk/web2c/etexdir/etrip/etrip.fot
   M /trunk/Build/source/texk/web2c/etexdir/etrip/etrip.log
   M /trunk/Build/source/texk/web2c/etexdir/etrip/etrip.tex
   M /trunk/Build/source/texk/web2c/etexdir/etrip/etrip.typ
   M /trunk/Build/source/texk/web2c/etexdir/etrip/etripin.log
   M /trunk/Build/source/texk/web2c/pdftexdir/ChangeLog
   M /trunk/Build/source/texk/web2c/pdftexdir/pdftex.web
   M /trunk/Build/source/texk/web2c/xetexdir/ChangeLog
   M /trunk/Build/source/texk/web2c/xetexdir/xetex.ch
------------------------------------------------------------------------
r22008 | karl | 2011-04-07 04:33:38 +0200 (Thu, 07 Apr 2011) | 1 line

regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog

Changed paths:
   M /trunk/Build/logs/svnlog
   A /trunk/Build/logs/svnlog.21996.gz
------------------------------------------------------------------------
------------------------------------------------------------------------
r22007 | karl | 2011-04-07 04:18:16 +0200 (Thu, 07 Apr 2011) | 1 line

autoupdate via tlmgr generate updmap

Changed paths:
   M /trunk/Master/texmf/fonts/map/dvipdfm/updmap/dvipdfm.map
   M /trunk/Master/texmf/fonts/map/dvipdfm/updmap/dvipdfm_dl14.map
   M /trunk/Master/texmf/fonts/map/dvipdfm/updmap/dvipdfm_ndl14.map
   M /trunk/Master/texmf/fonts/map/dvips/updmap/ps2pk.map
   M /trunk/Master/texmf/fonts/map/dvips/updmap/psfonts.map
   M /trunk/Master/texmf/fonts/map/dvips/updmap/psfonts_pk.map
   M /trunk/Master/texmf/fonts/map/dvips/updmap/psfonts_t1.map
   M /trunk/Master/texmf/fonts/map/pdftex/updmap/pdftex.map
   M /trunk/Master/texmf/fonts/map/pdftex/updmap/pdftex_dl14.map
   M /trunk/Master/texmf/fonts/map/pdftex/updmap/pdftex_ndl14.map
   M /trunk/Master/texmf/web2c/updmap.cfg
------------------------------------------------------------------------
r22006 | karl | 2011-04-07 03:16:36 +0200 (Thu, 07 Apr 2011) | 1 line

autoupdate

Changed paths:
   M /trunk/Master/texmf-dist/ls-R
   M /trunk/Master/tlpkg/texlive.tlpdb
------------------------------------------------------------------------
r22005 | karl | 2011-04-07 03:15:09 +0200 (Thu, 07 Apr 2011) | 1 line

(tl-update-tlpdb) force increased revision after removal of files

Changed paths:
   M /trunk/Master/tlpkg/tlpsrc/tipa-de.tlpsrc
------------------------------------------------------------------------
r22004 | karl | 2011-04-07 02:08:49 +0200 (Thu, 07 Apr 2011) | 1 line

symlinks, naming consistency

Changed paths:
   D /trunk/Master/texmf-dist/doc/latex/tipa-de/boxchar.sty
   D /trunk/Master/texmf-dist/doc/latex/tipa-de/codelist.sty
   D /trunk/Master/texmf-dist/doc/latex/tipa-de/tipaman.sty
   M /trunk/Master/tlpkg/libexec/ctan2tds
   M /trunk/Master/tlpkg/tlpsrc/tools.tlpsrc
------------------------------------------------------------------------
r22003 | karl | 2011-04-07 01:43:08 +0200 (Thu, 07 Apr 2011) | 1 line

finish groff->metapost rename

Changed paths:
   D /trunk/Master/texmf-dist/fonts/afm/groff
   A /trunk/Master/texmf-dist/fonts/afm/metapost (from /trunk/Master/texmf-dist/fonts/afm/groff:21999)
   D /trunk/Master/texmf-dist/fonts/enc/dvips/groff
   A /trunk/Master/texmf-dist/fonts/enc/dvips/metapost (from /trunk/Master/texmf-dist/fonts/enc/dvips/groff:21999)
   D /trunk/Master/texmf-dist/fonts/type1/groff
   A /trunk/Master/texmf-dist/fonts/type1/metapost (from /trunk/Master/texmf-dist/fonts/type1/groff:21999)
   M /trunk/Master/tlpkg/tlpsrc/collection-fontsextra.tlpsrc
   D /trunk/Master/tlpkg/tlpsrc/groff.tlpsrc
------------------------------------------------------------------------
r22002 | karl | 2011-04-07 01:40:31 +0200 (Thu, 07 Apr 2011) | 1 line

lshort-english 5.01 (6apr11)

Changed paths:
   M /trunk/Master/texmf-dist/doc/latex/lshort-english/CHANGES
   D /trunk/Master/texmf-dist/doc/latex/lshort-english/lshort-5.00.src.tar.gz
   A /trunk/Master/texmf-dist/doc/latex/lshort-english/lshort-5.01.src.tar.gz
   M /trunk/Master/texmf-dist/doc/latex/lshort-english/lshort.pdf
------------------------------------------------------------------------
r22001 | karl | 2011-04-07 01:39:52 +0200 (Thu, 07 Apr 2011) | 1 line

biblatex 1.4a (6apr11)

Changed paths:
   M /trunk/Master/texmf-dist/bibtex/bst/biblatex/biblatex.bst
   M /trunk/Master/texmf-dist/doc/latex/biblatex/README
   M /trunk/Master/texmf-dist/doc/latex/biblatex/RELEASE
   M /trunk/Master/texmf-dist/doc/latex/biblatex/biblatex.pdf
   M /trunk/Master/texmf-dist/doc/latex/biblatex/biblatex.tex
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/alphabetic-verb.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/alphabetic.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/authortitle-comp.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/authortitle-ibid.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/authortitle-icomp.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/authortitle-tcomp.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/authortitle-terse.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/authortitle-ticomp.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/authortitle.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/authoryear-comp.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/authoryear-ibid.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/authoryear-icomp.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/authoryear.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/debug.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/draft.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/numeric-comp.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/numeric-verb.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/numeric.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/reading.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/standard.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/verbose-ibid.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/verbose-inote.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/verbose-note.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/verbose-trad1.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/verbose-trad2.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/verbose-trad3.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/bbx/verbose.bbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/biblatex.cfg
   M /trunk/Master/texmf-dist/tex/latex/biblatex/biblatex.def
   M /trunk/Master/texmf-dist/tex/latex/biblatex/biblatex.sty
   M /trunk/Master/texmf-dist/tex/latex/biblatex/blx-compat.def
   M /trunk/Master/texmf-dist/tex/latex/biblatex/blx-mcite.def
   M /trunk/Master/texmf-dist/tex/latex/biblatex/blx-natbib.def
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/alphabetic-verb.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/alphabetic.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/authortitle-comp.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/authortitle-ibid.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/authortitle-icomp.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/authortitle-tcomp.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/authortitle-terse.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/authortitle-ticomp.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/authortitle.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/authoryear-comp.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/authoryear-ibid.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/authoryear-icomp.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/authoryear.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/debug.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/draft.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/numeric-comp.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/numeric-verb.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/numeric.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/reading.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/verbose-ibid.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/verbose-inote.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/verbose-note.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/verbose-trad1.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/verbose-trad2.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/verbose-trad3.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/cbx/verbose.cbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/UKenglish.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/USenglish.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/american.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/australian.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/austrian.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/brazil.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/brazilian.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/british.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/canadian.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/danish.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/dutch.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/english.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/finnish.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/french.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/german.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/greek.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/italian.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/naustrian.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/newzealand.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/ngerman.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/norsk.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/norwegian.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/nynorsk.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/portuges.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/portuguese.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/spanish.lbx
   M /trunk/Master/texmf-dist/tex/latex/biblatex/lbx/swedish.lbx
   M /trunk/Master/tlpkg/tlpsrc/metapost.tlpsrc
------------------------------------------------------------------------
r22000 | siepo | 2011-04-06 22:17:55 +0200 (Wed, 06 Apr 2011) | 1 line

Batch menu for portable use

Changed paths:
   A /trunk/Master/tlpkg/installer/tlmenu.bat
------------------------------------------------------------------------
r21999 | peter | 2011-04-06 11:09:42 +0200 (Wed, 06 Apr 2011) | 1 line

Fix MetaPost build rules: avoid to rebuild again and again

Changed paths:
   M /trunk/Build/source/texk/web2c/Makefile.in
   M /trunk/Build/source/texk/web2c/mplibdir/am/libmplib.am
------------------------------------------------------------------------
r21998 | peter | 2011-04-06 11:03:08 +0200 (Wed, 06 Apr 2011) | 1 line

Fix MetaPost build rules: avoid to rebuild again and again

Changed paths:
   M /trunk/Build/source/texk/web2c/Makefile.in
   M /trunk/Build/source/texk/web2c/mplibdir/ChangeLog
   M /trunk/Build/source/texk/web2c/mplibdir/am/libmplib.am
   M /trunk/Build/source/texk/web2c/mplibdir/am/mplib.am
------------------------------------------------------------------------
r21997 | karl | 2011-04-06 04:32:46 +0200 (Wed, 06 Apr 2011) | 1 line

regenerated by /home/texlive/karl/Master/tlpkg/bin/svnchangelog

Changed paths:
   M /trunk/Build/logs/svnlog
------------------------------------------------------------------------