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
|
BIBUTILS
4.8
2/2/10
BIB2XML
+ Handle bibtex annote tags
XML2BIB
+ Handle bibtex annote tags
4.7
12/11/09
XML2ADS
+ Fix not outputting multiple authors from "ASIS" and "CORP" categories.
XML2END
+ Fix not outputting multiple authors from "ASIS" and "CORP" categories.
XML2ISI
+ Fix not outputting multiple authors from "ASIS" and "CORP" categories.
4.6
11/2/09
BIB2XML
+ Fix inefficiency in latex2char() that gives roughly a 10x speed increase
in bib2xml. Thanks to Stephan Washietl for the patch.
NAME MANGLING
+ Fix bug with uninitalized pointer. Thanks to David Bremner for patch.
NEWSTRING
+ Add newstrs versions of various commands.
4.5
10/24/09
BIB2XML
+ Identify and use byte-order-mark in UTF8-encoded files
+ Support file attachments with "pdf" tags (old JabRef), "sentelink" (Sente),
and "file" (new JabRef, Zotero, Mendeley). (Thanks to Richard Karnesky)
COPAC2XML
+ Identify and use byte-order-mark in UTF8-encoded files
ISI2XML
+ Identify and use byte-order-mark in UTF8-encoded files
RIS2XML
+ Add support for DOI tags DO and DI from Scopus (Thanks to Fred Howell)
+ Identify and use byte-order-mark in UTF8-encoded files
+ Add support for L1 file attachment tags (Thanks to Richard Karnesky)
XML2ADS
+ Output file attachments as URLs
XML2BIB
+ Add support for "file" file attachment tag in the JabRef/Mendeley/Zotero
format
XML2END
+ Output file attachments as URLs
XML2ISI
+ Output file attachments as URLs
XML2RIS
+ Add support for L1 file attachment tags
4.4
10/05/2009
BIB2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
with colons or question marks into title/subtitle MODS pairs
COPAC2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
with colons or question marks into title/subtitle MODS pairs
END2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
with colons or question marks into title/subtitle MODS pairs
+ Add support for electronic-source-num as potential location of DOI
+ Add support for language
END2XML
+ Fix support for number field in report/book/book section/edited book
reference types
ENDXML2XML
+ Support pdf-url in endnote XML file
ISI2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
with colons or question marks into title/subtitle MODS pairs
RIS2XML
+ Add -nt --nosplit-title command line option to avoid splitting titles
with colons or question marks into title/subtitle MODS pairs
4.3
7/31/09
BIB2XML
+ Add support for recognizing howpublished = {arXiv:xxxx} entries
LATEX
+ Fix bug for {\c{c}} output
XML2END
+ Add support for Pubmed ID's (PMID) as %U http://www.ncbi.nlm.nih.gov/pubmed/...
+ Add support for arXiv identifiers as %U http://arxiv.org/abs/...
XML2RIS
+ Add support for Pubmed ID's (PMID) as UR - http://www.ncbi.nlm.nih.gov/pubmed/..
+ Add support for arXiv identifiers as UR - http://arxiv.org/abs/...
+ Change abstract output from "AB" tag to "N2"
XML2WORDBIB
+ Add support to handle inventors in patent type
+ Fix inappropriate output of empty author or editor lists
4.2
06/25/09
BUILD
+ Add support for 'Power Macintosh' as MacOSX_ppc. Thanks to Matthias
Steffens for the fix.
+ Fix additional MacOSX build bugs, thanks to David Sanson
END2XML
+ Add %1 parsing to journal articles
+ Fix bug not recognizing %[ and elements as valid tags
+ Add support for Conference Paper
ENDX2XML
+ Add support for pub-location tags
+ Add support for Conference Paper
LATEX
+ Fix bug for {\AA} conversion, patch thanks to Joseph Barillari.
MED2XML
+ Recognized medline entries from MEDLINE in addition to PUBMED. Thanks to
Hamish McWilliam for providing useful information.
MODSIN
+ Handle pages provided as list, patch thanks to Heiko Jansen
NAME MANGLING
+ Handle hyphenated names better
+ Handle "et al." in name lists better
XML2BIB
+ Add recognition of genre "article", patch thanks to Heiko Jansen
XML2END
+ Add export of DOI as %U http://dx.doi.org/.... Thanks to Mattheis
Stevens for the report
XML2RIS
+ Add export of DOI as UR - http://dx.doi.org/.... Thanks to Mattheis
Stevens for the report
XML2WORD
+ Add support for more types of sources.
4.1
BIBLATEX2XML
+ Lots of bug fixes
BUILD
+ Try to make changes to bin/Makefile to fix problem on FreeBSD. Still
awaiting feedback to see if problem is solved.
END2XML
+ Handle DOI placed in %1 custom field by Wiley
RIS2XML
+ Add pattern matching for new DOI output by Science Direct
XML2ADS
+ Fix putting comma after the first keyword (thanks to Richard Mathar)
4.0
BIBLATEX2XML
+ Initial alpha version of the program -- mapping certain fields to MODS
hasn't been done yet.
BUILD
+ Move files/functions around so all of the code necessary to support
the converters but not part of the bibutils libraries are in the
bin subdirectory.
CHARSET CONVERSION
+ add partial recognition of Chinese GB18030 character set (containing
the GBK superset)
+ Revert 3.41 patch from Luc Pardon default that made unicode/utf8 take
precedence over latex now that -nl, --no-latex flag is available
END2XML
+ support %G language tag
+ support %H translator tag
ENDX2XML
+ fix bug caused by style tags in author fields
LIBRARY HANDLING
+ Remove requirement for defining lists for "as-is" and "corporation" names
to be read from the file -- embed in the param structure instead (help
for Haskell bindings)
+ Modify the library API so that input and output formats are stored in
struct param and do not need to be repeated in bibl_read() and bibl_write()
calls.
XML2BIB
+ Turn off latex encoding if we're using the GB18030 character set.
XML2END
+ support %G language tag
+ support %H translator tag
+ add better support for MARC-authority genre tags
3.43
11/24/08
BIB2XML
+ Fix recognition of em-dash by placing it before en-dash in conversion
list.
+ Add -nl or --no-latex to prevent conversion of latex character
combinations
MODSOUT
+ Ensure that bibutils handles records with empty MODS attributes
3.42
10/31/08
MODSOUT
+ Change default to UTF8 unicode characters written directly (not
via XML entities) and writing BOM. Add command-line switch
-x or --xml-entities to write XML entities instead to BIB2XML
END2XML ENDX2XML MED2XML RIS2XML, etc.
XML2ADS
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
the user doesn't want it
XML2BIB
+ For users who want the bibtex file format, but not the latex encryption
of characters, add -nl or --no-latex to command-line switches
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
the user doesn't want it
XML2END
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
the user doesn't want it
XML2ISI
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
the user doesn't want it
XML2RIS
+ Fix unicode output to add Byte Order Mark by default
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
the user doesn't want it
XML2WORD2007
+ Add -nb or --no-bom switch to turn off Byte Order Mark for unicode if
the user doesn't want it
+ Fix the recognition of incollection items as book sections.
3.41
6/16/08
BUILD
+ Fix bug in makedeb.csh
+ Fix site-specific compiler definition for SunOS5 target.
+ Add Linux x86_64 target for configuration.
MODSIN
+ Fix NULL pointer dereference for "detail" elements lacking a type
attribute. (Noticed and hunted down by Thomas Fischer.)
RIS2XML
+ Fix bug where "AB - " with a newline before the abstract was
not recognized as an abstracted. (Reported by Thomas Braun
and Richard Mathar.)
XML2ADS
+ Updates from Richard Mathar fixing R-tag output, merging keywords,
fixing date, adding title, and replacing double dash.
+ Update journals to current list from:
http://adsabs.harvard.edu/abs_doc/journals1.html
XML2BIB
+ Fix character priority so unicode/utf8 takes precedence over latex
(Patch from Luc Pardon)
3.40
2/10/08
MODSIN
+ Fix crash where placeTerm tag doesn't have attribute (Thanks to
Martin-Michael Schoenbeck for identifying the problem and submitting
an initial patch).
+ Properly handle the 'mods:' namespace (Thanks to Martin-Michael
Schoenbeck for identifying the problem and submitting an
initial patch).
+ Fix bug where multiple roleTerms confused role assignment.
RIS2XML
+ Oxford journal RIS output is now putting DOI information in the N1
field; recognize this (Thanks to Richard Mathar for letting me know).
XML2ADS
+ New converter for the ADS format submitted by Richard Mathar.
XML2BIB
+ Bias the program to output issue/number tags as 'number' first
and use 'issue' only in cases where both issue and number have
been defined.
+ Add '-sk' '--strictkey' option that only outputs alphanumeric
characters in the bibtex reference names (this is overly strict,
but may be useful in some cases to automatically avoid problems
with other bibtex parsers)
XML2END
+ Fix missing return for articles with article numbers rather than
page numbers
XML2WORDBIB
+ Rename "xml2word" to avoid confusion with other programs that work
on Word documents, not Word bibliographies
3.39
10/24/07
NAME MANGLING
+ Fix crash caused by specifically malformed name fields
3.38
10/10/07
BIB2XML
+ Fix crash when bibtex citation key is blank (introduced in 3.37)
END2XML
+ Fix handling of total pages
+ Fix handling of conference name
ENDX2XML
+ Fix handling of total pages
+ Fix handling of conference name
+ Fix bug where reference would skip if the starting record tag was
split by the input buffer
3.37
8/20/07
MODSOUT
+ fix bug where terminating > symbol is missing in
<identifier type="serialnumber"> output
3.36
8/19/07
CHARSET CONVERSION
+ add recognition of apostrophe HTML entity
LIBRARY HANDLING
+ resolve duplicates of citation keys by adding a-z
BIB2XML
+ properly handle bibtex files output by endnote that don't have field keys
+ add support for Diploma, Doctoral, and Habilitation theses (German)
ENDX2XML
+ properly handle whitespace in style tags
+ add support for Diploma, Doctoral, and Habilitation theses (German)
RIS2XML
+ support computer program "COMP" type
+ support patent "PAT" type
+ support unpublished "UNPB" type
+ add support for Diploma, Doctoral, and Habilitation theses (German)
XML2BIB
+ output newspaper articles as @ARTICLE as well
+ output series titles as "series" for book chapter, inproceedings, theses
types
+ add support for Diploma, Doctoral, and Habilitation theses (German)
XML2END
+ support magazine article type
+ support patent type
+ support computer program type
+ add support for Diploma, Doctoral, and Habilitation theses (German)
XML2ISI
+ be more aggressive about outputing the date
XML2RIS
+ support magazine article type
+ support abstract/summary type
+ support patent type
+ support computer program type
+ support unpublished "UNPB" type
+ add support for Diploma, Doctoral, and Habilitation theses (German)
3.35
7/30/07
BIB2XML
+ support translator field
COPAC2XML
+ fix bug where garbage input can lead to infinite loop
ENDX2XML
+ fix bug where multiple style tags caused data to be lost
ISI2XML
+ use authors listed with "AF" instead of "AU" when present as they
are a "better" annotated list
+ fix bug where garbage input can lead to infinite loop (patch thanks
to Fred Howell)
+ add type S for book in series
+ fix bug where NR number of references was being recognized as
journal number
RIS2XML
+ add support for RIS magazine article "MGZN"
+ add support for RIS abstract "ABST"
+ add support for reading thesis hint in "user 1" tag "U1"
XML2BIB
+ output article number as page number if page numbers aren't found
+ support translator field
+ make preferred form of \text markups have curly brackets
XML2END
+ output article number as page number if page numbers aren't found
XML2RIS
+ output article number as page number if page numbers aren't found
+ fix recognition of thesis type
+ output "U1 - Masters thesis" or "U1 - Ph.D. thesis" as a hint
for Refbase of the thesis type
XML2WORD
+ output article number as page number if page numbers aren't found
3.34
6/07/07
END2XML
+ fix bug that prevent dates from being read in
3.33
5/23/07
MED2XML
+ fix stupid change that caused coredumps
3.32
5/21/07
CHARSET CONVERSION
+ fix bug where UTF-8/Unicode input is ignored for BibTeX files
MODSIN
+ Recognize both >extent unit="page"< and >extent unit="pages"<
NEWSTR
+ Fix compilation on 64 bit processors
BIB2XML
+ Strip latex \url{} tags from input data
XML2BIB
+ Add recognition of --verbose and --debug
XML2END
+ Add recognition of --verbose and --debug
XML2ISI
+ Add recognition of --verbose and --debug
XML2RIS
+ Add recognition of --verbose and --debug
XML2WORD
+ Add recognition of command line switches
3.31
4/1/07
BIBTEXIN
+ Fix typo in genre for "incollection" to "monographic"
+ Remove text markups like \textit{} and \textbf{}
+ Replace text markups like "\textonesuperior" with appropriate Unicode
characters
+ Have electronic types set MODS resource "software, multimedia"
BIBTEXOUT
+ Modify warning message for "xml2bib: cannot identify type" to
tell user that it's defaulting to @Misc so people stop reporting
this information to me
+ Add electronic type recognition and output
ENDIN
+ Have electronic types set MODS genre "electronic"
+ Add '%S' Series title to Book type
+ Add recognition of Unicode UTF8 byte order information
ENDXMLIN
+ Ensure that the "label" field ends up in the MODS output as
reference ID
+ Pass through "short-title" information
MODSOUT
+ Fix typo so MARC-authority genre types are "marcgt", not "marc"
+ Output ACCESSNUM to MODS
RISIN
+ Add thesis type
+ Add report type
RISOUT
+ Map "collection" and "incollection" from bibtex to "book" and "inbook"
+ Add thesis type
+ Add report type
ENDOUT
+ Map "collection" and "incollection" from bibtex to "book" and "inbook"
3.30
3/17/07
XML2WORD
+ Write first version of the program
3.29
3/12/07
ENDIN
+ Fix addition of extraneous tag for electronic types; add
proper MODS resource tag
ENDX2XML
+ Fix problems parsing in XML files without newlines
3.28
3/10/07
BIBTEXIN
+ Fix problems parsing files that have non-bibtex lines in them
+ Add c with a hacek support to latex characters (thanks to
George Smith for the information)
+ Add enspace, emspace, and thinspace support to latex
characters (patch from John Spray; thanks!)
ENDX2XML
+ Write first version of the program
ISIIN
+ Add support for DOI tag "DI"
NAME MANGLING
+ Fix bug in handling multibyte Unicode characters
XMLIN
+ Fix bug where single quoted XML attributes were not recognized
(Patch due to Jason Lerch; thanks!)
XML2ISI
+ Write first version of the program
3.26
06/21/06
MODSIN
+ Add reading in pubmed/medline/pii identifiers
RISOUT
+ Output pubmed identifiers as UR - PM:###### (Thanks to Mark Runyan)
3.25
06/14/06
BUILD PROCESS
+ Add NetBSD, FreeBSD, and Cygwin to recognized architectures
MODSOUT
+ Convert patent assignee to the MARC term "patent holder" (modified from
patch by Ralf Ahlbrink)
+ Add role types "organizer of meeting", "inventor", "degree grantor"
(modified from patch by Ralf Ahlbrink)
NAME MANGLING
+ Fix possible interactions between pre-defined corporate types
and user-defined as-is and corporate types
ISI2XML
+ Add support for "article number" (AR) field that some journals are
now using instead of page numbers
MED2XML
+ Fix date parsing for entries that have a "medline format date" rather
than a date broken down into XML fields
+ Fix bug that doesn't output proper end pages if first and last pages
are the same length (thanks to Andreas Hartmetz for finding and patching
the bug)
3.24
02/21/06
CHARSET CONVERSION
+ fix bug where requests for UTF-8 encoded output were ignored
MED2XML
+ default input to UTF-8 encoded unicode, as it ought to be
+ extract a few more items (like pubmed/medline/pii ID's, MeSH
headings)...most currently only make it into MODS output
XML
+ fix potential core dump from empty xml attributes values
XML2BIB
+ for better compatibility with Emacs, default the bibtex tags to
lower case
+ new switch -U, --uppercase to switch to old all uppercase tag behavior
3.23
1/02/06
Changes in this release are thanks to patch and bug report by Jeremy Malcolm.
BIB2XML
+ Add support for volume in @electronic reference type
END2XML
+ Add support for volume in electronic reference type
RIS2XML
+ Add support for TY - ELEC reference type
XML2RIS
+ Add support for TY - ELEC reference type
+ Fix bug where GENRE, but not NGENRE data was being parsed for reference
type
3.22
12/09/05
MODSIN
+ fix off-by one bug that can cause references to be skipped
XML
+ fix potential coredump on error path in xml_findend()
3.21
11/02/05
CHARSET CONVERSION
+ add latex version of degree sign, micro sign
+ numerous fixes to charset handling
+ add -i,--input-encoding and -o, --output-encoding parameters for the
programs xml2bib, xml2end, xml2ris
+ allow modsin and medin modules to read the character set specified by
the xml descriptors
+ set priority so that the character set has the priority:
program defaults < xml file specified < user specified
LIBRARY
+ fix bug where static prototype appears to be illegal and prevents
compilation on MacOSX "Tiger"
+ finally add error reporting messages for library errors
BIB2XML
+ add support for cross referencing
3.20
10/06/05
END2XML
+ fix type of court reporter
NAME PROCESSING
+ recognize names in the form Author, HQ or HQ Author and split up
the initials
BUILD PROCESS
+ switch build to a ./configure; make; make install commands (but do
it without autoconf)
+ add debian package options to Linux and MacOSX as a trial
MODSOUT
+ start fixing position of items like volume, issue, pages for entries
now that MODS v3.1 allows part tags at the main level
3.19
09/14/05
BIB2XML
+ add issuance of monographic to book types: book, inbook, incollection
+ fix bug where fields protected by braces or quotations would still
be subjected to string substitutions
+ fix bug where string substitutions could be applied multiple times;
bibtex has special concatenation with string substitution rules
+ add latin capital/lowercase c with acute to latex conversion
+ add some letters with caron (hacek) specifications
END2XML
+ add issuance of monographic to book types: book, edited book, chapter
+ move publisher to host level in journal article and add to magazine
article
ISI2XML
+ add issuance of monographic to book types: book, chapter
RIS2XML
+ add issuance of monographic to book types: book, inbook
XML2BIB
+ The protected latex forms of characters, e.g. {\'A}, are preferred
to non-protected, e.g. \'A or \'{A}. So fixup lookup table
so the preferred forms are output.
XML2RIS
+ better detection of book types via issuance of monographic
SERIALNUMBER
+ split out common serial number processing code
MODSIN
+ fix bug where unicode character set in was not the default
MODSOUT
+ ensure that ambiguous serial numbers are output
+ fix bug where -un/-u flags weren't being respected
3.18
07/11/05
BIB2XML
+ accomodate all entries from the IEEEtrans bibtex style and other requests
for missing common fields
+ to article reference type add key, location, language, note, keywords
+ to book reference type add key, location, language, note, series,
volume, number, lccn, keywords
+ to techreport reference type add key, location, language, note, institution,
number, type, lccn, keywords
+ to inbook reference type add key, location, language, note, lccn, keywords
+ to incollection reference type add key, location, language, note, number,
chapter, type, lccn
+ to booklet reference type add key, location, note, series, volume, number
organization, language, lccn
+ to manual reference type add key, location, note, language, organization,
lccn, keywords
+ to inproceedings/incollection type add key, location, note, language,
series, number, organization, paper, type, lccn, keywords
+ to proceedings type add key, location, note, language, series, number,
organization, lccn, keywords
+ to mastersthesis type add key, location, note, language, type, keywords
+ to phdthesis type add key, location, note, languate, type, keywords
+ to mastersthesis type add key, location, note, language, type, keywords
+ to phdthesis type add key, location, note, languate, type, keywords
+ to misc type add key, location, note, language, organization, keywords
+ add unpublished type
+ add electronic type
+ add patent type
+ add periodical type
+ add standard type
XML2BIB
+ fix recognition of collection/incollection types
+ add handling of location information
XML2END
+ output all note fields
MODSIN
+ add physical location to tags read in
+ fix memory leak in modsin_location()
+ fix bug in modsin_descriptionr()
+ keep type="school" information in place entries
MODSOUT
+ handle key field from bibtex
3.17
06/28/05
BIB2XML
+ add series information to incollection type
+ add edition input to types
+ protect URL, DOI, REFNUM fields from being detexified
+ support URLs in "howpublished" tags
+ support \url{} in addition to \urllink{}
+ inbook reference types should use chapter+title, not title+booktitle
+ incollection reference types should use booktitle+title
+ fix bug where spaces in string replacements cause the replacements to
be misunderstood
COPAC2XML
+ fix but in name mangling and insertion of editors in author fields
ISI2XML
+ fix bug in outputing times cited to note field
RIS2XML
+ add reading user U1-U5 and miscellaneous M1-M3 fields; convert to "notes"
so they'll be output at least
MODSIN
+ put in the core of handling physicalDescription tags
+ fix bug where files with mods ending and starting on the same line were
mangled
MODSOUT
+ fix place term output and edition output
+ output all URL information
XML2BIB
+ add edition output
+ protect REFNUM fields from being texified
+ better error messages for misidentified TYPE
+ recognize Masters and Ph.D. thesis types
+ inbook reference types should use chapter+title, not title+booktitle
+ incollection reference types should use booktitle+title
+ fix recognition of genre magazine as ARTICLE
XML2END
+ fix bug in recognizing the thesis type
3.16
4/10/05
GLOBAL CHANGES
+ rename progs directory to bin
+ fix warnings from SunOS compile
BIB2XML
+ add masters thesis type
+ change Ph.D. thesis and Masters thesis to add non-MARC genres
"Ph.D. thesis" and "Masters thesis" to distinguish
END2XML
+ fix bug where endin_readf() can return 0 even if reference is obtained
XML2BIB
+ don't texify special characters in URLs and DOIs
3.15
3/17/05
GLOBAL CHANGES
+ Convert all programs to use the bibutils library with bibl_read() and
bibl_write() with appropriate modes. Massive conversion to a bibutils
library.
+ Add -o or --output-encoding to xml2bib, xml2end, xml2ris
+ Add -s or --single-refperfile to xml2bib, xml2end, xml2ris
+ Handle all character conversion issues nicely in the library. Set default
to Latin-1 (ISO 8859-1), same as web browsers.
+ Move around files to lib/, prog/, and test/ directories; fix top level make
+ Change name of struct newstring to struct newstr for consistency
+ Change cleanf() to take entire bibliographies and not just references in
preparation for cross-referencing handling in bib2xml
BIB2XML
+ Do a nice job of translating latex codes to Unicode
+ Bump version number to 3.12
COPAC2XML
+ Bump version number to 1.2
END2XML
+ Bump version number to 3.13
ISI2XML
+ Move times cited field to notes
+ Bump version number to 2.5
MED2XML
+ Bump version number to 2.3
RIS2XML
+ Bump version number to 2.11
MODSIN
+ add URL support to identifier type="uri"
XML2BIB
+ Make sure illegal bibtex isn't outputted (including quotes when brackets
aren't requested), and do a nice job of Unicode to latex.
+ Allow any non-space and non-tab to be output as bibtex key identifiers
+ Add URL support
+ Bump version number to 2.6
XML2END
+ fix output of ISSN/ISBN/URL/etc.
+ Bump version number to 2.3
XML2RIS
+ add number/issue output
+ Bump version number to 2.3
MODSCLEAN
+ Bump version number to 1.1
3.14
2/09/05
GLOBAL CHANGES FOR THE TOMODS CONVERTERS
+ The current programs add an underscore and the reference count to the
reference id by default. This is changed so that it only occurs when
requested using the new -a or --add-refcount flags.
+ Fixed bug where the reference count wasn't used when outputting individual
files for each reference. This is, of course, dependent on the -a
or --add-refcount flags.
+ change --verbose flag to only output warnings
+ add --debug flag for full output useful in hunting down problems
+ Major rewrite of the converters:
Common framework is in lib/tomods.c
Variables and unique function pointers defined by struct convert_rules
Must define readf() to read a single reference from a file
Must define processf() to convert raw input into tag/data/level in a
field using native tags
Define cleanf() or set to NULL to define function to clean up data
such as LaTeX codes
Must define convertf() to convert native tag/data/level elements into
those appropriate for MODS XML output.
BIB2XML
+ add URL to list of recognized bibtex entries
+ bump version number to 3.11
COPAC2XML
+ bump version number to 1.1
END2XML
+ fix bug in magazine article that misplaced article title
+ fix bug that lost track of reference type information
+ bump version number to 3.12
ISI2XML
+ parse multiple keywords placed under same tag
+ bump version number to 2.4
MED2XML
+ bump version number to 2.2
RIS2XML
+ bump version number to 2.10
3.13
12/15/04
COPAC2XML
+ write first version of program
ISI2XML
+ fix bugs in handling multi-author references
+ bump version number to 2.3
END2XML
+ clean up some left over references to RIS
+ fix incrementing in waslast_tag()
+ bump version number to 3.11
3.12
11/22/04
BIB2XML
+ add support for FTP = {\urllink{http://online.ref.com}}
+ add support for TITLE = {\href{http://online.ref.com}Real Title}
+ add conversion for latex encodings character into unicode; also fixes some
processing bugs due to names with a diaresis
+ add support for reading in digital object identifier (doi)
+ add unpublished type (and "new" genre type in MODS)
+ add proceedings type
+ add misc type
+ bump version number to 3.10
END2XML
+ switch order of "Book" and "Book Section" now that the Refer-format
handling introduced a bug that caused both to be recognized as Book
+ bump version number to 3.10
MED2XML
+ silence compile warnings
+ pass digital object identifier (doi) information to MODS
+ bump version number to 2.1
XML2BIB
+ fix command line parsing
+ pass digital object identifier (doi) output to bibtex
+ add unpublished and misc types to output
+ bump version number to 2.5
XML2END
+ fix help message
+ bump version number to 2.2
MAKEFILE
+ fix typo in "make install" target
+ repair loss of med2xml in makefile
3.11
9/29/04
BIB2XML
+ re-write bibtex parser to handle references with missing or empty
reference ids
+ use common title mangling
+ support table of contents
+ bump version number to 3.9
END2XML
+ use common title mangling
+ bump version number to 3.9
ISI2XML
+ use common title mangling
+ bump version number to 2.2
RIS2XML
+ use common title mangling
+ bump version number to 3.9
MODSCLEAN
+ verson 1.0 of the program
XML2BIB
+ fix bug where -fc/--final-comma isn't removed from argument list
+ merge corporate and non-corporate authors/editors into same bibtex line
+ support table of contents data
+ fix distinction between PROCEEDINGS and INPROCEEDINGS data types
+ bump version number to 2.4
MODSIN
+ make role="creator" equivalent to role="author" to handle LOC input
+ support table of contents data
MODSOUT
+ support table of contents data
TITLE
+ merge all copies of title mangling into library
XML
+ properly handle XML comments in files
3.10
09/23/04
BIB2XML
+ add explicit fflushes to try and help python deadlocks
+ bump version number to 3.8
END2XML
+ add explicit fflushes to try and help python deadlocks
+ fix typo in "Conference Proceedings" type
+ bump version number to 3.8
ISI2XML
+ handle processing of names with and without commas properly
+ bump version number to 2.1
MED2XML
+ write MODS version of converter
+ set version to 2.0
RIS2XML
+ handle processing of names with and without commas properly
+ bump version number to 2.8
XML2BIB
+ output author/year combo when REFNUM is not already defined
+ add keyword, abstract, note to output
+ bump version number to 2.3
MODSIN
+ fix merging of placeTerm when both by code and by text are present
MODSOUT
+ add explicit fflushes to try and help python deadlocks
NAME
+ merge all functions for name mangling into library
3.9
09/01/04
BIB2XML
+ convert "." to ". " in names so that names like G.P. Smith don't lose
information
+ bump version number to 3.7
END2XML
+ modify parser so that refer-style bibliographies are handled naturally
+ convert "." to ". " in names so that names like G.P. Smith don't lose
information
+ bump version number to 3.7
ISI2XML
+ write new MODS version
+ bump version number to 2.0
RIS2XML
+ use newstr_trimendingws
+ convert "." to ". " in names so that names like G.P. Smith don't lose
information
+ bump version number to 2.7
XML2BIB
+ add corporate authors/editors to output
+ bump version number to 2.2
XML2RIS
+ add corporate authors/editors to output
+ bump version number to 2.2
MODSIN
+ convert numeric month to name
+ handle multiple roles per person
+ prevent unnecessary decents through the XML tree structure
+ fix core dump in modsin_detailr due to copy/paste bug
+ fix role processing in corporation names
MODSOUT
+ some code cleanups
+ if a reference ID cannot be found, first try to output one based
on the first author and four-digit year and refnum, eg. Jones2000_123,
and then default to a ref#### ID
NEWSTR
+ add newstr_trimendingws
XML
+ fix identification of tags like <title/> that scrambled the XML
hierarchy
version 3.8
07/29/04
XML2BIB
+ fix bug in command line parsing
+ fix bug where ending commas are missing
+ add periods after abbreviated given names
+ bump version number to 2.1
XML2END
+ add periods after abbreviated given names
+ bump version number to 2.1
XML2RIS
+ add periods after abbreviated given names
+ bump version number to 2.1
MODSIN
+ handle pages either as details or extents
MODSOUT
+ fix bug where empty names were output
+ if given names are abbreviations, e.g. "A. B. Jones", drop periods
+ write out single pages as details, not extents
version 3.7
07/26/04
BIB2XML
+ fix bug where multi-line authors w/o trailing spaces were merged
+ add publisher and address fields to book and report types
+ add/fix genre output to many reference types
+ add support for given name separation for MODSOUT
+ add issue field to article type
+ bump version number to 3.6
END2XML
+ add support for given name separation for MODSOUT
+ add/fix genre output to many reference types
+ fix core dump on empty input
+ bump version number to 3.6
RIS2XML
+ add support for given name separation for MODSOUT
+ handle case where last reference in file is missing end tag
+ add/fix genre/typeOfResource output to many reference types
+ bump version number to 2.6
XML2BIB
+ write first MODS version of the program
+ bump version number to 2.0
XML2END
+ write first MODS version of the program
+ bump version number to 2.0
XML2RIS
+ write first MODS version of the program
+ bump version number to 2.0
FIELDS
+ add function fields_maxlevel()
MODSOUT
+ add support for separating each part of the given name to a separate
namePart construct
+ write out given names before family name
+ ensure that both start and end elements are written when page
extents are output
NEWSTRING
+ add newstr_toupper(), newstr_prepend() functions
version 3.6
6/1/04
BIB2XML
+ bump version number to 3.5
END2XML
+ bump version number to 3.5
RIS2XML
+ clean up reference parsing loop as per end2xml from bibutils v 2.16
+ fix missing break statement in process_cite that put titles into dates
+ move abstracts marked by "N2" into the main record, not host
+ bump version number to 2.5
MODSOUT
+ move part element of relatedItems to the very last element outputted
(needs to be after identifier and .xsd would suggest that it should be
the last item)
version 3.5
BIB2XML
+ clean up name processing
+ add corporation recognition for names
+ add -c, --corporation-file to input corporation names
+ add genre type periodical to journal articles
+ bump version number 3.4
END2XML
+ add genre type periodical to journal articles
+ add genre type periodical to magazines
+ add genre type thesis to thesis
+ fix read_refs() to not require leading %0 as per version 2.16
+ use fields_init()
+ clean up name processing
+ add -c, --corporation-file to input corporation names
+ bump version number 2.5
RIS2XML
+ add genre type periodical to journal articles
+ clean up name processing
+ add corporation recognition for names
+ add -c, --corporation-file to input corporation names
+ bump version number 2.4
MODSOUT
+ separate genre output into own function, have it automatically detect
genre terms under the "marc authority", make sure genre type is properly
unicode formated, allow multiple genres to be output per level of
reference
+ separate typeofResource output into own function, and have it make sure
that output matches the legal values, generate error if it doesn't
+ handle corporation name output
version 3.4
1/31/04
BIB2XML
+ add "?" as title/subtitle separator like ":"
+ bump version to 3.3
END2XML
+ add "?" as title/subtitle separator like ":"
+ bump version to 2.4
RIS2XML
+ do some reference type/tag additions
+ fix bug where titles weren't being put in output
+ add "?" as title/subtitle separator like ":"
+ bump version to 2.3
MODSOUT
+ fix shorttitle output so that if long version has subtitle,
shorttitle is always output...otherwise only output if
shorttitle is different than long title
version 3.3
1/24/04
END2XML
+ correct typeOfResource "software" to "software, multimedia"
+ have shorttitles terminate at colons
+ bump version to 2.3
MODOUTS
+ allow single and double quotes to be placed directly in output
version 3.2
1/22/04
BIB2XML
+ add -un/--unicode-no-bom option for writing unicode w/o adding the
byte order mark at the beginning of the file
+ assign dates in part and in dateIssued by reference type
+ bump version to 3.2
END2XML
+ add -un/--unicode-no-bom option for writing unicode w/o adding the
byte order mark at the beginning of the file
+ fix LEVEL_HOST/LEVEL_MAIN mismatches for reference types
+ assign dates in part and in dateIssued by reference type
+ bump version to 2.2
RIS2XML
+ add -un/--unicode-no-bom option for writing unicode w/o adding the
byte order mark at the beginning of the file
+ assign dates in part and in dateIssued by reference type
+ bump version to 2.2
MODSOUT
+ convert to proper UTF-8 output
+ put "ref" in front of all numeric ID cite key for compliance with
MODS DTD "rules"
+ protect mods ID from output illegal characters and IDs that start
with non-alphanumerics
+ fix over-zealousness of fields_find()
+ distinguish between dates that fall in <part> and those
in <dateIsssued>
version 3.1
1/21/04
BIB2XML
+ add -d/--drop-key option
+ bump version to 3.1
END2XML
+ add -d/--drop-key option
+ fix loss of year output for newspaper article type
+ fix moving picture/moving image issue for film type
+ bump version to 2.1
RIS2XML
+ add -d/--drop-key option
+ bump version to 2.1
MODSOUT
+ fix bug where part is output in main level
+ add mods ID for cite key, controllable by -d/--drop-key
version 3.0
1/20/04
BIB2XML
+ new version 3.0
END2XML
+ new version 2.0
RIS2XML
+ new version 2.0
|