[koha-commits] main Koha release repository branch master updated. v3.08.00-2077-g835cb6e

Git repo owner gitmaster at git.koha-community.org
Sun Mar 17 02:53:33 CET 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, master has been updated
       via  835cb6e36bd1551ae8fd68146536d75cdfa9d2e2 (commit)
       via  c0a8496a3b8bdb0a4768f9157aab3be0e1e10fb8 (commit)
       via  aba4f05b809971dfaab54024e8d89100b5a8ca7a (commit)
       via  41e176d97aa0aee305d4e0ace2361a1bed0c6052 (commit)
       via  5fbedc0c9e92a313bbeb6164d182ba568a137fd1 (commit)
       via  a8d7ad5be8fd7113e385ff66e067172cc57ff43d (commit)
       via  181dab6699962cc460e2296206c5f901e31f9fd7 (commit)
       via  8dcec411a43d787341fc39eef2d3b271b820fe08 (commit)
       via  241656582c7d157b03ec1316fbf705bccab899bc (commit)
       via  c716c28fa66f0e5f2ff14da43f4c4d7dd907ae2f (commit)
       via  376c55dc4ec13abb00e4527d5b4c3c513c8e9ff3 (commit)
       via  31b105ad110579173f78e8a12435bede11f732f5 (commit)
       via  d88bd37f30d4b1ae52d0237582c1b927aa276b4d (commit)
       via  a8f23264dda90eda5123ce98b7bb5a0b5e951fa6 (commit)
       via  006df7aced85179e77745824d24b453464ca9382 (commit)
       via  ed521b8ebbedf7ce4b8f75fcafdaa7135f6ee49d (commit)
       via  09de3b93be2a294442576fba606ef434e2ea11a0 (commit)
       via  9d450224c185683ddbbd9c2c0a7b0266c50e99a5 (commit)
       via  144c7f4e4e023f7a701a1e58524409628295343b (commit)
       via  b086fcab9a32c8fc7cbca99e5d23a5323603c7b6 (commit)
       via  2900bd14dcd02bf9ac9912c7e620c8e67d62c01c (commit)
       via  2a202740ffb881ded4ce8341cdbb989c245eafac (commit)
      from  a0abb3b5f376c1e94efc45242f22b87ef0e7148d (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 835cb6e36bd1551ae8fd68146536d75cdfa9d2e2
Merge: 41e176d c0a8496
Author: Jared Camins-Esakov <jcamins at cpbibliography.com>
Date:   Sat Mar 16 21:48:24 2013 -0400

    Merge branch 'bug_4906' into 3.12-master

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

Summary of changes:
 C4/AuthoritiesMarc.pm                              |   41 +-
 C4/Biblio.pm                                       |    2 +-
 C4/Context.pm                                      |   43 +
 C4/Matcher.pm                                      |   55 +-
 C4/Overdues.pm                                     |    6 +-
 C4/Search.pm                                       |  146 +-
 Koha/QueryParser/Driver/PQF.pm                     |  913 ++++++++
 Koha/QueryParser/Driver/PQF/Util.pm                |   38 +
 Koha/QueryParser/Driver/PQF/query_plan.pm          |   52 +
 Koha/QueryParser/Driver/PQF/query_plan/facet.pm    |   28 +
 Koha/QueryParser/Driver/PQF/query_plan/filter.pm   |   33 +
 Koha/QueryParser/Driver/PQF/query_plan/modifier.pm |   33 +
 Koha/QueryParser/Driver/PQF/query_plan/node.pm     |   84 +
 .../QueryParser/Driver/PQF/query_plan/node/atom.pm |   31 +
 Koha/SuggestionEngine/Plugin/AuthorityFile.pm      |    2 +-
 OpenILS/QueryParser.pm                             | 2242 ++++++++++++++++++++
 acqui/neworderbiblio.pl                            |    6 +-
 cataloguing/addbooks.pl                            |   10 +-
 .../value_builder/marc21_linking_section.pl        |   10 +-
 cataloguing/value_builder/unimarc_field_4XX.pl     |   10 +-
 debian/koha-common.install                         |    1 +
 debian/templates/koha-conf-site.xml.in             |    1 +
 etc/koha-conf.xml                                  |    1 +
 etc/searchengine/queryparser.yaml                  | 1493 +++++++++++++
 installer/data/mysql/sysprefs.sql                  |    2 +
 installer/data/mysql/updatedatabase.pl             |   16 +
 .../en/modules/admin/preferences/circulation.pref  |    6 +
 .../en/modules/admin/preferences/searching.pref    |    7 +
 .../prog/en/modules/opac-results-grouped.tt        |    2 +-
 .../opac-tmpl/prog/en/modules/opac-results.tt      |    2 +-
 kohaversion.pl                                     |    2 +-
 labels/label-item-search.pl                        |   25 +-
 misc/migration_tools/bulkmarcimport.pl             |   22 +-
 opac/opac-search.pl                                |   12 +-
 serials/subscription-bib-search.pl                 |   18 +-
 t/QueryParser.t                                    |   95 +
 t/db_dependent/Search.t                            |   21 +-
 37 files changed, 5401 insertions(+), 110 deletions(-)
 create mode 100644 Koha/QueryParser/Driver/PQF.pm
 create mode 100644 Koha/QueryParser/Driver/PQF/Util.pm
 create mode 100644 Koha/QueryParser/Driver/PQF/query_plan.pm
 create mode 100644 Koha/QueryParser/Driver/PQF/query_plan/facet.pm
 create mode 100644 Koha/QueryParser/Driver/PQF/query_plan/filter.pm
 create mode 100644 Koha/QueryParser/Driver/PQF/query_plan/modifier.pm
 create mode 100644 Koha/QueryParser/Driver/PQF/query_plan/node.pm
 create mode 100644 Koha/QueryParser/Driver/PQF/query_plan/node/atom.pm
 create mode 100644 OpenILS/QueryParser.pm
 create mode 100644 etc/searchengine/queryparser.yaml
 create mode 100644 t/QueryParser.t


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list