Bugfix in csl.js to make the "Accessed" field available in conditions
Still on 2.0b7.4 the test < if variable="accessed"> does not work in citation styles.
This issue is mentioned in:
http://forums.zotero.org/discussion/7316/books-and-retrieved-from-with-apa/
I would like to contribute a fix for this bug but I am not familiar with the zotero software development lifecycle so if someone could submit this fix on my behalf, that would be great.
I believe the following amendment in content/zotero/xpcom/csl.js fixes the issue:
ORIGINAL CODE:
Zotero.CSL._dateVariables = {
"issued":true,
"accessDate":true
}
FIX:
Zotero.CSL._dateVariables = {
"issued":true,
"accessed":true
}
This issue is mentioned in:
http://forums.zotero.org/discussion/7316/books-and-retrieved-from-with-apa/
I would like to contribute a fix for this bug but I am not familiar with the zotero software development lifecycle so if someone could submit this fix on my behalf, that would be great.
I believe the following amendment in content/zotero/xpcom/csl.js fixes the issue:
ORIGINAL CODE:
Zotero.CSL._dateVariables = {
"issued":true,
"accessDate":true
}
FIX:
Zotero.CSL._dateVariables = {
"issued":true,
"accessed":true
}
-
LubosDid anyone manage to take this up for the next beta release (no change on 2.0b7.6)?
-
adamsmithLubos - I hope this gets taken up - and your fix certainly is appreciated, the reason it hasn't been incorporated is that development on the current csl implementation has stopped because of the forthcoming 1.0 version - but maybe Dan would still be willing to put it in?
-
dstillmanChecked in on the trunk. Thanks for the patch.