[koha-commits] main Koha release repository branch master updated. v3.20.00-914-gd1a2061

Git repo owner gitmaster at git.koha-community.org
Tue Oct 27 14:41:59 CET 2015


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  d1a2061720f7e497bf9eda42f0b409e5e3caf391 (commit)
       via  a299eef12df194605a6f656b7a2ee92bf52c690d (commit)
       via  fea62637df0581d19789bf9a13b4c00ba630856a (commit)
       via  285cb4dece0e0e0a0fadd83ae14226209bdd8f8d (commit)
       via  c3c636bf7f40ee4945f33bf7d1b776aaf49e9d67 (commit)
       via  4750d321ec684c3fb9d7d9b0958ca92b0c3f4b32 (commit)
       via  52c646b3ea88f50d3fa44e9aa79acae231e47dcd (commit)
       via  33e679b905606fc7651dca53e8c3396c1cf0190b (commit)
       via  efa2c33c870b763f4af8198e10eb97a154189200 (commit)
       via  b245e6e6ec75bca439d307c53f3c16f01d6433fb (commit)
       via  25ce05ebaf0631f330866533cfd2a77f65a7e25b (commit)
       via  3fb779283d852c147470c0feb853376f9b3a6a19 (commit)
       via  9bb14e9d58e8181dcdf66f354ed0ab5be7161bb8 (commit)
       via  00ed62bb83c135f7dc1d549e1071ac89677defce (commit)
       via  7808bb2c0dded7d96abf8616181def7a74ed1d0c (commit)
       via  4e82431c3a4cf7749274af50cd5148425ebf028a (commit)
       via  fae04584096e8ad39815723eee55a4fad6a616c1 (commit)
       via  0cab6f2ef3f575b1e1dea496ae1bf4cf96815ab8 (commit)
       via  43e116601cb431ce81c2a8811b725c774c6a56ad (commit)
       via  7c346e922ac0a2cdb5e991b839ddcf8c45f004e2 (commit)
       via  3e153d46ee52b1361a245f5191ee15ab2dc65d03 (commit)
      from  d331bcfbee31c623761dacdd851d7b042ad368ac (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 d1a2061720f7e497bf9eda42f0b409e5e3caf391
Author: Tomas Cohen Arazi <tomascohen at theke.io>
Date:   Tue Oct 27 10:35:02 2015 -0300

    Bug 14468: (QA followup) remove useless diags
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit a299eef12df194605a6f656b7a2ee92bf52c690d
Author: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
Date:   Fri Oct 23 13:40:45 2015 -0300

    Bug 14468: followup to fix tests
    
    This patch fix an expected  test result.
    Also changes a comparison for the return value to 'delete'
    layout sub, in case of success it returns 'undef' and triggers
    the message 'use of uninitialized value $del_results ...'
    
    To test:
    1) Whitout this patch
    
    prove t/db_dependent/Labels/t_Layout.t
    
    fails.
    
    Also note the message
    "Use of uninitialized value $del_results in string ne at t/db_dependent/Labels/t_Layout.t line 110."
    for using the return value of delete layout (undef on success!)
    
    2) Apply the patch
    3) Test pass and no more message
    
    Signed-off-by: Marc Véron <veron at veron.ch>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit fea62637df0581d19789bf9a13b4c00ba630856a
Author: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
Date:   Sat Jun 27 21:41:01 2015 -0300

    Bug 14468: Remove warnings when creating Labels
    
    This patch removes 2 types of warnings when
    creating Labels
    
    a) Using '0' as filling char is not to the like of prStrWidth
    On C4/Creators/Layout.pm
    
    b) A RM followup from Galen on Bug 8375 to C4/Creators/PDF.pm
    makes impossible to find properly a font :(
    (http://git.koha-community.org/gitweb/?p=koha.git;a=commit;h=f7ef93e758850e991091e7268b8d1b1453082df4)
    on C4/Labels/Label.pm
    
    To test:
    Pre patch
    1) Go to Tools > Labels
    2) Create a new layout, name ABC, type 'Barcode/Biblio'
    3) Create a new batch, add 2 items
    4) Export as PDF using the new layout
    5) Look at logs, you will find something like
    
    a) label-create-pdf.pl: Use of uninitialized value $strwidth in numeric lt (<) at /home/bgkriegel/kohaclone/C4/Creators/Layout.pm line 233., referer: http://staffdev.koha-community.org.ar/cgi-bin/koha/labels/label-print.pl
    (Only one of this kind)
    
    b) Two related lines similar to this examples
    label-create-pdf.pl: Use of uninitialized value in -e at /home/bgkriegel/kohaclone/C4/Creators/PDF.pm line 226., referer: http://staffdev.koha-community.org.ar/cgi-bin/koha/labels/label-print.pl
    label-create-pdf.pl: ERROR in koha-conf.xml -- missing <font type="Ft1">/path/to/font.ttf</font> at /home/bgkriegel/kohaclone/C4/Creators/PDF.pm line 229., referer: http://staffdev.koha-community.org.ar/cgi-bin/koha/labels/label-print.pl
    (many many lines x number of items on batch)
    
    6) Apply the patch
    7) Export the same PDF, no more warnings
    
    8) Bonus 1: change main font to Courier and Helvetica
    and check results
    9) Bonus 2: check using arabic records
    
    Many hours to find :(
    Easy to fix
    
    Signed-off-by: Nick Clemens <nick at quecheelibrary.org>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 285cb4dece0e0e0a0fadd83ae14226209bdd8f8d
Author: Marc Véron <veron at veron.ch>
Date:   Fri Oct 9 21:33:03 2015 +0200

    Bug 14995: Remove C4::Dates: Delete files reservereport.pl / reservereport.tt
    
    The following files use C4::Dates, but they seem no longer to be in use:
    
    - koha-tmpl/intranet-tmpl/prog/en/modules/reports/reservereport.tt
    - reports/reservereport.pl
    
    To verify: git grep 'reservereport'
    
    Signed-off-by: Mirko Tietgen <mirko at abunchofthings.net>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit c3c636bf7f40ee4945f33bf7d1b776aaf49e9d67
Author: Marc Véron <veron at veron.ch>
Date:   Wed Oct 14 21:51:17 2015 +0200

    Bug 14949: Remove remaining C4::Dates and fix display in admin/categorie.pl
    
    This patch removes a remaining C4::Dates from admin/categroie.pl and fixes
    the display of "Enrollment period" on the confirmation screen for deleting.
    
    To verify and test pls. refer to comments #5 and #6
    
    Signed-off-by: Hector Castro <hector.hecaxmmx at gmail.com>
    Works as advertised
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 4750d321ec684c3fb9d7d9b0958ca92b0c3f4b32
Author: Marc Véron <veron at veron.ch>
Date:   Tue Oct 6 15:06:25 2015 +0200

    Bug 14949: (followup) Fix regression with hard due date
    
    This patch fixes the regresseion as described in comment #3
    
    To test:
    
    - Go on smart-rules.pl and edit a line. Do not define a Hard due date, save.
      The value is "None defined".
    
    - Edit the line, do not change anything and save.
      The value should be "None defined"
    
    - Edit the line, define a hard due date, save.
      The date should display as expected.
    
    - Edit the line agein, remove the hard due date, save.
      The value should be "None defined"
    
    Signed-off-by: Hector Castro <hector.hecaxmmx at gmail.com>
    Works as advertised
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 52c646b3ea88f50d3fa44e9aa79acae231e47dcd
Author: Marc Véron <veron at veron.ch>
Date:   Sun Oct 4 18:25:46 2015 +0200

    Bug 14949: Remove C4::Dates from admin/smart-rules.pl and admin/categorie.pl
    
    Bug to remove C4::Dates from
     - admin/smart-rules.pl
     - admin/categorie.pl
    
    To test:
    
    - Apply patch
    
    - Go to Home > Administration > Circulation and fine rules (smart-rules.pl)
    - Edit or add a rule
    - Verify that 'Hard due date' displays and saves fine
    
    - Go to Home > Administration > Patron categories
    - Edit or add a category
    - Verify that 'Until date' displays and saves fine
    
    Note: The date picker does not warn about wrong date formats as e.g. while
          editing patrons, but that is not in the scope of this bug
    
    Signed-off-by: Joonas Kylmälä <j.kylmala at gmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 33e679b905606fc7651dca53e8c3396c1cf0190b
Author: Marc Véron <veron at veron.ch>
Date:   Sat Oct 10 10:03:51 2015 +0200

    Bug 14997: Remove C4::Dates from tools (import / export)
    
    This patch removes C4::Dates from:
    
    - tools/export.pl
    - tools/import_borrowers.pl
    
    Note: For testing, both need preparation without patch, see below.
    
    To test export:
    - Without patch applied, go to
      Home > Tools > Export data > Export bibliographic records
    - Define Start date / End date for Accession dates
    - Export bibliographic records as 'without-patch.mrc'
    
    - Do the same with patch, export as 'with-patch.mrc
    - Compare the files, they should be the same
    
    To test Import patrons:
    - Without patch
    - Go to Home > Tools > Import patrons
    - Create a patron category like 'TEST' (useful for filtering...)
    - Prepare a file with some patrons with category TEST to import.
      Fill date of birth, enrolment date, expiry date with values
      formatted in syspref format, in iso format and garbage
    - Import
    - Review the imported patrons (search for category TEST)
    
    - With patch: Change cardnumber and names in import file
    - Import
    - Review again and compare with results from previous import.
    
    Signed-off-by: Mirko Tietgen <mirko at abunchofthings.net>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit efa2c33c870b763f4af8198e10eb97a154189200
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Mon Oct 26 13:15:37 2015 -0400

    Bug 14915: (QA followup) Switch recent commits from Glyphicons to Font Awesome
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit b245e6e6ec75bca439d307c53f3c16f01d6433fb
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sun Oct 25 23:12:28 2015 +0100

    Bug 14915: (QA followup) Replace fa-time with fa-clock-o
    
    Icon looks almost the same, just has a different name.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 25ce05ebaf0631f330866533cfd2a77f65a7e25b
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sun Oct 25 23:01:11 2015 +0100

    Bug 14915: [FA 4.4] (QA followup) Replace fa-hold with fa-sticky-note-o
    
    Ok, this is a fun one: There is no icon like our current hold icon
    in Font Awesome. So I picked fa-sticky-note-o for a replacement.
    
    But since this is a new one, it doesn't exist in Koha yet.
    I found no better match and the patch was already written...
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 3fb779283d852c147470c0feb853376f9b3a6a19
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sun Oct 25 22:34:42 2015 +0100

    Bug 14915: (QA followup) Replace fa-merge with fa-compress
    
    Another icon that doesn't quite exist in Font Awesome -
    this is starting to get a bit troublesome.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 9bb14e9d58e8181dcdf66f354ed0ab5be7161bb8
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sun Oct 25 22:18:10 2015 +0100

    Bug 14915: (QA followup) Replace fa-zoom-in and fa-zoom-out
    
    Same icons don't appear to exist for Font awesome.
    Replaced with fa-folder and fa-folder-open for now.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 00ed62bb83c135f7dc1d549e1071ac89677defce
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sun Oct 25 22:08:43 2015 +0100

    Bug 14915: (QA followup) Replace fa-downlowd-alt with fa-download
    
    Fixes non-existing fa-download-alt by using fa-download instead.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 7808bb2c0dded7d96abf8616181def7a74ed1d0c
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sun Oct 25 21:57:57 2015 +0100

    Bug 14915: (QA followup) Replace fa-hdd with fa-save
    
    Alternative patch to using hdd-o.
    
    As the Font Awesome Icon is different to what we used before,
    an alternative could be switching back to the 'classic' symbol
    for save.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 4e82431c3a4cf7749274af50cd5148425ebf028a
Author: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date:   Sun Oct 25 21:26:51 2015 +0100

    Bug 14915: (QA followup) Replace fa-remove-sign with fa-times-circle
    
    Noticed that an icon was missing in the templates.
    
    Replaced fa-remove-sign with same-looking fa-times-circle.
    
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit fae04584096e8ad39815723eee55a4fad6a616c1
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Thu Oct 8 14:07:51 2015 -0400

    Bug 14915: (QA followup) Tweak '+' icon for serials-home
    
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 0cab6f2ef3f575b1e1dea496ae1bf4cf96815ab8
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Mon Sep 28 10:36:28 2015 -0400

    Bug 14915: Use Font Awesome instead of Glyphicons for the staff intranet
    
    We should be using Font Awesome for our icons instead of Glyphicons, for
    the reasons discussed on bug 13696.
    
    Test Plan:
    1) Apply this patch
    2) Note all Glyphicons have been replaced with FA icons in the staff intranet
    3) git grep "icon-" ./koha-tmpl/intranet-tmpl/prog/en/modules/
       should give no results
    4) git grep "icon-" ./koha-tmpl/intranet-tmpl/prog/en/includes/
       should give no results
    
    Signed-off-by: Marc Véron <veron at veron.ch>
    Signed-off-by: Katrin Fischer <Katrin.Fischer.83 at web.de>
    We need a follow-up to cover the files changes since this
    patch was written. Especially to cover the changes in the
    label creator modules.
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 43e116601cb431ce81c2a8811b725c774c6a56ad
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Mon Oct 26 12:47:22 2015 -0400

    Bug 13696: (QA followup) Update FA to 4.4.0
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 7c346e922ac0a2cdb5e991b839ddcf8c45f004e2
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Mon Sep 28 11:41:44 2015 -0400

    Bug 13696: (QA followup) Add Font Awesome license to the about page
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

commit 3e153d46ee52b1361a245f5191ee15ab2dc65d03
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Wed Feb 11 07:24:24 2015 -0500

    Bug 13696: Add support for Font Awesome icons in Koha
    
    Font Awesome is similar to Glyphicons included in Twitter Bootstrap,
    except better in every way and more Free.
    
    Test Plan:
    1) Apply this patch
    2) Edit the template for a page, and add a Font Awesome tag to it,
       examples can be found here:
       http://fortawesome.github.io/Font-Awesome/examples/
    3) Reload the page and verify the icon displays.
    
    Signed-off-by: Mirko Tietgen <mirko at abunchofthings.net>
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>

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

Summary of changes:
 C4/Creators/Layout.pm                              |    2 +-
 C4/Creators/PDF.pm                                 |   12 +-
 C4/Labels/Label.pm                                 |    3 +-
 admin/categorie.pl                                 |   25 +-
 admin/smart-rules.pl                               |    8 +-
 .../lib/font-awesome/css/font-awesome.css          | 2026 ++++++++++++++++++++
 .../lib/font-awesome/css/font-awesome.min.css      |    4 +
 .../lib/font-awesome/fonts/FontAwesome.otf         |  Bin 0 -> 106260 bytes
 .../lib/font-awesome/fonts/fontawesome-webfont.eot |  Bin 0 -> 68875 bytes
 .../lib/font-awesome/fonts/fontawesome-webfont.svg |  640 +++++++
 .../lib/font-awesome/fonts/fontawesome-webfont.ttf |  Bin 0 -> 138204 bytes
 .../font-awesome/fonts/fontawesome-webfont.woff    |  Bin 0 -> 81284 bytes
 .../font-awesome/fonts/fontawesome-webfont.woff2   |  Bin 0 -> 64464 bytes
 .../lib/font-awesome/less/animated.less            |   34 +
 .../lib/font-awesome/less/bordered-pulled.less     |   25 +
 .../intranet-tmpl/lib/font-awesome/less/core.less  |   12 +
 .../lib/font-awesome/less/fixed-width.less         |    6 +
 .../lib/font-awesome/less/font-awesome.less        |   17 +
 .../intranet-tmpl/lib/font-awesome/less/icons.less |  677 +++++++
 .../lib/font-awesome/less/larger.less              |   13 +
 .../intranet-tmpl/lib/font-awesome/less/list.less  |   19 +
 .../lib/font-awesome/less/mixins.less              |   26 +
 .../intranet-tmpl/lib/font-awesome/less/path.less  |   15 +
 .../lib/font-awesome/less/rotated-flipped.less     |   20 +
 .../lib/font-awesome/less/stacked.less             |   20 +
 .../lib/font-awesome/less/variables.less           |  687 +++++++
 .../lib/font-awesome/scss/_animated.scss           |   34 +
 .../lib/font-awesome/scss/_bordered-pulled.scss    |   25 +
 .../intranet-tmpl/lib/font-awesome/scss/_core.scss |   12 +
 .../lib/font-awesome/scss/_fixed-width.scss        |    6 +
 .../lib/font-awesome/scss/_icons.scss              |  677 +++++++
 .../lib/font-awesome/scss/_larger.scss             |   13 +
 .../intranet-tmpl/lib/font-awesome/scss/_list.scss |   19 +
 .../lib/font-awesome/scss/_mixins.scss             |   26 +
 .../intranet-tmpl/lib/font-awesome/scss/_path.scss |   15 +
 .../lib/font-awesome/scss/_rotated-flipped.scss    |   20 +
 .../lib/font-awesome/scss/_stacked.scss            |   20 +
 .../lib/font-awesome/scss/_variables.scss          |  687 +++++++
 .../lib/font-awesome/scss/font-awesome.scss        |   17 +
 .../prog/en/includes/acquisitions-toolbar.inc      |   10 +-
 .../prog/en/includes/auth-finder-search.inc        |    4 +-
 .../prog/en/includes/authorities-toolbar.inc       |   12 +-
 .../prog/en/includes/budgets-admin-toolbar.inc     |    8 +-
 .../intranet-tmpl/prog/en/includes/cat-toolbar.inc |   16 +-
 .../prog/en/includes/checkouts-table.inc           |    8 +-
 .../prog/en/includes/doc-head-close.inc            |    1 +
 .../prog/en/includes/labels-toolbar.inc            |    4 +-
 .../prog/en/includes/members-toolbar.inc           |   12 +-
 .../prog/en/includes/messaging-preference-form.inc |    2 +-
 .../prog/en/includes/patron-toolbar.inc            |    4 +-
 .../prog/en/includes/patroncards-toolbar.inc       |    4 +-
 .../prog/en/includes/quotes-toolbar.inc            |    6 +-
 .../prog/en/includes/quotes-upload-toolbar.inc     |    6 +-
 .../prog/en/includes/reports-toolbar.inc           |    6 +-
 .../en/includes/rotating-collections-toolbar.inc   |    6 +-
 .../prog/en/includes/serials-toolbar.inc           |   18 +-
 .../prog/en/includes/virtualshelves-toolbar.inc    |   10 +-
 koha-tmpl/intranet-tmpl/prog/en/modules/about.tt   |    3 +
 .../intranet-tmpl/prog/en/modules/acqui/basket.tt  |   14 +-
 .../prog/en/modules/acqui/basketgroup.tt           |   10 +-
 .../prog/en/modules/acqui/booksellers.tt           |    4 +-
 .../prog/en/modules/acqui/invoices.tt              |    8 +-
 .../prog/en/modules/acqui/supplier.tt              |    4 +-
 .../prog/en/modules/admin/aqbudgetperiods.tt       |   10 +-
 .../prog/en/modules/admin/auth_tag_structure.tt    |    2 +-
 .../prog/en/modules/admin/authorised_values.tt     |    4 +-
 .../prog/en/modules/admin/authtypes.tt             |    2 +-
 .../prog/en/modules/admin/biblio_framework.tt      |    2 +-
 .../prog/en/modules/admin/branches.tt              |    4 +-
 .../prog/en/modules/admin/categorie.tt             |    4 +-
 .../intranet-tmpl/prog/en/modules/admin/cities.tt  |    2 +-
 .../prog/en/modules/admin/classsources.tt          |    4 +-
 .../prog/en/modules/admin/currency.tt              |    2 +-
 .../prog/en/modules/admin/itemtypes.tt             |    2 +-
 .../prog/en/modules/admin/marctagstructure.tt      |    2 +-
 .../prog/en/modules/admin/matching-rules.tt        |    2 +-
 .../prog/en/modules/admin/oai_sets.tt              |    2 +-
 .../prog/en/modules/admin/patron-attr-types.tt     |    2 +-
 .../prog/en/modules/admin/printers.tt              |    2 +-
 .../prog/en/modules/admin/systempreferences.tt     |    2 +-
 .../prog/en/modules/admin/z3950servers.tt          |    4 +-
 .../prog/en/modules/authorities/authorities.tt     |    4 +-
 .../intranet-tmpl/prog/en/modules/basket/basket.tt |   14 +-
 .../prog/en/modules/catalogue/results.tt           |    8 +-
 .../prog/en/modules/cataloguing/addbiblio.tt       |    8 +-
 .../prog/en/modules/cataloguing/addbooks.tt        |    6 +-
 .../prog/en/modules/circ/circulation.tt            |    2 +-
 .../intranet-tmpl/prog/en/modules/circ/offline.tt  |    4 +-
 .../en/modules/course_reserves/course-details.tt   |    6 +-
 .../en/modules/course_reserves/course-reserves.tt  |    2 +-
 .../prog/en/modules/labels/label-edit-batch.tt     |   12 +-
 .../prog/en/modules/labels/label-manage.tt         |    2 +-
 .../en/modules/members/purchase-suggestions.tt     |    2 +-
 .../prog/en/modules/patron_lists/list.tt           |    2 +-
 .../prog/en/modules/patron_lists/lists.tt          |    8 +-
 .../prog/en/modules/patroncards/edit-batch.tt      |   14 +-
 .../prog/en/modules/patroncards/image-manage.tt    |    2 +-
 .../prog/en/modules/patroncards/manage.tt          |    6 +-
 .../prog/en/modules/reports/dictionary.tt          |    2 +-
 .../en/modules/reports/guided_reports_start.tt     |   12 +-
 .../prog/en/modules/reports/reservereport.tt       |   44 -
 .../prog/en/modules/serials/add_fields.tt          |    2 +-
 .../prog/en/modules/serials/serials-search.tt      |   12 +-
 .../prog/en/modules/suggestion/suggestion.tt       |    6 +-
 .../prog/en/modules/tools/koha-news.tt             |    2 +-
 .../intranet-tmpl/prog/en/modules/tools/letter.tt  |    2 +-
 .../prog/en/modules/virtualshelves/shelves.tt      |    6 +-
 .../bootstrap/en/includes/doc-head-close.inc       |    1 +
 .../lib/font-awesome/css/font-awesome.css          | 1801 +++++++++++++++++
 .../lib/font-awesome/css/font-awesome.min.css      |    4 +
 .../lib/font-awesome/fonts/FontAwesome.otf         |  Bin 0 -> 93888 bytes
 .../lib/font-awesome/fonts/fontawesome-webfont.eot |  Bin 0 -> 60767 bytes
 .../lib/font-awesome/fonts/fontawesome-webfont.svg |  565 ++++++
 .../lib/font-awesome/fonts/fontawesome-webfont.ttf |  Bin 0 -> 122092 bytes
 .../font-awesome/fonts/fontawesome-webfont.woff    |  Bin 0 -> 71508 bytes
 .../font-awesome/fonts/fontawesome-webfont.woff2   |  Bin 0 -> 56780 bytes
 .../bootstrap/lib/font-awesome/less/animated.less  |   34 +
 .../lib/font-awesome/less/bordered-pulled.less     |   16 +
 .../bootstrap/lib/font-awesome/less/core.less      |   13 +
 .../lib/font-awesome/less/fixed-width.less         |    6 +
 .../lib/font-awesome/less/font-awesome.less        |   17 +
 .../bootstrap/lib/font-awesome/less/icons.less     |  596 ++++++
 .../bootstrap/lib/font-awesome/less/larger.less    |   13 +
 .../bootstrap/lib/font-awesome/less/list.less      |   19 +
 .../bootstrap/lib/font-awesome/less/mixins.less    |   27 +
 .../bootstrap/lib/font-awesome/less/path.less      |   15 +
 .../lib/font-awesome/less/rotated-flipped.less     |   20 +
 .../bootstrap/lib/font-awesome/less/stacked.less   |   20 +
 .../bootstrap/lib/font-awesome/less/variables.less |  605 ++++++
 .../bootstrap/lib/font-awesome/scss/_animated.scss |   34 +
 .../lib/font-awesome/scss/_bordered-pulled.scss    |   16 +
 .../bootstrap/lib/font-awesome/scss/_core.scss     |   13 +
 .../lib/font-awesome/scss/_fixed-width.scss        |    6 +
 .../bootstrap/lib/font-awesome/scss/_icons.scss    |  596 ++++++
 .../bootstrap/lib/font-awesome/scss/_larger.scss   |   13 +
 .../bootstrap/lib/font-awesome/scss/_list.scss     |   19 +
 .../bootstrap/lib/font-awesome/scss/_mixins.scss   |   27 +
 .../bootstrap/lib/font-awesome/scss/_path.scss     |   15 +
 .../lib/font-awesome/scss/_rotated-flipped.scss    |   20 +
 .../bootstrap/lib/font-awesome/scss/_stacked.scss  |   20 +
 .../lib/font-awesome/scss/_variables.scss          |  605 ++++++
 .../lib/font-awesome/scss/font-awesome.scss        |   17 +
 reports/reservereport.pl                           |  151 --
 t/db_dependent/Labels/t_Layout.t                   |    4 +-
 t/db_dependent/Labels/t_Profile.t                  |   45 +-
 t/db_dependent/Labels/t_Template.t                 |   55 +-
 tools/export.pl                                    |   18 +-
 tools/import_borrowers.pl                          |   11 +-
 148 files changed, 11271 insertions(+), 472 deletions(-)
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/css/font-awesome.css
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/css/font-awesome.min.css
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/fonts/FontAwesome.otf
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/fonts/fontawesome-webfont.eot
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/fonts/fontawesome-webfont.svg
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/fonts/fontawesome-webfont.ttf
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/fonts/fontawesome-webfont.woff
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/fonts/fontawesome-webfont.woff2
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/less/animated.less
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/less/bordered-pulled.less
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/less/core.less
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/less/fixed-width.less
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/less/font-awesome.less
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/less/icons.less
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/less/larger.less
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/less/list.less
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/less/mixins.less
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/less/path.less
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/less/rotated-flipped.less
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/less/stacked.less
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/less/variables.less
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/scss/_animated.scss
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/scss/_bordered-pulled.scss
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/scss/_core.scss
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/scss/_fixed-width.scss
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/scss/_icons.scss
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/scss/_larger.scss
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/scss/_list.scss
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/scss/_mixins.scss
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/scss/_path.scss
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/scss/_rotated-flipped.scss
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/scss/_stacked.scss
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/scss/_variables.scss
 create mode 100644 koha-tmpl/intranet-tmpl/lib/font-awesome/scss/font-awesome.scss
 delete mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/reports/reservereport.tt
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/css/font-awesome.css
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/css/font-awesome.min.css
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/fonts/FontAwesome.otf
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/fonts/fontawesome-webfont.eot
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/fonts/fontawesome-webfont.svg
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/fonts/fontawesome-webfont.ttf
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/fonts/fontawesome-webfont.woff
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/fonts/fontawesome-webfont.woff2
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/less/animated.less
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/less/bordered-pulled.less
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/less/core.less
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/less/fixed-width.less
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/less/font-awesome.less
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/less/icons.less
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/less/larger.less
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/less/list.less
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/less/mixins.less
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/less/path.less
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/less/rotated-flipped.less
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/less/stacked.less
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/less/variables.less
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/scss/_animated.scss
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/scss/_bordered-pulled.scss
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/scss/_core.scss
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/scss/_fixed-width.scss
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/scss/_icons.scss
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/scss/_larger.scss
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/scss/_list.scss
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/scss/_mixins.scss
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/scss/_path.scss
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/scss/_rotated-flipped.scss
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/scss/_stacked.scss
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/scss/_variables.scss
 create mode 100644 koha-tmpl/opac-tmpl/bootstrap/lib/font-awesome/scss/font-awesome.scss
 delete mode 100755 reports/reservereport.pl


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list