forked from Juris-M/citeproc-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGES.txt
9350 lines (6520 loc) · 254 KB
/
CHANGES.txt
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
Summary of changes to citeproc-js since version 1.0.0 release.
==========================
Changes in version 1.1.102
==========================
- Append citationID to the citation arrays returned
by processCitationCluster(). Depending on document
addressing capabilities, this can greatly simplify
the matching of updates to document citations.
==========================
Changes in version 1.1.101
==========================
- Fix missing-delimiter bug with explicit year-suffix.
- Fix erroneous render of implicit year-suffix when date variable
has no content. Reported by Sebastian:
https://forums.zotero.org/discussion/58636/collapse-yearsuffix-in-chicago-manual-of-style/#Item_5
==========================
Changes in version 1.1.100
==========================
- In @initialize-with attribute value, retain zero-width non-breaking
space (\uFEFF) and non-breaking space (\u00A0) as inter-initials
join, and in the RU and FR locales only, when either non-breaking
space is present in the attribute value, use non-breaking space
(\u00A0) as given-to-family join when building initialized names in
non-sort order. Otherwise, use space for given-to-family join.
Resolves issue discussed at:
https://forums.zotero.org/discussion/31693/nonbreaking-space-unavailable-between-initials-and-names
- Fix bug in which styling of cs:date nodes with no variable content
(specifically affixes) affected styling in subsequent date nodes.
- Fix bugs in explicit year-suffix when used with year- or year-suffix collapse.
=========================
Changes in version 1.1.99
=========================
- Fix pluralism of embedded labels.
=========================
Changes in version 1.1.98
=========================
- Recognized balanced single- or balanced double-quotes
in XML markup.
=========================
Changes in version 1.1.97
=========================
- Set single-field names from {:key:val} note field hacks as
literal, rather than as family + isInstitution.
=========================
Changes in version 1.1.96
=========================
- Handle DOS and Mac line endings correctly when parsing serialized
XML.
=========================
Changes in version 1.1.95
=========================
- Trim numeric field values before parsing.
=========================
Changes in version 1.1.94
=========================
- Extend parseNoteFieldHacks() to accept a hash object of
valid-field flags.
=========================
Changes in version 1.1.93
=========================
- Expose field-hack decoding as parseNoteFieldHacks() method
on CSL object.
=========================
Changes in version 1.1.92
=========================
- Add pretitle macros to all style modules. Thank you OSCOLA,
thank you European Court of Justice.
=========================
Changes in version 1.1.91
=========================
- Return bibliography strings as an array of strings,
not as a array of and array of strings. Restores behaviour
prior to 1.1.68. Fault reported by Carles Pina.
=========================
Changes in version 1.1.90
=========================
- Return false for comma-safe when term set is a value term
on cs:text.
=========================
Changes in version 1.1.89
=========================
- Set just_did_number flag on cs:text with term or value attribute.
=========================
Changes in version 1.1.88
=========================
- With comma-safe, always return true a term exists and is alpha.
=========================
Changes in version 1.1.87
=========================
Fix nesting mismatch triggered on RTL-language items. Reported by
abdeali khurrum to the Juris-M Freshers list.
=========================
Changes in version 1.1.86
=========================
- Fix failure to return variable_attempt=true when
require="empty-label" failed, and so fail to suppress
sibling term when no other variable renderings are
attempted.
=========================
Changes in version 1.1.85
=========================
- Remove stale alternative-macro support from processor,
and fix tests to remove it from there.
- Update CSL-M schema to add empty-label value on reject and require.
- Enhancements and bugfixes for require and reject:
- Handle group_context only on real nodes in the style.
- Treat the outer group on macros as a real group node in the style.
- Fix a bug in the application of layout suffix on bibliographies.
- Add an empty-label value to reject and require.
- Flag a failed reject or require to the parent as a failed attempt
to render a variable, so that it will take bare term siblings
with it on fail.
=========================
Changes in version 1.1.84
=========================
- Replace reject and require conditions with smarter
comma-safe value
=========================
Changes in version 1.1.83
=========================
- Fix hang condition triggered when single straight quotes were set as
inner quotes, and a field contained a straight-quote apostrophe.
=========================
Changes in version 1.1.82
=========================
- Fix Arabic locale selection.
=========================
Changes in version 1.1.81
=========================
- Remove unused macros from modular code tests.
- Fix minor bugs in require and reject code.
- Fix bug in "romanesque" regular expressions.
- Return styleID from JSON parser.
=========================
Changes in version 1.1.80
=========================
- Force per-word sorting on all sort keys.
- Fix bug in new reject and require attributes that caused
test to fail when rendered label was nested in a macro
or condition statement.
- Move in CSL-M tests migrated from standard CSL test suite.
=========================
Changes in version 1.1.79
=========================
- Recognize require and reject attribute on cs:text in
value and term modes.
=========================
Changes in version 1.1.78
=========================
- Clean up group context code, replacing array with
keyed object.
- Remove stale "oops" attribute code.
- Implement require and reject condition attributes
on cs:group with "label-empty-or-alpha" value.
=========================
Changes in version 1.1.77
=========================
- Fix failure of locale-based numeric-term embedded affixes on
first number in field.
- Add "static" term form to CSL-M schema, and mask it from
changes via the label-form attribute.
- Add -nojuris mode option to ./test.py
=========================
Changes in version 1.1.76
=========================
- Fix parallel cite test failure.
=========================
Changes in version 1.1.75
=========================
- Unescape angle brackets in string-based parser.
(checked Zotero styles repo to confirm that all
names entities used in CSL styles are now covered).
=========================
Changes in version 1.1.74
=========================
- Migrate repo to git.
- Fix issue with raw affix affecting French styles.
- Include CSL test suite, CSL locales, CSL and CSL-M schemata,
and a new citeproc-js-docs repo as submodules.
- Implement a string-based XML-to-JS converter.
- Bundle DOM and JSON walking parsers and XML-to-JS converter in
processor instance, and sniff input to select parser.
- Provide with-E4X and without-E4X versions of the processor code.
- Clean up the test script a bit.
- Fix support for alternative JS engines.
- Merge JS runners into a single file.
- Add jing validator to project repo, and fix test.py -c to
report correct source filename on error.
- Remove unused files.
=========================
Changes in version 1.1.73
=========================
- Permit use of leading-noise-words in style-level locale declarations.
- Suppress parens flip on all but note styles.
- Make test fixtures work with standard CSL locales.
=========================
Changes in version 1.1.72
=========================
- More robust implementation of parens-flipping, enabled only
on note styles.
- Fix global replacements that failed on many JS implementations.
- Introduce string-based parsing of serialized XML.
- Extend test framework to allow use of alternative JS engines.
- Remove spaces from sort keys to fix sort behaviour on several
JS implementations.
- Add a few test fixtures.
=========================
Changes in version 1.1.71
=========================
- Fix bug affecting styles making use of near-note.
Reported by Zotero user @tog
https://forums.zotero.org/discussion/56946/attribute-name-formshort-ignored/
=========================
Changes in version 1.1.70
=========================
- Fix a second bug, affecting all styles. Check for nesting name
failed erroneously, but failure did not show in tests b/c written
to console.log() rather than print().
=========================
Changes in version 1.1.69
=========================
- Fix a bug that manifested in Juris-M configuration with the
Vancouver style.
=========================
Changes in version 1.1.68
=========================
- Revised handling for numeric variables
* Numeric variables are processed identically in cs:text and cs:number
* Label short-codes embedded in fields are recognized and pluralized
* Label override by leading short-code recognized in locator and number
* Per-number affixes can be specified in locale label terms with %s placeholder
* Prefix and suffix labels can be forced in locale label terms with %s placeholder
* Expansion and collapsing of page ranges in locators is supported
=========================
Changes in version 1.1.67
=========================
- Fix a bug in reverse-lookup support used by the visual editor.
=========================
Changes in version 1.1.66
=========================
- Remove title-casing suppression from quotes, and smarten up
quote parsing.
http://xbiblio-devel.2463403.n2.nabble.com/Title-case-questions-tt7579427.html
=========================
Changes in version 1.1.65
=========================
- Amend date parser module to accomodate usage in Juris-M, and
provide parse() method for backward compatibility.
- Make parsed date values numeric
https://github.com/Juris-M/zotero/issues/2
- Fix date parsing bug exposed when multiple date locales are
loaded
https://github.com/Juris-M/zotero/issues/9
- Recognize underscore workaround as a date delimiter
https://github.com/Juris-M/zotero/issues/6
- Return incompletely parsed dates as literal
https://github.com/Juris-M/zotero/issues/13
=========================
Changes in version 1.1.64
=========================
- Fix bug in xmljson.js that caused incorrect formatting of
names in some styles when rendered with xmljson.js parser:
https://github.com/zotero/citeproc-node/issues/26
- Fix bug in text-case="title" that prevented tag-enclosed
text from uppercasing properly.
https://bitbucket.org/fbennett/citeproc-js/issues/187/title-case-formatter-does-not-title-case
- Fix sort bug affecting some JavaScript engines.
https://twitter.com/fgbjr/status/662844111834079232
=========================
Changes in version 1.1.63
=========================
- Extend uppercase-subtitles option to cover container-title
as well. New code is extensible to series titles as well, if
that is desired.
https://github.com/Juris-M/propachi-upper/issues/2
=========================
Changes in version 1.1.62
=========================
- Fix bug in cite-group-delimiter:
https://github.com/citation-style-language/styles/pull/1742/files#r43429282
=========================
Changes in version 1.1.61
=========================
- Fix Extra-field hack parse of creators. Add (possibly multiple)
names if original input had not name of same category. Addresses
bug report:
https://github.com/zotero/zotero/issues/846#issuecomment-146794378
=========================
Changes in version 1.1.60
=========================
- Avoid erroneous disambiguation when non-"issued" date variables
are the only difference between citations (but continue to ignore
"accessed").
https://forums.zotero.org/discussion/52758/disambiguation-enabled-when-not-needed-with-date--original-date/
=========================
Changes in version 1.1.59
=========================
- Update to processor documentation.
- Fix parsing of particles with articulars to work like normal.
=========================
Changes in version 1.1.58
=========================
- Fix a bug in the particle parser, ouch. Thanks to Emiliano Heyns
for reporting it:
https://bitbucket.org/fbennett/citeproc-js/issues/183/particle-parser-returning-non-dropping
=========================
Changes in version 1.1.57
=========================
- Simplify particle parsing mechanism, following discussion in these threads:
https://forums.zotero.org/discussion/51491/double-surnames-starting-with-te-end-up-quoted-incorrect/
https://forums.zotero.org/discussion/51783/1/parsing-problem-on-italian-names/
- Move list of particles to a separate processor segment, for access by
calling applications that implement their own parsing methods.
=========================
Changes in version 1.1.56
=========================
- Fix bug in cite-group-delimiter:
https://forums.zotero.org/discussion/51942/citeprog-bug-citegroupdelimiter-and-yearsuffix/#Item_1
=========================
Changes in version 1.1.55
=========================
- Add Dutch particles from external source linked by Rintze, as suggested by nickbart
https://forums.zotero.org/discussion/30974/2/any-idea-why-an-a-author-comes-last-in-the-bibliography/2/#Item_26
- Merge entries as appropriate
=========================
Changes in version 1.1.54
=========================
- Reformat particle list
=========================
Changes in version 1.1.53
=========================
- Fix some Italian particle classifications
https://forums.zotero.org/discussion/51783/parsing-problem-on-italian-names/
=========================
Changes in version 1.1.52
=========================
- Fix Dutch particle classifications, per:
https://forums.zotero.org/discussion/51491/double-surnames-starting-with-te-end-up-quoted-incorrect/#Comment_232339
- Restore case sensitivity in names parsing.
- Restore uppercase Arabic particles, pending further feedback from Arabists.
=========================
Changes in version 1.1.51
=========================
- Discriminate between dropping and non-dropping particles in
subsequent-author-substitute. Reported by gracile:
https://forums.zotero.org/discussion/51260/citeproc-same-author-different-particles-parsing-subsequentauthorsubstitute/
=========================
Changes in version 1.1.50
=========================
- Bugfixes in handling of displayed jurisdiction names.
=========================
Changes in version 1.1.49
=========================
- Clean up suppress-jurisdictions mess (includes a change to hook function
signature).
=========================
Changes in version 1.1.48
=========================
- Do not swap punctuation across quotes="false" boundary.
- Do not migrate terminal punctuation across quotes boundary.
=========================
Changes in version 1.1.47
=========================
- Avoid first-entry exception with styles that use first-reference-note-number.
https://forums.zotero.org/discussion/39244/error-mlz-citation-processor-only-works-second-time/#Item_27
=========================
Changes in version 1.1.46
=========================
- Fix parsing crash.
https://forums.zotero.org/discussion/17317/2/sep-is-undefined/#Item_18
=========================
Changes in version 1.1.45
=========================
- Make name parsing completely case-insensitive. This change
aims only to put a consistent behaviour in place, as a basis
for further discussion as we make our way through the name-particle
morass.
https://forums.zotero.org/discussion/42687/found-a-bug-with-name-starting-with-de/#Item_6
- Provide for discretionary classification of "de las" and "de la" as all-non-dropping
or dropping/non-dropping, depending on user entry.
https://forums.zotero.org/discussion/30974/2/any-idea-why-an-a-author-comes-last-in-the-bibliography/#Item_12
- Remove uppercase versions of Arabic name particles. Maybe be restored if case
sensitivity is introduced.
=========================
Changes in version 1.1.44
=========================
- Suppress jurisdictions based on machine-readable code,
regardless of multilingual variant.
=========================
Changes in version 1.1.43
=========================
- Fix bugs in three particle specs (d', des, de).
https://forums.zotero.org/discussion/50718/apostrophe-in-last-name/
=========================
Changes in version 1.1.42
=========================
- Eliminate extraneous \\line operator in RTF output. Not
extensively tested.
https://forums.zotero.org/discussion/2252/word-plugin-inserts-superfluous-linebreaks-in-bibliography/
https://forums.zotero.org/discussion/50628/bibliography-alignment/
=========================
Changes in version 1.1.41
=========================
- Introduce option to disable the parsing of names in the
processor (delegating to the calling application)
https://forums.zotero.org/discussion/30974?page=1#Item_46
=========================
Changes in version 1.1.40
=========================
- Introduce force_jurisdiction option for extended styles.
- Replace String() methods with RegExp() for compatibility
https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/String/replace
- Fix typo in particle parsing struct (affecting al- and von), and add
a list of Arabic particles
https://forums.zotero.org/discussion/30974/any-idea-why-an-a-author-comes-last-in-the-bibliography/#Item_30
=========================
Changes in version 1.1.39
=========================
- Fix title case to work in Internet Explorer.
Thanks to David Laurenson for reporting the fault.
=========================
Changes in version 1.1.38
=========================
- Do not capitalize leading particles in the bibliography.
https://forums.zotero.org/discussion/50199/lowercase-first-letter-of-the-surname
=========================
Changes in version 1.1.37
=========================
- Fix scoping bug in RTF markup.
https://forums.zotero.org/discussion/50304/problems-with-et-al
=========================
Changes in version 1.1.36
=========================
- Fix further root of bug in institutiona names handling,
affecting first-class instititional names (not authority
or committee) that have a multilingual variant.
Thanks to Zotero user bluunksaesn for reporting.
=========================
Changes in version 1.1.35
=========================
- Fix a bug introduced at 1.1.33. New code for juggling
suffixes crashed when an empty item was encountered.
=========================
Changes in version 1.1.34
=========================
- Fix bug in institution names handling. Force values to
obj.literal rather than obj.family w/obj.isInstitution.
Simpler is beautifuler.
=========================
Changes in version 1.1.33
=========================
- Fix bug in multiple layouts. With the second-field-align option,
the layout suffix on non-default alternative layouts was placed
outside of the right-inline block, resulting in a stray hard
return between the citation and the trailing punctuation in output.
Many thanks to Vladimir Sobolev for reporting the fault.
=========================
Changes in version 1.1.32
=========================
- Show multilingual forms of long-form institution name on
failover from request for short form.
=========================
Changes in version 1.1.31
=========================
- Fix bug in 1.1.30
=========================
Changes in version 1.1.30
=========================
- Enable alternative-macro calls from within modular code.
The macro called is the macro in the main style; this will
require a convention to use a uniform macro name for this
purpose (this: "at-locator-label"), and to provide it in
all main JM styles.
=========================
Changes in version 1.1.29
=========================
- Extend discretionary creator handling to committee variable.
=========================
Changes in version 1.1.28
=========================
- Provide mappings for all multilingual fields in LangPrefsMap
=========================
Changes in version 1.1.27
=========================
- Make short form of institutional names empty by default.
=========================
Changes in version 1.1.26
=========================
- Add language-name and language-name-original with
short forms in "place" category.
=========================
Changes in version 1.1.25
=========================
- Add an authority-residue condition. Checks whether
there are elements not rendered by the most recent
use-last condition.
=========================
Changes in version 1.1.24
=========================
- The proper fix for fallbacks.
=========================
Changes in version 1.1.23
=========================
- Bugfix in fallback.
=========================
Changes in version 1.1.22
=========================
- Set "us" as the fallback style module, if available.
=========================
Changes in version 1.1.21
=========================
- Introduce far-note test on position attribute.
=========================
Changes in version 1.1.20
=========================
- Better handling of implicit conditional rendering with
juris-locator-label macro in cs:group.
=========================
Changes in version 1.1.19
=========================
- Fix a subtle bug affecting juris-locator-label in
modular style code.
- Fix potential bug in detection of output from multiple
variables.
=========================
Changes in version 1.1.18
=========================
- Add locale fallback "lv_LV" for "lv".
- Check for callback completeness in test runner.
=========================
Changes in version 1.1.17
=========================
- Add locale fallback "hr_HR" for "hr".
=========================
Changes in version 1.1.16
=========================
- Align treatment of locators on regulation with legislation et al.
=========================
Changes in version 1.1.15
=========================
- Make the juris-locator-label macro shy like a bare label
or term.
=========================
Changes in version 1.1.14
=========================
- Improved handling of suppressed jurisdiction names
and modular style code.
=========================
Changes in version 1.1.13
=========================
- New names for composite locators in modular code.
=========================
Changes in version 1.1.12
=========================
- Fix bug in parsing of embedded labels on non-locator vars
when section var not present in input (legal types only)
- Remove capitalized Chapter and Section terms (legal types only)
- Adjust tests to use explicit labels on number var, rather
than label-form attribute (legal types only)
=========================
Changes in version 1.1.11
=========================
- Extract label from number rendered with cs:number, and
make available on cs:label with variable="number."
Behaviour tracks that of page and page-first variables.
- Fix bug in parsing of pipe-delimited extra data on locator
- Change locator-revision to locator-extra (accompanied by
change to CSL-m schema)
=========================
Changes in version 1.1.10
=========================
- Fix conditional for embedded label in "number" variable rendered
with cs:number
========================
Changes in version 1.1.9
========================
- Fix repeat of "by" term in Chicago Author-Date etc.
- Remove treaty from modular types, add report
========================
Changes in version 1.1.8
========================
- Add support for cs:law-module types="a b c", following schema revision.
========================
Changes in version 1.1.7
========================
- Run alternative-macro when a variable render fails, or when no
attempt is made to render anything.
- Flag attempt to render a term in cs:label.
- Properly add cs:name nodes in xmljson.xml. Fault reported
by Faolan Cheslack-Postava.
========================
Changes in version 1.1.6
========================
- Fix group closure bug (loss of decorations when self-testing jurisdiction
modules)
- Fix erroneous capitalization of non-English characters.
https://forums.zotero.org/discussion/47850/greek-letter-is-shown-as-b-in-bibliography/#Item_18
- Allow non-conforming macro names in jurisdiction modules. Necessary for
standalone testing.
========================
Changes in version 1.1.5
========================
- More name particles, from Philipp Zumstein:
https://forums.zotero.org/discussion/47161/names-reform-request-for-comments/#Comment_217706
- Fix bug in terminator testing in util_names.js (Thanks to @fcheslack).
- Fix a small spacing issue affecting name particles with a leading
single quote.
========================
Changes in version 1.1.4
========================
- Particles parser.
========================
Changes in version 1.1.3
========================
- Rename alt-macro attribute as alternative-macro
========================
Changes in version 1.1.2
========================
- Fix loss of affixes on failed juris test
- Implement item-type-specific support in modules
- Some code cleanup
========================
Changes in version 1.1.1
========================
- Require juris-locator-label macro as a late addition.
========================
Changes in version 1.1.0
========================
- citeproc-js now has full support for jurisdiction-specific
modular legal styles. This is the last piece to the puzzle
it set out to solve. Time to roll over that version number.
==========================
Changes in version 1.0.561
==========================
- Do not mask lower-tier jurisdictions from memory lists
used to generate menus and such when a higher-tier
jurisdiction hits for an abbreviation.
==========================
Changes in version 1.0.560
==========================
- Fix (the last?) grouping bug in modular jurisdiction code.
- Place the interative retry logic for jurisdiction modules
in the processor, and delegate only single try attempts
to the external retrieveStyleModule() hook function.
- Fix a bug in XML traverse affecting jurisdiction loading
in some environments.
==========================
Changes in version 1.0.559
==========================
- Fix bugs in modular jurisdiction support.
- Implement mode without institution name reordering,
and make it the default.
==========================
Changes in version 1.0.558
==========================
- If nesting issues in new law style module code.
==========================
Changes in version 1.0.557
==========================
- Preliminary support for law style modules.
==========================
Changes in version 1.0.556
==========================
- When suppressing initial-term capitalization on items with a
single-word prefix, ignore leading and trailing spaces on the
prefix when determining whether it consists of a single word.
==========================
Changes in version 1.0.555
==========================
- Preserve the last name in the list, in case we're rendering with a
PI ellipsis (et-al-use-last). Fault reported by Chris Maloney.
==========================
Changes in version 1.0.554