koha.git
15 years agoBug 2900: fix GetPendingIssues.
Joe Atzberger [Thu, 8 Jan 2009 03:47:36 +0000 (21:47 -0600)]
Bug 2900: fix GetPendingIssues.

GetPendingIssues did several bad things:
~ select * on a 4 table join,
~ including multiple namespace collisions,
~ including large fields marc and marcxml from biblioitems,
~ return ($count, \@array_being_counted).

Not everything is fixed here (see FIXMEs), but the situation is
improved considerably, with bug 2900 resolved.  The "timestamp"
namespace collision in query should be resolved by separate patch.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agobug 2747: avoid warning if items.itype is NULL
Galen Charlton [Wed, 7 Jan 2009 21:32:35 +0000 (15:32 -0600)]
bug 2747: avoid warning if items.itype is NULL

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoBug 2747 for staff interface itemtype display.
Joe Atzberger [Wed, 7 Jan 2009 20:57:28 +0000 (14:57 -0600)]
Bug 2747 for staff interface itemtype display.

Prefer accuracy over graphical icon.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoGetAuthValCode calls were positioned inside the loop,
Joe Atzberger [Wed, 7 Jan 2009 20:57:29 +0000 (14:57 -0600)]
GetAuthValCode calls were positioned inside the loop,

despite the same values being supplied each time.  Then
the conditional assignments would repeat the same calls again!
That means execution was liable to query the DB at least once
and as many as four times per item.  With a large number of items
this is an unnecessary burden.  By moving the calls outside
the loop, we can guarantee that we never have to call the DB for
that info more than twice (once for lost, once for damaged).

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agojavascript redirect when selecting a patron on circulation.pl Patron Selection Screen
Michael Hafen [Wed, 27 Aug 2008 22:46:57 +0000 (16:46 -0600)]
javascript redirect when selecting a patron on circulation.pl Patron Selection Screen

This adds a little javascript to the Patron Selection form input after searching for a patron to check out to.
On click it redirects to checking out to the clicked patron.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoPut patron Privilege 'updatecharges' to use on fines pages
Michael Hafen [Thu, 13 Nov 2008 23:11:35 +0000 (16:11 -0700)]
Put patron Privilege 'updatecharges' to use on fines pages

This changes the flags required for the fines pages to include the
updatecharges flag.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoa more readable way to test an array size.
Nahuel Angelinetti [Wed, 15 Oct 2008 09:03:25 +0000 (11:03 +0200)]
a more readable way to test an array size.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agobug 2505: enable warnings for admin/authorized_values.pl
Galen Charlton [Wed, 7 Jan 2009 01:43:35 +0000 (19:43 -0600)]
bug 2505: enable warnings for admin/authorized_values.pl

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoauthorized_values cleanup
Joe Atzberger [Fri, 12 Dec 2008 21:28:01 +0000 (15:28 -0600)]
authorized_values cleanup

Moving towards being able to enable warnings.  Use one dbh, and stop
redeclaring it in each conditional chunk.  ($sth still need to be cleaned.)
Toggle in script removed (tmpl should use loop context var __odd__).
$sth->finish calls removed where unnecessary.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoREFACTOR: correcting indirect object method syntax
Andrew Moore [Wed, 17 Dec 2008 22:31:25 +0000 (16:31 -0600)]
REFACTOR: correcting indirect object method syntax

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoBug 2505: turning on "warnings" in catalogue/detail.pl
Andrew Moore [Wed, 17 Dec 2008 22:32:46 +0000 (16:32 -0600)]
Bug 2505: turning on "warnings" in catalogue/detail.pl

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoProviding options for adding to order when existing record search has failed.
Owen Leonard [Wed, 31 Dec 2008 20:28:38 +0000 (14:28 -0600)]
Providing options for adding to order when existing record search has failed.

I've duplicated the "Add to Order" block on the search results page to display after a user has searched for an existing record to add to an order. This block is displayed whether or not results were found on the assumption that a non-empty result set may not contain the desired result. Changes to neworderbiblio.pl allow supplier name to appear in breadcrumb nav.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agopatch followup: restore test in GetMarcItem
Galen Charlton [Wed, 7 Jan 2009 00:54:08 +0000 (18:54 -0600)]
patch followup: restore test in GetMarcItem

Change made to GetMarcItem to quell a warning
changed sense of a test; defined($foo) is *not*
the same as $foo ne ''.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agobug 2505: more warnings fixes to C4/Biblio.pm
Galen Charlton [Tue, 6 Jan 2009 14:59:09 +0000 (08:59 -0600)]
bug 2505: more warnings fixes to C4/Biblio.pm

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoFix for Bug 2700, Keeping Data When Adding Multiple Items
Owen Leonard [Tue, 4 Nov 2008 16:21:47 +0000 (10:21 -0600)]
Fix for Bug 2700, Keeping Data When Adding Multiple Items

When cloning the set of inputs, the new js
increments the IDs of each form field (to keep them unique) and automatically
selects the option that was selected in the cloned group.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoBug 2505: adding warnings to C4/Biblio.pm
Andrew Moore [Wed, 17 Dec 2008 22:28:04 +0000 (16:28 -0600)]
Bug 2505: adding warnings to C4/Biblio.pm

I added 'use warnings' to C4::Biblio and made a handful of changes to
reduce the number of warnings emitted.

One notable spot is the change in the regex in
C4::Biblio::GetNoZebraIndexes. I have replaced the parens with a character
class. The parens change the way 'split' works, making it return elements
for each delimiter. We did not want those elements returned, and they
only resulted in "'' => undef" being added to the final hash. They also
resulted in two "undefined" warnings for each pass through the loop. I've
included a simple test for this function.

There may be a few warnings still emitted in spots, but either I haven't
seen them yet, or I have chosen to not fix them yet because they require
too much change.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agobarcodedecode() did not always return barcode
Joe Atzberger [Fri, 2 Jan 2009 20:35:03 +0000 (14:35 -0600)]
barcodedecode() did not always return barcode

This patch amends the function to return barcode, in particular when
filter is not defined.  It also adds an optional 2nd argument to
allow the filter to be specified by caller, enabling testing.

Non-DB-dependent test script included.  Note: T-prefix style
barcode filter is not documented, and drops the first nonzero
digit after the T.  This seems mistaken, but is not corrected here
to avoid any surprises.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoAllow AddIssue to log SIP transactions distinct from others.
Joe Atzberger (siptest [Tue, 28 Oct 2008 18:37:37 +0000 (13:37 -0500)]
Allow AddIssue to log SIP transactions distinct from others.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoremove TMPL_IF EXPR in member.tmpl
Galen Charlton [Wed, 31 Dec 2008 21:52:44 +0000 (15:52 -0600)]
remove TMPL_IF EXPR in member.tmpl

Quells following error message in Apache log:

EXPR:at pos 8: non-initialized variable overdues,
referer: http://example.edu/cgi-bin/koha/members/members-home.pl

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoperltidy lables/label-item-search.pl
Galen Charlton [Wed, 31 Dec 2008 21:34:26 +0000 (15:34 -0600)]
perltidy lables/label-item-search.pl

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agobug 2505: turn on warnings in labels/label-item-search.pl
Galen Charlton [Wed, 31 Dec 2008 21:31:32 +0000 (15:31 -0600)]
bug 2505: turn on warnings in labels/label-item-search.pl

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agofollowup to Mason's labels patch
Galen Charlton [Wed, 31 Dec 2008 20:46:09 +0000 (14:46 -0600)]
followup to Mason's labels patch

* fix XHTML errors
* fix problems with paging through results list

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoThe current searching in labels is a bit minimal, and current only does keyword searc...
Mason James [Wed, 12 Nov 2008 06:55:39 +0000 (19:55 +1300)]
The current searching in labels is a bit minimal, and current only does keyword searching.

there is some old 2.2 code for more complete labels-searching, thats been commented out

ive logged a 'bug' for this - 2777

http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=2777

this fix...
  - enables the index-searching functionality
  - adds date-ranges
  - uses the numSearchResults syspref, not a hardcoded '20'
  - rewrote old 2.2 page-num code, (didnt work for 3.x)
  - some indent and whitepages tidys.
  - unused 2.2 search-code removed.

Mason

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years ago(bug #2887) Change the "Cart" box from js to tmpl
Nahuel ANGELINETTI [Mon, 29 Dec 2008 11:27:06 +0000 (12:27 +0100)]
(bug #2887) Change the "Cart" box from js to tmpl

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoAdds the ability to reference itemcallnumber within XSLT
Joshua Ferraro [Tue, 23 Dec 2008 22:17:58 +0000 (16:17 -0600)]
Adds the ability to reference itemcallnumber within XSLT

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoFixes bug #2875
Frederic Demians [Tue, 30 Dec 2008 06:54:44 +0000 (07:54 +0100)]
Fixes bug #2875

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoMinor updates to minor cronjob script.
Joe Atzberger [Tue, 30 Dec 2008 17:20:15 +0000 (11:20 -0600)]
Minor updates to minor cronjob script.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agocrontab.example - add back some useful comments
Galen Charlton [Wed, 31 Dec 2008 15:44:06 +0000 (09:44 -0600)]
crontab.example - add back some useful comments

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoExpand crontab.example
Joe Atzberger [Tue, 30 Dec 2008 17:20:16 +0000 (11:20 -0600)]
Expand crontab.example

Default overdues to "triggered" mode (-t).

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoRevert "Updates to the example crontab"
Joe Atzberger [Tue, 23 Dec 2008 18:34:57 +0000 (12:34 -0600)]
Revert "Updates to the example crontab"

This reverts commit def09f5a21b47431ff107d9a530900cd5a4fb93d.

As I emailed to the patches list Oct 06, 2008:

I suggest we need to revert Josh' commit def09f5a21b47431ff107d9a530900cd5a4fb93d.

The effect on the crontab example is to invalidate the lines being executed.  The lines were apparently copied in from a cron source, not crontab, despite the header describing it NOT being an example for cron.  It also runs longoverdue twice, instead of fines.pl.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoFixes bugs #2875-2879
Frederic Demians [Tue, 23 Dec 2008 07:57:15 +0000 (08:57 +0100)]
Fixes bugs #2875-2879

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoAdd 'use warnings' and correct uninitialized value warnings.
Stan Brinkerhoff [Wed, 24 Dec 2008 12:41:56 +0000 (07:41 -0500)]
Add 'use warnings' and correct uninitialized value warnings.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agobug 2505: further warnings fixes to memberentry.pl
Galen Charlton [Tue, 30 Dec 2008 01:42:45 +0000 (19:42 -0600)]
bug 2505: further warnings fixes to memberentry.pl

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoAdded 'warnings' support, fixed bug 2870.
stan [Wed, 24 Dec 2008 03:06:10 +0000 (22:06 -0500)]
Added 'warnings' support, fixed bug 2870.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoTest suite: C4::Members::GetMemberDetails
Allen Reinmeyer [Wed, 24 Dec 2008 22:09:49 +0000 (16:09 -0600)]
Test suite: C4::Members::GetMemberDetails

Tests for C4::Members::GetMemberDetails.  Validates both calls
using either borrowernumber or cardnumber.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoA script generating keyword clouds from Zebra Indexes
Frederic Demians [Thu, 18 Dec 2008 17:38:25 +0000 (18:38 +0100)]
A script generating keyword clouds from Zebra Indexes

See embedded perldoc to see how it works.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agotest suite: C4::ImportBatch
Andrew Moore [Fri, 19 Dec 2008 22:12:25 +0000 (16:12 -0600)]
test suite: C4::ImportBatch

Here are some tests for functions in C4::ImportBatch.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agobug 2824: improving error messages from test suite errors
Andrew Moore [Wed, 17 Dec 2008 14:39:17 +0000 (08:39 -0600)]
bug 2824: improving error messages from test suite errors

This patch adds two warning messages to places in the test suite that
may fail. I don't think it changes any functionality, but it sure makes
it easier to figure out what has gone wrong.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agofixed "too many opened files" error during translation
Marc Chantreux [Fri, 12 Dec 2008 17:13:14 +0000 (18:13 +0100)]
fixed "too many opened files" error during translation

The problem was that the TmplTokenizer create global symbols to store file
handlers so the objects aren't destroyed by the garbage collector.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agobug 2864 [2/2]: move rss/* to misc/cronjobs/rss/*
Galen Charlton [Mon, 15 Dec 2008 15:58:47 +0000 (09:58 -0600)]
bug 2864 [2/2]: move rss/* to misc/cronjobs/rss/*

As rss.pl is not a CGI script, moved it to join the
other cronjobs.  Full documentation of the script
is in misc/cronjobs/rss/rss.pl, but to summarize:

[1] rss.pl is run on the command line to produce
    an RSS XML document.  The output should be
    placed in a directory accessible to the OPAC
    (or staff) web interface so that users can download
    the RSS feed.  An example of usage:

    misc/cronjobs/rss.pl lastAcquired.conf

    Normally rss.pl should be run periodically (e.g., daily)
    to keep the feed up-to-date.

[2] The configuration file (e.g., lastAcquired.conf) lists

    * name of the template file to use
    * path of output file
    * SQL query

    rss.pl runs the SQL query, then feeds the output of the
    query through the template to produce the output file.

[3] The template file (e.g., lastAcquired.tmpl) uses
    HTML::Template syntax like any of the HTML
    templates for the web interface.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agobug 2864 [1/2]: restore rss/rss.pl
Galen Charlton [Mon, 15 Dec 2008 15:58:46 +0000 (09:58 -0600)]
bug 2864 [1/2]: restore rss/rss.pl

Restored basic functionality of rss/rss.pl:

[1] Reverted "Add support for itemtypes. Still need to hardcode 'reservable'"
    Revert commit e7575b00edd6098a869425a69856916108e84914, which had
    replace the script with one of its templates.

[2] Minor fixes to update it, including using HTML::Template::Pro instead
    of HTML::Template, perltidy, and turning on warnings.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoAdd default classification sources and filing rules to fr-FR
Frederic Demians [Mon, 17 Nov 2008 16:38:46 +0000 (17:38 +0100)]
Add default classification sources and filing rules to fr-FR

fr-FR install wasn't populating classication rules tables:

  * class_sort_rules
  * class_sources

This patch add default values for those tables
mandatory during installation process.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agobug 2829: add a plugin for 010$a field and 210$c
Nahuel Angelinetti [Thu, 11 Dec 2008 15:39:27 +0000 (16:39 +0100)]
bug 2829: add a plugin for 010$a field and 210$c

This plugin use the 'ISBN' field(010$a) to search the "publishercode"(editor) and set it in as 210$c.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoBug 2842: ->regexp('syspref') failed for users of iso dateformat.
Joe Atzberger [Thu, 4 Dec 2008 04:33:02 +0000 (22:33 -0600)]
Bug 2842: ->regexp('syspref') failed for users of iso dateformat.

Sticky due date and patron import were the two areas affected.

15 years agoDates expanding to expose some time (HH:MM:SS) granularity.
Joe Atzberger [Fri, 19 Sep 2008 00:02:48 +0000 (19:02 -0500)]
Dates expanding to expose some time (HH:MM:SS) granularity.

t/Dates.t is essentially restored from its previous state with
the revision that it now does not use C4::Context or check syspref
for the default date format.  Instead it sets the C4::Dates default
directly, taking cue from command line argument or ENV.  ISO format
revised to accept "T" separator and "Z" (zulu) terminator. POD
expanded and corrected.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
15 years agoUpdate german opac and intranet and french intranet
Chris Cormack [Mon, 26 Jan 2009 07:48:56 +0000 (20:48 +1300)]
Update german opac and intranet and french intranet

15 years agoMore Nederlands updates
Chris Cormack [Sun, 18 Jan 2009 02:38:19 +0000 (15:38 +1300)]
More Nederlands updates

15 years agoNederlands opac update
Chris Cormack [Sat, 17 Jan 2009 07:28:18 +0000 (20:28 +1300)]
Nederlands opac update

15 years agoGerman opac updates
Chris Cormack [Thu, 15 Jan 2009 10:05:47 +0000 (23:05 +1300)]
German opac updates

15 years agoCroatian, German and Greek opac updates
Chris Cormack [Tue, 13 Jan 2009 23:06:38 +0000 (12:06 +1300)]
Croatian, German and Greek opac updates

15 years agoGreek opac
Chris Cormack [Sun, 11 Jan 2009 02:15:15 +0000 (15:15 +1300)]
Greek opac

15 years agoGreek and Dutch opac updates
Chris Cormack [Sat, 10 Jan 2009 07:26:26 +0000 (20:26 +1300)]
Greek and Dutch opac updates

15 years agoItalian updates
Chris Cormack [Fri, 9 Jan 2009 00:56:54 +0000 (13:56 +1300)]
Italian updates

15 years agoThai opac updated, and renaming mongolian
Chris Cormack [Thu, 8 Jan 2009 08:45:25 +0000 (21:45 +1300)]
Thai opac updated, and renaming mongolian

15 years agoMongolian Opac changes and German staff interface
Chris Cormack [Wed, 7 Jan 2009 20:23:43 +0000 (09:23 +1300)]
Mongolian Opac changes and German staff interface

15 years agoCroatian Opac updates
Chris Cormack [Tue, 6 Jan 2009 10:21:07 +0000 (23:21 +1300)]
Croatian Opac updates

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoGerman, Greek, and NZ english staff interface updates
Chris Cormack [Mon, 5 Jan 2009 21:34:46 +0000 (10:34 +1300)]
German, Greek, and NZ english staff interface updates

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoHindi, Marathi, and Mongolian (start of translation)
Chris Cormack [Sun, 4 Jan 2009 06:07:09 +0000 (19:07 +1300)]
Hindi, Marathi, and Mongolian (start of translation)

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoThai intranet and Opac
Chris Cormack [Sat, 3 Jan 2009 07:44:03 +0000 (20:44 +1300)]
Thai intranet and Opac

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoUpdated french opac
Chris Cormack [Fri, 2 Jan 2009 21:21:00 +0000 (10:21 +1300)]
Updated french opac

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoBengali intranet and opac
Chris Cormack [Fri, 2 Jan 2009 20:18:22 +0000 (09:18 +1300)]
Bengali intranet and opac

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoTurkish intranet and opac updates
Chris Cormack [Fri, 2 Jan 2009 09:58:39 +0000 (22:58 +1300)]
Turkish intranet and opac updates

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoGerman intranet, Greek intranet, Tetum Opac, and Turkish intranet updates
Chris Cormack [Thu, 1 Jan 2009 08:21:46 +0000 (21:21 +1300)]
German intranet, Greek intranet, Tetum Opac, and Turkish intranet updates

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoGreek Intranet updates
Chris Cormack [Tue, 30 Dec 2008 19:31:17 +0000 (08:31 +1300)]
Greek Intranet updates

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoUkranian and Russian intranet .po files
Chris Cormack [Tue, 30 Dec 2008 01:58:47 +0000 (14:58 +1300)]
Ukranian and Russian intranet .po files

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoUpdated Norwegian and Polish Intranet
Chris Cormack [Tue, 30 Dec 2008 01:19:57 +0000 (14:19 +1300)]
Updated Norwegian and Polish Intranet

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoLaoo intranet and Chinese (China) Intranet
Chris Cormack [Mon, 29 Dec 2008 20:28:36 +0000 (09:28 +1300)]
Laoo intranet and Chinese (China) Intranet

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoUpdating to 3.0.1 (Dutch Intranet)
Chris Cormack [Mon, 29 Dec 2008 20:22:31 +0000 (09:22 +1300)]
Updating to 3.0.1 (Dutch Intranet)

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoUpdating Chinese (Taiwan) to use the strings in 3.0.1
Chris Cormack [Mon, 29 Dec 2008 20:17:58 +0000 (09:17 +1300)]
Updating Chinese (Taiwan) to use the strings in 3.0.1

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoChinese (China) Intranet po file
Chris Cormack [Mon, 29 Dec 2008 20:14:45 +0000 (09:14 +1300)]
Chinese (China) Intranet po file

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoChinese (Taiwan) Intranet
Chris Cormack [Mon, 29 Dec 2008 19:45:42 +0000 (08:45 +1300)]
Chinese (Taiwan) Intranet

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoGerman opac, intranet, Greek opac and intranet, and Tetum opac
Chris Cormack [Mon, 29 Dec 2008 19:37:21 +0000 (08:37 +1300)]
German opac, intranet, Greek opac and intranet, and Tetum opac

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoThese are actually the opac .po files
Chris Cormack [Mon, 29 Dec 2008 09:44:50 +0000 (22:44 +1300)]
These are actually the opac .po files

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoGerman intranet, Greek intranet and opac, NZ intranet, Armenian Intranet, Tetum Opac...
Chris Cormack [Mon, 29 Dec 2008 09:38:39 +0000 (22:38 +1300)]
German intranet, Greek intranet and opac, NZ intranet, Armenian Intranet, Tetum Opac, and Turkish intranet and opac updates

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoGerman intranet, Greek intranet, NZ english intranet and Turkish Opac
Chris Cormack [Sat, 27 Dec 2008 21:25:43 +0000 (10:25 +1300)]
German intranet, Greek intranet, NZ english intranet and Turkish Opac

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoNZ English intranet, Greek intranet, Turkish Opac
Chris Cormack [Sat, 27 Dec 2008 09:20:01 +0000 (22:20 +1300)]
NZ English intranet, Greek intranet, Turkish Opac

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoGreek, German and NZ english intranet updates
Chris Cormack [Fri, 26 Dec 2008 20:14:31 +0000 (09:14 +1300)]
Greek, German and NZ english intranet updates

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoNZ english file for localisation
Chris Cormack [Fri, 26 Dec 2008 08:18:24 +0000 (21:18 +1300)]
NZ english file for localisation

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoGreek and Turkish staff translations
Chris Cormack [Fri, 26 Dec 2008 05:42:18 +0000 (18:42 +1300)]
Greek and Turkish staff translations

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoGerman and Greek staff translations
Chris Cormack [Thu, 25 Dec 2008 09:23:21 +0000 (22:23 +1300)]
German and Greek staff translations

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoUpdated translations
Chris Cormack [Wed, 24 Dec 2008 17:31:31 +0000 (06:31 +1300)]
Updated translations

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoMore translation updates
Chris Cormack [Tue, 23 Dec 2008 18:28:29 +0000 (07:28 +1300)]
More translation updates

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoLocalisation for NZ english
Chris Cormack [Tue, 23 Dec 2008 10:09:07 +0000 (23:09 +1300)]
Localisation for NZ english

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoCroatian translations plus update Maori translation
Chris Cormack [Tue, 23 Dec 2008 10:06:55 +0000 (23:06 +1300)]
Croatian translations plus update Maori translation

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoMore .po updates
Chris Cormack [Tue, 23 Dec 2008 07:03:11 +0000 (20:03 +1300)]
More .po updates

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoMore .po file changes
Chris Cormack [Tue, 23 Dec 2008 04:19:14 +0000 (17:19 +1300)]
More .po file changes

Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
15 years agoMore translations
Chris Cormack [Mon, 22 Dec 2008 19:37:24 +0000 (08:37 +1300)]
More translations

15 years agoUpdated po files
Chris Cormack [Mon, 22 Dec 2008 09:48:20 +0000 (22:48 +1300)]
Updated po files

15 years agoUpdated .po files
Chris Cormack [Sat, 20 Dec 2008 08:47:46 +0000 (21:47 +1300)]
Updated .po files

15 years agoShow "no title", when a notice doesn't have a title
Nahuel ANGELINETTI [Thu, 11 Dec 2008 12:54:05 +0000 (13:54 +0100)]
Show "no title", when a notice doesn't have a title

This patch just check if there is a title, else show "No Title".

15 years ago(bug #2862) improve sql reports
Nahuel ANGELINETTI [Fri, 12 Dec 2008 10:56:19 +0000 (11:56 +0100)]
(bug #2862) improve sql reports

Clear all non-alphanum chars at the end of an sql query.
Use ESCAPE=HTML to escape double quotes in csv export

15 years agominor fixes to UNIMARC_sync_date_created_with_marc_biblio.pl
Galen Charlton [Thu, 11 Dec 2008 16:36:25 +0000 (10:36 -0600)]
minor fixes to UNIMARC_sync_date_created_with_marc_biblio.pl

- chmod 0755
- add newline in error message shown if attempting to
  run in MARC21 database

15 years ago(bug #2856) Activate the duplicate patrons detection and check birthdate only if...
Nahuel Angelinetti [Wed, 10 Dec 2008 16:26:33 +0000 (17:26 +0100)]
(bug #2856) Activate the duplicate patrons detection and check birthdate only if one is set

This patch activate the check of unique member, it was checked but not shown, and the member was added even if a duplicate was
detected.
It improve the duplicate detection, to check the birthdate only if it was specified in the form.
And fix an url of "Yes" link(if the borrower added IS the duplicate detected).

15 years ago(bug #2831) Add a variable, that create a js error, and make the script not working.
Nahuel ANGELINETTI [Thu, 11 Dec 2008 15:48:16 +0000 (16:48 +0100)]
(bug #2831) Add a variable, that create a js error, and make the script not working.

the variable added is numberpattern, and is get from the document.

15 years agoFix something that doesn't work in some perl versions.
Nahuel Angelinetti [Wed, 10 Dec 2008 09:24:36 +0000 (10:24 +0100)]
Fix something that doesn't work in some perl versions.

15 years agofix permissions error introduced by previous patch
Galen Charlton [Mon, 1 Dec 2008 16:38:43 +0000 (10:38 -0600)]
fix permissions error introduced by previous patch

Modules in C4 should not be executable.

15 years agobug 2505: turn on warnings in two scripts
Galen Charlton [Thu, 11 Dec 2008 14:26:10 +0000 (08:26 -0600)]
bug 2505: turn on warnings in two scripts

15 years agoadd calls to clear_syspref_cache()
Galen Charlton [Thu, 11 Dec 2008 15:48:51 +0000 (09:48 -0600)]
add calls to clear_syspref_cache()

temporary until mutator for sysprefs created

15 years agoUpdating po files.
Henri-Damien LAURENT [Thu, 11 Dec 2008 14:40:10 +0000 (15:40 +0100)]
Updating po files.

15 years ago(bug #2854) add the possibility to make a fuzzy search on the barcode
Nahuel Angelinetti [Tue, 9 Dec 2008 16:28:41 +0000 (17:28 +0100)]
(bug #2854) add the possibility to make a fuzzy search on the barcode

This patch add a field that permit to make a "like" and "not like" filter on barcode in the catalog report.

Signed-off-by: Henri-Damien LAURENT <henridamien.laurent@biblibre.com>