[koha-commits] main Koha release repository branch 16.05.x updated. v16.05.02-01-41-g1f91c7f

Git repo owner gitmaster at git.koha-community.org
Mon Aug 8 16:48:10 CEST 2016


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, 16.05.x has been updated
       via  1f91c7f1759bb9c52ea1047d3c5ccccb6bb4be14 (commit)
       via  222496f04550dd4819456d8302ef211897e2d8a7 (commit)
       via  0f706677bd4016816f903c740a8ac0e361aa9f78 (commit)
       via  0447a6a217f9836e54225f4b6a1fdc13f85409fa (commit)
       via  05a564aa6022909e378765ab2f93ec66d9a7460b (commit)
       via  3073d2c5b0913f1153a3a21079031c1e57e8c109 (commit)
      from  9fa841b0e10849f89c66a222795aac0d96188aa5 (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 1f91c7f1759bb9c52ea1047d3c5ccccb6bb4be14
Author: Mirko Tietgen <mirko at abunchofthings.net>
Date:   Tue Aug 2 15:41:12 2016 +0200

    Bug 17019 - debian/changelog update
    
    This has not been updated for a while. I plan to add the stable
    releases.
    
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    (cherry picked from commit 8102098fa6adea43e71c06641b2705c5b23f29be)
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>

commit 222496f04550dd4819456d8302ef211897e2d8a7
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Thu Aug 4 11:47:16 2016 -0300

    Bug 17030: Make REST api available on packages with plack enabled
    
    This patch is the starting point for making the REST api available
    on Plack.
    
    What it does:
    - It creates the /api/v1/app.pl mount point in plack.psgi
    - It enables the ProxyPass and ProxyPassReverse directives so it
      is reached through Plack.
    - It sets rewrite rules so we can use the 'pretty' urls (i.e.
      /api/v1/patrons instead of /api/v1/app.pl/api/v1/patrons).
    
    To test:
    - Grab the following files, and put them in /etc/koha (overwrite the existing ones)
      debian/templates/apache-shared-intranet-plack.conf
      debian/templates/apache-shared-opac-plack.conf
    - Tweak your /etc/koha/sites/kohadev/plack.psgi file so the API-related stuff
      is present on your file.
    - Make sure Plack is enabled for the instance:
      $ sudo koha-plack --enable kohadev
      $ sudo koha-plack --restart kohadev
      $ sudo service apache2 restart
    - Follow the previous patch test plan, but use this URLs (no pretty URL):
    
      http://localhost:8080/api/v1/app.pl/api/v1/patrons/50
      http://localhost:8081/api/v1/app.pl/api/v1/patrons/50
    => SUCCESS: You get a JSON response from the API [1]
    - Not use this URLs:
      http://localhost:8080/api/v1/patrons/50
      http://localhost:8081/api/v1/patrons/50
    => SUCCESS: You get a JSON response from the API [1]
    - Sign off :-D
    
    [1] this patch made a bug visible (the session is lost when accessing the API through
    Plack) but it shouldn't prevent its inclusion because the API right now is not even available
    as default for developers to test or fix it.
    
    Signed-off-by: Benjamin Rokseth <benjamin.rokseth at kul.oslo.kommune.no>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    (cherry picked from commit e4bb70a447c7a6ea5e7498250adbe0e152259974)
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>

commit 0f706677bd4016816f903c740a8ac0e361aa9f78
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Thu Aug 4 11:39:25 2016 -0300

    Bug 17030: Enable REST api on packages
    
    This patch enables access to the REST API endpoint on packages setup.
    It does so, by patching the shared apache-shared-intranet.conf and
    apache-shared-opac.conf.
    
    You can build your own master packages with this patch applied, or just:
    
    - Grab
      debian/templates/apache-shared-intranet.conf
      debian/templates/apache-shared-opac.conf
    and overwrite their counterparts in /etc/koha on a packages setup. For example
    in kohadevbox.
    - Have Koha loaded with all default data
    - Create a superlibrarian user for you
    - Login to the intranet and the OPAC
    - Point your browser to:
      http://localhost:8080/api/v1/patrons/51
    => SUCCESS: You get JSON data, for the patron you requested
      http://localhost:8081/api/v1/patrons/51
    => SUCCESS: You get JSON data, for the patron you requested
    - Sign off :-D
    
    Note: I use the HTTPRequester addon for Firefox, re-using the CGISESSID value from the
    browser session cookie, in the headers.
    
    Signed-off-by: Benjamin Rokseth <benjamin.rokseth at kul.oslo.kommune.no>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    (cherry picked from commit 6e38b8b60f118c0721a52fdaa332446063657dd3)
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>

commit 0447a6a217f9836e54225f4b6a1fdc13f85409fa
Author: Mirko Tietgen <mirko at abunchofthings.net>
Date:   Sat Aug 6 13:52:26 2016 +0200

    Bug 17065 - Rename C4/Auth_cas_servers.yaml.orig
    
    C4/Auth_cas_servers.yaml.orig gets cleaned away after every package build because
    of the .orig extension. This patch moves it.
    
    It is only a sample file, there is no functionality to test. Just verify that the
    file is there with the new name after you applied the patch.
    
    Signed-off-by: Claire Gravely <c.gravely at arts.ac.uk>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    (cherry picked from commit 30474a321575ffecfd4e2578dce59385267ec8d7)
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>

commit 05a564aa6022909e378765ab2f93ec66d9a7460b
Author: Mirko Tietgen <mirko at abunchofthings.net>
Date:   Sat Aug 6 13:42:18 2016 +0200

    Bug 17064 - Delete backup marc21_framework_DEFAULT.sql~ file
    
    This .sql~ backup file should not have been committed.
    
    Signed-off-by: Claire Gravely <c.gravely at arts.ac.uk>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    (cherry picked from commit 3964fac311e59ade5fc79f4884626969716ae57f)
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>

commit 3073d2c5b0913f1153a3a21079031c1e57e8c109
Author: Mirko Tietgen <mirko at abunchofthings.net>
Date:   Mon Aug 1 17:13:55 2016 +0200

    Bug 17013 - build-git-snapshot: add basetgz parameter and update master version number
    
    This adds a basetgz parameter to specify a pbuilder image.
    I use this to build against different distributions.
    
    This also updates the version number for master builds to 16.06.
    
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    (cherry picked from commit bbaaabd1da97312e66e81b7ecfc37a5f5d2f828e)
    Signed-off-by: Frédéric Demians <f.demians at tamil.fr>

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

Summary of changes:
 ...vers.yaml.orig => Auth_cas_servers.yaml.sample} |    0
 debian/build-git-snapshot                          |    7 +-
 debian/changelog                                   |   12 +
 debian/templates/apache-shared-intranet-plack.conf |    7 +-
 debian/templates/apache-shared-intranet.conf       |   14 +
 debian/templates/apache-shared-opac-plack.conf     |    7 +-
 debian/templates/apache-shared-opac.conf           |   14 +
 debian/templates/plack.psgi                        |   16 +-
 .../obligatoire/marc21_framework_DEFAULT.sql~      | 2823 --------------------
 9 files changed, 65 insertions(+), 2835 deletions(-)
 rename C4/{Auth_cas_servers.yaml.orig => Auth_cas_servers.yaml.sample} (100%)
 delete mode 100644 installer/data/mysql/fr-CA/marcflavour/marc21/obligatoire/marc21_framework_DEFAULT.sql~


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list