]>
git.koha-community.org Git - koha.git/log
Galen Charlton [Thu, 3 Jan 2008 18:36:26 +0000 (12:36 -0600)]
check for undefined values when mapping item to MARC
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Galen Charlton [Thu, 3 Jan 2008 18:36:25 +0000 (12:36 -0600)]
inventory: two fixes
* Replaced direct "update items" with ModItem call
* fixed problem in template that prevent barcode file upload
from working
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Galen Charlton [Thu, 3 Jan 2008 18:36:24 +0000 (12:36 -0600)]
item rework: POD and comments improvement
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Galen Charlton [Thu, 3 Jan 2008 18:36:23 +0000 (12:36 -0600)]
_replace_item_field_in_biblio now handles missing item field
If an item field with the appropriate itemnumber does not
exist in the MARC bib, the incoming item field is now
just added instead of being ignored.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Galen Charlton [Thu, 3 Jan 2008 18:36:22 +0000 (12:36 -0600)]
removed erroneous comment
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Galen Charlton [Thu, 3 Jan 2008 18:36:21 +0000 (12:36 -0600)]
item rework: moved GetItem
Moved from C4::Biblio to C4::Items.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Galen Charlton [Thu, 3 Jan 2008 18:36:20 +0000 (12:36 -0600)]
quell warning if updating itemnote whose original value is NULL
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Galen Charlton [Thu, 3 Jan 2008 18:36:19 +0000 (12:36 -0600)]
item rework: moved GetMarcItem
Moved this function from an exported function in
C4::Biblio to a public but unexported function
in C4::Items. Added comment noting that this
is used only by additem.pl.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Galen Charlton [Thu, 3 Jan 2008 18:36:18 +0000 (12:36 -0600)]
item rework: do not allow bulkedit to update items
This patch is meant to guarantee that a bulkedit
does not try to edit an item tag embedded in a MARC
biblio without updating the items feature. It is
not a comprehensive fix of the bulkedit feature, which
currently does not appear to be functional and
needs some thought:
* The general search results is probably not the
best place to put this feature -- it should
probably be in tools.
* A bulk edit of something like items is desireable,
but needs to be designed so that it respects
business logic for circulation and acquisitions.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Galen Charlton [Thu, 3 Jan 2008 18:36:17 +0000 (12:36 -0600)]
item rework: moved ModItemInMarc
* Moved exported ModItemInMarc from C4::Biblio to
C4::Items and renamed to _replace_item_field_in_biblio.
Function is now private and is not exported, as
ModItem is now the sole entry point for updating
an item record.
* Replaced calls to ModItemInMarc in C4::Circulation
with appropriate ModItem calls.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Galen Charlton [Thu, 3 Jan 2008 18:36:16 +0000 (12:36 -0600)]
items rework: fix several non-NULL columns during ModItem
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Galen Charlton [Thu, 3 Jan 2008 18:36:15 +0000 (12:36 -0600)]
start of BIB change -- introduce C4::Items
Introduced C4::Items module to separate items API
from biblio API. Details on changes will be
put in later commit messages.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Galen Charlton [Thu, 3 Jan 2008 18:36:14 +0000 (12:36 -0600)]
DB rev 042: disallow null in aqbooksellers.name
Patch per Ryan Higgins; part of fix for bug 1251.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Galen Charlton [Thu, 3 Jan 2008 18:36:13 +0000 (12:36 -0600)]
DB rev 041: disallow NULL in some item status columns
notforloan, damaged, itemlost, wthdrawn
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Thu, 3 Jan 2008 18:36:12 +0000 (12:36 -0600)]
Fixing Database Definitions for Statuses *PARTIAL*
Prior to this fix, the status fields had three 'off' values, NULL, "",
and 0. I've reduced it to two in the db, removing the option for NULL, and
setting the default value to 0, however, we need to verify that we don't ever
write out as "" as this needlessly complicates the indexing process,
critical for searching or limiting by status (e.g., availability). Also,
queries that attempt to write a NULL value to one of these fields will fail
(based on my tests).
This patch includes the following changes:
* Updated the database definition for notforloan, damaged, itemlost, and
wthdrawn in kohastructure.sql to forbid NULL and default to 0; MySQL
can't forbid other values (such as empty ""), so this has to be handled
at the application layer and REQUIRES further patching.
* Fixed the 'limit by availability' query node in Search.pm to use a
much less confusing definition of 'available'
* Added code to set values to 0 where they are NULL or empty ( "" ) for
notforloan, damaged, itemlost or wthdrawn in both the MARC and the items
table:
* Biblio.pm -> AddBiblioAndItems
* catalogue/updateitem.pl
* SEE NOTE BELOW, REQUIRES UPDATE TO THE REST OF KOHA'S ITEM MGT!
* Removed code in bulkmarcimport.pl that sets notforloan status depending
on item-level or bib-level itemtype -- that flag is designed to be set
only to override the notforloan setting for the item's (or bib's,
depending on the syspref) assigned itemtype (it doesn't need to override
to 'for loan', only to 'not for loan').
added $dbh->do("truncate zebraqueue"); when operation is 'delete'
* I updated some notes in catalogue/updateitem.pl as to why ModItem can't be
used -- we don't have _a_ place where we can change the item and marc :/
I've tested the following:
bulkmarcimport.pl..........................MARC/items OK
Staged Records Import......................NOT OK
updateitem.pl (via moredetail.pl)..........MARC/items OK
circulation.pl.............................NOT OK
returns.pl.................................NOT OK
addbiblio.pl...............................NOT OK
additem.pl.................................NOT OK
Basically, there isn't a single place to apply this patch that will
update both item data and MARC data in one place ... a future patch
needs to address this issue.
Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Ryan Higgins [Thu, 3 Jan 2008 18:36:11 +0000 (12:36 -0600)]
Allow Library select on new bookfund and term update.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Frederic Demians [Thu, 3 Jan 2008 18:36:10 +0000 (12:36 -0600)]
Some tweaks for Debian Etch install procedure
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Thu, 3 Jan 2008 14:23:01 +0000 (09:23 -0500)]
Fix Genre-form and Subject-topical for MARC21
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Thu, 3 Jan 2008 09:00:39 +0000 (04:00 -0500)]
fixing a couple mappings for SRU CQL server
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Thu, 3 Jan 2008 08:09:23 +0000 (03:09 -0500)]
s/__DB_HOST__/__WEBSERVER_HOST__/
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Mason James [Thu, 3 Jan 2008 07:31:54 +0000 (01:31 -0600)]
more tweaks for tmpl vars.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Mason James [Thu, 3 Jan 2008 07:31:53 +0000 (01:31 -0600)]
tmpl var CATCODE_MULTI now passed
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Mason James [Thu, 3 Jan 2008 07:31:52 +0000 (01:31 -0600)]
now closes and redirects pop-up to parent , yay
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Mason James [Thu, 3 Jan 2008 07:31:51 +0000 (01:31 -0600)]
tweaks to update-child feature.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Mason James [Thu, 3 Jan 2008 07:31:50 +0000 (01:31 -0600)]
little fixes for update_child feature.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Thu, 3 Jan 2008 07:38:45 +0000 (02:38 -0500)]
Improving searchhighlightblob, similar to Paul's patch:
1. doesn't remove author_nospan, and <span>s around bib fields for
display, perhaps they should just get a separate style?
2. using subfields now
3. improved ability to highlight small words (3 chars and less)
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Russel Garlick [Thu, 3 Jan 2008 02:09:02 +0000 (20:09 -0600)]
Making a start on online help for Acquisitions - Budget Based
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Mason James [Thu, 3 Jan 2008 01:42:07 +0000 (19:42 -0600)]
upgrade-child 'Choose Adult category' popup-window now has resize.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Russel Garlick [Thu, 3 Jan 2008 00:18:32 +0000 (18:18 -0600)]
Adding Online Help for Circ from Wiki (thanks tnb)
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Chris Cormack [Thu, 3 Jan 2008 00:14:39 +0000 (18:14 -0600)]
Escaping the $title in the regexes with \Q and \E to handle nested quantifiers
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Russel Garlick [Wed, 2 Jan 2008 23:39:22 +0000 (17:39 -0600)]
Online help for admin, various tools and cataloguing
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Owen Leonard [Wed, 2 Jan 2008 22:16:10 +0000 (16:16 -0600)]
Removing "date due" column from holdings display, as date due is alread displayed in status column. Linking barcode link on detail.pl to named anchor on moredetail.pl (2.x feature).
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Owen Leonard [Wed, 2 Jan 2008 22:16:09 +0000 (16:16 -0600)]
Markup corrections and dialog formatting.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Owen Leonard [Wed, 2 Jan 2008 22:16:08 +0000 (16:16 -0600)]
Formatting error message as standard dialog
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Owen Leonard [Wed, 2 Jan 2008 21:22:06 +0000 (15:22 -0600)]
A few minor markup corrections.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Owen Leonard [Wed, 2 Jan 2008 21:22:05 +0000 (15:22 -0600)]
Some refinements to statuses and messages. Beginning to standardize call number displays.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Chris Cormack [Wed, 2 Jan 2008 20:17:24 +0000 (14:17 -0600)]
Changing dialogue when an item needs transferring adding Yes and No buttons
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joe Atzberger [Wed, 2 Jan 2008 19:18:51 +0000 (13:18 -0600)]
label-manager - POSIX unused, commented out
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joe Atzberger [Wed, 2 Jan 2008 19:18:50 +0000 (13:18 -0600)]
search.tmpl - layout fixes, TODO: handle empty submit w/o crashing
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joe Atzberger [Wed, 2 Jan 2008 19:18:49 +0000 (13:18 -0600)]
label-manager.pl - purely whitespace edit, use git diff -U0 -w labels/label-manager.pl to verify
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joe Atzberger [Wed, 2 Jan 2008 19:18:48 +0000 (13:18 -0600)]
install.pl - exit after redirect
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joe Atzberger [Wed, 2 Jan 2008 19:18:47 +0000 (13:18 -0600)]
opac-detail.pl - cleanup incl. exit after redirect
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Paul POULAIN [Wed, 2 Jan 2008 19:12:29 +0000 (13:12 -0600)]
small fix to french translation
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Paul POULAIN [Wed, 2 Jan 2008 19:12:28 +0000 (13:12 -0600)]
french translation updated
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Paul POULAIN [Wed, 2 Jan 2008 19:12:27 +0000 (13:12 -0600)]
removing some spaces that are disliked by the translator
+ why is label-status.inc identified as a binary file on my station ?
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Paul POULAIN [Wed, 2 Jan 2008 19:12:25 +0000 (13:12 -0600)]
adding a searchhighlightblob style
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Paul POULAIN [Wed, 2 Jan 2008 19:12:24 +0000 (13:12 -0600)]
bugfix : reintroduce author_nospan to have a cliquable author link everytime
without this, the <a href="q=au:author"> result in some <span> in the link
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Paul POULAIN [Wed, 2 Jan 2008 19:12:23 +0000 (13:12 -0600)]
rebuild_zebra : directories updated
the unimarc stuff has been moved to marc_defs directory and the
lang specific is in lang_defs
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Paul POULAIN [Wed, 2 Jan 2008 19:12:22 +0000 (13:12 -0600)]
synch'ing marc21 and unimarc where applicable
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Paul POULAIN [Wed, 2 Jan 2008 19:12:21 +0000 (13:12 -0600)]
Adding OPACItemsResultsDisplay syspref (missing file from previous commit)
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Henri-Damien LAURENT [Wed, 2 Jan 2008 19:01:58 +0000 (13:01 -0600)]
NZSearch debugging
Adding NZoperatorAND NZoperatorOR NZoperatorNOT
Using NZOperatorAND NOT in NZanalyse
Some problem solved.
Please test.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Thu, 3 Jan 2008 06:39:42 +0000 (01:39 -0500)]
small fix to koha-conf.xml
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Mason James [Wed, 2 Jan 2008 19:01:57 +0000 (13:01 -0600)]
padding Add_Delta_Days date, again.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Mason James [Wed, 2 Jan 2008 19:01:56 +0000 (13:01 -0600)]
BUGFIX padding add_delta_days() date
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Thu, 3 Jan 2008 06:27:32 +0000 (01:27 -0500)]
WARNING: Updates to Index Defs for Authorities
This commit is a partial fix to authority control for MARC21,
and better authority handling in general (for UNIMARC too).
Before this patch, authority searching, editing, saving, was
not functioning, or was extremely buggy.
WARNING: You will need to re-index your authority database after
applying this commit.
The following changes have been made:
* Normalizing record.abs index names (in both MARC21 and UNIMARC)
* Synching authorities/bib1.att, ccl.properties, AuthoritiesMarc.pm
with new indexes (UNIMARC too)
* Clean up biblios/bib1.att (remove duplicate att defs)
* Clean up authorities-* templates to conform to new styles
* Fixed search failure when using Default framework (now searches
All)
Also included are several fixes to the built-in SRU server for
Authority and Biblio, it's recommended that you update your
koha-conf.xml file:
* adding explain-authorities.xml and explain-biblios.xml
* adding necessary info to koha-conf.xml to enable SRU/W
* adding several example XSLT stylesheets, that can be used
for SRU on-the-fly transformations (to MODS, DC, RDF, etc.)
Still remaining for 3.0 are the following tasks:
* update MARC21 frameworks (authority and cross-reference bib)
* update display code/templates in authority results list
* update search code/templates to utilize index points
* implement 'grouping' of authtypes for searching (Name, Title, Subject)
* repair utility to import auths and perform matching
* repair bibliographic import to match auths and warn if no match
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Mason James [Wed, 2 Jan 2008 07:25:04 +0000 (01:25 -0600)]
TransformHtmlToXml() now checks from UNIMARC flavour, before inserting encoding info to 100$a
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Wed, 2 Jan 2008 02:39:15 +0000 (21:39 -0500)]
adding release notes for 3.0
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Ryan Higgins [Wed, 2 Jan 2008 01:45:30 +0000 (19:45 -0600)]
fix for bug 1723. no auth on finishreceive.pl
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Wed, 2 Jan 2008 02:02:10 +0000 (21:02 -0500)]
nomenclature cleanup for acquisitions:
supplier -> vendor
freight -> shipping
parcel -> shipment
shopping basket -> basket
parcel code -> invoice number
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Chris Cormack [Wed, 2 Jan 2008 01:25:25 +0000 (19:25 -0600)]
Fix to redirect the user ot the select branch page if they try to use
circulation without a branch set
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Ryan Higgins [Wed, 2 Jan 2008 00:39:48 +0000 (18:39 -0600)]
Fix bug in ModReceiveOrder call
had been losing datereceived and replacementprice on modorder.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Ryan Higgins [Wed, 2 Jan 2008 00:39:47 +0000 (18:39 -0600)]
Specify datereceived when receiving a new parcel.
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Ryan Higgins [Wed, 2 Jan 2008 00:39:46 +0000 (18:39 -0600)]
removing extra collection display from moredetail.tmpl
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Ryan Higgins [Wed, 2 Jan 2008 00:39:45 +0000 (18:39 -0600)]
adding missing title info from MARC view / intranet
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Chris Cormack [Tue, 1 Jan 2008 22:31:27 +0000 (16:31 -0600)]
Fix for bug 1711
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Chris Cormack [Tue, 1 Jan 2008 21:56:22 +0000 (15:56 -0600)]
Bugfix for 1725 request.pl erroring with a biblio that has no items
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Ryan Higgins [Tue, 1 Jan 2008 21:36:34 +0000 (15:36 -0600)]
Fix for bug 1251 (blank supplier name)
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Ryan Higgins [Tue, 1 Jan 2008 20:53:15 +0000 (14:53 -0600)]
Further updates to acq, merging in dev_week mods.
Splitting orders now on receipt.
Many tmpl updates to pass correct values btwn scripts.
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Ryan Higgins [Tue, 1 Jan 2008 20:52:52 +0000 (14:52 -0600)]
add item-level location,collection fields to orderreceive
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Ryan Higgins [Tue, 1 Jan 2008 20:52:30 +0000 (14:52 -0600)]
cleanup parcel.pl and tmpl
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Ryan Higgins [Tue, 1 Jan 2008 20:52:05 +0000 (14:52 -0600)]
updates to acqui - first of several commits
bug fixes to display and save publishercode and purchase order numbers.
use invoice number in place of parcel code
fix template apparently allowing user to modify biblio details on add/mod order
removing CGI scrolling_list
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Tue, 1 Jan 2008 18:56:14 +0000 (13:56 -0500)]
s/Waited/Expected/ for serials statuses reformating rebuild_nozebra.pl indexes
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joe Atzberger [Mon, 31 Dec 2007 21:55:17 +0000 (15:55 -0600)]
NewsChannels - format_date for news "Posted on" date
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joe Atzberger [Mon, 31 Dec 2007 21:55:16 +0000 (15:55 -0600)]
systempreferences - remove dateformat from admin tab
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joe Atzberger [Mon, 31 Dec 2007 19:01:18 +0000 (13:01 -0600)]
opac-shevles - fix for CSS alternating highlight lines
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joe Atzberger [Mon, 31 Dec 2007 19:01:17 +0000 (13:01 -0600)]
opac-shelves.tmpl cleanup - obsolete input removed
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joe Atzberger [Mon, 31 Dec 2007 19:01:16 +0000 (13:01 -0600)]
opac-addbybiblionumber.pl - Remove false dependency, add body message in case scripts disabled.
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Mason James [Sun, 30 Dec 2007 23:51:53 +0000 (12:51 +1300)]
removing un-needed "yui-toolbars.inc" include
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Chris Cormack [Mon, 31 Dec 2007 01:23:30 +0000 (19:23 -0600)]
Fix for bug 1708
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Chris Cormack [Mon, 31 Dec 2007 01:19:09 +0000 (19:19 -0600)]
Fix for bug 1515
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Russel Garlick [Sun, 30 Dec 2007 23:23:18 +0000 (17:23 -0600)]
Online help for catalgouing
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Russel Garlick [Sun, 30 Dec 2007 23:23:17 +0000 (17:23 -0600)]
Changing text from Virtual Shelves to Lists
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Russel Garlick [Sun, 30 Dec 2007 23:23:16 +0000 (17:23 -0600)]
Online help for suggestions management
Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Sun, 30 Dec 2007 22:57:48 +0000 (17:57 -0500)]
fix to enable separate imageurls for item-level itypes
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Sun, 30 Dec 2007 21:14:34 +0000 (16:14 -0500)]
improving sample data for English
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Sun, 30 Dec 2007 18:31:36 +0000 (13:31 -0500)]
updating INSTALL and INSTALL.debian
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Chris Cormack [Sun, 30 Dec 2007 22:42:40 +0000 (16:42 -0600)]
Fix for bug 1319, can no longer delete an item with a waiting reserve on it
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Chris Cormack [Sun, 30 Dec 2007 22:17:04 +0000 (16:17 -0600)]
Fix for bug 1626, whitespace stripped from barcodes
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Chris Cormack [Sun, 30 Dec 2007 21:59:42 +0000 (15:59 -0600)]
Fix for bug 1461, checkbox now doesnt display if you cant renew an item
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Chris Cormack [Sun, 30 Dec 2007 21:36:42 +0000 (15:36 -0600)]
Fix for bug 1552, fix ordering of issued items
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Chris Cormack [Sun, 30 Dec 2007 19:41:35 +0000 (13:41 -0600)]
Fix for item level itypes and toomany subroutine
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Sun, 30 Dec 2007 18:04:32 +0000 (13:04 -0500)]
adding README
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Sun, 30 Dec 2007 18:00:54 +0000 (13:00 -0500)]
more re-arranging prior to release
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Sun, 30 Dec 2007 17:58:27 +0000 (12:58 -0500)]
re-naming some files prior to release
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Sun, 30 Dec 2007 17:52:18 +0000 (12:52 -0500)]
fixing nomenclature on files in misc/, adding a few new utilities
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Sun, 30 Dec 2007 16:47:58 +0000 (11:47 -0500)]
adding a new option, -w, which disables shadow indexing for the current batch (faster indexing of large sets where ACID isn't critical)
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Sun, 30 Dec 2007 16:40:52 +0000 (11:40 -0500)]
updates to some of the finer points of the install process on Etch
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Joshua Ferraro [Sun, 30 Dec 2007 16:27:55 +0000 (11:27 -0500)]
moving some files and deleting cataloguing/updateitem.pl, the _real_ updateitem.pl is in catalogue/
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Chris Cormack [Sun, 30 Dec 2007 00:28:14 +0000 (18:28 -0600)]
Fixing a bug with notforloan being checked properly
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Chris Cormack [Sat, 29 Dec 2007 20:58:44 +0000 (14:58 -0600)]
Fix for bug 1253 borrowers names sorted case sensitivly in circulation.pl
Signed-off-by: Joshua Ferraro <jmf@liblime.com>