koha.git
16 years agoContinuing reformatting of returns.tmpl; Correcting javascript error in request.tmpl.
Owen Leonard [Tue, 27 Nov 2007 20:53:27 +0000 (14:53 -0600)]
Continuing reformatting of returns.tmpl; Correcting javascript error in request.tmpl.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoAttempting to pretty up confirmations and messages in returns; Adding some variables...
Owen Leonard [Tue, 27 Nov 2007 20:53:06 +0000 (14:53 -0600)]
Attempting to pretty up confirmations and messages in returns; Adding some variables to the template output; Fixing layout in circulation.tmpl for patrons without messages; Minor correction to OPAC css.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoTweaking display of MARC records in the OPAC
Owen Leonard [Tue, 27 Nov 2007 20:52:48 +0000 (14:52 -0600)]
Tweaking display of MARC records in the OPAC

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoCorrecting breadcrumbs
Owen Leonard [Tue, 27 Nov 2007 20:52:39 +0000 (14:52 -0600)]
Correcting breadcrumbs

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoAdding auto-fill links for variable types
Owen Leonard [Tue, 27 Nov 2007 20:52:29 +0000 (14:52 -0600)]
Adding auto-fill links for variable types

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoMinor changes to systempreferences markup, including re-adding edit link on system...
Owen Leonard [Tue, 27 Nov 2007 20:52:21 +0000 (14:52 -0600)]
Minor changes to systempreferences markup, including re-adding edit link on system pref variable, very helpful if the display runs off the right side of the screen.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoMoving holdings, description, editions, and related into tabs, enabling AmazonSimilar...
Owen Leonard [Tue, 27 Nov 2007 20:52:10 +0000 (14:52 -0600)]
Moving holdings, description, editions, and related into tabs, enabling AmazonSimilarItems global preference for the staff client (but not working?)

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoIncremental changes to reviews, similar items
Owen Leonard [Tue, 27 Nov 2007 20:51:49 +0000 (14:51 -0600)]
Incremental changes to reviews, similar items

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoimproved terminology for WITHDRAWN authorized value
Galen Charlton [Tue, 27 Nov 2007 20:29:32 +0000 (14:29 -0600)]
improved terminology for WITHDRAWN authorized value

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agobugfix: handle subfield $0 in MARC for an item
Galen Charlton [Tue, 27 Nov 2007 20:08:06 +0000 (14:08 -0600)]
bugfix: handle subfield $0 in MARC for an item

Note: C4::Biblio::GetMarcFromKohaField returns (0, 0) if
the kohafield is not defined in the MARC framework, but
in may places the return value is not checked correctly
and does not recognize a subfield $0 (zero).  It
would be better if GetMarcFromKohaField returned (undef, undef)
in that circumstance, but because of the number of places
where that function is used, the changed is deferred for
post 3.0.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agobug 1616: handle NULL in damaged, wthdrawn, or itemlost columns
Galen Charlton [Tue, 27 Nov 2007 20:08:05 +0000 (14:08 -0600)]
bug 1616: handle NULL in damaged, wthdrawn, or itemlost columns

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoMARC21 framework: changed 'items.withdrawn' to 'items.wthdrawn'
Galen Charlton [Tue, 27 Nov 2007 20:08:04 +0000 (14:08 -0600)]
MARC21 framework: changed 'items.withdrawn' to 'items.wthdrawn'

The correct field is 'items.wthdrawn', not 'items.withdrawn'.
Spelling may be corrected in post-3.0 version.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agobug 1616: update bib MARC and zebraqueue on item update
Galen Charlton [Tue, 27 Nov 2007 16:28:09 +0000 (10:28 -0600)]
bug 1616: update bib MARC and zebraqueue on item update

Fixed so that when using updateitem.pl to change an
item's lost, damaged, or withdrawn status, the
bib's MARC XML is updated and an entry is added
to zebraqueue.

As part of the fix, C4::Biblio::ModItemInMarconefield
now works correctly.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding template code for AmazonSimilarItems et al
Joshua Ferraro [Tue, 27 Nov 2007 03:26:51 +0000 (21:26 -0600)]
adding template code for AmazonSimilarItems et al

Test this by having the following ISBNs in your system:

0152018484
0152053530

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofixing langauge limit indexes were removed
Joshua Ferraro [Mon, 26 Nov 2007 14:59:52 +0000 (08:59 -0600)]
fixing langauge limit indexes were removed

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoMARC import: part 6 of large file support
Galen Charlton [Mon, 26 Nov 2007 22:30:26 +0000 (16:30 -0600)]
MARC import: part 6 of large file support

Added background job and AJAX progress updates
to MARC commit job.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoMARC import: part 5 of large file support
Galen Charlton [Mon, 26 Nov 2007 21:40:57 +0000 (15:40 -0600)]
MARC import: part 5 of large file support

Staging job now gets moved to background so that
it does not get killed if it takes longer
than the Apache timeout.

Added AJAX monitoring of job status.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoC4::UploadedFile -- simplified serialization
Galen Charlton [Mon, 26 Nov 2007 21:40:56 +0000 (15:40 -0600)]
C4::UploadedFile -- simplified serialization

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoMARC import: part 4 of large file support
Galen Charlton [Mon, 26 Nov 2007 21:40:55 +0000 (15:40 -0600)]
MARC import: part 4 of large file support

* Added C4::BackgroundJob to monitor tracking of
  background jobs
* start modifying stage-marc-import to use it

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoMore work on editions in the OPAC; Need both a staff client and OPAC system pref...
Owen Leonard [Mon, 26 Nov 2007 21:00:57 +0000 (15:00 -0600)]
More work on editions in the OPAC; Need both a staff client and OPAC system pref for turning on and off XISBN stuff.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoMoving system preferences search (yay!) into resident search form
Owen Leonard [Mon, 26 Nov 2007 21:00:32 +0000 (15:00 -0600)]
Moving system preferences search (yay!) into resident search form

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoEnabling FRBR system pref for OPAC, to enable/disable display of other editions....
Owen Leonard [Mon, 26 Nov 2007 21:00:22 +0000 (15:00 -0600)]
Enabling FRBR system pref for OPAC, to enable/disable display of other editions. Adding editions display to opac-detail, and making some other cosmetic changes. Adding alterating table row colors in opac-user.pl

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoA few minor changes: Tweaking amazon image js to try to fix spotty behavior (not...
Owen Leonard [Mon, 26 Nov 2007 20:59:56 +0000 (14:59 -0600)]
A few minor changes: Tweaking amazon image js to try to fix spotty behavior (not very successfully), adding "renew all" button to opac-user, though it doesn't actually work yet.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoAnother fix for But 1165. All taken care of now, I hope.
Owen Leonard [Mon, 26 Nov 2007 20:59:46 +0000 (14:59 -0600)]
Another fix for But 1165. All taken care of now, I hope.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoTidying up and correcting patron image embedding.
Owen Leonard [Mon, 26 Nov 2007 20:59:36 +0000 (14:59 -0600)]
Tidying up and correcting patron image embedding.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoA couple of changes towards fixing Bug 1165 (GST in PROG templates)
Owen Leonard [Mon, 26 Nov 2007 20:59:11 +0000 (14:59 -0600)]
A couple of changes towards fixing Bug 1165 (GST in PROG templates)

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoSecond try:Corrected bad pathing for default Perl base dir. Default now matches Debia...
Chris Nighswonger [Mon, 26 Nov 2007 12:38:21 +0000 (07:38 -0500)]
Second try:Corrected bad pathing for default Perl base dir. Default now matches Debian Perl.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoBUG-1533, adding sys-pref search back in, too handy for deving/testing.
Mason James [Mon, 26 Nov 2007 07:47:00 +0000 (01:47 -0600)]
BUG-1533, adding sys-pref search back in, too handy for deving/testing.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoBUG-1533, adding sys-pref search back in, too handy for deving/testing.
Mason James [Mon, 26 Nov 2007 07:46:40 +0000 (01:46 -0600)]
BUG-1533, adding sys-pref search back in, too handy for deving/testing.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding generic POT file
Joshua Ferraro [Mon, 26 Nov 2007 12:28:27 +0000 (06:28 -0600)]
adding generic POT file

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoRe-naming French .po files in line with RFC4646, mail to follow
Joshua Ferraro [Mon, 26 Nov 2007 12:23:35 +0000 (06:23 -0600)]
Re-naming French .po files in line with RFC4646, mail to follow

on koha-devel.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agomuch-awaited web-based self-checkout system
Joshua Ferraro [Mon, 26 Nov 2007 05:44:50 +0000 (23:44 -0600)]
much-awaited web-based self-checkout system

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoAdding MARC preview to acqui screens
Ryan Higgins [Mon, 26 Nov 2007 01:55:32 +0000 (19:55 -0600)]
Adding MARC preview to acqui screens

Also cleaning up some missing params and language.
Add another js library: greyox (jquery derivative iiuc).

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agos/mt/itemtype/ for FindDuplicate
Joshua Ferraro [Mon, 26 Nov 2007 03:43:25 +0000 (21:43 -0600)]
s/mt/itemtype/ for FindDuplicate

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoallow timeout to be specified in days
Joshua Ferraro [Mon, 26 Nov 2007 01:41:15 +0000 (19:41 -0600)]
allow timeout to be specified in days

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding maxItemsToDisplay
Joshua Ferraro [Mon, 26 Nov 2007 01:32:01 +0000 (19:32 -0600)]
adding maxItemsToDisplay

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoforward-porting default sort by options
Joshua Ferraro [Mon, 26 Nov 2007 00:46:35 +0000 (18:46 -0600)]
forward-porting default sort by options

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding proper frameworkcodes for simple frameworks suppress field
Joshua Ferraro [Mon, 26 Nov 2007 00:33:26 +0000 (18:33 -0600)]
adding proper frameworkcodes for simple frameworks suppress field

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofix to kohastructure, comma probs
Joshua Ferraro [Mon, 26 Nov 2007 00:28:36 +0000 (18:28 -0600)]
fix to kohastructure, comma probs

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding fixes to updatedatabase
Joshua Ferraro [Mon, 26 Nov 2007 00:08:49 +0000 (18:08 -0600)]
adding fixes to updatedatabase

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofix to sort by defaults sysprefs, more choices
Joshua Ferraro [Mon, 26 Nov 2007 00:03:58 +0000 (18:03 -0600)]
fix to sort by defaults sysprefs, more choices

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding numSearchResults and OPACnumSearchResults
Joshua Ferraro [Sun, 25 Nov 2007 23:54:16 +0000 (17:54 -0600)]
adding numSearchResults and OPACnumSearchResults

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding warning to marc_subfields_structure not to change the koha link after loading...
Joshua Ferraro [Sun, 25 Nov 2007 23:33:35 +0000 (17:33 -0600)]
adding warning to marc_subfields_structure not to change the koha link after loading data

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years ago1507 : Possible Missing Foreign Key in Accountoffsets
Paul POULAIN [Fri, 23 Nov 2007 18:26:13 +0000 (19:26 +0100)]
1507 : Possible Missing Foreign Key in Accountoffsets

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agounimarc zebra config files moved to etc/zebradbs directory
Paul POULAIN [Fri, 23 Nov 2007 18:26:12 +0000 (19:26 +0100)]
unimarc zebra config files moved to etc/zebradbs directory

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years ago(atz, pls validate) bugfixing dates viewing on moremember
Paul POULAIN [Fri, 23 Nov 2007 18:26:11 +0000 (19:26 +0100)]
(atz, pls validate) bugfixing dates viewing on moremember

There were 2 bugs :
- one in moremember.pl that supposed the date value to be in preffered order, which is wrong, it's in iso at this time
- the output does not work as expected, as it always return iso.

Pls atz, confirm Dates.pm was bugged.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofor authorities too: everybody, says 100 times : "It's forbidden to put TMPL_IF insid...
Paul POULAIN [Fri, 23 Nov 2007 18:26:10 +0000 (19:26 +0100)]
for authorities too: everybody, says 100 times : "It's forbidden to put TMPL_IF inside a html tag"

The translator become crazy :
<anything <!-- TMPL_IF -->nanana<!-- /TMPL_IF -->> is ILLEGAL in Koha

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoremoving useless files
Paul POULAIN [Fri, 23 Nov 2007 18:26:09 +0000 (19:26 +0100)]
removing useless files

some were already in etc/zebradb, the unimarc specifics one have been copied here

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoUpdating rebuild_zebra.pl : now uses etc config files
Paul POULAIN [Fri, 23 Nov 2007 18:26:08 +0000 (19:26 +0100)]
Updating rebuild_zebra.pl : now uses etc config files

There are only 2 UNIMARC specific files (.abs and .chr), they have been moved to etc/zebradb

The rebuild_zebra.pl takes all config file from this location now.
the misc/zebra/ can be removed (and will be soon)

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agotranslation to french updated (staff & opac)
Paul POULAIN [Fri, 23 Nov 2007 18:26:07 +0000 (19:26 +0100)]
translation to french updated (staff & opac)

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoDeal with opac template reordering
Paul POULAIN [Fri, 23 Nov 2007 18:26:06 +0000 (19:26 +0100)]
Deal with opac template reordering

the modules/ directory is now in opac as well as in intranet.
non english languages were unreachable without this patch.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoinclude 700 (author) in authority author list
Paul POULAIN [Fri, 23 Nov 2007 18:26:05 +0000 (19:26 +0100)]
include 700 (author) in authority author list

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding a tab to all un-affected sysprefs.
Paul POULAIN [Fri, 23 Nov 2007 18:26:02 +0000 (19:26 +0100)]
adding a tab to all un-affected sysprefs.

+ modify the look a little bit

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoAdding Biblio::EndNote dep
Paul POULAIN [Fri, 23 Nov 2007 18:26:01 +0000 (19:26 +0100)]
Adding Biblio::EndNote dep

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding yellow style for search term
Paul POULAIN [Fri, 23 Nov 2007 18:25:59 +0000 (19:25 +0100)]
adding yellow style for search term

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoremove a SQL limit & the items table stuff
Paul POULAIN [Fri, 23 Nov 2007 18:25:57 +0000 (19:25 +0100)]
remove a SQL limit & the items table stuff

The authoritative data for the items is the items table, not the MARC data.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoFix for Bug 1574
Owen Leonard [Sun, 25 Nov 2007 19:32:24 +0000 (13:32 -0600)]
Fix for Bug 1574

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoMARC import: part 3 of large file support
Galen Charlton [Fri, 23 Nov 2007 20:44:55 +0000 (14:44 -0600)]
MARC import: part 3 of large file support

* Introduced C4::UploadedFile to handle management and
  progress tracking of uploaded files.
* Modified stage-marc-import.pl to handle new upload
  mechanism

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoMARC import: part 2 of large file support
Galen Charlton [Fri, 23 Nov 2007 20:44:54 +0000 (14:44 -0600)]
MARC import: part 2 of large file support

* Added check_cookie_auth to C4::Auth
* Added permissions checks to the file upload scripts
* Added more error handling

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agobugfix: fixed quelling of warning if $db_port not specified
Galen Charlton [Fri, 23 Nov 2007 20:44:53 +0000 (14:44 -0600)]
bugfix: fixed quelling of warning if $db_port not specified

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agobugfix: remove extra /TMPL_IF
Galen Charlton [Fri, 23 Nov 2007 20:44:52 +0000 (14:44 -0600)]
bugfix: remove extra /TMPL_IF

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoquell warning about missing config parameter (DB) 'port'
Galen Charlton [Fri, 23 Nov 2007 20:44:51 +0000 (14:44 -0600)]
quell warning about missing config parameter (DB) 'port'

This context parameter is not necessarily present for
MySQL storage method.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agonew C4::Auth::get_session for single place to get CGI::Session object
Galen Charlton [Fri, 23 Nov 2007 20:44:50 +0000 (14:44 -0600)]
new C4::Auth::get_session for single place to get CGI::Session object

Refactoring to provide single place to get CGI::Session ojbject;
fixes bug for DB storage method other than 'mysql'.

This refactoring is also part of the patch series for
handling large input files for staging and processing
MARC records.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoMARC import: part 1 of adding support for large files
Galen Charlton [Fri, 23 Nov 2007 20:44:49 +0000 (14:44 -0600)]
MARC import: part 1 of adding support for large files

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agorenamed 'biblios' directory for webservices to 'svc'
Galen Charlton [Fri, 23 Nov 2007 16:02:29 +0000 (10:02 -0600)]
renamed 'biblios' directory for webservices to 'svc'

Directory changed to give a more generic name, particularly
for when new services are added later.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding Suppress in OPAC to record.abs
Joshua Ferraro [Sun, 25 Nov 2007 22:23:05 +0000 (16:23 -0600)]
adding Suppress in OPAC to record.abs

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding 'Suppress in OPAC' to MARC frameworks
Joshua Ferraro [Sun, 25 Nov 2007 22:21:47 +0000 (16:21 -0600)]
adding 'Suppress in OPAC' to MARC frameworks

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoimprove nomenclature of installer
Joshua Ferraro [Sun, 25 Nov 2007 21:49:07 +0000 (15:49 -0600)]
improve nomenclature of installer

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding missing sysprefs to 3.0
Joshua Ferraro [Sun, 25 Nov 2007 21:45:50 +0000 (15:45 -0600)]
adding missing sysprefs to 3.0

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoforward-porting full list of valud Z39.50 target syntaxes
Joshua Ferraro [Sun, 25 Nov 2007 16:31:06 +0000 (10:31 -0600)]
forward-porting full list of valud Z39.50 target syntaxes

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofixes to scan
Joshua Ferraro [Sun, 25 Nov 2007 16:03:18 +0000 (10:03 -0600)]
fixes to scan

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofix for bug 1208, exact barcode search
Joshua Ferraro [Sun, 25 Nov 2007 15:28:22 +0000 (09:28 -0600)]
fix for bug 1208, exact barcode search

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding back count of remaining renewals to OPAC
Joshua Ferraro [Sun, 25 Nov 2007 06:44:05 +0000 (00:44 -0600)]
adding back count of remaining renewals to OPAC

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding a pre-check for patronimages/ dir, which won't be there by
Joshua Ferraro [Sun, 25 Nov 2007 06:09:22 +0000 (00:09 -0600)]
adding a pre-check for patronimages/ dir, which won't be there by

default

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofixing form for picture-upload
Joshua Ferraro [Sun, 25 Nov 2007 06:02:57 +0000 (00:02 -0600)]
fixing form for picture-upload

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadd OPAC hidelostitems and suppression from dev_week
Joshua Ferraro [Sun, 25 Nov 2007 05:52:31 +0000 (23:52 -0600)]
add OPAC hidelostitems and suppression from dev_week

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofixing syntax error in sysprefs.sql
Joshua Ferraro [Sun, 25 Nov 2007 04:12:54 +0000 (22:12 -0600)]
fixing syntax error in sysprefs.sql

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofix for bug 1373 (add no-cache headers)
Joshua Ferraro [Sun, 25 Nov 2007 03:51:50 +0000 (21:51 -0600)]
fix for bug 1373 (add no-cache headers)

After experiencing this for myself I've decided to just
add them by default, if we want to wrap in a syspref at some
point we can.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofix for bug 1352: 'Suggestions Link Should Force Patron Login'
Joshua Ferraro [Sun, 25 Nov 2007 02:47:34 +0000 (20:47 -0600)]
fix for bug 1352: 'Suggestions Link Should Force Patron Login'

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofixing masthead query detection, fixing author and subject links
Joshua Ferraro [Sun, 25 Nov 2007 02:29:51 +0000 (20:29 -0600)]
fixing masthead query detection, fixing author and subject links

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofixing patronimages syspref
Joshua Ferraro [Sun, 25 Nov 2007 02:08:57 +0000 (20:08 -0600)]
fixing patronimages syspref

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding back patron images to circ and moremember
Joshua Ferraro [Sun, 25 Nov 2007 01:54:19 +0000 (19:54 -0600)]
adding back patron images to circ and moremember

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding back patron images upload, no idea why it was removed
Joshua Ferraro [Sun, 25 Nov 2007 01:17:24 +0000 (19:17 -0600)]
adding back patron images upload, no idea why it was removed

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agomore work on the results page
Joshua Ferraro [Sat, 24 Nov 2007 23:22:21 +0000 (17:22 -0600)]
more work on the results page

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding result_number to opac and staff search
Joshua Ferraro [Sat, 24 Nov 2007 23:05:11 +0000 (17:05 -0600)]
adding result_number to opac and staff search

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofixing opac items display in results page
Joshua Ferraro [Sat, 24 Nov 2007 22:55:21 +0000 (16:55 -0600)]
fixing opac items display in results page

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofixing opac facets
Joshua Ferraro [Sat, 24 Nov 2007 22:45:44 +0000 (16:45 -0600)]
fixing opac facets

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agonomenclature cleanup
Joshua Ferraro [Sat, 24 Nov 2007 22:39:21 +0000 (16:39 -0600)]
nomenclature cleanup

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofixing sort by in OPAC
Joshua Ferraro [Sat, 24 Nov 2007 22:37:00 +0000 (16:37 -0600)]
fixing sort by in OPAC

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agosearchdesc improvements, more opac fixes
Joshua Ferraro [Sat, 24 Nov 2007 22:29:02 +0000 (16:29 -0600)]
searchdesc improvements, more opac fixes

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofixing some links in the template:
Joshua Ferraro [Sat, 24 Nov 2007 21:24:29 +0000 (15:24 -0600)]
fixing some links in the template:

s/search/cgi-bin\/koha\/opac-search.pl/

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding limit_cgi_not_availablity which is identical to
Joshua Ferraro [Sat, 24 Nov 2007 21:16:23 +0000 (15:16 -0600)]
adding limit_cgi_not_availablity which is identical to

limit_cgi but without the available limit

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofixing limit by availability, using nifty _ALLRECORDS in Zebra
Joshua Ferraro [Sat, 24 Nov 2007 21:10:18 +0000 (15:10 -0600)]
fixing limit by availability, using nifty _ALLRECORDS in Zebra

to handle NULL values

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoupdating page-numbers.inc for OPAC
Joshua Ferraro [Sat, 24 Nov 2007 20:09:35 +0000 (14:09 -0600)]
updating page-numbers.inc for OPAC

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoremoving marc21 frameworks from misc/ they are in the installer dir now
Joshua Ferraro [Sat, 24 Nov 2007 17:54:12 +0000 (11:54 -0600)]
removing marc21 frameworks from misc/ they are in the installer dir now

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoremoving item-level repeatability
Joshua Ferraro [Sat, 24 Nov 2007 17:52:04 +0000 (11:52 -0600)]
removing item-level repeatability

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agostarting work on porting search to OPAC
Joshua Ferraro [Sat, 24 Nov 2007 16:52:54 +0000 (10:52 -0600)]
starting work on porting search to OPAC

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofixing reference to resort_form.inc and adding it to the opac
Joshua Ferraro [Sat, 24 Nov 2007 16:07:39 +0000 (10:07 -0600)]
fixing reference to resort_form.inc and adding it to the opac

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoadding a space between query and limit concat
Joshua Ferraro [Sat, 24 Nov 2007 15:37:21 +0000 (09:37 -0600)]
adding a space between query and limit concat

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoremoving single-quotes from subject links
Joshua Ferraro [Sat, 24 Nov 2007 15:36:44 +0000 (09:36 -0600)]
removing single-quotes from subject links

Signed-off-by: Joshua Ferraro <jmf@liblime.com>