[koha-commits] main Koha release repository branch master updated. v17.11.00-689-gf6378a8

Git repo owner gitmaster at git.koha-community.org
Fri Feb 16 22:24:57 CET 2018


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  f6378a8fb39a316ae30815ab6c2b6d2f58861c2f (commit)
       via  294c1dc1eb24d2272a68c4b4504db16d262bf980 (commit)
       via  e11fd3060fc49634ffbdf8a5e62192ac48080e6a (commit)
       via  358d5f2ab2856322f3138a35fd08fd879e16bf24 (commit)
       via  052572cd1efc751804bdba28f6ad43fe0e3210c7 (commit)
       via  46a39cf4fbf06864b4b1b348753a08c317ba2cb2 (commit)
       via  340042dbaeb12d78aa6b10da9f05fa5ea4060435 (commit)
       via  f45d606e109ed7367d1f18d4e4919347da40fd10 (commit)
       via  ac77cc5349085e6208db6d82b2028611824eb7ee (commit)
       via  5c09a18adec949d8b0377c3a6ee6bce724c8be49 (commit)
       via  d6e444198f875bfb6d04c41cc3deef29807281b6 (commit)
       via  c655a2000a87e0b7ff07ecee1be4f7b6eddad0f4 (commit)
       via  6a7341c98d84a59807ae4a74c9c28343979a081b (commit)
       via  d74c5393edf35d6cb3728ef109125bff05869a02 (commit)
       via  d1ccd5ed35be6fa5252a65005a7374d340b2acf9 (commit)
       via  dfbadc70d4d6b117b9287beda8b2b46dced6b432 (commit)
       via  3afbbdf48cad8acda06fc21333b270cb1944d454 (commit)
       via  1b16c0b35ded57c728f89db3af7aab349e879bef (commit)
      from  f34dcf36581f909e531d49be7a44bbbc6ebc9ce0 (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 f6378a8fb39a316ae30815ab6c2b6d2f58861c2f
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Feb 16 17:40:37 2018 -0300

    Bug 15794: Add emojiarea to the license area of the about page
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 294c1dc1eb24d2272a68c4b4504db16d262bf980
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Feb 16 17:32:15 2018 -0300

    Bug 15794: Add [% KOHA_VERSION to .css and .js
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit e11fd3060fc49634ffbdf8a5e62192ac48080e6a
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Mon Jan 29 09:54:53 2018 -0300

    Bug 15794: Add an emoji picker to tag entry in OPAC
    
    This patch introduces an emoji picker int othe OPAC's tag entry form.
    It relies on the emoji-picker library [1]
    
    To test:
    - Apply the patches
    - Restart all services (just in case some caching is taking place):
      $ restart_all
    - Log into the OPAC
    - Do a search, pick a record
    - On the detail page for the record, click on 'Add tags'
    => SUCCESS: An input form is displayed, with an emoji picker on the
        right.
    => SUCCESS: Choosing an emoji populates the input with it
    - Set 'TagsModeration' and retry
    => SUCCESS: Proposed tags are displayed correctly on the staff interface
        for tag moderation
    - Sign off :-D
    
    Sponsored-by: Hotchkiss School
    
    [1] https://github.com/OneSignal/emoji-picker
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 358d5f2ab2856322f3138a35fd08fd879e16bf24
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Feb 16 18:10:23 2018 -0300

    Bug 18336: DBRev 17.12.00.016
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 052572cd1efc751804bdba28f6ad43fe0e3210c7
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Feb 16 17:56:05 2018 -0300

    Bug 18336: DBIC Schema changes
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 46a39cf4fbf06864b4b1b348753a08c317ba2cb2
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Fri Feb 16 14:08:12 2018 -0300

    Bug 18336: Library groups fix
    
    Library groups were added after this patchset was submitted.
    This patch adjusts kohastructure.sql entry for library_groups.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 340042dbaeb12d78aa6b10da9f05fa5ea4060435
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Fri Feb 16 11:25:31 2018 -0300

    Bug 18336: Shift *TEXT columns size
    
    Because of the 3-byte vs. 4-byte char size change in utf8mb4, altering a
    column's encoding from utf8 into utf8mb4 results in this changes:
    
    TEXT => MEDIUMTEXT
    MEDIUMTEXT => LONGTEXT
    
    The column size in the rows (the text itself goes to a separate object
    storage) shifts by 1 byte, because all chars are shifted in bytes size
    too, so there needs to be room for the byte-count in the column.
    
    This is a debatable change, but the path needs to be included along with
    the rest of the patchset for consistency.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit f45d606e109ed7367d1f18d4e4919347da40fd10
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Mon Jan 29 10:02:21 2018 -0300

    Bug 18336: Fix missing utf8_bin > utf8mb4_bin translation in kohastructure.sql
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit ac77cc5349085e6208db6d82b2028611824eb7ee
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Tue Jan 23 12:26:26 2018 -0300

    Bug 18336: Add explicit index names to kohastructure.sql
    
    This patch just adds an explicit index name to the search_marc_map
    table. The atomicupdate on this patchset is a good example of why we
    better have them.
    
    Sponsored-by: Hotchkiss School
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 5c09a18adec949d8b0377c3a6ee6bce724c8be49
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Tue Jan 23 11:46:05 2018 -0300

    Bug 18336: Atomic update
    
    Sponsored-by: Hotchkiss School
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit d6e444198f875bfb6d04c41cc3deef29807281b6
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Mon Jan 22 12:35:49 2018 -0300

    Bug 18336: DBIC update
    
    Sponsored-by: Hotchkiss School
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit c655a2000a87e0b7ff07ecee1be4f7b6eddad0f4
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Mon Jan 22 12:32:36 2018 -0300

    Bug 18336: Convert schema from utf8 to utf8mb4
    
    This patch adapts the DB structure so it uses utf8mb4 encoding and
    utf8mb4_generic_ci collation.
    
    Indexes for columns of type VARCHAR with prefix lenght higher than 191
    are shortened because of the smaller max index lenght for utf8mb4
    
    Note: please beware that testing this patchset risks your data and the
    patchset includes reinitializing the DB.
    
    To test:
    - Be on the master branch
    - Have a clean DB:
      $ reset_all
      (y)
    - Apply the first patch (Unit tests)
    - Run:
      $ kshell
     k$ prove t/db_dependent/www/search_utf8.t \
              t/db_dependent/www/auth_values_input_www.t
    => FAIL: Tests fail because Koha doesn't support supplemental (UTF-8)
             chars.
    - Apply the rest of this patchset
    - Upgrade the schema:
      $ kshell
     k$ perl installer/data/mysql/updatedatabase.pl
    - Run the tests:
     k$ prove t/db_dependent/www/search_utf8.t \
              t/db_dependent/www/auth_values_input_www.t
    => SUCCESS: Tests pass!
    - Now start from a clean DB
    - Run:
      $ reset_all
      (y)
    - Run the tests:
     k$ prove t/db_dependent/www/search_utf8.t \
              t/db_dependent/www/auth_values_input_www.t
    => SUCCESS: Tests pass!
    
    Verify you can use emojis all over the place (MARC records, AV
            descriptions, etc).
    
    Sponsored-by: Hotchkiss School
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 6a7341c98d84a59807ae4a74c9c28343979a081b
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Mon Jan 22 12:32:21 2018 -0300

    Bug 18336: SET NAMES utf8mb4 in Koha::Database
    
    Sponsored-by: Hotchkiss School
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit d74c5393edf35d6cb3728ef109125bff05869a02
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Mon Jan 22 13:16:26 2018 -0300

    Bug 18336: Full stack tests for supplemental UTF-8 chars
    
    This patch introduces tests for Koha's support for 4-byte supplemental
    UTF-8 chars. encoding/decoding tools handle this gracefuly. The missing
    piece is the MySQL DB backend.
    
    The tests in this patch:
    - Adds a couple records for each flavour (MARC21 and UNIMARC) so
      search_utf8.t tests 4-byte chars are handled correctly
    - Adds emoji testing in auth_values_input_www.t
    
    To test:
    - Apply this patch
    - Run:
      $ kshell
     k$ prove t/db_dependent/www/search_utf8.t \
              t/db_dependent/www/auth_values_input_www.t
    => FAIL: It should fail if the DB hasn't been migrated into using
    utf8mb4
    
    Sponsored-by: Hotchkiss School
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit d1ccd5ed35be6fa5252a65005a7374d340b2acf9
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Feb 16 16:23:14 2018 +0000

    Bug 20004: Fix POD
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit dfbadc70d4d6b117b9287beda8b2b46dced6b432
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Wed Jan 17 14:03:28 2018 -0300

    Bug 20004: Adapt /v1/cities to new naming guidelines
    
    This patch implements the changes required by the cities endpoint RFC
    [1].
    
    It uses the objects.search helper, and relies on bug 19686.
    
    To test:
    - Apply the patches
    - Compare the spec with the RFC (api/v1/swagger/definitions/city.json)
    => SUCCESS: It makes sense
    - Run:
      $ kshell
     k$ prove t/db_dependent/api/v1/cities.t
    => Tests pass!
    - Sign off :-D
    
    Signed-off-by: Claire Gravely <claire.gravely at bsz-bw.de>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 3afbbdf48cad8acda06fc21333b270cb1944d454
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Wed Jan 17 14:03:52 2018 -0300

    Bug 20004: Unit tests
    
    This patch adapts the unit tests for the cities endpoint to the
    requirements from the RFC. This tests are expected to just fail
    without the needed followup.
    
    To test:
    - Run:
      $ kshell
     k$ prove t/db_dependent/api/v1/cities.t
    => FAIL: Tests obviously don't pass without the followup patch.
    
    Signed-off-by: Claire Gravely <claire.gravely at bsz-bw.de>
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

commit 1b16c0b35ded57c728f89db3af7aab349e879bef
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Fri Feb 16 12:23:26 2018 -0300

    Bug 20229: Explicitly list the SQL modes we support
    
    In our installation procedure we ask the administrator to edit the
    MySQL|MariaDB configuration file to specify the SQL modes we support
    (see bug 17258 comment 6 and 7 for more information).
    
    We are on the way to catch and fix all these issues and support these
    stricter modes (as they highlight problem in our codebase/DB structure)
    but in the meanwhile it may be good to remove this step and revert the
    changes when we are ready.
    
    TODO:
    - Remove that for dev installations (to let developers catch these bugs)
    - Edit the wiki page to remove this step
    
    Test plan:
    0. Do not apply this patch
    1. Edit your MySQL|MariaDB config and add:
    sql-mode = "ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
    to the [mysqld] section (or edit it)
    2. Restart your DBMS
    3. Try to make the app explode (watch the logs)
    (tips: you should get "'koha_kohadev.me.id' isn't in GROUP BY" when
    editing an order)
    4. Apply the patch, restart_all, restart your DBMS
    5. Try to recreate the failure
    => You should no longer see the error in the logs
    
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

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

Summary of changes:
 Koha.pm                                            |    2 +-
 Koha/Database.pm                                   |    6 +-
 Koha/REST/V1/Cities.pm                             |  173 +-
 Koha/Schema/Result/Accountline.pm                  |   16 +-
 Koha/Schema/Result/ActionLog.pm                    |   16 +-
 Koha/Schema/Result/Aqbasket.pm                     |   16 +-
 Koha/Schema/Result/Aqbasketgroup.pm                |    8 +-
 Koha/Schema/Result/Aqbookseller.pm                 |   52 +-
 Koha/Schema/Result/Aqbudget.pm                     |    8 +-
 Koha/Schema/Result/Aqbudgetperiod.pm               |    8 +-
 Koha/Schema/Result/Aqcontact.pm                    |    8 +-
 Koha/Schema/Result/Aqcontract.pm                   |    8 +-
 Koha/Schema/Result/Aqinvoice.pm                    |    8 +-
 Koha/Schema/Result/Aqorder.pm                      |   24 +-
 Koha/Schema/Result/ArticleRequest.pm               |   40 +-
 Koha/Schema/Result/AuthHeader.pm                   |    8 +-
 Koha/Schema/Result/AuthSubfieldStructure.pm        |    8 +-
 Koha/Schema/Result/AuthType.pm                     |    8 +-
 Koha/Schema/Result/Biblio.pm                       |   28 +-
 Koha/Schema/Result/Biblioitem.pm                   |   60 +-
 Koha/Schema/Result/Borrower.pm                     |  120 +-
 Koha/Schema/Result/BorrowerDebarment.pm            |    8 +-
 Koha/Schema/Result/BorrowerModification.pm         |  120 +-
 Koha/Schema/Result/Branch.pm                       |   64 +-
 Koha/Schema/Result/Branchtransfer.pm               |    8 +-
 Koha/Schema/Result/Category.pm                     |    8 +-
 Koha/Schema/Result/ClassSortRule.pm                |    8 +-
 Koha/Schema/Result/ClassSource.pm                  |    8 +-
 Koha/Schema/Result/Club.pm                         |   12 +-
 Koha/Schema/Result/ClubEnrollmentField.pm          |    8 +-
 Koha/Schema/Result/ClubField.pm                    |    8 +-
 Koha/Schema/Result/ClubTemplate.pm                 |   12 +-
 Koha/Schema/Result/ClubTemplateEnrollmentField.pm  |   12 +-
 Koha/Schema/Result/ClubTemplateField.pm            |   12 +-
 Koha/Schema/Result/Collection.pm                   |    8 +-
 Koha/Schema/Result/Course.pm                       |   12 +-
 Koha/Schema/Result/CourseReserve.pm                |   12 +-
 Koha/Schema/Result/CreatorLayout.pm                |    8 +-
 Koha/Schema/Result/Deletedbiblio.pm                |   28 +-
 Koha/Schema/Result/Deletedbiblioitem.pm            |   60 +-
 Koha/Schema/Result/Deletedborrower.pm              |  120 +-
 Koha/Schema/Result/Deleteditem.pm                  |   28 +-
 Koha/Schema/Result/EdifactMessage.pm               |   16 +-
 Koha/Schema/Result/ExportFormat.pm                 |   12 +-
 Koha/Schema/Result/HouseboundProfile.pm            |   32 +-
 Koha/Schema/Result/Illrequest.pm                   |   12 +-
 Koha/Schema/Result/Illrequestattribute.pm          |    8 +-
 Koha/Schema/Result/ImportBatch.pm                  |    8 +-
 Koha/Schema/Result/ImportItem.pm                   |    8 +-
 Koha/Schema/Result/ImportRecord.pm                 |    8 +-
 Koha/Schema/Result/Issue.pm                        |    8 +-
 Koha/Schema/Result/Item.pm                         |   28 +-
 Koha/Schema/Result/Itemtype.pm                     |   12 +-
 Koha/Schema/Result/Letter.pm                       |    8 +-
 Koha/Schema/Result/LibraryGroup.pm                 |    8 +-
 Koha/Schema/Result/Linktracker.pm                  |    8 +-
 Koha/Schema/Result/Localization.pm                 |    8 +-
 Koha/Schema/Result/MarcModificationTemplate.pm     |    8 +-
 .../Result/MarcModificationTemplateAction.pm       |   20 +-
 Koha/Schema/Result/MarcSubfieldStructure.pm        |    8 +-
 Koha/Schema/Result/Message.pm                      |    8 +-
 Koha/Schema/Result/MessageQueue.pm                 |   28 +-
 Koha/Schema/Result/NeedMergeAuthority.pm           |    8 +-
 Koha/Schema/Result/OldIssue.pm                     |    8 +-
 Koha/Schema/Result/OldReserve.pm                   |    8 +-
 Koha/Schema/Result/OpacNews.pm                     |    8 +-
 Koha/Schema/Result/PluginData.pm                   |    8 +-
 Koha/Schema/Result/Quote.pm                        |   12 +-
 Koha/Schema/Result/RepeatableHoliday.pm            |    8 +-
 Koha/Schema/Result/ReportsDictionary.pm            |   12 +-
 Koha/Schema/Result/Reserve.pm                      |    8 +-
 Koha/Schema/Result/Review.pm                       |    8 +-
 Koha/Schema/Result/SavedSql.pm                     |   12 +-
 Koha/Schema/Result/SearchHistory.pm                |    8 +-
 Koha/Schema/Result/Serial.pm                       |   12 +-
 Koha/Schema/Result/Session.pm                      |    8 +-
 Koha/Schema/Result/SpecialHoliday.pm               |    8 +-
 Koha/Schema/Result/Statistic.pm                    |    8 +-
 Koha/Schema/Result/Subscription.pm                 |   20 +-
 Koha/Schema/Result/SubscriptionFrequency.pm        |    8 +-
 Koha/Schema/Result/SubscriptionNumberpattern.pm    |    8 +-
 Koha/Schema/Result/Suggestion.pm                   |   20 +-
 Koha/Schema/Result/Systempreference.pm             |   16 +-
 Koha/Schema/Result/TagsApproval.pm                 |    8 +-
 Koha/Schema/Result/TagsIndex.pm                    |    8 +-
 Koha/Schema/Result/TmpHoldsqueue.pm                |   24 +-
 Koha/Schema/Result/UploadedFile.pm                 |   16 +-
 Koha/Schema/Result/VendorEdiAccount.pm             |   16 +-
 Koha/Schema/Result/Z3950server.pm                  |   20 +-
 api/v1/swagger/definitions/city.json               |   16 +-
 api/v1/swagger/parameters.json                     |    4 +-
 api/v1/swagger/parameters/city.json                |    6 +-
 api/v1/swagger/paths.json                          |    4 +-
 api/v1/swagger/paths/cities.json                   |   26 +-
 api/v1/swagger/x-primitives.json                   |    2 +-
 installer/data/mysql/kohastructure.sql             | 1086 +++---
 installer/data/mysql/updatedatabase.pl             |  157 +
 koha-tmpl/intranet-tmpl/prog/en/modules/about.tt   |    3 +
 .../bootstrap/en/includes/opac-bottom.inc          |   12 +
 .../opac-tmpl/bootstrap/en/modules/opac-detail.tt  |   12 +-
 koha-tmpl/opac-tmpl/lib/emoji-picker/css/emoji.css |  251 ++
 .../opac-tmpl/lib/emoji-picker/css/emoji.css.map   |    7 +
 .../lib/emoji-picker/img/IconsetSmiles.png         |  Bin 0 -> 6975 bytes
 .../lib/emoji-picker/img/IconsetSmiles_1x.png      |  Bin 0 -> 3283 bytes
 .../opac-tmpl/lib/emoji-picker/img/IconsetW.png    |  Bin 0 -> 26483 bytes
 .../opac-tmpl/lib/emoji-picker/img/IconsetW_1x.png |  Bin 0 -> 12961 bytes
 koha-tmpl/opac-tmpl/lib/emoji-picker/img/blank.gif |  Bin 0 -> 49 bytes
 .../lib/emoji-picker/img/emoji_spritesheet_0.png   |  Bin 0 -> 739663 bytes
 .../lib/emoji-picker/img/emoji_spritesheet_1.png   |  Bin 0 -> 543573 bytes
 .../lib/emoji-picker/img/emoji_spritesheet_2.png   |  Bin 0 -> 978984 bytes
 .../lib/emoji-picker/img/emoji_spritesheet_3.png   |  Bin 0 -> 411864 bytes
 .../lib/emoji-picker/img/emoji_spritesheet_4.png   |  Bin 0 -> 544234 bytes
 koha-tmpl/opac-tmpl/lib/emoji-picker/js/config.js  | 3542 ++++++++++++++++++++
 .../lib/emoji-picker/js/emoji-picker.coffee        |  102 +
 .../opac-tmpl/lib/emoji-picker/js/emoji-picker.js  |  139 +
 .../lib/emoji-picker/js/emoji-picker.js.map        |   10 +
 .../lib/emoji-picker/js/jquery.emojiarea.js        |  773 +++++
 koha-tmpl/opac-tmpl/lib/emoji-picker/js/util.js    |  225 ++
 t/db_dependent/api/v1/cities.t                     |  299 +-
 t/db_dependent/www/auth_values_input_www.t         |    7 +-
 t/db_dependent/www/data/marc21utf8supprec.mrc      |    1 +
 t/db_dependent/www/data/unimarcutf8supprec.mrc     |    1 +
 t/db_dependent/www/search_utf8.t                   |   18 +-
 123 files changed, 6913 insertions(+), 1543 deletions(-)
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/css/emoji.css
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/css/emoji.css.map
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/img/IconsetSmiles.png
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/img/IconsetSmiles_1x.png
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/img/IconsetW.png
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/img/IconsetW_1x.png
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/img/blank.gif
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/img/emoji_spritesheet_0.png
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/img/emoji_spritesheet_1.png
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/img/emoji_spritesheet_2.png
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/img/emoji_spritesheet_3.png
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/img/emoji_spritesheet_4.png
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/js/config.js
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/js/emoji-picker.coffee
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/js/emoji-picker.js
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/js/emoji-picker.js.map
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/js/jquery.emojiarea.js
 create mode 100644 koha-tmpl/opac-tmpl/lib/emoji-picker/js/util.js
 create mode 100644 t/db_dependent/www/data/marc21utf8supprec.mrc
 create mode 100644 t/db_dependent/www/data/unimarcutf8supprec.mrc


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list