[open-ils-commits] r1098 - conifer/branches/rel_1_6_1/tools/ebooks (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Dec 2 17:39:00 EST 2010
Author: dbs
Date: 2010-12-02 17:38:54 -0500 (Thu, 02 Dec 2010)
New Revision: 1098
Modified:
conifer/branches/rel_1_6_1/tools/ebooks/prep_ebook_records.py
Log:
Do away with the 856 $z subfield as it currently simply duplicates link text
If we end up with a situation where we want a public note, then we can
easily reconstitute this. Until then, less code == mo better.
Modified: conifer/branches/rel_1_6_1/tools/ebooks/prep_ebook_records.py
===================================================================
--- conifer/branches/rel_1_6_1/tools/ebooks/prep_ebook_records.py 2010-12-02 21:54:25 UTC (rev 1097)
+++ conifer/branches/rel_1_6_1/tools/ebooks/prep_ebook_records.py 2010-12-02 22:38:54 UTC (rev 1098)
@@ -24,7 +24,6 @@
"code": "OSTMA", \
"ebrary_code": "XXX", \
"proxy": "http://libproxy.auc.ca/login?url=", \
- "public_note": "Available online", \
"link_text": "Available online" \
}
@@ -32,7 +31,6 @@
"code": "OSUL", \
"ebrary_code": "jndlu", \
"proxy": "https://librweb.laurentian.ca/login?url=", \
- "public_note": "Available online / disponible en ligne", \
"link_text": "Available online / disponible en ligne" \
}
@@ -40,7 +38,6 @@
"code": "OWA", \
"ebrary_code": "oculwindsor", \
"proxy": "http://ezproxy.uwindsor.ca/login?url=", \
- "public_note": "To view Windsor's electronic resource click here.",\
"link_text": "To view Windsor's electronic resource click here." \
}
@@ -330,7 +327,6 @@
subs.extend([
'y', data['link_text'],
- 'z', data['public_note'],
'9', data['code']
])
More information about the open-ils-commits
mailing list