[MLZ] make citeproc-js ignore container-title-short when MLZ's own abbreviation filter is used?
Can you make citeproc-js ignore container-title-short when MLZ's own abbreviation filter is in action?
Sometimes the data that I grab with Zotero translator include the publication's abbreviation, which may or may not be compatible with my target publication's abbreviation protocol.
I'd like these to be ignored in preference for the ones that I provide with the MLZ abbreviation filter.
Sometimes the data that I grab with Zotero translator include the publication's abbreviation, which may or may not be compatible with my target publication's abbreviation protocol.
I'd like these to be ignored in preference for the ones that I provide with the MLZ abbreviation filter.
I think one alternative to taking care of this at the citation processor level that I suggested above is for MLZ to subject all references to the abbreviation filter. Currently it looks like MLZ only passes references without hard-coded abbreviations through the abbreviation filter.
Another alternative is for MLZ to provide a utility that will remove all "journal abbreviation" fields in the database. Since the "journal abbreviation" field is giving me only headache, personally I will be more than happy to see them all gone.
Use the code found here: http://www.zotero.org/support/dev/client_coding/javascript_api
Set the fieldName to "journalAbbreviation".
Set oldValue to "%".
Set newValue to "".
In the line "s.addCondition", change 'is' to 'contains'.
Thanks! Just what I needed.
Journal abbreviations are meant to work as you describe. That is:
* If there is an entry in the Abbreviation Filter, apply it;
* If no AF entry exists, use the Journal Abbr value;
* If no AF entry exists and there is no Journal Abbr value, use the Journal Title.
It looks like I messed up when adapting it to recognize the CSL container-title-short value. It can be fixed easily, but it would impact Zotero proper (which doesn't yet have a means of editing the databased abbreviation list). I'd better put out a query before touching the code again.
@aurimasv, Dan or Simon:
In the Zotero journal abbreviation logic, should Journal Abbr override the database abbreviations, or vice-versa?
Hmm. It looks like I'm not understanding the code thoroughly, then. I'll try to do some testing today and write back.
I've run a quick test with MLZ and the Abbreviation Filter (v1.0.140), and it looks like abbreviations are applied as described above, with AF abbreviations at first priority.
If you have references that are not behaving that way (in the MLZ American Law Style or in your own style), could you post one as Bibliontology RDF to http://gist.github.com?
* If there is an entry in the Abbreviation Filter, apply it;
* If no AF entry exists, use the Journal Title
in other words, ignore the JournalAbbr field entirely. That's why bwiernik solution to clean it out via batch edit was so useful. Given the nature of the abbreviation file in Zotero, this is quite rare, so it doesn't matter much either way, but the current behavior still makes sense. You'll have to decide if that's also the case for the less comprehensive abbreviation filters shipped with law styles.
As to (1), everybody seems to be on the same page. AF should overide JournalAbbr. If that's how MLZ is designed to work too, then all is well. (Suddenly I can't reproduce the problem. Maybe I'm the one who messed up the abbreviation file. If I succeed in consistently reproducing the problem, I'll post its Bibliontology RDF.)
As to (2), it's a judgment call, but I'd prefer JournalAbbr to be completely ignored rather than take the second priority, for one simple reason: when a journal title is abbreviated with JournalAbbr, you can't tell if it's the right abbreviation or not for the current style. If the journal title is not abbreviated at all, at least it serves as a cue that it needs to be abbreviated.
Re (2), I think we expect Journal Abbreviation field to go away in the future and all abbreviations to be handled through AF.