[koha-commits] main Koha release repository branch new_12478_elasticsearch created. v3.22.00-314-ga14f533

Git repo owner gitmaster at git.koha-community.org
Wed Jan 13 12:26:30 CET 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, new_12478_elasticsearch has been created
        at  a14f533491d7651867a95b475c3c3871bf06874b (commit)

- Log -----------------------------------------------------------------
commit a14f533491d7651867a95b475c3c3871bf06874b
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Oct 13 10:45:32 2015 +0100

    Bug 12478: Display facet terms ordered by number of occurrences
    
    By default ES returns the facet terms ordered by most used, which makes
    sense.
    
    This patch removes resort done in the scripts (catalogue/search.pl and
    opac/opac-search.pl) and moves it to the module.
    
    For Zebra it's now done in C4::Search::getRecords, and there is no
    change to expect (still alphabetically).
    
    On the Elastic search side, we could imagine to let the library define
    the order of the facets. The facet terms are now sorted by most used.
    
    To test easily this change, turn on the displayFacetCount pref.

commit 34d5d875e8301d6819c0cb71ba39405b4f52b99e
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Oct 13 17:21:36 2015 +1300

    Revert "Bug 12478: Display facet terms ordered by number of occurrences"
    
    This reverts commit cd4905c2969b067476881016d0b03271f0bcc7c8.
    
    This commit caused an error in C4::Search::GetFacets when running in
    zebra mode.
    
    Conflicts:
    	Koha/SearchEngine/Elasticsearch/Search.pm

commit fb26313d348be25a4b1d20de076de0e32ad1feed
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 12 17:03:38 2015 +0100

    Bug 12478: Remove previous mappings file (sql)

commit 927edcb12fca6a6495e344d350a7799971e50c3e
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 12 16:54:12 2015 +0100

    Bug 12478: Manually add the many_to_many relationships
    
    This will create the add_to_* accessors for us.

commit e07cbcabb2e5c4b5b060cd29130ced1f98fb7807
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 12 16:52:11 2015 +0100

    Bug 12478: update the schema
    
    These files have been generated with the
    misc/devel/update_dbix_class_files.pl script.

commit 7b131bd4cca90560eb3cbbad81204b37e16e6d62
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 12 16:46:16 2015 +0100

    Bug 12478: Move mapping attributes to the join table
    
    To make things consistent, the attributes of the mappings (sort,
    suggestible, facet) should be moved to the join tables
    (search_marc_to_field).
    Indeed the search_marc_map could represent a mapping for several search
    fields with different attributes. Before this change it was not
    possible.

commit 462cf48b58cd5576744709281d66d3b19a3bf909
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Sep 25 15:48:50 2015 +0100

    Bug 12478: Add Koha::SearchField[s] and Koha::SearchMarcMap[s] classes
    
    This was initially submited on bug 14899, but we will need it here.

commit 22b27a7ac78134b49ece04c4974e85c618c17b3f
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 12 17:11:28 2015 +0100

    Bug 12478: Add the yaml mappings file
    
    This should facilitate the modification of the mappings.
    The yaml format is more readable than sql.

commit ecff869ce484acd12c95168f50c1af256f0f8081
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Thu Oct 8 17:02:21 2015 +1300

    Bug 12478: "fix" notforloan

commit a3f11234813fa07f16354ec84da551ef9709f5c9
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 5 17:15:01 2015 +0100

    Bug 12478: Take the FacetMaxCount pref into account
    
    The system preference FacetMaxCount should work as expected with ES.

commit 3625bc86694a9345bae2211f23fc3b6c87c442a9
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 5 11:34:54 2015 +0100

    Bug 12478: Remove empty limit parameter
    
    If no limit are passed, the url will contain '&limit=' anyway.
    It is not necessary and can be avoided easily
    
    Test plan:
    1/ Search for a term in your catalogue
    2/ Hover over a link in the facet area
    3/ The link is
    cgi-bin/koha/opac-search.pl?idx=kw&q=your_term&limit=&limit=[...]
    
    With this patch, the empty limit parameter does not appear.

commit 2eec4878d6f1400c4056bf5f28f980bba23f3e9f
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 5 15:29:52 2015 +0100

    Bug 12478: Display facet terms ordered by number of occurrences
    
    By default ES returns the facet terms ordered by most used, which makes
    sense.
    
    This patch removes resort done in the scripts (catalogue/search.pl and
    opac/opac-search.pl) and moves it to the module.
    
    For Zebra it's now done in C4::Search::getRecords, and there is no
    change to expect (still alphabetically).
    
    On the Elastic search side, we could imagine to let the library define
    the order of the facets. The facet terms are now sorted by most used.
    
    To test easily this change, turn on the displayFacetCount pref.

commit 102f3955652424c00507e9bb1485cfcfe01b0cd6
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 5 12:50:52 2015 +0100

    Bug 12478: facets - Display description instead of code for locations

commit cdb5e548b744562cc17ccadb1a5f2919bf653591
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 5 12:51:37 2015 +0100

    Bug 12478: Add Koha::AuthorisedValue[s] class
    
    These 2 classes come from bug 10363.

commit f7d93c6bcd54b6e4e796206de270042635330fc0
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 5 12:17:09 2015 +0100

    Bug 12478: Use the new Koha::ItemTypes to retrieve itypes descriptions

commit 0a76a9b809bacb255d15dc401de022dfc062ea5c
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Sep 15 17:02:28 2015 +0100

    Bug 12478: Add Koha::ItemType[s] classes
    
    These 2 classes come from bug 14828.
    Tests in t/db_dependent/Koha/ItemTypes.t should be updated.

commit df3bd96a34c5503a9525265c5bdfc9b068ba6713
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 5 11:54:59 2015 +0100

    Bug 12478: Remove Koha::ItemType[s] Class::Accessor classes

commit 4a81d1cf840c7a7c11c0cef788c3e6e7501c0652
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 5 10:58:50 2015 +0100

    Bug 12478: (follow-up) Display the correct number of facets
    
    This patch fixes a side-effect of the previous "Display the correct
    number of facets (5 instead of 6)" patch.
    
    If you ask for more facets ('show more' link) and that the number of
    facets is > 5 but < 10, 1 facet will be missing.

commit fb17fc919d6112bc2e832cc819706fd93005f63b
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Mon Oct 5 17:44:14 2015 +1300

    Bug 12478: abort early if there's no elasticserch definition

commit f75a4e94a772df95da9a9acac94f020773ae3dfd
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Mon Oct 5 16:21:42 2015 +1300

    Bug 14899: schema changes to make the database better

commit cbe7ee6b53aecd9b9354fe996896e9af5d6ca40b
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Sep 25 16:06:07 2015 +0100

    Bug 14899: DB changes
    
    This patch applies several changes to the DB structure introduced by
    the previous ES patch set:
    
    1/ Add a search_field.label column
    => It will be easier to understand what the search_field does.
    Indeed, some are not user friendly: acqdate, an, pl, ff8-23, ln, etc.
    TODO later: Update the labels with correct values (at the moment
    label=name)
    
    2/ Update the foreign key search_marc_to_field.search_marc_map_id with
    on delete cascase. This will permit to automatically remove the entries
    in search_marc_to_field when they are deleted in search_marc_map.
    
    3/ Remove the index_name_2 unique constraint on the search_marc_map table.
    I don't understand how this could be useful, it was defined like (index_name,
    marc_type, marc_field), so it means a mapping cannot be defined twice with
    different values for facet, suggestible and sort.
    This limitation does not seem to make sense.
    Robin, please correct me if I am wrong :)

commit 663f0474e532002e7e8017cc5f16a2cf3237c5ea
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Fri Oct 2 15:23:07 2015 +1300

    Bug 12478: add location, su-geo, se to facets

commit f7861340fc5107bf6c26f2ccdaf7336d40b0c0da
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Thu Oct 1 15:53:44 2015 +1300

    Bug 12478: fix errors from rebase and new upstream version

commit 1d7dcb52b7b3965df2e2fe845f5b18911a06d5d4
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Sep 30 15:46:18 2015 +1300

    Bug 12478: fix some issues on rebase
    
    There were rebase conflicts that it was just easier to postpone until
    afterwards.

commit 2fbfd8732140bb06f39d99f1ca2fe6ff0761370b
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Sep 4 13:00:48 2015 +0100

    Bug 12478: Fix error on indexing a specific record
    
    % perl misc/search_tools/rebuild_elastic_search.pl -bn 42
    Can't locate object method "idnumber" via package "MARC::Record" at
    misc/search_tools/rebuild_elastic_search.pl line 171.

commit 29b7eddcc492ca905a21a0ffd417b97ef04aa2c2
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Aug 28 11:59:26 2015 +0100

    Bug 12478: Fix encoding issue on facets
    
    Filer on "Ślez, Ts." => Can't escape \x{015A}, try uri_escape_utf8()
    instead at
    /home/koha/src/Koha/SearchEngine/Elasticsearch/QueryBuilder.pm line 221.

commit cab60053e6584c32e8be7663d4dbe19670fbc4c7
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Aug 28 11:29:23 2015 +0100

    Bug 12478: Do not display the 'Show more' links if no more facet available

commit fd3caf1a1e932e407a17e4222cb7dd6ebb321204
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Aug 28 11:24:24 2015 +0100

    Bug 12478: Display the correct number of facets (5 instead of 6)
    
    The loop on facet entries was wrong, it should stop after 5
    iterations.

commit 85e11e52af05cb92948df8d93db7f02fce722d65
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Aug 28 11:13:45 2015 +0100

    Bug 12478: Remove Solr occurrences reintroduced by a previous patch

commit 3ada165f689f1def09820fc63b45574d845e7919
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Aug 28 11:13:07 2015 +0100

    Bug 12478: Fix pod in the rebuild_ES.pl script

commit 0e1abc81d45b3ebe6bb3090a27b77d7fcf2b7bd9
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Aug 28 11:08:27 2015 +0100

    Bug 12478: Fix the verbose flag on reindexing

commit fca6f59b248083075d8f47f60d42bab88a06c1ec
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Aug 28 11:07:51 2015 +0100

    Bug 12478: Change the commit count to 5k
    
    It will improve the indexing time.

commit 87356b52424a818f9fb88f53ce3ea97fad1064ae
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Aug 28 11:07:04 2015 +0100

    Bug 12478: Fix the UNIMARC and NORMARC indexing
    
    1/ This patch fixes a major issue on UNIMARC and NORMARC installations
    (Compulsive c/p on insert into insert into search_marc_to_field for unimarc and normarc)
    
    2/ After fixing that, I got
    invalid marc path at /usr/share/perl5/Catmandu/Fix/marc_map.pm line 35.
    on reindexing.
    It was caused by some "" values instead of NULL.
    
    3/ Then, a "duplicate entry" error was caused by 3 lines for Local-number.
    It seems to be an error, 1 is enough (I suppose 0909 was an error too).
    
    Note that the following is not fixed by this patch:
    MariaDB [koha_es_unimarc]>  insert into search_field (name, type) select distinct mapping, type from elasticsearch_mapping;
    Query OK, 73 rows affected, 57 warnings (0.05 sec)
    Records: 73  Duplicates: 0  Warnings: 57
    
    MariaDB [koha_es_unimarc]> show warnings;
    +---------+------+--------------------------------------------+
    | Level   | Code | Message                                    |
    +---------+------+--------------------------------------------+
    | Warning | 1265 | Data truncated for column 'type' at row 1  |

commit 5ac463a6e702a0a2aa422aff51cb612c0a9c8bfb
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Fri Sep 25 15:11:29 2015 +1200

    Bug 12478: allow more granular sorting configuration
    
    This allows sorting to be configured within a field. For example, while
    many values are included for search on author, sorting should only be
    done on the main entry values. This permits that by have a sort value,
    which can be true, false, or null. true and null are pretty much the
    same, but false means that a field isn't available for sorting on. By
    default (null), fields can be sorted on.

commit 0cf9e08fa76ecdc7a0f807450f6fe3c9144a0702
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Thu Aug 27 16:13:16 2015 +1200

    Bug 12478: pull the SQL updates from the browse interface
    
    Hopefully will reduce the rate of conflicts down the road. We'll see.

commit a5859d63e079efc747cbbaabad2ed399d1a5fae7
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Aug 26 17:29:17 2015 +1200

    Bug 12478: pull the SQL updates from the browse interface

commit 87680c62c2246b17b67a6ccfe15aec134fd71bd0
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Aug 25 17:03:08 2015 +1200

    Bug 12478: the facet "show more" links work properly now

commit 86fd7e987ecbe730cf76471a4b26f6135e129522
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Aug 25 15:13:51 2015 +1200

    Bug 12478: add the lenient option to the query_string query
    
    It doesn't really help.

commit 01e5fde470c2459fcc67aa056c5c9b86df1873b6
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Thu Aug 20 18:12:42 2015 +1200

    Bug 12478: improve error reporting a bit

commit 52d7f04e75c3ea89195744b44de33a1d9a8f9e32
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Mon Aug 3 17:55:54 2015 +1200

    Bug 12478: update to support new Cat::Store::ES

commit d5b6ff48cec9ed2fdfcc62931ef3049a454b94d5
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Fri Jul 17 14:38:19 2015 +1200

    Bug 12478: ES is now updated when records are updated/deleted

commit 5de48e260f7080ad5ad399689504b64a6171439c
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Fri Jul 10 15:19:21 2015 +1200

    Bug 12478: fix capitalisation issue with index names

commit 3611b3ff31c1542b8e97d9bf7b4936c8c9916435
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Jul 8 16:34:12 2015 +1200

    Bug 12478: make things using SimpleSearch use the new version

commit 5c3aedd142238fe27524bbd733d75327f3107daa
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Fri Jun 19 15:55:46 2015 +1200

    Bug 12478: a replacement to the SimpleSearch interface implemented

commit f13fc51cce4ab0c58af12cfee7b8d14b8d5ffa0b
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Jun 17 15:37:29 2015 +1200

    Bug 12478: fix issue with authority sort order being weird

commit 40740ed91d40fe3d3ed44971254161be0dca1d4f
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Mon Jun 15 17:35:41 2015 +1200

    Bug 12478: auth search works in the staff client
    
    Some issues with sort order though.

commit 39d721d2bb7dd7c58e8d9c9f665b147b19141592
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Mon Jun 15 15:12:39 2015 +1200

    Bug 12478: starting authority search in staff client

commit 581d5853bbb1273630d748c42e71a5628735dd93
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Fri Jun 12 15:19:39 2015 +1200

    Bug 12478: fix issues with the conversion SQL

commit 9e3cc1d64e96c0a2fe108566d47bc327bca72b8a
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Jun 10 14:35:33 2015 +1200

    Bug 12478: change the schema for storing mappings
    
    This makes the mapping schema a proper many-to-many relational
    structure, which is a little more fiddly to work with, but will make
    things like editors for it easier to write.

commit 82661fa84cfbd39ded4d081b366f8fc4b0786da4
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Fri Jun 5 14:29:31 2015 +1200

    Bug 12478: fix multi-choice stuff in advanced search
    
    This means that things like itype get "OR"ed together, rather than
    "AND"ed like other things.

commit e6028c3f16de39ebbd584843dc42ba295b58c3f1
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Thu May 14 15:15:04 2015 +1200

    Bug 12478: starting to add search to staff client

commit fb35e504984e8f943daeb04ef4e6f42f6f09b330
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Mar 31 17:26:49 2015 +1300

    Bug 12478: fix wrong counts/results for authority searches

commit b4259ab750cc7ecaf523cb6b222326d959a4b3ac
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Mar 25 17:29:14 2015 +1300

    Bug 12478: fix issues caused by rebasing

commit 30c7d49c49b0a927d915dd494c283509aa895b59
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Mar 17 17:23:56 2015 +1300

    Bug 12478: reinstate zebra compatibility for auth search

commit 0d0661ad99315d791c33259be9a07c730d956743
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Fri Mar 13 15:27:24 2015 +1300

    Bug 12478: paging is fixed now too

commit 6383200c2c4c6297c7e2ef5b1db44a38a93fe7d9
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Fri Mar 13 15:22:53 2015 +1300

    Bug 12478: sort is sorted

commit 76156daa8daa39dfce5bf94b48d85551a9d36b03
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Thu Mar 12 18:11:30 2015 +1300

    Bug 12478: phrase searching for authorities is happier

commit be83f6353bc7088a0114a108f3ea7fc99a35fa01
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Mar 11 16:14:14 2015 +1300

    Bug 12478: fix the way counting is done

commit 15eb247fa3dfcf2a72352d1ad1355e24ca75c916
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Mar 10 18:12:51 2015 +1300

    Bug 12478: authority paging works

commit 9b1fd622b8e56db2797a7fcd124b7eaca9fcee05
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Mar 10 17:32:08 2015 +1300

    Bug 12478: working on authority results

commit 52574fc14d395c6b93d16cc321842bfa5a7e0492
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Mar 4 18:19:25 2015 +1300

    Bug 12478: make authid get to the templates properly

commit 569caba66ac01f5c3c5015d1e3c86a5f884b6271
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Mar 4 17:38:18 2015 +1300

    Bug 12478: basic auth search and display is working

commit e60d5882347970b36908edccfb9180d454d9ecea
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Mar 3 14:02:19 2015 +1300

    Bug 12478: more authorities

commit 18d4684dc254db32215900d6675e98087275e169
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Feb 24 14:43:01 2015 +1300

    Bug 12478 - more authorites

commit 41de76f924961d43df6c831ec1472321fb4e0b95
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Feb 17 18:38:07 2015 +1300

    Bug 12478 - more authority searching
    
    Queries are being built, but they seem to be wrong as no results are
    returned.

commit bcc137eac2be3241af274b3869b59c537a0e9825
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Feb 4 16:42:12 2015 +1300

    Bug 12478 - more authority query building

commit c483ffc6dd48bfaf30bafb42a5e25674e91834ea
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Feb 3 14:40:50 2015 +1300

    Bug 12478 - fix syntax errors so that stuff runs

commit 5f9d7831715a57adb6d79a7c1824176eeca0a0a8
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Fri Jan 30 16:06:46 2015 +1300

    Bug 12478 - authority work in progress

commit f2101d885ed8fd96ea5dfd088bd2dd8eff38003d
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Nov 19 15:05:12 2014 +1300

    Bug 12478 - fix issue with class loading

commit b6995dbffd4b6c4ca4e439ba768a84a92076063e
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Nov 19 14:07:20 2014 +1300

    Bug 12478 - fix error in configuration loading

commit 296609fbb91bdd895edd9ef5c1277273bba5dfc8
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Wed Nov 12 17:27:14 2014 +1300

    Bug 12478 - fix error in SQL

commit 9a167d517f77806a1d7311ba24e1ab29d34c6a86
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Sep 23 17:32:57 2014 +1200

    Bug 12478 - add test cases

commit 6227044fc10e02331a82d2f11f6900b4092c2232
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Thu Sep 4 13:42:26 2014 +1200

    Bug 12478 - authorities can now be stored in ES
    
    (Not fetched yet though.)

commit 43f1d82a9cad05939559410a930e01cd89109558
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Mon Aug 25 15:55:50 2014 +1200

    Bug 12478 - set up database tables for elasticsearch
    
    This sets up the database changes needed to run ES. This isn't intended
    to be ready for upstreaming, just to make testing easier.

commit 08cdf0b44955cfc9c2981711b8c255d29d009efe
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Sep 16 17:38:43 2014 +1200

    Bug 12478 - pile of elasticsearch code

commit c03fdeff7cde68d092653eaf767d8130b08d2c99
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Tue Sep 16 17:34:25 2014 +1200

    Bug 12478 - add some base objects that the ES code will depend on

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


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list