[koha-commits] main Koha release repository branch 3.12.x updated. v3.12.00-beta3-44-g3772f30

Git repo owner gitmaster at git.koha-community.org
Wed May 15 15:29:11 CEST 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "main Koha release repository".

The branch, 3.12.x has been updated
       via  3772f30a0c50db7b993ce68b10b27aeeb09f1f4b (commit)
       via  2e550307bedc8f198667f9c6a95b72fd33073a3e (commit)
       via  0526bc3fa72ed6f5e7c13d581a051bd6894374f2 (commit)
       via  a3422a47027188b7b76f137fd92effe328ca30c3 (commit)
      from  b8c070f5cd320eada5c6e20819d59a3d21da086a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 3772f30a0c50db7b993ce68b10b27aeeb09f1f4b
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Tue Apr 23 10:14:37 2013 -0300

    Bug 10094 - koha-list should have a --disabled option switch
    
    This patch adds that (--disabled) option switch, Also revisits some of the code and docs.
    
    To test:
    - Apply the patch and create new packages (you might just drop the koha-list command somewhere)
    - Create several instances (koha-create)
    - Randomly set some as disabled, others enabled and enable email on some.
    - Test all possible option switches combinations
    
    Expected results:
    - koha-list should abort with a proper message if mutually exclusive options selected (--email vs. --noemail, --enabled vs. --disabled)
    - koha-list should show the exact instances you asked for
    
    Regards
    To+
    
    P.S.: I wanted to add the --disabled option switch for the tab-completion work I'm doing, but as of bug 4876 I thought it would be ok to revisit the script to make it robust and clear.
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Robin Sheat <robin at catalyst.net.nz>
    
    Does what it says, and cleans up the script at the same time.
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    (cherry picked from commit de275ec128d3b26e953c35778e6a37e5b85273f5)
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 2e550307bedc8f198667f9c6a95b72fd33073a3e
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Mon Apr 29 11:08:35 2013 -0300

    Bug 10146 - koha-stop-zebra error handling
    
    koha-stop-zebra now
    - Checks the instance exists.
    - Checks the instance is enabled.
    - Checks if the zebra daemon is already running.
    
    Regards
    To+
    
    Edit: Corrected the die message
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Robin Sheat <robin at catalyst.net.nz>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    (cherry picked from commit 898e178c6ff3a79bf991defb60aec8ff58f107c6)
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 0526bc3fa72ed6f5e7c13d581a051bd6894374f2
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Tue Apr 30 10:05:44 2013 -0300

    Bug 10157 - koha-email-enable error handling
    
    koha-email-enable now
    - Checks the instance exists.
    - Checks if email is already enabled.
    
    Regards
    To+
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Robin Sheat <robin at catalyst.net.nz>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    (cherry picked from commit 1126dd8bf3e3f386acfc007bc6e3310cc5320100)
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit a3422a47027188b7b76f137fd92effe328ca30c3
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Tue Apr 30 11:58:25 2013 -0300

    Bug 10159 - koha-rebuild-zebra error handling
    
    This patch makes koha-rebuild-zebra:
    - Check for the existence of the instance
    - Handle arbitrary amount of instance parameters
    - Capture -a and -b (which made the script rebuild twice the chosen DB). It adds the extended version (--authorities and --biblios respectively) of the option switch. This makes the -a and -b switches work as "only do authorities" (or viceversa). They can be used concurrently, which is the default behaviour when no switch is provided.
    - Handle -v (and --verbose) as koha-rebuild-zebra options, to ease the use for non-techie users.
    - The rebuild_zebra.pl is wrapped inside an IF to return error values if we ever make rebuild_zebra.pl return error codes (this is pointed in the code).
    - Added -h/--help switches and an 'usage' output :-D Please provide patches for any wording issues, or contact me to fix it.
    
    To test:
    - Apply the patch and create your packages (or just use the script from your branch)
    - Run it in this scenarios / options
      - -h/--help to see the available option switches
      - Mix them with one or more instances, of which some could be fake
      - try -a/--authorities and -b/--biblios in all possible combinations
      - try -v/--verbose works
    
    Regards
    To+
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Robin Sheat <robin at catalyst.net.nz>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>
    (cherry picked from commit 39d3b9088a34b464708e40d1fd20a954d4a6e702)
    
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

-----------------------------------------------------------------------

Summary of changes:
 debian/docs/koha-email-enable.xml  |    4 +-
 debian/docs/koha-list.xml          |   10 ++-
 debian/docs/koha-rebuild-zebra.xml |   26 ++++++-
 debian/scripts/koha-email-enable   |   81 +++++++++++++++++---
 debian/scripts/koha-list           |  134 ++++++++++++++++++++++++++++------
 debian/scripts/koha-rebuild-zebra  |  143 +++++++++++++++++++++++++++++++-----
 debian/scripts/koha-stop-zebra     |  127 ++++++++++++++++++++++++++++----
 7 files changed, 449 insertions(+), 76 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list