koha.git
15 years agofix to have the branch search on OPAC being really a branch search, not kw
Paul POULAIN [Mon, 2 Jun 2008 13:39:10 +0000 (15:39 +0200)]
fix to have the branch search on OPAC being really a branch search, not kw

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agodisplay itemnote on check-out (added, was not here) & check-in (red-ed, was already...
Paul POULAIN [Mon, 2 Jun 2008 13:39:09 +0000 (15:39 +0200)]
display itemnote on check-out (added, was not here) & check-in (red-ed, was already here)

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoAdd MARC preview to cataloguing search, and add a link to add holdings. Once the...
Ryan Higgins [Mon, 2 Jun 2008 23:23:25 +0000 (18:23 -0500)]
Add MARC preview to cataloguing search, and add a link to add holdings. Once the edititems permission patch is accepted, this page should be updated to require edititems instead of editcatalogue.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoadd single-transaction flag to mysqldump in example backup script.
Ryan Higgins [Mon, 2 Jun 2008 23:23:09 +0000 (18:23 -0500)]
add single-transaction flag to mysqldump in example backup script.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoRestrict OPAC tags display to approved=>1.
Joe Atzberger [Mon, 2 Jun 2008 18:16:32 +0000 (13:16 -0500)]
Restrict OPAC tags display to approved=>1.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoCorrection to: Comment out confirmation popups (on successful events).
Joe Atzberger [Mon, 2 Jun 2008 17:43:22 +0000 (12:43 -0500)]
Correction to: Comment out confirmation popups (on successful events).

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoComment out confirmation popups (on successful events).
Joe Atzberger [Mon, 2 Jun 2008 17:33:33 +0000 (12:33 -0500)]
Comment out confirmation popups (on successful events).

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agokohabug 2078 - settle on application/xml Content-type for feeds
Galen Charlton [Mon, 2 Jun 2008 15:53:38 +0000 (10:53 -0500)]
kohabug 2078 - settle on application/xml Content-type for feeds

Required by IE6 to at least get a feed to display as XML
in the browser instead of being downloaded.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agokohabug 2078 - send correct Content-type for search feeds
Galen Charlton [Mon, 2 Jun 2008 14:05:04 +0000 (09:05 -0500)]
kohabug 2078 - send correct Content-type for search feeds

OPAC search RSS and ATOM feeds now have the correct
Content-type sent - "application/rss+xml" and "application/atom+xml",
respectively.

As part of this patch, added an optional fourth parameter
to C4::Output::output_html_with_http_headers to specify
the content type.  If that parameter is now supplied, or if
the value of the parameter does not contain at least a "/",
the default type of "text/html" is returned.

No documentation changes.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agokohabug 2078 - removed ersatz ESCAPE="html" added in prior patch
Galen Charlton [Mon, 2 Jun 2008 14:05:03 +0000 (09:05 -0500)]
kohabug 2078 - removed ersatz ESCAPE="html" added in prior patch

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agokohabug 2078 - fixed channel links in Atom and RSS
Galen Charlton [Mon, 2 Jun 2008 13:13:35 +0000 (08:13 -0500)]
kohabug 2078 - fixed channel links in Atom and RSS

query_cgi already includes the "q=" bit.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoOPACBaseURL - do not tack on :443 if using SSL
Galen Charlton [Mon, 2 Jun 2008 13:13:34 +0000 (08:13 -0500)]
OPACBaseURL - do not tack on :443 if using SSL

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agokohabug 2078 - fix feed validation errors
Galen Charlton [Mon, 2 Jun 2008 02:43:31 +0000 (21:43 -0500)]
kohabug 2078 - fix feed validation errors

Fix several validation errors in RSS and Atom feeds
generated from the OPAC:

- add missing guid to RSS elements
- add missing feed ID and element ID to Atom elements
- reflect OPACBaseURL changes
- fix atom:link self links
- add HTML escaping to fields comming from bib record
- set default timestamp for Atom updated elements

Issues identified but not solved in this patch:

- setting Atom updated element for each bib (presumably
  from biblio.timestamp)
- possible problems performing paging of Atom feed

Based on successful validation of feeds by feedvalidatory.org,
it is expected that feeds should now work in IE7 and IE6.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agocalculate OPACBaseURL instead of using syspref
Galen Charlton [Mon, 2 Jun 2008 02:43:30 +0000 (21:43 -0500)]
calculate OPACBaseURL instead of using syspref

Calculate OPACBaseURL from the
CGI environment variables instead of using the
system preference.  As a result of this patch,
it should be possible to change the hostname,
protocol, or port of the OPAC without having to
reset a system preference.

Also added a FIXME to opac/unapi - the URL of
the SRU/W server has no necessary relationship
to the URL of the OPAC.

Once this patch is confirmed, the syspref can
be removed.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agokohabug 2180 - improve display when fines block checkouts
Galen Charlton [Mon, 2 Jun 2008 02:43:28 +0000 (21:43 -0500)]
kohabug 2180 - improve display when fines block checkouts

If a patron's fine balance is over the limit set by the
noissuecharges syspref, checkouts are blocked.  However,
this was not made very clear in the interface.

Improved the display by doing the following:

[1] If the fine balance is over the noissuecharges limit, use the "blocker"
styling (i.e., make all of the text red).
[2] Add wording to explicitly signal whether or not the fine balance is
blocking charges.

Documentation changes: new screenshots of blocked checkouts.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoApply item-level_itypes syspref to MARC export.
Ryan Higgins [Sun, 1 Jun 2008 17:48:54 +0000 (12:48 -0500)]
Apply item-level_itypes syspref to MARC export.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoIndependent-branchify MARC export. Add option to remove all holdings except your...
Ryan Higgins [Sun, 1 Jun 2008 17:25:17 +0000 (12:25 -0500)]
Independent-branchify MARC export. Add option to remove all holdings except your own, and force that behavior for independent branches. Also add accession date limit to export.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoSort dropdowns for libraries by name instead of branchcode in several staff-side...
Ryan Higgins [Sun, 1 Jun 2008 14:56:49 +0000 (09:56 -0500)]
Sort dropdowns for libraries by name instead of branchcode in several staff-side interfaces.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoRemove commented deprecated code and a useless query on items.
Ryan Higgins [Sun, 1 Jun 2008 14:56:30 +0000 (09:56 -0500)]
Remove commented deprecated code and a useless query on items.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoRemove a couple of warns.
Ryan Higgins [Sun, 1 Jun 2008 14:56:15 +0000 (09:56 -0500)]
Remove a couple of warns.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoItems from Bug 2167 ("URL handling in staff client inconsistent"): Removing display...
Owen Leonard [Sat, 31 May 2008 19:31:05 +0000 (14:31 -0500)]
Items from Bug 2167 ("URL handling in staff client inconsistent"): Removing display of URL from moredetail.pl. URLs are now displayed on detail.pl just as they are in the OPAC. Also removing display of biblio-level call number. Item level call number is displayed already.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoFix for bug 2183, "Account tab needs spacing between description and stadard text...
Owen Leonard [Sat, 31 May 2008 19:08:57 +0000 (14:08 -0500)]
Fix for bug 2183, "Account tab needs spacing between description and stadard text" Please note that this is a band-aid for a larger issue, described in Bug 2188

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoBugfix 1979 - display hold numbers. Note that hold priorities are still buggy.
Joe Atzberger [Sat, 31 May 2008 15:33:24 +0000 (10:33 -0500)]
Bugfix 1979 - display hold numbers. Note that hold priorities are still buggy.

But that is a separate bug from whether they display or not.
Also added basic error handling if biblionumber is not received, or
if biblionumber is bad, since that otherwise crashes the page.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoAddresses Bug 2073, clarifying OpacCloud's limitations.
Joe Atzberger [Sat, 31 May 2008 14:38:55 +0000 (09:38 -0500)]
Addresses Bug 2073, clarifying OpacCloud's limitations.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoPrinters code paring, related to bug 2045. This does not resolve the bug,
Joe Atzberger [Sat, 31 May 2008 14:38:54 +0000 (09:38 -0500)]
Printers code paring, related to bug 2045. This does not resolve the bug,

but it converts the template to using loop_context_var, and removes unused
variables from the script.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoFix typo in field name, apply branchcode selector logic from fines-ll.
Joe Atzberger [Sat, 31 May 2008 05:06:55 +0000 (00:06 -0500)]
Fix typo in field name, apply branchcode selector logic from fines-ll.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoFIXME added to note discrepancy.
Joe Atzberger [Sat, 31 May 2008 05:06:54 +0000 (00:06 -0500)]
FIXME added to note discrepancy.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoWrap up Tags integration - add sysprefs for new installs.
Joe Atzberger [Sat, 31 May 2008 05:01:51 +0000 (00:01 -0500)]
Wrap up Tags integration - add sysprefs for new installs.

Note that when the user is not logged in, the Tags input box/button will not display.
The user will see a message telling them to log in to add tags.  However, in order to
keep the results display clean, the message will display only once, utilizing the loop
context variable "__first__".  Useful stuff!

I also threw OPACShelfBrowser sysprefs.sql, but it still needs added to updatedatabase.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agokohabug 2186 - improve display of empty import batches
Galen Charlton [Fri, 30 May 2008 19:37:33 +0000 (14:37 -0500)]
kohabug 2186 - improve display of empty import batches

[1] Display the "No records have been staged" message only
    if no import batches exist.
[2] When displaying a batch that has no bibs in it, display
    a "There are no records in this batch to import".  Also,
    do not display the "import record into catalogue" button
    for an empty batch.
[3] Add CSS class "problem" to both messages.

Documentation changes: minor; only required if screenshots
exist of the manage staged MARC records page that has no
import batches on it.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoBUGFIX issuingrules : total for all itemtype was not properly calculated
Paul POULAIN [Wed, 28 May 2008 16:48:07 +0000 (18:48 +0200)]
BUGFIX issuingrules : total for all itemtype was not properly calculated

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoAdding orderby parameter : Fixes changing page in auth_finder.pl
Henri-Damien LAURENT [Mon, 19 May 2008 15:54:42 +0000 (17:54 +0200)]
Adding orderby parameter : Fixes changing page in auth_finder.pl

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoFrom HDL:
Joshua Ferraro [Fri, 30 May 2008 18:56:17 +0000 (13:56 -0500)]
From HDL:

I agree that opac-suggestions.tmpl modification is Not required any longer.
But still, the modification in opac-suggestions.pl is really necessary.
If you donot do that, ppl are presented with ALL suggestions and not
their suggestions by default, which is not what My Suggestions suggests.

15 years agoAdding search on ISSN for z3950_search.pl
Henri-Damien LAURENT [Mon, 26 May 2008 14:37:06 +0000 (16:37 +0200)]
Adding search on ISSN for z3950_search.pl

seems that search on ISSN was not taken into account adding @or @attr 1=8

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoremoving autotruncate for authors.
Henri-Damien LAURENT [Mon, 26 May 2008 13:53:23 +0000 (15:53 +0200)]
removing autotruncate for authors.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoFixing typo in DB update
NCE [Fri, 30 May 2008 17:31:12 +0000 (13:31 -0400)]
Fixing typo in DB update

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoadd borrower note to check-in
Paul POULAIN [Fri, 30 May 2008 14:33:38 +0000 (16:33 +0200)]
add borrower note to check-in

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoenhance the patron note on check-out (was not enough visible, now is red)
Paul POULAIN [Fri, 30 May 2008 14:33:36 +0000 (16:33 +0200)]
enhance the patron note on check-out (was not enough visible, now is red)

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoIf the catalogue contains a value that is not in authorised values and it should...
Paul POULAIN [Wed, 28 May 2008 20:33:56 +0000 (22:33 +0200)]
If the catalogue contains a value that is not in authorised values and it should, display the code

very usefull for us (UNIMARC) to find languages that are in the database but not in the auth values.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoDisplaying branchcode and notes fields in full serials issue table.
Paul POULAIN [Wed, 28 May 2008 16:48:11 +0000 (18:48 +0200)]
Displaying branchcode and notes fields in full serials issue table.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoRespect BiblioDefaultView when search returns only 1 result & jump directly to the...
Paul POULAIN [Wed, 28 May 2008 16:48:10 +0000 (18:48 +0200)]
Respect BiblioDefaultView when search returns only 1 result & jump directly to the detail

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agosmall (UNIMARC) fix, error in regexp writing
Paul POULAIN [Wed, 28 May 2008 16:48:09 +0000 (18:48 +0200)]
small (UNIMARC) fix, error in regexp writing

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agochange in button description to explain that we will import into catalogue
Paul POULAIN [Wed, 28 May 2008 16:48:08 +0000 (18:48 +0200)]
change in button description to explain that we will import into catalogue

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoadd script to install koha on a fresh debian.
Marc Chantreux [Fri, 30 May 2008 16:15:05 +0000 (18:15 +0200)]
add script to install koha on a fresh debian.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agonomenclature cleanup: s/Branch/Library/ s/Document Type/Item Type/
Joshua Ferraro [Fri, 30 May 2008 16:36:04 +0000 (11:36 -0500)]
nomenclature cleanup: s/Branch/Library/ s/Document Type/Item Type/

15 years agoAdding branchcode to opac-full-serial-issues
Henri-Damien LAURENT [Mon, 26 May 2008 14:37:07 +0000 (16:37 +0200)]
Adding branchcode to opac-full-serial-issues

Suggestion : We may add some jquery ordering on those tables
Can we owen ?

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoDB Revision 087
Joshua Ferraro [Fri, 30 May 2008 16:17:21 +0000 (11:17 -0500)]
DB Revision 087

15 years agoadding default 'account details' notice.
Mason James [Thu, 22 May 2008 09:23:43 +0000 (21:23 +1200)]
adding default 'account details' notice.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agobug-2149, var fix - changing borr.cardnumber to borr.userid.
Mason James [Thu, 22 May 2008 09:23:36 +0000 (21:23 +1200)]
bug-2149, var fix - changing borr.cardnumber to borr.userid.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agobug-2149, added 'AutoEmailOpacUser' and 'AutoEmailPrimaryAddress' sysprefs
Mason James [Thu, 22 May 2008 09:23:24 +0000 (21:23 +1200)]
bug-2149, added 'AutoEmailOpacUser' and 'AutoEmailPrimaryAddress' sysprefs

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agobug-2149, added new block to C4::Letters::SendAlerts() to email 'account creation...
Mason James [Thu, 22 May 2008 09:23:14 +0000 (21:23 +1200)]
bug-2149, added new block to C4::Letters::SendAlerts() to email 'account creation' notice, and new block in memberentry.pl to call SendAlerts().

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoRepair Labels code to accomodate patroncards. Purged EXPR.
Joe Atzberger [Thu, 29 May 2008 18:15:23 +0000 (13:15 -0500)]
Repair Labels code to accomodate patroncards. Purged EXPR.

Major FIXME's still remain, like the use of GET instead of POST.
The code is also a bit too INCLUDE-happy to net good performance.
The entire mechanism of adding to a batch should probably be proper
AJAX instead of the GET-centric opener.location approach.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoFixing some typos, including, I believe, Bug 2174 ("spelling error in web installer")
Owen Leonard [Thu, 29 May 2008 14:59:35 +0000 (09:59 -0500)]
Fixing some typos, including, I believe, Bug 2174 ("spelling error in web installer")

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agominor cleanup, remove $sth->finish's. No documentation impact.
Joe Atzberger [Thu, 29 May 2008 13:59:25 +0000 (08:59 -0500)]
minor cleanup, remove $sth->finish's. No documentation impact.

For details: see http://search.cpan.org/~timb/DBI-1.14/DBI.pm
"There's no need to call finish if you're about to destroy or re-execute the statement handle."
In all these cases the sth is falling out of scope, about to be destroyed.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agois_ajax function added. pagination_bar now intelligent: it has
Joe Atzberger [Thu, 29 May 2008 13:59:24 +0000 (08:59 -0500)]
is_ajax function added. pagination_bar now intelligent: it has

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoRemoving dbh line altogether as discussed on koha-patches
Joshua Ferraro [Thu, 29 May 2008 12:17:59 +0000 (07:17 -0500)]
Removing dbh line altogether as discussed on koha-patches

15 years agoBug Fix : Creating a new authority type would fail on creating subfield_structure
Henri-Damien LAURENT [Tue, 20 May 2008 15:40:24 +0000 (17:40 +0200)]
Bug Fix : Creating a new authority type would fail on creating subfield_structure

removing "link" field which has been removed from table auth_subfield_structure
Removing a $dbh->disconnect

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agokohabug 2164 - display of guarantor relationship
Galen Charlton [Wed, 28 May 2008 17:08:47 +0000 (12:08 -0500)]
kohabug 2164 - display of guarantor relationship

When editing a child or professional patron, display
the drop-down of relationship types only if at least
one relationship type is defined by the borrowerRelationship
syspref.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoTags AJAX integration on OPAC details page, so it behaves like results.
Joe Atzberger [Thu, 29 May 2008 01:31:28 +0000 (20:31 -0500)]
Tags AJAX integration on OPAC details page, so it behaves like results.

Also, prevent duplicate tags (same user, biblio and term).  Strip
leading/trailing whitespace from term.  Block whitespace terms.
The CSS for details could be enhanced to emphasize tagstatus more.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoMake printslip and printpage buttons use popup.
Joe Atzberger [Wed, 28 May 2008 20:33:07 +0000 (15:33 -0500)]
Make printslip and printpage buttons use popup.

This bug was reported by existing users.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoCorrect typo "printslilp" to "printslip"
Joe Atzberger [Wed, 28 May 2008 20:33:06 +0000 (15:33 -0500)]
Correct typo "printslilp" to "printslip"

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoFines repair. Make fines2.pl work, give feedback, improve comments and perldoc.
Joe Atzberger [Tue, 27 May 2008 23:06:01 +0000 (18:06 -0500)]
Fines repair. Make fines2.pl work, give feedback, improve comments and perldoc.

Remove $dbh->disconnect statements as counterproductive.
Prevent description field from begining with whitespace.
Added robust debug elements.  Test script behavior with:
    perl misc/cronjobs/fines2.pl -v
and:
mysql> select * from accountlines;

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoAdding basic get_filters to Tags, centralizing "counts" code for Terms Summary.
Joe Atzberger [Tue, 27 May 2008 23:06:00 +0000 (18:06 -0500)]
Adding basic get_filters to Tags, centralizing "counts" code for Terms Summary.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoRemove string processing (redundant to new pagination_bar)
Joe Atzberger [Tue, 27 May 2008 23:05:59 +0000 (18:05 -0500)]
Remove string processing (redundant to new pagination_bar)

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoSingle FIXME comment inserted.
Joe Atzberger [Tue, 27 May 2008 23:05:58 +0000 (18:05 -0500)]
Single FIXME comment inserted.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoCommented out fixaccounts (not used anywhere). Also improved getnextacctno.
Joe Atzberger [Tue, 27 May 2008 23:05:57 +0000 (18:05 -0500)]
Commented out fixaccounts (not used anywhere). Also improved getnextacctno.

You can test getnextacctno like:
perl -e 'use C4::Accounts; print getnextacctno(33), "\n";'
where 33 is a borrowernumber out of the accountlines table.  Get that number like:
mysql> select borrowernumber,accountno from accountlines LIMIT 100;

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoCorrect number of args to getnextacctno.
Joe Atzberger [Tue, 27 May 2008 23:04:13 +0000 (18:04 -0500)]
Correct number of args to getnextacctno.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoCorrected wrong number of arguments to getnextacctno.
Joe Atzberger [Tue, 27 May 2008 23:04:12 +0000 (18:04 -0500)]
Corrected wrong number of arguments to getnextacctno.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoBugfix 2026 - Comments handling overhauled. Scrubber and Error feedback added.
Joe Atzberger [Thu, 22 May 2008 20:10:22 +0000 (15:10 -0500)]
Bugfix 2026 - Comments handling overhauled. Scrubber and Error feedback added.

Note: we CANNOT rely on window.close in onSubmit or $().submit to close our popups.
On a relatively slow connection with a relatively large POST, commonly the close finishes
*before* the POST completes, as reported with our New Zealand clients.  Despite success in
trivial cases, this should be obvious, since the event is necessarily before the submission.
It also assumes success and prevents any kind of error feedback.  Other popups are likely
to exhibit this same defective behavior.

Some FIXME's outstanding: need to allow users to delete their own comments,
need to enforce and feedback on max comment length.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoBugfix 1978 - if invalid duedate specified, return error, do not issue.
Joe Atzberger [Thu, 22 May 2008 15:24:09 +0000 (10:24 -0500)]
Bugfix 1978 - if invalid duedate specified, return error, do not issue.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agofixed session cookie name in opac-logout.pl
Michael Hafen [Tue, 27 May 2008 18:11:21 +0000 (12:11 -0600)]
fixed session cookie name in opac-logout.pl

Session Cookie name is CGISESSID in Auth.pm

Signed-off-by: Michael Hafen <mdhafen@washk12.org>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoUnescape Comment, now that we trust Scrubber to block bad markup.
Joe Atzberger [Fri, 23 May 2008 07:40:49 +0000 (02:40 -0500)]
Unescape Comment, now that we trust Scrubber to block bad markup.

Obviously if we are going to allow good markup, we can't then escape it.
Documentation reference: allowed tags for comments are:
br b i em big small strong

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoTags AJAX and JSON for OPAC side.
Joe Atzberger [Wed, 21 May 2008 06:36:05 +0000 (01:36 -0500)]
Tags AJAX and JSON for OPAC side.

Note, all Tags js will live under KOHA.Tags namespace.
See opac-tags.pl perldoc for AJAX/JSON examples.  The capability is already
there to be very web-servicey, even moreso than the current OPAC implementation
will utilize.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoSingle slash added in test text string.
Joe Atzberger [Mon, 19 May 2008 22:03:11 +0000 (17:03 -0500)]
Single slash added in test text string.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoAdd error feedback and Scrubber to OPAC tags page. Beginnings of ajax code.
Joe Atzberger [Mon, 19 May 2008 21:23:38 +0000 (16:23 -0500)]
Add error feedback and Scrubber to OPAC tags page. Beginnings of ajax code.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoInitial commit for Tags back-end moderation. Requires AJAX functions from Output.
Joe Atzberger [Mon, 19 May 2008 21:23:37 +0000 (16:23 -0500)]
Initial commit for Tags back-end moderation. Requires AJAX functions from Output.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoNew subs for moderation, fixed bug to allow multiple sort fields, added POD.
Joe Atzberger [Mon, 19 May 2008 21:23:36 +0000 (16:23 -0500)]
New subs for moderation, fixed bug to allow multiple sort fields, added POD.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoAdd AJAX output sub, EXPORT_TAGS and enable loop_context_vars for HTML::Template...
Joe Atzberger [Mon, 19 May 2008 21:23:35 +0000 (16:23 -0500)]
Add AJAX output sub, EXPORT_TAGS and enable loop_context_vars for HTML::Template::Pro.

The loop_context_vars will be very useful in display.  They are:
__first__, __last__, __inner__, __odd__, __counter__.
Note: apparently __even__ does not exist, so instead use something like:
<!-- TMPL_UNLESS NAME="__odd__" -->

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoAdd cn_source to authorised values dropdown in marc structure editor.
Ryan Higgins [Sun, 25 May 2008 06:21:42 +0000 (01:21 -0500)]
Add cn_source to authorised values dropdown in marc structure editor.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agosmall update to french translation
Paul POULAIN [Thu, 22 May 2008 20:47:25 +0000 (22:47 +0200)]
small update to french translation

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agofixing the css property for tablesorter js
Paul POULAIN [Thu, 22 May 2008 20:47:23 +0000 (22:47 +0200)]
fixing the css property for tablesorter js

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoBUGFIXING authority link in detail.pl
Paul POULAIN [Thu, 22 May 2008 20:47:21 +0000 (22:47 +0200)]
BUGFIXING authority link in detail.pl

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agosmall fix for UNIMARC 600$a that is also subject
Paul POULAIN [Thu, 22 May 2008 20:47:20 +0000 (22:47 +0200)]
small fix for UNIMARC 600$a that is also subject

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoAdding Image::Magick version info
Paul POULAIN [Thu, 22 May 2008 20:47:19 +0000 (22:47 +0200)]
Adding Image::Magick version info

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoUpdate Catalog Stats report: / Remove lccn/loc filter, which seems to conflate marc21...
Ryan Higgins [Sun, 25 May 2008 20:54:21 +0000 (15:54 -0500)]
Update Catalog Stats report: / Remove lccn/loc filter, which seems to conflate marc21 010 and 050. / Update labels to reflect 3.0 terminology.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoFill statistics table properly for renewals; and issue->checkout, return->checkin
Ryan Higgins [Sun, 25 May 2008 07:54:18 +0000 (02:54 -0500)]
Fill statistics table properly for renewals; and issue->checkout, return->checkin

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoAdd ANSCR to default cn_source list.
Ryan Higgins [Sun, 25 May 2008 06:21:56 +0000 (01:21 -0500)]
Add ANSCR to default cn_source list.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoFix pagination error on subfield structure editor
Ryan Higgins [Sun, 25 May 2008 06:21:17 +0000 (01:21 -0500)]
Fix pagination error on subfield structure editor

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoadd URLLinkText syspref to opac detail, and add some extra handling for MARC 21 urls.
Ryan Higgins [Sat, 24 May 2008 19:35:08 +0000 (14:35 -0500)]
add URLLinkText syspref to opac detail, and add some extra handling for MARC 21 urls.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoShow 856$3 (materials specified) by default in MARC21 .
Ryan Higgins [Sat, 24 May 2008 19:35:07 +0000 (14:35 -0500)]
Show 856$3 (materials specified) by default in MARC21 .

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoUpdate MARC21 simple frameworks with biblio.serial and items.enumchron
Ryan Higgins [Thu, 22 May 2008 14:26:56 +0000 (09:26 -0500)]
Update MARC21 simple frameworks with biblio.serial and items.enumchron

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoTranslatable facets in librarian interface
Frederic Demians [Tue, 20 May 2008 20:30:41 +0000 (22:30 +0200)]
Translatable facets in librarian interface

Pushes modified facets display from OPAC to librarian interface.
Corrects also OPAC version which were omitting Titles facet.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoFacets (current) translatable via template
Frederic Demians [Tue, 20 May 2008 20:06:58 +0000 (22:06 +0200)]
Facets (current) translatable via template

This patch allows to translate facets label with standart
templates / PO files. Facets are still hard coded in Koha.pm.
Template wait those hard coded facets: Topics, Places, Titles,
Autors and Libraries.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoremoving warnings from C4::Members::GetMember
Andrew Moore [Fri, 23 May 2008 18:35:33 +0000 (13:35 -0500)]
removing warnings from C4::Members::GetMember

C4::Members::GetMember emitted a few unnecessary warnings when no $type was passed in. This patch prevents that.

No functional or documentation changes.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoBug 2047: some tests for C4::Biblio::get_biblio_authorised_values
Andrew Moore [Fri, 23 May 2008 17:36:30 +0000 (12:36 -0500)]
Bug 2047: some tests for C4::Biblio::get_biblio_authorised_values

I had these tests laying around for a while. I just forgot to commit them.

No functional or documentation changes needed.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoAdding bookfund search to aqbudget.tmpl
Owen Leonard [Fri, 23 May 2008 20:49:14 +0000 (15:49 -0500)]
Adding bookfund search to aqbudget.tmpl

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoAdding routing list link to table of information about each subscription (Bug 2059...
Owen Leonard [Fri, 23 May 2008 20:49:01 +0000 (15:49 -0500)]
Adding routing list link to table of information about each subscription (Bug 2059, "Link to Serial Collection routing list missing on menu")

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoFix for bug 2130, "Patron Image Missing on Permissions Screen"; Correction to allow...
Owen Leonard [Fri, 23 May 2008 20:48:48 +0000 (15:48 -0500)]
Fix for bug 2130, "Patron Image Missing on Permissions Screen"; Correction to allow proper tab highlighting when viewing patron log.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoFix for Bug 2120, "
Owen Leonard [Thu, 22 May 2008 14:50:19 +0000 (09:50 -0500)]
Fix for Bug 2120, "

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoAuthorities detail page was missing toolbar, breadcrumbs.
Owen Leonard [Thu, 22 May 2008 14:50:10 +0000 (09:50 -0500)]
Authorities detail page was missing toolbar, breadcrumbs.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
15 years agoMarkup error caused layout problems.
Owen Leonard [Thu, 22 May 2008 14:49:58 +0000 (09:49 -0500)]
Markup error caused layout problems.

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