oleonard [Tue, 18 Jan 2005 22:11:43 +0000 (22:11 +0000)]
Adding option to output using quicksearch template if the quicksearch parameter is present (uses member-quicksearch.tmpl and member-quicksearch-results.tmpl)
acli [Sat, 15 Jan 2005 05:51:35 +0000 (05:51 +0000)]
Taught buildrelease what the misc directory and release 2.2 is, and also
that version numbers might only have 1 dot. This should fix bugs 889, 890.
A --verbose or -v option has been added in the process of doing the above.
It now chdir to .. if it discovers that it is being run inside misc, since
running it inside misc screws up various things, and I never remember
whether it should be run inside misc or not.
A confirmation message about whether to tag or not is now displayed after
the user answers the question about tagging. I have never felt safe not
having the release builder confirm with me that I really am not tagging
anything.
acli [Thu, 13 Jan 2005 06:01:46 +0000 (06:01 +0000)]
We need the http-equiv headers for non-iso8859-1 translations.
(Arguably it's a bug in tmpl_process3, but HTML::Mason needs it; it is
easier to fix it here.)
tipaul [Tue, 11 Jan 2005 16:33:57 +0000 (16:33 +0000)]
fix for http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=811 :
The OPAC requires uses to log in to view virtual shelves, and it requires a user
with librarian privileges. Virtual shelves should be viewable by all users,
logged in or not, and editable by all logged-in users in good standing.
tipaul [Tue, 11 Jan 2005 16:10:10 +0000 (16:10 +0000)]
1st fix for http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=853
When I search by barcode from this page:
/cgi-bin/koha/search.marc/search.pl?type=intranet
A search for an existing barcode returns no results. A search by call number
also returns no results.
tipaul [Tue, 11 Jan 2005 15:36:02 +0000 (15:36 +0000)]
modifs to handdle correctly more than 1 subscription of the same biblio. Enter subscription detail in subscription notes (like "for branch XX" or "for 2nd floor"). The subscription details are all shown in OPAC.
you can now delete a subscription that is not yet active (= has only 1 issue in "waiting" state)
tipaul [Tue, 11 Jan 2005 15:24:13 +0000 (15:24 +0000)]
modifs to handdle correctly more than 1 subscription of the same biblio. Enter subscription detail in subscription notes (like "for branch XX" or "for 2nd floor"). The subscription details are all shown in OPAC.
you can now delete a subscription that is not yet active (= has only 1 issue in "waiting" state)
tipaul [Tue, 11 Jan 2005 15:13:37 +0000 (15:13 +0000)]
new migration tools :
* build6xx : script that build 6xx tags in authority list. Note this script is a framework, it MUST be tuned.
* buildEDITORS : script that build EDITORS authority file from biblios. Useful for unimarc_210c and uinmarc_225a plugins. run without parameters to get help.
tipaul [Tue, 11 Jan 2005 15:07:57 +0000 (15:07 +0000)]
modifs to handdle correctly more than 1 subscription of the same biblio. Enter subscription detail in subscription notes (like "for branch XX" or "for 2nd floor"). The subscription details are all shown in OPAC.
you can now delete a subscription that is not yet active (= has only 1 issue in "waiting" state)
tipaul [Thu, 6 Jan 2005 14:32:17 +0000 (14:32 +0000)]
improvement of speed for bulkmarcimport.
A sub had been forgotten to use the C4::Context->marcfromkohafield array, that caches DB datas.
this is only a little improvement for normal DB modif, but almost x2 the speed of bulkmarcimport... from 6records/seconds to more than 10.
tipaul [Mon, 3 Jan 2005 12:56:30 +0000 (12:56 +0000)]
* partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic.
tipaul [Mon, 3 Jan 2005 10:58:46 +0000 (10:58 +0000)]
adding "opacstylesheet" systempreference.
if this parameter is defined, the url is used instead of the default one.
So, you can have your own stylesheet somewhere, and use it instead of the official Koha one.
tipaul [Mon, 3 Jan 2005 10:48:33 +0000 (10:48 +0000)]
* bugfix for the search on a MARC detail, when you clic on the magnifying glass (caused an internal server error)
* partial support of the "linkage" MARC feature : if you enter a "link" on a MARC subfield, the magnifying glass won't search on the field, but on the linked field. I agree it's a partial support. Will be improved, but I need to investigate MARC21 & UNIMARC diffs on this topic.
tipaul [Thu, 23 Dec 2004 08:43:43 +0000 (08:43 +0000)]
bugfix : when modifying a biblio, on a repeated field with many subfields, the test to show empty subfields in X>1 was wrong : the missing subfields of the 1st field were repeated.
Example :
606 has $a$x$z
1st is 606$a (so $x$z empty)
2nd is 606$a$x
The marc editor in the 2nd field showed before this fix :
606 $a a_value
$x another_value
$x
$z
(the 2nd $x being useless