[Koha-patches] [PATCH] (MT3318) RSS OPAC: Adding CDATA term in title and description tags.

2010-05-12 Thread Nahuel ANGELINETTI
From: Paul Poulain paul.poul...@biblibre.com --- .../opac-tmpl/prog/en/modules/opac-opensearch.tmpl |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-opensearch.tmpl b/koha-tmpl/opac-tmpl/prog/en/modules/opac-opensearch.tmpl

[Koha-patches] [PATCH] (bug #4487) permit - and . in callnumber plugin

2010-05-12 Thread Nahuel ANGELINETTI
--- cataloguing/value_builder/callnumber.pl |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/cataloguing/value_builder/callnumber.pl b/cataloguing/value_builder/callnumber.pl index ecdaea4..17b6282 100755 --- a/cataloguing/value_builder/callnumber.pl +++

[Koha-patches] [PATCH] [3.2] Bug 4141 Reconcile 3.0.x and HEAD database updates for 3.2.0

2010-05-12 Thread Chris Nighswonger
This is a partial fix addressing this error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 at /home/koha/koha.prod/installer/data/mysql/updatedatabase.pl line 2916., referer:

Re: [Koha-patches] [PATCH] [3.2] Bug 4141 Reconcile 3.0.x and HEAD database updates for 3.2.0

2010-05-12 Thread Colin Campbell
On 12/05/10 13:00, Chris Nighswonger wrote: This is a partial fix addressing this error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 at

[Koha-patches] [PATCH] Correct position of non-sorted table column

2010-05-12 Thread Owen Leonard
--- koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tmpl |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tmpl b/koha-tmpl/opac-tmpl/prog/en/modules/opac-user.tmpl index 1f3f38b..4749985 100644 ---

[Koha-patches] [PATCH] Bug 4489 for opac-detail.tmpl

2010-05-12 Thread Marcel de Rooy
--- .../opac-tmpl/prog/en/modules/opac-detail.tmpl |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tmpl b/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tmpl index 24234be..accbb9e 100644 ---

[Koha-patches] [PATCH] (bug #4491) fix weird code in search scripts

2010-05-12 Thread Nahuel ANGELINETTI
This change some code a bit strange, that generate strange effetcs. Now we use $cgi-param to get the values. --- catalogue/search.pl | 17 ++--- opac/opac-search.pl | 17 ++--- 2 files changed, 12 insertions(+), 22 deletions(-) diff --git a/catalogue/search.pl

[Koha-patches] [PATCH 1/3] [1/3] Enhancement Bug 4444: Centralize Code Handling Perl Dependencies

2010-05-12 Thread Chris Nighswonger
This patch adds a file (installer/dependencies.yml) using yaml formatting to define the dependencies used by Koha and C4::Installer::PerlModule which provides methods for accessing this data. The format of dependencies.yml is very simple: Foo::Bar: min_ver: 0.01 required: 1 NOTE: yaml

[Koha-patches] [PATCH 2/3] [2/3] Enhancement Bug 4444: Centralize Code Handling Perl Dependencies

2010-05-12 Thread Chris Nighswonger
Porting Makefile.PL over to use C4::Installer::PerlModules --- Makefile.PL | 96 +++--- 1 files changed, 5 insertions(+), 91 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index a31d6db..6c0346e 100644 --- a/Makefile.PL +++ b/Makefile.PL

[Koha-patches] [PATCH 3/3] [3/3] Enhancement Bug 4444: Centralize Code Handling Perl Dependencies

2010-05-12 Thread Chris Nighswonger
Porting about.pl over to use C4::Installer::PerlModules --- about.pl | 148 +-- koha-tmpl/intranet-tmpl/prog/en/modules/about.tmpl | 33 - 2 files changed, 66 insertions(+), 115 deletions(-) diff --git a/about.pl b/about.pl index

[Koha-patches] [PATCH] (MT 3267) Add Homebranch and Holdingbranch search criterion on circulation stat.

2010-05-12 Thread Nahuel ANGELINETTI
From: Alex Arnaud alex.arn...@biblibre.com --- .../prog/en/modules/reports/issues_stats.tmpl | 24 ++ reports/issues_stats.pl| 48 +++- 2 files changed, 51 insertions(+), 21 deletions(-) diff --git

[Koha-patches] [PATCH] get_template_and_user needs to be called before get_session in same scope

2010-05-12 Thread Michael Hafen
If get_session() is called in the same scope and before get_template_and_user() then the changes to the session in C4::Auth, including the session timestamp, will be overwritten when the earlier call leaves scope and is flushed. This is to replace my 'cache the session' patch as a fix for the

[Koha-patches] [PATCH 1/4] [1/4] Enhancement Bug 4444: Centralize Code Handling Perl Dependencies

2010-05-12 Thread Chris Nighswonger
This patch adds a file (installer/dependencies.yml) using yaml formatting to define the dependencies used by Koha and C4::Installer::PerlModule which provides methods for accessing this data. The format of dependencies.yml is very simple: Foo::Bar: min_ver: 0.01 required: 1 usage: FooBar

[Koha-patches] [PATCH 2/4] [2/4] Enhancement Bug 4444: Centralize Code Handling Perl Dependencies

2010-05-12 Thread Chris Nighswonger
Porting Makefile.PL over to use C4::Installer::PerlModules --- Makefile.PL | 98 -- 1 files changed, 7 insertions(+), 91 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index a31d6db..8378703 100644 --- a/Makefile.PL +++ b/Makefile.PL

[Koha-patches] [PATCH 4/4] [4/4] Enhancement Bug 4444: Centralize Code Handling Perl Dependencies

2010-05-12 Thread Chris Nighswonger
Porting install.pl over to use C4::Installer::PerlModules --- installer/install.pl | 142 .../prog/en/modules/installer/step1.tmpl | 39 ++ 2 files changed, 40 insertions(+), 141 deletions(-) diff --git a/installer/install.pl

[Koha-patches] [PATCH 3/4] [3/4] Enhancement Bug 4444: Centralize Code Handling Perl Dependencies

2010-05-12 Thread Chris Nighswonger
Porting about.pl over to use C4::Installer::PerlModules --- about.pl | 148 +-- koha-tmpl/intranet-tmpl/prog/en/modules/about.tmpl | 33 - 2 files changed, 66 insertions(+), 115 deletions(-) diff --git a/about.pl b/about.pl index