[Koha-patches] [PATCH] Bug 7844 - plack intranet tooling for developers

2012-06-10 Thread Dobrica Pavlinusic
koha.psgi example and plackup.sh script to run any Koha site intranet or opac interface under plack with optional multi-process Starman server plackup.sh site-name [intranet] site-name is used to find config /etc/koha/sites/site-name/koha-conf.xml All configuration is specified in koha.psgi, w

[Koha-patches] [PATCH] Bug 7952 - PDF::Reuse under plack writes to console STDOUT instead to browser

2012-06-10 Thread Dobrica Pavlinusic
Without name option to prFile, PDF::Reuse opens '-' file which is real console STDOUT on plack so pdf file gets emited to terminal instead of sending it to browser. This change creates temporary file using File::Temp, pass it to PDF::Reuse and then reads it back and prints it out for plack (or CGI

[Koha-patches] [PATCH] Bug 7286: fix rebuild_zebra.pl to add rebuild_zebra_sliced.zsh

2012-06-10 Thread Martin Renvoize
From: Stéphane Delaune Signed-off-by: Martin Renvoize --- misc/migration_tools/rebuild_zebra_sliced.zsh | 174 + 1 files changed, 174 insertions(+), 0 deletions(-) create mode 100755 misc/migration_tools/rebuild_zebra_sliced.zsh diff --git a/misc/migration_tools/rebui

[Koha-patches] [PATCH] Bug 7961 - Local cover images should support CSV link files

2012-06-10 Thread Dobrica Pavlinusic
Corrent code doesn't have support for filenames which contain spaces or commans which breaks CSV files saved from spreadsheet similar to: 12345, "conver image, with spaces.jpg" This patch tweaks file parsing a bit. We are always splitting line to only two values (to support commas as part of fi

[Koha-patches] [PATCH] Bug 7444: Update circ/circulation.pl to use KohaDates TT Plugin

2012-06-10 Thread Martin Renvoize
From: Ian Walls Removes all date formatting done in circ/circulation, and sets any/all date outputs to iso format. The formatting of dates is now handled in the template using the KohaDates plugin. This allows use to remove a dependency on C4/Dates.pm from the script. This patch also removes t

[Koha-patches] [PATCH] Bug 7444: Update circ/circulation.pl to use KohaDates TT Plugin

2012-06-10 Thread Martin Renvoize
From: Ian Walls Removes all date formatting done in circ/circulation, and sets any/all date outputs to iso format. The formatting of dates is now handled in the template using the KohaDates plugin. This allows use to remove a dependency on C4/Dates.pm from the script. This patch also removes t