The pattern for jspac was used before but it makes much more sense to use
the tpac interface. Thanks to shadowspar for flagging this for me.
Signed-off-by: Art Rhyno <art632000@yahoo.ca>
Given a bib ID, return either a URL for examining the bib record, or None.
"""
if bib_id:
- url = '%sopac/%s/skin/%s/xml/rdetail.xml?l=1&d=0&r=%s' % (
- self.OPAC_URL, self.OPAC_LANG, self.OPAC_SKIN,
- bib_id)
+ url = '%seg/opac/record/%s' % (
+ self.OPAC_URL, bib_id)
return url
if USE_Z3950: