tipaul [Wed, 15 Mar 2006 15:10:29 +0000 (15:10 +0000)]
added a new feature in summary building (for an authority)
If you enter [XXX*] ([250*] for example), the whole field will be displayed as it's saved. This will solve the problem with reordered subfields.
tipaul [Wed, 15 Mar 2006 10:46:31 +0000 (10:46 +0000)]
removing hardcoded link in summary of authority (on $heading) : it can be set in the template (in the # of biblios column) :
<a href="/cgi-bin/koha/opac-search.pl?type=opac&op=do_search&marclist=<!-- TMPL_VAR NAME="biblio_fields" -->&operator==&value=<!-- TMPL_VAR NAME="authid" -->&and_or=and&excluding="><!-- TMPL_VAR NAME="used" --></a> <!-- TMPL_VAR NAME="used" -->
that's what I did for css templates, it work like a charm. It's better I think because when the library defines it's own summary, the hardcoded link didn't appear.
kados [Tue, 14 Mar 2006 22:55:31 +0000 (22:55 +0000)]
adds further functionality to not load subfields marked '3' in the
Hidden in frameworks. Once this is confirmed stable I'll send an email
to koha-devel as it's quite an important feature.
oleonard [Tue, 14 Mar 2006 17:17:38 +0000 (17:17 +0000)]
Adding method for on-the-spot renewal of patron records impending or past expiration dates. Also modifying 'lift debarment' form to use new setstatus script
oleonard [Mon, 13 Mar 2006 19:30:05 +0000 (19:30 +0000)]
1. Formatting 'fines' amount to two decimal places
2. Sending through 'overdues' and 'issues' variables separately (instead of just as odissue) so that overdues can be styled separately.
kados [Fri, 10 Mar 2006 02:35:07 +0000 (02:35 +0000)]
IMPORTANT:
MARC::Record objects coming in from the reservoir are probably going to
be encoded as MARC-8. This enures that they will be converted into UTF-8
before being displayed to the user (if they are in fact MARC-8). It's most
easily done by turning the record into a MARC::File::XML object and then
going back to MARC::Record -- easiest to do for me that is. Of course, a
better solution is to create a routine that changes the encoding of a
MARC::Record object (I was surprised to find such did not exist). I have
tested this method for MARC21, but I'm not familiar with the issues with
encoding in UNIMARC: are UNIMARC records ever encoded in charater sets
other than MARC-8 and UTF-8? (if so, I will need to adjust this code).
oleonard [Thu, 9 Mar 2006 18:03:34 +0000 (18:03 +0000)]
renaming variable so that 'branchname' can be used as current branch setting. By matching circulation.pl's variable naming we can display branchname consistently in the header of circulation-related pages.
kados [Thu, 9 Mar 2006 01:58:51 +0000 (01:58 +0000)]
removing another 'Display for NPL' ... owen, do you have a script that
could be running amuck? I think this is the third time I've removed this
particular one.
oleonard [Wed, 8 Mar 2006 22:31:34 +0000 (22:31 +0000)]
"No Image Available" graphic to display in circulation and moremember for patrons without image on file. For use when patronimages system preference is set.
oleonard [Wed, 8 Mar 2006 21:45:29 +0000 (21:45 +0000)]
Reformating suggestions page, trying to get a handle on how to display the fitlering form along with the suggestions list. This seems better since it doesn't create a horizontally-scrolling page, but not ideal because it gives too much weight to the search.
kados [Wed, 8 Mar 2006 18:49:51 +0000 (18:49 +0000)]
Adding a new way to return branches to the template as requested by
owen. I preserved the old method so that paul can decide whether to
switch default templates or not.
kados [Wed, 8 Mar 2006 16:31:04 +0000 (16:31 +0000)]
bugfix for Biblio.pm based on feedback from production system. previous
version was dropping subfields in cases where the previous tag in the
editor contained values (but only when multiple subfields existed in
both tags). This version will be tested again in production environment
to ensure it is actually fixed.
tipaul [Wed, 8 Mar 2006 13:46:55 +0000 (13:46 +0000)]
some opac systempreferences are set by all pages.
Moving the $template->param where the template is open. This way, nothing can be forgotten, and code is more readable. Feel free to move to Auth.pm any new systempref
(note : where it has been moved, the pref is set even if the user is not logged in, that's what we want)