Re: [Koha] Going completely on-line with Koha
Hi David,
Oh, and is there a way to add jacket cover photos relevant to a book or its author?
While to be honest, I have been busy with other projects and work, and I haven't had a chance to seriously look at this feature option, I do know that one particular German library that is using Koha is using images of jacket covers etc, so it is definately do able, it is just that at the moment Koha doesn't have this feature. For an example here are a couple of links to their OPAC which may give you some ideas (or even a light at the end of the tunnel). http://public.opac.battern.de/cgi-bin/koha/opac-detail.pl?bib=45 http://public.opac.battern.de/cgi-bin/koha/opac-detail.pl?bib=4 http://public.opac.battern.de/cgi-bin/koha/opac-detail.pl?bib=3 I hope that helps a little. Regards Mike
dragon28@ihug.co.nz a écrit :
While to be honest, I have been busy with other projects and work, and I haven't had a chance to seriously look at this feature option, I do know that one particular German library that is using Koha is using images of jacket covers etc, so it is definately do able, it is just that at the moment Koha doesn't have this feature.
http://public.opac.battern.de/cgi-bin/koha/opac-detail.pl?bib=45
From source code : <b>ISBN:</b> 3541137819<p> <b>Anzahl Exemplare:</b> 1 <p> </font></td> <td valign="middle" align="center"> <a href="javascript:PicWin('/bookpics/3541137819.jpg', '370', '500');"><img src="/bookpics/3541137819-sm.jpg" border="0" alt="Für größeres Bild hier klicken"></a> </td> </tr> </table> They have a directory called bookpics. Where the image filename is the isbn. They just added a link in the template. The template should be something like : <b>ISBN:</b> <TMPL_VAR name="isbn"><p> <b>Anzahl Exemplare:</b> 1 <p> </font></td> <td valign="middle" align="center"> <a href="javascript:PicWin('/bookpics/<TMPL_VAR name="isbn">.jpg', '370', '500');"><img src="/bookpics/<TMPL_VAR name="isbn">-sm.jpg" border="0" alt="Für größeres Bild hier klicken"></a> </td> </tr> </table> So... HTML::TEMPLATE rulez :-D -- Paul POULAIN Consultant indépendant en logiciels libres responsable francophone de koha (SIGB libre http://www.koha-fr.org)
Dear Paul, Thank you. I'll see what I can do with this. DAvid Quoting paul POULAIN <paul.poulain@free.fr>:
dragon28@ihug.co.nz a écrit :
While to be honest, I have been busy with other projects and work, and I haven't had a chance to seriously look at this feature option, I do know that one particular German library that is using Koha is using images of jacket covers etc, so it is definately do able, it is just that at the moment Koha doesn't have this feature.
http://public.opac.battern.de/cgi-bin/koha/opac-detail.pl?bib=45
From source code :
<b>ISBN:</b> 3541137819<p> <b>Anzahl Exemplare:</b> 1 <p> </font></td> <td valign="middle" align="center"> <a href="javascript:PicWin('/bookpics/3541137819.jpg', '370', '500');"><img src="/bookpics/3541137819-sm.jpg" border="0" alt="Für größeres Bild hier klicken"></a> </td> </tr> </table>
They have a directory called bookpics. Where the image filename is the isbn. They just added a link in the template. The template should be something like :
<b>ISBN:</b> <TMPL_VAR name="isbn"><p> <b>Anzahl Exemplare:</b> 1 <p> </font></td> <td valign="middle" align="center"> <a href="javascript:PicWin('/bookpics/<TMPL_VAR name="isbn">.jpg', '370', '500');"><img src="/bookpics/<TMPL_VAR name="isbn">-sm.jpg" border="0" alt="Für größeres Bild hier klicken"></a> </td> </tr> </table>
So... HTML::TEMPLATE rulez :-D
-- Paul POULAIN Consultant indépendant en logiciels libres responsable francophone de koha (SIGB libre http://www.koha-fr.org)
_______________________________________________ Koha mailing list Koha@lists.katipo.co.nz http://lists.katipo.co.nz/mailman/listinfo/koha
-- http://iteachnet.org/~david ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program.
participants (3)
-
David Bucknell -
dragon28@ihug.co.nz -
paul POULAIN