bibtex-ruby 2.0.0pre1 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of bibtex-ruby might be problematic. Click here for more details.

Files changed (44) hide show
  1. data/Gemfile +1 -1
  2. data/Gemfile.lock +1 -1
  3. data/History.txt +14 -1
  4. data/Rakefile.compiled.rbc +351 -260
  5. data/features/step_definitions/bibtex_steps.rbc +31 -16
  6. data/features/step_definitions/name_steps.rbc +1 -1
  7. data/features/support/env.rbc +1 -1
  8. data/lib/bibtex.rbc +58 -42
  9. data/lib/bibtex/bibliography.rb +3 -1
  10. data/lib/bibtex/bibliography.rbc +1623 -693
  11. data/lib/bibtex/compatibility.rbc +1 -1
  12. data/lib/bibtex/elements.rb +1 -1
  13. data/lib/bibtex/elements.rbc +855 -413
  14. data/lib/bibtex/entry.rbc +6115 -3111
  15. data/lib/bibtex/error.rb +2 -1
  16. data/lib/bibtex/error.rbc +258 -43
  17. data/lib/bibtex/extensions.rbc +1 -1
  18. data/lib/bibtex/filters.rbc +1 -1
  19. data/lib/bibtex/filters/latex.rbc +1 -1
  20. data/lib/bibtex/lexer.rbc +396 -449
  21. data/lib/bibtex/name_parser.rbc +152 -509
  22. data/lib/bibtex/names.rbc +979 -425
  23. data/lib/bibtex/parser.rbc +3 -3
  24. data/lib/bibtex/replaceable.rbc +1 -1
  25. data/lib/bibtex/utilities.rbc +1 -1
  26. data/lib/bibtex/value.rb +1 -1
  27. data/lib/bibtex/value.rbc +267 -299
  28. data/lib/bibtex/version.rb +1 -1
  29. data/lib/bibtex/version.rbc +2 -2
  30. data/test/bibtex/test_bibliography.rbc +1055 -184
  31. data/test/bibtex/test_elements.rbc +696 -66
  32. data/test/bibtex/test_entry.rbc +9118 -3743
  33. data/test/bibtex/test_filters.rbc +17 -17
  34. data/test/bibtex/test_lexer.rbc +5 -5
  35. data/test/bibtex/test_name_parser.rbc +11 -11
  36. data/test/bibtex/test_names.rbc +13 -13
  37. data/test/bibtex/test_parser.rbc +72 -87
  38. data/test/bibtex/test_string.rbc +15 -15
  39. data/test/bibtex/test_utilities.rbc +1 -1
  40. data/test/bibtex/test_value.rbc +67 -67
  41. data/test/helper.rbc +20 -36
  42. data/test/test_bibtex.rbc +96 -186
  43. data/test/test_export.rbc +44 -57
  44. metadata +14 -14
data/Gemfile CHANGED
@@ -15,6 +15,6 @@ group :test do
15
15
  end
16
16
 
17
17
  group :profile do
18
- gem 'ruby-prof', ['~>0.10']
18
+ gem 'ruby-prof', ['~>0.10'], :platforms => [:mri_19, :mri_19]
19
19
  gem 'gnuplot', ['~>2.3']
20
20
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bibtex-ruby (2.0.0pre1)
4
+ bibtex-ruby (2.0.0)
5
5
  latex-decode (>= 0.0.3)
6
6
  multi_json (~> 1.0)
7
7
 
@@ -1,3 +1,16 @@
1
+ 2.0.0 / 2011-09-25
2
+ ==================
3
+
4
+ * Added support to directly add Arrays, Hashes, or Strings to Bibliographies
5
+ * Added cross reference support (@etc)
6
+ * Moved back to using strings as Entry keys (instead of symbols)
7
+ * Added improved default key generation
8
+ * Improved name parsing
9
+ * Switched to multi_json gem for JSON and citeproc export
10
+ * Switched to BibTeXML as XML export
11
+ * Added duplicate detection
12
+ * Bugfixes
13
+
1
14
  1.3.12 / 2011-09-06
2
15
  ===================================
3
16
 
@@ -13,7 +26,7 @@
13
26
  ==================
14
27
 
15
28
  * Fixes gemspec options
16
- * Added support for cite keys containing spaces (sharnik)
29
+ * Added support for cite keys containing spaces (@sharnik)
17
30
 
18
31
  === 1.3.9 / 2011-07-05
19
32
 
@@ -1,5 +1,5 @@
1
1
  !RBIX
2
- 9595534255132031488
2
+ 16846133056282117387
3
3
  x
4
4
  M
5
5
  1
@@ -9,87 +9,135 @@ x
9
9
  10
10
10
  __script__
11
11
  i
12
- 605
12
+ 653
13
+ 45
14
+ 0
15
+ 1
16
+ 7
17
+ 2
18
+ 64
19
+ 65
20
+ 49
21
+ 3
22
+ 0
23
+ 49
24
+ 4
25
+ 2
26
+ 19
27
+ 0
28
+ 15
29
+ 99
30
+ 43
13
31
  5
14
32
  7
33
+ 6
34
+ 49
35
+ 7
36
+ 1
37
+ 20
15
38
  0
16
- 64
39
+ 49
40
+ 8
41
+ 1
42
+ 9
43
+ 34
44
+ 1
45
+ 8
17
46
  47
47
+ 99
48
+ 43
49
+ 5
50
+ 7
51
+ 6
18
52
  49
53
+ 7
19
54
  1
55
+ 20
56
+ 0
57
+ 49
58
+ 9
20
59
  1
21
60
  15
22
61
  5
23
62
  7
24
- 2
63
+ 10
25
64
  64
26
65
  47
27
66
  49
28
- 1
67
+ 11
29
68
  1
30
69
  15
31
70
  5
32
71
  7
33
- 3
72
+ 12
34
73
  64
35
74
  47
36
75
  49
37
- 1
76
+ 11
38
77
  1
39
78
  15
40
79
  5
41
80
  7
42
- 4
81
+ 13
43
82
  64
44
83
  47
45
84
  49
85
+ 11
46
86
  1
87
+ 15
88
+ 5
89
+ 7
90
+ 14
91
+ 64
92
+ 47
93
+ 49
94
+ 11
47
95
  1
48
96
  15
49
97
  45
50
- 5
51
- 6
98
+ 15
99
+ 16
52
100
  43
53
- 7
101
+ 17
54
102
  44
55
103
  43
56
- 8
104
+ 18
57
105
  79
58
106
  49
59
- 9
107
+ 19
60
108
  1
61
109
  13
62
110
  7
63
- 10
111
+ 20
64
112
  7
65
- 11
113
+ 21
66
114
  64
67
115
  7
68
- 12
116
+ 22
69
117
  64
70
118
  35
71
119
  2
72
120
  49
73
- 13
121
+ 23
74
122
  2
75
123
  15
76
124
  56
77
- 14
125
+ 24
78
126
  50
79
- 15
127
+ 25
80
128
  1
81
129
  15
82
130
  45
83
- 16
84
- 17
131
+ 26
132
+ 27
85
133
  43
86
- 18
134
+ 28
87
135
  7
88
- 19
136
+ 29
89
137
  56
90
- 20
138
+ 30
91
139
  50
92
- 15
140
+ 25
93
141
  1
94
142
  15
95
143
  26
@@ -97,34 +145,34 @@ i
97
145
  0
98
146
  15
99
147
  29
100
- 115
148
+ 163
101
149
  0
102
150
  5
103
151
  7
104
- 21
152
+ 31
105
153
  64
106
154
  47
107
155
  49
108
- 1
156
+ 11
109
157
  1
110
158
  15
111
159
  45
112
- 22
113
- 23
160
+ 32
161
+ 33
114
162
  43
115
- 16
163
+ 26
116
164
  43
165
+ 17
117
166
  7
118
- 7
119
- 24
167
+ 34
120
168
  56
121
- 25
169
+ 35
122
170
  50
123
- 15
171
+ 25
124
172
  1
125
173
  30
126
174
  8
127
- 159
175
+ 207
128
176
  26
129
177
  93
130
178
  1
@@ -132,38 +180,38 @@ i
132
180
  24
133
181
  13
134
182
  45
135
- 26
136
- 27
183
+ 36
184
+ 37
137
185
  12
138
186
  49
139
- 28
187
+ 38
140
188
  1
141
189
  10
142
- 132
190
+ 180
143
191
  8
144
- 154
192
+ 202
145
193
  15
146
194
  5
147
195
  7
148
- 29
196
+ 39
149
197
  64
150
198
  47
151
199
  49
152
- 30
200
+ 40
153
201
  1
154
202
  15
155
203
  5
156
204
  7
157
- 24
205
+ 34
158
206
  56
159
- 31
207
+ 41
160
208
  47
161
209
  50
162
- 32
210
+ 42
163
211
  1
164
212
  25
165
213
  8
166
- 159
214
+ 207
167
215
  15
168
216
  92
169
217
  1
@@ -176,456 +224,484 @@ i
176
224
  5
177
225
  44
178
226
  43
179
- 8
227
+ 18
180
228
  79
181
229
  49
182
- 9
230
+ 19
183
231
  1
184
232
  13
185
233
  7
186
- 33
234
+ 43
187
235
  7
188
- 12
236
+ 22
189
237
  64
190
238
  35
191
239
  1
192
240
  49
193
- 13
241
+ 23
194
242
  2
195
243
  15
196
244
  47
197
245
  49
198
- 32
246
+ 42
199
247
  1
200
248
  15
201
249
  5
202
250
  7
203
- 34
251
+ 44
204
252
  64
205
253
  47
206
254
  49
207
- 30
255
+ 40
208
256
  1
209
257
  15
210
258
  5
211
259
  44
212
260
  43
213
- 8
261
+ 18
214
262
  79
215
263
  49
216
- 9
264
+ 19
217
265
  1
218
266
  13
219
267
  7
220
- 35
268
+ 45
221
269
  7
222
- 36
270
+ 46
223
271
  64
224
272
  7
225
- 37
273
+ 47
226
274
  64
227
275
  35
228
276
  2
229
277
  49
230
- 13
278
+ 23
231
279
  2
232
280
  15
233
281
  47
234
282
  49
235
- 32
283
+ 42
236
284
  1
237
285
  15
238
286
  5
239
287
  44
240
288
  43
241
- 8
289
+ 18
242
290
  79
243
291
  49
244
- 9
292
+ 19
245
293
  1
246
294
  13
247
295
  7
248
- 38
296
+ 48
249
297
  7
250
- 12
298
+ 22
251
299
  64
252
300
  7
253
- 39
301
+ 49
254
302
  64
255
303
  35
256
304
  2
257
305
  49
258
- 13
306
+ 23
259
307
  2
260
308
  15
261
309
  47
262
310
  49
263
- 32
311
+ 42
264
312
  1
265
313
  15
266
314
  5
267
315
  44
268
316
  43
269
- 8
317
+ 18
270
318
  79
271
319
  49
272
- 9
320
+ 19
273
321
  1
274
322
  13
275
323
  7
276
- 40
324
+ 50
277
325
  64
278
326
  7
279
- 36
327
+ 46
280
328
  64
281
329
  35
282
330
  1
283
331
  49
284
- 13
332
+ 23
285
333
  2
286
334
  15
287
335
  47
288
336
  49
289
- 41
337
+ 51
290
338
  1
291
339
  15
292
340
  5
293
341
  44
294
342
  43
295
- 8
343
+ 18
296
344
  79
297
345
  49
298
- 9
346
+ 19
299
347
  1
300
348
  13
301
349
  7
302
- 36
350
+ 46
303
351
  64
304
352
  7
305
- 42
353
+ 52
306
354
  64
307
355
  35
308
356
  1
309
357
  49
310
- 13
358
+ 23
311
359
  2
312
360
  15
313
361
  56
314
- 43
362
+ 53
315
363
  47
316
364
  50
317
- 41
365
+ 51
318
366
  1
319
367
  15
320
368
  5
321
369
  44
322
370
  43
323
- 8
371
+ 18
324
372
  79
325
373
  49
326
- 9
374
+ 19
327
375
  1
328
376
  13
329
377
  7
330
- 37
378
+ 47
331
379
  64
332
380
  7
333
- 44
381
+ 54
334
382
  64
335
383
  35
336
384
  1
337
385
  49
338
- 13
386
+ 23
339
387
  2
340
388
  15
341
389
  56
342
- 45
390
+ 55
343
391
  47
344
392
  50
345
- 41
393
+ 51
346
394
  1
347
395
  15
348
396
  5
349
397
  7
350
- 46
398
+ 56
351
399
  64
352
400
  47
353
401
  49
354
- 30
402
+ 40
355
403
  1
356
404
  15
357
405
  5
358
406
  44
359
407
  43
360
- 8
408
+ 18
361
409
  79
362
410
  49
363
- 9
411
+ 19
364
412
  1
365
413
  13
366
414
  7
367
- 47
415
+ 57
368
416
  7
369
- 12
417
+ 22
370
418
  64
371
419
  35
372
420
  1
373
421
  49
374
- 13
422
+ 23
375
423
  2
376
424
  15
377
425
  56
378
- 48
426
+ 58
379
427
  47
380
428
  50
381
- 32
429
+ 42
382
430
  1
383
431
  15
384
432
  5
385
433
  44
386
434
  43
387
- 8
435
+ 18
388
436
  79
389
437
  49
390
- 9
438
+ 19
391
439
  1
392
440
  13
393
441
  7
394
- 49
442
+ 59
395
443
  7
396
- 50
444
+ 60
397
445
  64
398
446
  35
399
447
  1
400
448
  49
401
- 13
449
+ 23
402
450
  2
403
451
  15
404
452
  47
405
453
  49
406
- 32
454
+ 42
407
455
  1
408
456
  15
409
457
  5
410
458
  7
411
- 51
459
+ 61
412
460
  64
413
461
  47
414
462
  49
415
- 30
463
+ 40
416
464
  1
417
465
  15
418
466
  5
419
467
  44
420
468
  43
421
- 8
469
+ 18
422
470
  79
423
471
  49
424
- 9
472
+ 19
425
473
  1
426
474
  13
427
475
  7
428
- 52
476
+ 62
429
477
  7
430
- 12
478
+ 22
431
479
  64
432
480
  35
433
481
  1
434
482
  49
435
- 13
483
+ 23
436
484
  2
437
485
  15
438
486
  56
439
- 53
487
+ 63
440
488
  47
441
489
  50
442
- 32
490
+ 42
443
491
  1
444
492
  15
445
493
  5
446
494
  7
447
- 54
495
+ 64
448
496
  64
449
497
  47
450
498
  49
451
- 30
499
+ 40
452
500
  1
453
501
  15
454
502
  5
455
503
  44
456
504
  43
457
- 8
505
+ 18
458
506
  79
459
507
  49
460
- 9
508
+ 19
461
509
  1
462
510
  13
463
511
  7
464
- 55
512
+ 65
465
513
  7
466
- 11
514
+ 21
467
515
  64
468
516
  7
469
- 12
517
+ 22
470
518
  64
471
519
  35
472
520
  2
473
521
  49
474
- 13
522
+ 23
475
523
  2
476
524
  15
477
525
  56
478
- 56
526
+ 66
479
527
  47
480
528
  50
481
- 32
529
+ 42
482
530
  1
483
531
  15
484
532
  5
485
533
  7
486
- 57
534
+ 67
487
535
  64
488
536
  47
489
537
  49
490
- 30
538
+ 40
491
539
  1
492
540
  15
493
541
  5
494
542
  44
495
543
  43
496
- 8
544
+ 18
497
545
  79
498
546
  49
499
- 9
547
+ 19
500
548
  1
501
549
  13
502
550
  7
503
- 58
551
+ 68
504
552
  7
505
- 59
553
+ 69
506
554
  64
507
555
  35
508
556
  1
509
557
  49
510
- 13
558
+ 23
511
559
  2
512
560
  15
513
561
  56
514
- 60
562
+ 70
515
563
  47
516
564
  50
517
- 32
565
+ 42
518
566
  1
519
567
  15
520
568
  5
521
569
  7
522
- 61
570
+ 71
523
571
  64
524
572
  47
525
573
  49
526
- 30
574
+ 40
527
575
  1
528
576
  15
529
577
  5
530
578
  44
531
579
  43
532
- 8
580
+ 18
533
581
  79
534
582
  49
535
- 9
583
+ 19
536
584
  1
537
585
  13
538
586
  7
539
- 62
587
+ 72
540
588
  7
541
- 63
589
+ 73
542
590
  64
543
591
  35
544
592
  1
545
593
  49
546
- 13
594
+ 23
547
595
  2
548
596
  15
549
597
  56
550
- 64
598
+ 74
551
599
  47
552
600
  50
553
- 32
601
+ 42
554
602
  1
555
603
  15
556
604
  45
557
- 65
558
- 66
605
+ 75
606
+ 76
559
607
  7
560
- 36
608
+ 46
561
609
  64
562
610
  49
563
- 67
611
+ 77
564
612
  1
565
613
  15
566
614
  45
567
- 65
568
- 68
615
+ 75
616
+ 78
569
617
  7
570
- 40
618
+ 50
571
619
  64
572
620
  49
573
- 67
621
+ 77
574
622
  1
575
623
  15
576
624
  45
577
- 65
578
- 69
625
+ 75
626
+ 79
579
627
  7
580
- 37
628
+ 47
581
629
  64
582
630
  49
583
- 67
631
+ 77
584
632
  1
585
633
  15
586
634
  45
587
- 65
588
- 70
635
+ 75
636
+ 80
589
637
  7
590
- 71
638
+ 81
591
639
  64
592
640
  49
593
- 67
641
+ 77
594
642
  1
595
643
  15
596
644
  45
597
- 65
598
- 72
645
+ 75
646
+ 82
599
647
  7
600
- 73
648
+ 83
601
649
  64
602
650
  49
603
- 67
651
+ 77
604
652
  1
605
653
  15
606
654
  45
607
- 65
608
- 74
609
- 7
610
655
  75
656
+ 84
657
+ 7
658
+ 85
611
659
  64
612
660
  49
613
- 67
661
+ 77
614
662
  1
615
663
  15
616
664
  2
617
665
  11
618
666
  I
619
- 8
667
+ 9
620
668
  I
621
- 0
669
+ 1
622
670
  I
623
671
  0
624
672
  I
625
673
  0
626
674
  n
627
675
  p
628
- 76
676
+ 86
677
+ x
678
+ 4
679
+ File
680
+ n
681
+ s
682
+ 7
683
+ ../lib/
684
+ x
685
+ 11
686
+ active_path
687
+ x
688
+ 11
689
+ expand_path
690
+ x
691
+ 7
692
+ Globals
693
+ x
694
+ 2
695
+ $:
696
+ x
697
+ 2
698
+ []
699
+ x
700
+ 8
701
+ include?
702
+ x
703
+ 7
704
+ unshift
629
705
  s
630
706
  10
631
707
  rake/clean
@@ -802,27 +878,27 @@ p
802
878
  I
803
879
  0
804
880
  I
805
- a
881
+ c
806
882
  I
807
883
  4
808
884
  I
809
- b
885
+ d
810
886
  I
811
887
  11
812
888
  I
813
- c
889
+ e
814
890
  I
815
891
  1e
816
892
  I
817
- d
893
+ f
818
894
  I
819
895
  2d
820
896
  I
821
- e
897
+ 10
822
898
  I
823
899
  3a
824
900
  I
825
- f
901
+ 11
826
902
  I
827
903
  46
828
904
  x
@@ -956,19 +1032,19 @@ p
956
1032
  I
957
1033
  0
958
1034
  I
959
- 12
1035
+ 14
960
1036
  I
961
1037
  4
962
1038
  I
963
- 13
1039
+ 15
964
1040
  I
965
1041
  16
966
1042
  I
967
- 14
1043
+ 16
968
1044
  I
969
1045
  29
970
1046
  I
971
- 15
1047
+ 17
972
1048
  I
973
1049
  34
974
1050
  x
@@ -1042,11 +1118,11 @@ p
1042
1118
  I
1043
1119
  0
1044
1120
  I
1045
- 1a
1121
+ 1c
1046
1122
  I
1047
1123
  4
1048
1124
  I
1049
- 1b
1125
+ 1d
1050
1126
  I
1051
1127
  11
1052
1128
  x
@@ -1116,7 +1192,7 @@ p
1116
1192
  I
1117
1193
  0
1118
1194
  I
1119
- 20
1195
+ 22
1120
1196
  I
1121
1197
  9
1122
1198
  x
@@ -1193,8 +1269,8 @@ I
1193
1269
  p
1194
1270
  2
1195
1271
  s
1196
- 63
1197
- bundle exec racc -v -o lib/bibtex/parser.rb lib/bibtex/bibtex.y
1272
+ 60
1273
+ bundle exec racc -o lib/bibtex/parser.rb lib/bibtex/bibtex.y
1198
1274
  x
1199
1275
  2
1200
1276
  sh
@@ -1203,7 +1279,7 @@ p
1203
1279
  I
1204
1280
  0
1205
1281
  I
1206
- 2f
1282
+ 31
1207
1283
  I
1208
1284
  9
1209
1285
  x
@@ -1250,8 +1326,8 @@ I
1250
1326
  p
1251
1327
  2
1252
1328
  s
1253
- 67
1254
- bundle exec racc -v -o lib/bibtex/name_parser.rb lib/bibtex/names.y
1329
+ 64
1330
+ bundle exec racc -o lib/bibtex/name_parser.rb lib/bibtex/names.y
1255
1331
  x
1256
1332
  2
1257
1333
  sh
@@ -1260,7 +1336,7 @@ p
1260
1336
  I
1261
1337
  0
1262
1338
  I
1263
- 34
1339
+ 36
1264
1340
  I
1265
1341
  9
1266
1342
  x
@@ -1340,7 +1416,7 @@ p
1340
1416
  I
1341
1417
  0
1342
1418
  I
1343
- 39
1419
+ 3b
1344
1420
  I
1345
1421
  13
1346
1422
  x
@@ -1426,7 +1502,7 @@ p
1426
1502
  I
1427
1503
  0
1428
1504
  I
1429
- 3f
1505
+ 41
1430
1506
  I
1431
1507
  13
1432
1508
  x
@@ -1549,15 +1625,15 @@ p
1549
1625
  I
1550
1626
  0
1551
1627
  I
1552
- 45
1628
+ 47
1553
1629
  I
1554
1630
  f
1555
1631
  I
1556
- 46
1632
+ 48
1557
1633
  I
1558
1634
  24
1559
1635
  I
1560
- 47
1636
+ 49
1561
1637
  I
1562
1638
  2a
1563
1639
  x
@@ -1623,7 +1699,7 @@ p
1623
1699
  I
1624
1700
  0
1625
1701
  I
1626
- 4c
1702
+ 4e
1627
1703
  I
1628
1704
  9
1629
1705
  x
@@ -1715,7 +1791,7 @@ p
1715
1791
  I
1716
1792
  0
1717
1793
  I
1718
- 51
1794
+ 53
1719
1795
  I
1720
1796
  16
1721
1797
  x
@@ -1745,159 +1821,174 @@ s
1745
1821
  5
1746
1822
  *.gem
1747
1823
  p
1748
- 75
1824
+ 81
1749
1825
  I
1750
1826
  0
1751
1827
  I
1828
+ 2
1829
+ I
1830
+ 10
1831
+ I
1752
1832
  3
1753
1833
  I
1754
- 9
1834
+ 2f
1755
1835
  I
1756
- 4
1836
+ 0
1757
1837
  I
1758
- 12
1838
+ 30
1839
+ I
1840
+ 5
1841
+ I
1842
+ 39
1759
1843
  I
1760
1844
  6
1761
1845
  I
1762
- 1b
1846
+ 42
1763
1847
  I
1764
1848
  8
1765
1849
  I
1766
- 24
1850
+ 4b
1767
1851
  I
1768
1852
  a
1769
1853
  I
1770
- 45
1854
+ 54
1771
1855
  I
1772
- 12
1856
+ c
1773
1857
  I
1774
- 52
1858
+ 75
1775
1859
  I
1776
- 19
1860
+ 14
1777
1861
  I
1778
- 62
1862
+ 82
1779
1863
  I
1780
- 1a
1864
+ 1b
1781
1865
  I
1782
- 73
1866
+ 92
1783
1867
  I
1784
- 0
1868
+ 1c
1785
1869
  I
1786
- 78
1870
+ a3
1787
1871
  I
1788
- 1d
1872
+ 0
1789
1873
  I
1790
- 85
1874
+ a8
1791
1875
  I
1792
- 1e
1876
+ 1f
1793
1877
  I
1794
- 8e
1878
+ b5
1795
1879
  I
1796
- 1f
1880
+ 20
1797
1881
  I
1798
- 9f
1882
+ be
1799
1883
  I
1800
- 0
1884
+ 21
1801
1885
  I
1802
- a3
1886
+ cf
1803
1887
  I
1804
- 25
1888
+ 0
1805
1889
  I
1806
- bc
1890
+ d3
1807
1891
  I
1808
1892
  27
1809
1893
  I
1810
- c5
1894
+ ec
1811
1895
  I
1812
- 28
1896
+ 29
1813
1897
  I
1814
- e1
1898
+ f5
1815
1899
  I
1816
1900
  2a
1817
1901
  I
1818
- fd
1902
+ 111
1819
1903
  I
1820
1904
  2c
1821
1905
  I
1822
- 117
1906
+ 12d
1823
1907
  I
1824
- 2d
1908
+ 2e
1825
1909
  I
1826
- 133
1910
+ 147
1827
1911
  I
1828
- 32
1912
+ 2f
1829
1913
  I
1830
- 14f
1914
+ 163
1831
1915
  I
1832
- 37
1916
+ 34
1833
1917
  I
1834
- 158
1918
+ 17f
1835
1919
  I
1836
- 38
1920
+ 39
1837
1921
  I
1838
- 173
1922
+ 188
1839
1923
  I
1840
- 3b
1924
+ 3a
1841
1925
  I
1842
- 18c
1926
+ 1a3
1843
1927
  I
1844
1928
  3d
1845
1929
  I
1846
- 195
1847
- I
1848
- 3e
1930
+ 1bc
1849
1931
  I
1850
- 1b0
1851
- I
1852
- 43
1932
+ 3f
1853
1933
  I
1854
- 1b9
1934
+ 1c5
1855
1935
  I
1856
- 44
1936
+ 40
1857
1937
  I
1858
- 1d7
1938
+ 1e0
1859
1939
  I
1860
- 4a
1940
+ 45
1861
1941
  I
1862
- 1e0
1942
+ 1e9
1863
1943
  I
1864
- 4b
1944
+ 46
1865
1945
  I
1866
- 1fb
1946
+ 207
1867
1947
  I
1868
- 4f
1948
+ 4c
1869
1949
  I
1870
- 204
1950
+ 210
1871
1951
  I
1872
- 50
1952
+ 4d
1873
1953
  I
1874
- 21f
1954
+ 22b
1875
1955
  I
1876
- 54
1956
+ 51
1877
1957
  I
1878
- 229
1958
+ 234
1879
1959
  I
1880
- 55
1960
+ 52
1881
1961
  I
1882
- 233
1962
+ 24f
1883
1963
  I
1884
1964
  56
1885
1965
  I
1886
- 23d
1966
+ 259
1887
1967
  I
1888
1968
  57
1889
1969
  I
1890
- 247
1970
+ 263
1891
1971
  I
1892
1972
  58
1893
1973
  I
1894
- 251
1974
+ 26d
1895
1975
  I
1896
1976
  59
1897
1977
  I
1898
- 25d
1978
+ 277
1979
+ I
1980
+ 5a
1981
+ I
1982
+ 281
1983
+ I
1984
+ 5b
1985
+ I
1986
+ 28d
1899
1987
  x
1900
1988
  42
1901
1989
  /Users/sylvester/Work/bibtex-ruby/Rakefile
1902
1990
  p
1903
- 0
1991
+ 1
1992
+ x
1993
+ 3
1994
+ lib