[Koha] how to get the list of all records of a search result in ISBD format

tanzeem tanzeem.mb at gmail.com
Fri Nov 18 20:20:59 NZDT 2011


I did it myself

For the Staff Client(Similar can be done for OPAC)
Search the results using Koha >Select items from the search>Add to a list

>From the list menu
select the saved list.
In the Download list menu select ISBD(I added this option by doing as below)
In
file:/usr/share/koha/intranet/htdocs/intranet-tmpl/prog/en/includes/virtualshelves-toolbar.inc
Add this to line no 37 
{ text: _("ISBD"), url:
"/cgi-bin/koha/virtualshelves/downloadshelf.pl?format=ISBD&shelfid=" },

In file: /usr/share/koha/intranet/cgi-bin/virtualshelves/downloadshelf.pl


Add this
  case "ISBD"    { 
				my $lynx = '/usr/bin/lynx';#path of lynx(see that lynx is installed
first)
				my $res = GetISBDView($biblionumber, "intranet");
				$res.="<br/>";
				my $txt = `$lynx --dump --width 9999 -stdin <<EOF\n$res\nEOF\n`;
				$output .=$txt;
				}
after
 switch ($format) {


--
View this message in context: http://koha.1045719.n5.nabble.com/how-to-get-the-list-of-all-records-of-a-search-result-in-ISBD-format-tp5000490p5003542.html
Sent from the Koha-general mailing list archive at Nabble.com.


More information about the Koha mailing list