View | Details | Raw Unified | Return to bug 27741
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt (-61 / +63 lines)
Lines 41-47 Link Here
41
        <div id="about">
41
        <div id="about">
42
42
43
        <table>
43
        <table>
44
            <caption>Server information</caption>
44
            <caption><h2>Server information</h2></caption>
45
            <tr><th scope="row">Koha version: </th><td>[% kohaVersion | html %]</td></tr>
45
            <tr><th scope="row">Koha version: </th><td>[% kohaVersion | html %]</td></tr>
46
            <tr><th scope="row">OS version ('uname -a'): </th><td>[% osVersion | html %]</td></tr>
46
            <tr><th scope="row">OS version ('uname -a'): </th><td>[% osVersion | html %]</td></tr>
47
            <tr><th scope="row">Perl interpreter: </th><td>[% perlPath | html %]</td></tr>
47
            <tr><th scope="row">Perl interpreter: </th><td>[% perlPath | html %]</td></tr>
Lines 173-179 Link Here
173
        </div>
173
        </div>
174
        <div id="perl">
174
        <div id="perl">
175
            <table style="cursor:pointer">
175
            <table style="cursor:pointer">
176
                <caption>Perl modules</caption>
176
                <caption><h2>Perl modules</h2></caption>
177
                [% FOREACH tabl IN table %]
177
                [% FOREACH tabl IN table %]
178
                <tr>
178
                <tr>
179
                    [% FOREACH ro IN tabl.row %]
179
                    [% FOREACH ro IN tabl.row %]
Lines 215-229 Link Here
215
        </div>
215
        </div>
216
216
217
        <div id="sysinfo">
217
        <div id="sysinfo">
218
            <h2>System information</h2>
218
    [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || invalid_yesno.count || warnNoActiveCurrency || warnIsRootUser || xml_config_warnings.size || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || has_ai_issues || oauth2_missing_deps || bad_yaml_prefs || warnRelationships || log4perl_errors || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size || warnConnectBroker %]
219
    [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || invalid_yesno.count || warnNoActiveCurrency || warnIsRootUser || xml_config_warnings.size || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || has_ai_issues || oauth2_missing_deps || bad_yaml_prefs || warnRelationships || log4perl_errors || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size || warnConnectBroker %]
219
        [% IF (warnIsRootUser) %]
220
        [% IF (warnIsRootUser) %]
220
            <h2>Warning regarding current user</h2>
221
            <h3>Warning regarding current user</h3>
221
            <p>You are logged in as the database administrative user. This is not recommended because some parts of Koha will not function as expected when using this account.</p>
222
            <p>You are logged in as the database administrative user. This is not recommended because some parts of Koha will not function as expected when using this account.</p>
222
            <p>Please log in instead with a regular staff account. To create a staff account, create a library, a patron category 'Staff' and add a new patron. Then give this patron permissions from 'More' in the toolbar.</p>
223
            <p>Please log in instead with a regular staff account. To create a staff account, create a library, a patron category 'Staff' and add a new patron. Then give this patron permissions from 'More' in the toolbar.</p>
223
        [% END %]
224
        [% END %]
224
225
225
        [% IF has_ai_issues %]
226
        [% IF has_ai_issues %]
226
            <h2>Data problems</h2>
227
            <h3>Data problems</h3>
227
            <p>Some of your tables have problems with their auto_increment values which may lead to data loss.</p>
228
            <p>Some of your tables have problems with their auto_increment values which may lead to data loss.</p>
228
            <p><strong>You should not ignore this warning.</strong></p>
229
            <p><strong>You should not ignore this warning.</strong></p>
229
            <p>The problem is that InnoDB does not keep auto_increment across SQL server restarts (it is only set in memory). So on server startup the auto_increment values are set to max(table.id)+1.</p>
230
            <p>The problem is that InnoDB does not keep auto_increment across SQL server restarts (it is only set in memory). So on server startup the auto_increment values are set to max(table.id)+1.</p>
Lines 231-259 Link Here
231
            <a href="https://wiki.koha-community.org/wiki/DBMS_auto_increment_fix">DBMS auto increment fix</a>
232
            <a href="https://wiki.koha-community.org/wiki/DBMS_auto_increment_fix">DBMS auto increment fix</a>
232
            </p>
233
            </p>
233
234
234
            <h3>Problems found</h3>
235
            <h4>Problems found</h4>
235
            [% IF ai_patrons %]
236
            [% IF ai_patrons %]
236
                <h4>Patrons</h4>
237
                <h5>Patrons</h5>
237
                <p>The following ids exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:</p>
238
                <p>The following ids exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:</p>
238
                <p>[% FOR p IN ai_patrons %][% p.borrowernumber | html %][% UNLESS loop.last %], [% END %][% END %]</p>
239
                <p>[% FOR p IN ai_patrons %][% p.borrowernumber | html %][% UNLESS loop.last %], [% END %][% END %]</p>
239
            [% END %]
240
            [% END %]
240
            [% IF ai_biblios %]
241
            [% IF ai_biblios %]
241
                <h4>Bibliographic records</h4>
242
                <h5>Bibliographic records</h5>
242
                <p>The following ids exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:</p>
243
                <p>The following ids exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:</p>
243
                <p>[% FOR b IN ai_biblios %][% b.biblionumber | html %][% UNLESS loop.last %], [% END %][% END %]</p>
244
                <p>[% FOR b IN ai_biblios %][% b.biblionumber | html %][% UNLESS loop.last %], [% END %][% END %]</p>
244
            [% END %]
245
            [% END %]
245
            [% IF ai_items %]
246
            [% IF ai_items %]
246
                <h4>Items</h4>
247
                <h5>Items</h5>
247
                <p>The following ids exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:</p>
248
                <p>The following ids exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:</p>
248
                <p>[% FOR i IN ai_items %][% i.itemnumber | html %][% UNLESS loop.last %], [% END %][% END %]</p>
249
                <p>[% FOR i IN ai_items %][% i.itemnumber | html %][% UNLESS loop.last %], [% END %][% END %]</p>
249
            [% END %]
250
            [% END %]
250
            [% IF ai_checkouts %]
251
            [% IF ai_checkouts %]
251
                <h4>Checkouts</h4>
252
                <h5>Checkouts</h5>
252
                <p>The following ids exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:</p>
253
                <p>The following ids exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:</p>
253
                <p>[% FOR c IN ai_checkouts %][% c.issue_id | html %][% UNLESS loop.last %], [% END %][% END %]</p>
254
                <p>[% FOR c IN ai_checkouts %][% c.issue_id | html %][% UNLESS loop.last %], [% END %][% END %]</p>
254
            [% END %]
255
            [% END %]
255
            [% IF ai_holds %]
256
            [% IF ai_holds %]
256
                <h4>Holds</h4>
257
                <h5>Holds</h5>
257
                <p>The following ids exist in both tables [% "reserves" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:</p>
258
                <p>The following ids exist in both tables [% "reserves" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:</p>
258
                <p>[% FOR h IN ai_holds %][% h.reserve_id | html %][% UNLESS loop.last %], [% END %][% END %]</p>
259
                <p>[% FOR h IN ai_holds %][% h.reserve_id | html %][% UNLESS loop.last %], [% END %][% END %]</p>
259
            [% END %]
260
            [% END %]
Lines 261-267 Link Here
261
        [% END %]
262
        [% END %]
262
263
263
        [% IF warnRelationships %]
264
        [% IF warnRelationships %]
264
            <h2>Patron relationship problems</h2>
265
            <h3>Patron relationship problems</h3>
265
            [% IF bad_relationships_count %]
266
            [% IF bad_relationships_count %]
266
                <p>Your database contained guarantee/guarantor pairs with no defined relationship. They have been set the value '_bad_data' in the [% "borrowers.relationship" | $HtmlTags tag="strong" %] and/or [% "borrower_relationships.relationship" | $HtmlTags tag="strong" %] columns. Fix them manually by recreating those relationships, or have your system's administrator correct the values.</p>
267
                <p>Your database contained guarantee/guarantor pairs with no defined relationship. They have been set the value '_bad_data' in the [% "borrowers.relationship" | $HtmlTags tag="strong" %] and/or [% "borrower_relationships.relationship" | $HtmlTags tag="strong" %] columns. Fix them manually by recreating those relationships, or have your system's administrator correct the values.</p>
267
            [% END %]
268
            [% END %]
Lines 278-284 Link Here
278
        [% END %]
279
        [% END %]
279
280
280
        [% IF log4perl_errors %]
281
        [% IF log4perl_errors %]
281
            <h2>Logging system does not behave correctly</h2>
282
            <h3>Logging system does not behave correctly</h3>
282
            [% FOR e IN log4perl_errors %]
283
            [% FOR e IN log4perl_errors %]
283
                [% SWITCH e %]
284
                [% SWITCH e %]
284
                    [% CASE 'missing_config_entry' %]There is no 'log4perl_conf' entry in the config file.
285
                    [% CASE 'missing_config_entry' %]There is no 'log4perl_conf' entry in the config file.
Lines 291-297 Link Here
291
        [% END %]
292
        [% END %]
292
293
293
        [% IF warnConnectBroker %]
294
        [% IF warnConnectBroker %]
294
            <h2>Impossible to connect to the message broker</h2>
295
            <h3>Impossible to connect to the message broker</h3>
295
            There is an error when trying to connect to the message broker (RabbitMQ), check the Koha log files.
296
            There is an error when trying to connect to the message broker (RabbitMQ), check the Koha log files.
296
            <br/>
297
            <br/>
297
            Maybe it is not installed and configured correctly?
298
            Maybe it is not installed and configured correctly?
Lines 300-306 Link Here
300
        [% END %]
301
        [% END %]
301
302
302
        [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || invalid_yesno.count || warnNoActiveCurrency || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || warnXSLT || oauth2_missing_deps || bad_yaml_prefs || warnIssuingRules || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size %]
303
        [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatronOPACPrivacy || warnPrefAnonymousPatronAnonSuggestions || warnPrefAnonymousPatronOPACPrivacy_PatronDoesNotExist || warnPrefAnonymousPatronAnonSuggestions_PatronDoesNotExist || warnPrefKohaAdminEmailAddress || warnPrefOpacHiddenItems || invalid_yesno.count || warnNoActiveCurrency || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || warnXSLT || oauth2_missing_deps || bad_yaml_prefs || warnIssuingRules || config_bcrypt_settings_no_set || warnHiddenBiblionumbers.size %]
303
            <h2>Warnings regarding the system configuration</h2>
304
            <h3>Warnings regarding the system configuration</h3>
304
            <table>
305
            <table>
305
                <caption>Preferences and parameters</caption>
306
                <caption>Preferences and parameters</caption>
306
                [% IF (warnPrefBiblioAddsAuthorities) %]
307
                [% IF (warnPrefBiblioAddsAuthorities) %]
Lines 509-515 Link Here
509
        </div>
510
        </div>
510
511
511
        <div id="team">
512
        <div id="team">
512
            <h2>Special thanks to the following organizations</h2>
513
            <h2>Koha team</h2>
514
            <h3>Special thanks to the following organizations</h3>
513
            <ul>
515
            <ul>
514
                <li><a href="http://library.org.nz">Horowhenua Library Trust</a>, New Zealand, and Rosalie Blake, Head of Libraries, (Koha 1.0)</li>
516
                <li><a href="http://library.org.nz">Horowhenua Library Trust</a>, New Zealand, and Rosalie Blake, Head of Libraries, (Koha 1.0)</li>
515
                <li>The <a href="http://www.myacpl.org/">Athens County Public Libraries</a>, Ohio, USA (MARC sponsorship, documentation, template maintenance)</li>
517
                <li>The <a href="http://www.myacpl.org/">Athens County Public Libraries</a>, Ohio, USA (MARC sponsorship, documentation, template maintenance)</li>
Lines 524-534 Link Here
524
                <li><a href="http://www.ashs.school.nz/">Albany Senior High School</a>, Auckland, New Zealand (OPAC 'star-ratings' sponsorship)</li>
526
                <li><a href="http://www.ashs.school.nz/">Albany Senior High School</a>, Auckland, New Zealand (OPAC 'star-ratings' sponsorship)</li>
525
            </ul>
527
            </ul>
526
528
527
            <h2>Koha release teams</h2>
529
            <h3>Koha release teams</h3>
528
            [% IF maintenance_team %]
530
            [% IF maintenance_team %]
529
                <div class="row">
531
                <div class="row">
530
                    <div class="col-md-6">
532
                    <div class="col-md-6">
531
                        <h3>Koha [% short_version | html %] release team</h3>
533
                        <h4>Koha [% short_version | html %] release team</h4>
532
                        [% IF development_version %]
534
                        [% IF development_version %]
533
                            <p>You are running a development version of Koha</p>
535
                            <p>You are running a development version of Koha</p>
534
                        [% ELSE %]
536
                        [% ELSE %]
Lines 537-543 Link Here
537
                    </div>
539
                    </div>
538
540
539
                    <div class="col-md-6">
541
                    <div class="col-md-6">
540
                        <h3>Current maintenance team</h3>
542
                        <h4>Current maintenance team</h4>
541
                        [% INCLUDE team t=maintenance_team v=short_version %]
543
                        [% INCLUDE team t=maintenance_team v=short_version %]
542
                    </div>
544
                    </div>
543
                </div>
545
                </div>
Lines 547-553 Link Here
547
                </div>
549
                </div>
548
            [% END %]
550
            [% END %]
549
551
550
            <h2>Koha development team</h2>
552
            <h3>Koha development team</h3>
551
            [% IF contributors.size %]
553
            [% IF contributors.size %]
552
                <ul class="columns-4">
554
                <ul class="columns-4">
553
                    [% FOREACH contributor IN contributors %]
555
                    [% FOREACH contributor IN contributors %]
Lines 561-567 Link Here
561
            [% END %]
563
            [% END %]
562
            <hr>
564
            <hr>
563
565
564
            <h2>Contributing companies and institutions</h2>
566
            <h3>Contributing companies and institutions</h3>
565
            <ul class="columns-4">
567
            <ul class="columns-4">
566
                <li>Allen Ginsberg Library, USA</li>
568
                <li>Allen Ginsberg Library, USA</li>
567
                <li>Alingsås Public Library, Sweden</li>
569
                <li>Alingsås Public Library, Sweden</li>
Lines 666-672 Link Here
666
                <li>Xercode, Spain</li>
668
                <li>Xercode, Spain</li>
667
            </ul>
669
            </ul>
668
670
669
            <h2>Additional thanks to...</h2>
671
            <h3>Additional thanks to...</h3>
670
            <ul>
672
            <ul>
671
                <li>Irma Birchall</li>
673
                <li>Irma Birchall</li>
672
                <li>Rachel Hamilton-Williams (Kaitiaki from 2004 to present)</li>
674
                <li>Rachel Hamilton-Williams (Kaitiaki from 2004 to present)</li>
Lines 679-707 Link Here
679
        </div>
681
        </div>
680
682
681
        <div id="licenses">
683
        <div id="licenses">
682
            <h2>Koha</h2>
684
            <h2>Licenses</h2>
685
            <h3>Koha</h3>
683
            <p>
686
            <p>
684
            <a href="http://www.gnu.org/licenses/gpl-3.0.html">Koha is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.</a>
687
            <a href="http://www.gnu.org/licenses/gpl-3.0.html">Koha is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.</a>
685
            </p>
688
            </p>
686
            <h2>jQuery and jQueryUI</h2>
689
            <h3>jQuery and jQueryUI</h3>
687
            <p><a href="http://jquery.com/">jQuery</a> and <a href="http://jqueryui.com/">jQueryUI</a> are licensed under the <a href="http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt">MIT license</a></p>
690
            <p><a href="http://jquery.com/">jQuery</a> and <a href="http://jqueryui.com/">jQueryUI</a> are licensed under the <a href="http://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt">MIT license</a></p>
688
691
689
            <h2>Bootstrap</h2>
692
            <h3>Bootstrap</h3>
690
            <p><a href="https://getbootstrap.com/">Bootstrap</a> code and <a href="http://glyphicons.com">Glyphicons Free</a> licensed under the <a href="https://github.com/twbs/bootstrap/blob/master/LICENSE">MIT license</a>.</p>
693
            <p><a href="https://getbootstrap.com/">Bootstrap</a> code and <a href="http://glyphicons.com">Glyphicons Free</a> licensed under the <a href="https://github.com/twbs/bootstrap/blob/master/LICENSE">MIT license</a>.</p>
691
694
692
            <h2>Bootstrap Icons</h2>
695
            <h3>Bootstrap Icons</h3>
693
            <p><a href="https://icons.getbootstrap.com/">Bootstrap Icons</a> licensed under the <a href="https://github.com/twbs/icons/blob/main/LICENSE.md">MIT license</a>.</p>
696
            <p><a href="https://icons.getbootstrap.com/">Bootstrap Icons</a> licensed under the <a href="https://github.com/twbs/icons/blob/main/LICENSE.md">MIT license</a>.</p>
694
697
695
            <h2>YUI</h2>
698
            <h3>YUI</h3>
696
            <p>
699
            <p>
697
            <a href="http://yuilibrary.com/license/">BSD License</a>
700
            <a href="http://yuilibrary.com/license/">BSD License</a>
698
            </p>
701
            </p>
699
            <h2>Famfamfam iconset</h2>
702
            <h3>Famfamfam iconset</h3>
700
              <ul>
703
              <ul>
701
                <li><a href="http://www.famfamfam.com/lab/icons/silk/">FamFamFam Site</a></li>
704
                <li><a href="http://www.famfamfam.com/lab/icons/silk/">FamFamFam Site</a></li>
702
                <li><a href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a></li>
705
                <li><a href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a></li>
703
              </ul>
706
              </ul>
704
            <h2>The Bridge Material Type Icon Set</h2>
707
            <h3>The Bridge Material Type Icon Set</h3>
705
              <ul>
708
              <ul>
706
                <li><a href="http://apps.carleton.edu/campus/library/bridge_icons/">Bridge Material Type Icons Project</a></li>
709
                <li><a href="http://apps.carleton.edu/campus/library/bridge_icons/">Bridge Material Type Icons Project</a></li>
707
                <li>The Bridge Material Type Icon Set is licensed under a
710
                <li>The Bridge Material Type Icon Set is licensed under a
Lines 709-818 Link Here
709
                  by the Bridge Consortium of Carleton College and St. Olaf College.</li>
712
                  by the Bridge Consortium of Carleton College and St. Olaf College.</li>
710
              </ul>
713
              </ul>
711
714
712
            <h2>jQuery Bar Rating Plugin</h2>
715
            <h3>jQuery Bar Rating Plugin</h3>
713
              <p>jQuery Bar Rating Plugin v1.22 by <a href="http://antenna.io/demo/jquery-bar-rating/examples/">Antenna.io</a> is licensed under the <a href="http://en.wikipedia.org/wiki/MIT_License">MIT License</a>.</p>
716
              <p>jQuery Bar Rating Plugin v1.22 by <a href="http://antenna.io/demo/jquery-bar-rating/examples/">Antenna.io</a> is licensed under the <a href="http://en.wikipedia.org/wiki/MIT_License">MIT License</a>.</p>
714
717
715
            <p>Copyright &copy; 2012-2016 <a href="http://antenna.io">Kazik Pietruszewski</a></p>
718
            <p>Copyright &copy; 2012-2016 <a href="http://antenna.io">Kazik Pietruszewski</a></p>
716
719
717
            <h2>jQuery insertAtCaret Plugin</h2>
720
            <h3>jQuery insertAtCaret Plugin</h3>
718
            <p>jQuery insertAtCaret Plugin v1.0 by the phpMyAdmin devel team is licensed under the <a href="http://www.gnu.org/licenses/gpl.html">GPL License</a>.</p>
721
            <p>jQuery insertAtCaret Plugin v1.0 by the phpMyAdmin devel team is licensed under the <a href="http://www.gnu.org/licenses/gpl.html">GPL License</a>.</p>
719
722
720
            <p>Copyright &copy; 2003-2010 phpMyAdmin devel team</p>
723
            <p>Copyright &copy; 2003-2010 phpMyAdmin devel team</p>
721
724
722
            <h2>jQuery treetable Plugin</h2>
725
            <h3>jQuery treetable Plugin</h3>
723
726
724
            <p>The <a href="http://ludo.cubicphuse.nl/jquery-treetable/">jQuery treetable Plugin 3.1.0</a> is released under MIT license by Ludo van den Boom.</p>
727
            <p>The <a href="http://ludo.cubicphuse.nl/jquery-treetable/">jQuery treetable Plugin 3.1.0</a> is released under MIT license by Ludo van den Boom.</p>
725
728
726
            <h2>OpenJS Keyboard Shortcuts Library</h2>
729
            <h3>OpenJS Keyboard Shortcuts Library</h3>
727
730
728
            <p>The <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJS keyboard shortcuts library</a>
731
            <p>The <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJS keyboard shortcuts library</a>
729
               by Binny V A is licensed under the BSD license.</p>
732
               by Binny V A is licensed under the BSD license.</p>
730
733
731
            <h2>jquery.dataTables.grouping.js</h2>
734
            <h3>jquery.dataTables.grouping.js</h3>
732
            <p>The <a href="https://code.google.com/p/jquery-datatables-row-grouping/">jquery.dataTables.grouping.js</a>
735
            <p>The <a href="https://code.google.com/p/jquery-datatables-row-grouping/">jquery.dataTables.grouping.js</a>
733
               plugin by Jovan Popovic is licensed under the BSD and GPL v2 license.</p>
736
               plugin by Jovan Popovic is licensed under the BSD and GPL v2 license.</p>
734
737
735
            <h2>jQuery Colvis plugin</h2>
738
            <h3>jQuery Colvis plugin</h3>
736
            <p>The <a href="http://datatables.net/extensions/colvis/">controls for column visiblity in DataTables</a>
739
            <p>The <a href="http://datatables.net/extensions/colvis/">controls for column visiblity in DataTables</a>
737
                by Allan Jardine is licensed under the BSD 3 and GPL v2 license.</p>
740
                by Allan Jardine is licensed under the BSD 3 and GPL v2 license.</p>
738
741
739
            <h2>jquery.multiple.select.js</h2>
742
            <h3>jquery.multiple.select.js</h3>
740
            <p>The <a href="http://wenzhixin.net.cn/p/multiple-select/">jQuery multiple select plugin</a>
743
            <p>The <a href="http://wenzhixin.net.cn/p/multiple-select/">jQuery multiple select plugin</a>
741
               by Zhixin Wen is licensed under the MIT license.</p>
744
               by Zhixin Wen is licensed under the MIT license.</p>
742
745
743
            <h2>Javascript Diff Algorithm</h2>
746
            <h3>Javascript Diff Algorithm</h3>
744
            <p>The <a href="http://ejohn.org/projects/javascript-diff-algorithm/">Javascript Diff Algorithm</a> plugin by John Resig is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p>
747
            <p>The <a href="http://ejohn.org/projects/javascript-diff-algorithm/">Javascript Diff Algorithm</a> plugin by John Resig is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p>
745
748
746
            <h2>jQuery Validation Plugin</h2>
749
            <h3>jQuery Validation Plugin</h3>
747
            <p>The <a href="http://jqueryvalidation.org/">jQuery Validation Plugin</a> written and maintained by Jörn Zaefferer is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p>
750
            <p>The <a href="http://jqueryvalidation.org/">jQuery Validation Plugin</a> written and maintained by Jörn Zaefferer is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p>
748
751
749
            <h2>TinyMCE WYSIWYG editor</h2>
752
            <h3>TinyMCE WYSIWYG editor</h3>
750
            <p>The <a href="https://www.tiny.cloud/">TinyMCE WYSIWYG editor v5.9.2 </a> by Tiny Technologies, Inc. is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt">LGPL v2.1</a>.</p>
753
            <p>The <a href="https://www.tiny.cloud/">TinyMCE WYSIWYG editor v5.9.2 </a> by Tiny Technologies, Inc. is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt">LGPL v2.1</a>.</p>
751
754
752
            <h2>Font Awesome</h2>
755
            <h3>Font Awesome</h3>
753
            <p><a href="http://fontawesome.io">Font Awesome</a> by Dave Gandy is licensed under the <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a> and the <a href="http://opensource.org/licenses/mit-license.html">MIT License</a>.</p>
756
            <p><a href="http://fontawesome.io">Font Awesome</a> by Dave Gandy is licensed under the <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a> and the <a href="http://opensource.org/licenses/mit-license.html">MIT License</a>.</p>
754
757
755
            <h2>CodeMirror editing library</h2>
758
            <h3>CodeMirror editing library</h3>
756
            <p>The <a href="http://codemirror.net/">CodeMirror editing library</a> by Marijn Haverbeke is licensed under an <a href="http://codemirror.net/LICENSE">MIT license</a>.</p>
759
            <p>The <a href="http://codemirror.net/">CodeMirror editing library</a> by Marijn Haverbeke is licensed under an <a href="http://codemirror.net/LICENSE">MIT license</a>.</p>
757
760
758
            <h2>FileSaver library</h2>
761
            <h3>FileSaver library</h3>
759
            <p>The <a href="https://github.com/eligrey/FileSaver.js/">FileSaver library</a> by Eli Grey is licensed under an <a href="https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md">MIT license</a>.</p>
762
            <p>The <a href="https://github.com/eligrey/FileSaver.js/">FileSaver library</a> by Eli Grey is licensed under an <a href="https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md">MIT license</a>.</p>
760
763
761
            <h2>Require.js JS module system</h2>
764
            <h3>Require.js JS module system</h3>
762
            <p>The <a href="http://requirejs.org/">Require.js JS module system</a> by The Dojo Foundation is licensed under an <a href="https://github.com/jrburke/requirejs/blob/master/LICENSE">MIT license</a>.</p>
765
            <p>The <a href="http://requirejs.org/">Require.js JS module system</a> by The Dojo Foundation is licensed under an <a href="https://github.com/jrburke/requirejs/blob/master/LICENSE">MIT license</a>.</p>
763
766
764
            <h2>OAI xslt stylesheet</h2>
767
            <h3>OAI xslt stylesheet</h3>
765
            <p>The included OAI.xslt file by the <a href="http://dspace.org/">DSpace project</a> is licensed under a <a href="http://www.dspace.org/license/">BSD License</a>.</p>
768
            <p>The included OAI.xslt file by the <a href="http://dspace.org/">DSpace project</a> is licensed under a <a href="http://www.dspace.org/license/">BSD License</a>.</p>
766
769
767
            <h2>OpenAPI 2.0 schema</h2>
770
            <h3>OpenAPI 3.0 schema</h3>
768
            <p>The included <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/schemas/v2.0/schema.json">api/swagger-v2-schema.json</a> file is licensed under the <a href="https://github.com/OAI/OpenAPI-Specification/tree/master/schemas/v2.0">Apache License, Version 2.0</a>, by the <a href="https://www.openapis.org/about">OpenAPI Initiative (OAI)</a>.</p>
771
            <p>The included <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/schemas/v2.0/schema.json">api/swagger-v2-schema.json</a> file is licensed under the <a href="https://github.com/OAI/OpenAPI-Specification/tree/master/schemas/v2.0">Apache License, Version 2.0</a>, by the <a href="https://www.openapis.org/about">OpenAPI Initiative (OAI)</a>.</p>
769
772
770
            <h2>Select2</h2>
773
            <h3>Select3</h3>
771
            <p>The <a href="http://select2.github.io/select2/">Select2</a> library is licensed under <a href="https://github.com/select2/select2/blob/stable/3.5/LICENSE">the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License")</a>.</p>
774
            <p>The <a href="http://select2.github.io/select2/">Select2</a> library is licensed under <a href="https://github.com/select2/select2/blob/stable/3.5/LICENSE">the Apache License, Version 2.0 (the "Apache License") or the GNU General Public License version 2 (the "GPL License")</a>.</p>
772
775
773
            <h2>jquery.tablednd.js</h2>
776
            <h3>jquery.tablednd.js</h3>
774
            <p>The <a href="https://github.com/isocra/TableDnD">TableDnD plug-in for jQuery</a> by Denis Howlett is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p>
777
            <p>The <a href="https://github.com/isocra/TableDnD">TableDnD plug-in for jQuery</a> by Denis Howlett is licensed under the <a href="http://opensource.org/licenses/mit-license.php">MIT License</a>.</p>
775
778
776
            <h2>Leaflet</h2>
779
            <h3>Leaflet</h3>
777
            <p>The <a href="http://leafletjs.com">Leaflet</a> JavaScript library by Vladimir Agafonkinis licensed under the <a href="https://github.com/Leaflet/Leaflet/blob/master/LICENSE">BSD License</a>.</p>
780
            <p>The <a href="http://leafletjs.com">Leaflet</a> JavaScript library by Vladimir Agafonkinis licensed under the <a href="https://github.com/Leaflet/Leaflet/blob/master/LICENSE">BSD License</a>.</p>
778
781
779
            <h2>jquery.emojiarea.js</h2>
782
            <h3>jquery.emojiarea.js</h3>
780
            <p>The <a href="https://github.com/diy/jquery-emojiarea">Emojiarea plug-in for jQuery</a> by DIY Co is licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">the Apache License, Version 2.0</a>.</p>
783
            <p>The <a href="https://github.com/diy/jquery-emojiarea">Emojiarea plug-in for jQuery</a> by DIY Co is licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">the Apache License, Version 2.0</a>.</p>
781
784
782
            <h2>JSZip</h2>
785
            <h3>JSZip</h3>
783
            <p>The <a href="https://stuk.github.io/jszip/">JSZip</a> JavaScript library is licensed under both the <a href="https://github.com/Stuk/jszip/blob/master/LICENSE.markdown">MIT and GPLv3 Licenses</a>.</p>
786
            <p>The <a href="https://stuk.github.io/jszip/">JSZip</a> JavaScript library is licensed under both the <a href="https://github.com/Stuk/jszip/blob/master/LICENSE.markdown">MIT and GPLv3 Licenses</a>.</p>
784
787
785
            <h2>D3.js</h2>
788
            <h3>D3.js</h3>
786
            <p><a href="https://d3js.org/">D3.js v3.5.17</a> is a JavaScript library for manipulating documents based on data. It is under the <a href="https://github.com/d3/d3/blob/master/LICENSE">BSD 3-clause Licence</a></p>
789
            <p><a href="https://d3js.org/">D3.js v3.5.17</a> is a JavaScript library for manipulating documents based on data. It is under the <a href="https://github.com/d3/d3/blob/master/LICENSE">BSD 3-clause Licence</a></p>
787
790
788
            <h2>C3.js</h2>
791
            <h3>C3.js</h3>
789
            <p><a href="http://c3js.org/">C3.js v0.4.11</a> is a D3-based reusable chart library under the <a href="https://opensource.org/licenses/mit-license.php">MIT licence</a></p>
792
            <p><a href="http://c3js.org/">C3.js v0.4.11</a> is a D3-based reusable chart library under the <a href="https://opensource.org/licenses/mit-license.php">MIT licence</a></p>
790
793
791
            <h2>Font Face Observer</h2>
794
            <h3>Font Face Observer</h3>
792
            <p><a href="https://github.com/bramstein/fontfaceobserver">Font Face Observer</a> is a JavaScript library by Bram Stein licensed under the <a href="https://github.com/bramstein/fontfaceobserver/blob/master/LICENSE">BSD License</a>.</p>
795
            <p><a href="https://github.com/bramstein/fontfaceobserver">Font Face Observer</a> is a JavaScript library by Bram Stein licensed under the <a href="https://github.com/bramstein/fontfaceobserver/blob/master/LICENSE">BSD License</a>.</p>
793
796
794
            <h2>Noto fonts</h2>
797
            <h3>Noto fonts</h3>
795
            <p><a href="https://github.com/googlei18n/noto-fonts">Noto</a> by Google is a family of fonts licensed under the <a href="http://scripts.sil.org/OFL">SIL Open Font License (OFL) v1.1</a>.</p>
798
            <p><a href="https://github.com/googlei18n/noto-fonts">Noto</a> by Google is a family of fonts licensed under the <a href="http://scripts.sil.org/OFL">SIL Open Font License (OFL) v1.1</a>.</p>
796
799
797
            <h2>HC Sticky</h2>
800
            <h3>HC Sticky</h3>
798
            <p><a href="http://somewebmedia.com/hc-sticky/">HC Sticky</a> by Some Web Media is a JavaScript library that makes any element on your page visible while you scroll, licensed under the <a href="https://github.com/somewebmedia/hc-sticky/blob/master/LICENSE">MIT license</a>.</p>
801
            <p><a href="http://somewebmedia.com/hc-sticky/">HC Sticky</a> by Some Web Media is a JavaScript library that makes any element on your page visible while you scroll, licensed under the <a href="https://github.com/somewebmedia/hc-sticky/blob/master/LICENSE">MIT license</a>.</p>
799
802
800
            <h2>kjua</h2>
803
            <h3>kjua</h3>
801
            <p><a href="https://larsjung.de/kjua/">kjua</a> by Lars Jung is a JavaScript library that generates QR codes, licensed under the <a href="https://github.com/lrsjng/kjua/blob/master/README.md">MIT license</a>.</p>
804
            <p><a href="https://larsjung.de/kjua/">kjua</a> by Lars Jung is a JavaScript library that generates QR codes, licensed under the <a href="https://github.com/lrsjng/kjua/blob/master/README.md">MIT license</a>.</p>
802
805
803
            <h2>Verovio</h2>
806
            <h3>Verovio</h3>
804
            <p><a href="https://www.verovio.org/index.xhtml">Verovio is developed by the Swiss RISM Office with the support of the Swiss National Science Foundation, licensed under the <a href="http://www.gnu.org/licenses/lgpl-3.0.html">LGPL v3.0</a>.</p>
807
            <p><a href="https://www.verovio.org/index.xhtml">Verovio is developed by the Swiss RISM Office with the support of the Swiss National Science Foundation, licensed under the <a href="http://www.gnu.org/licenses/lgpl-3.0.html">LGPL v3.0</a>.</p>
805
808
806
            <h2>jquery.cookie</h2>
809
            <h3>jquery.cookie</h3>
807
            <p><a href="https://github.com/carhartl/jquery-cookie">jquery.cookie</a> by Klaus Hartl is a jQuery plugin for setting, reading, and deleting browser cookies, licensed under the <a href="https://github.com/carhartl/jquery-cookie/blob/master/MIT-LICENSE.txt">MIT license</a>.</p>
810
            <p><a href="https://github.com/carhartl/jquery-cookie">jquery.cookie</a> by Klaus Hartl is a jQuery plugin for setting, reading, and deleting browser cookies, licensed under the <a href="https://github.com/carhartl/jquery-cookie/blob/master/MIT-LICENSE.txt">MIT license</a>.</p>
808
811
809
            <h2>JavaScript Cookie</h2>
812
            <h3>JavaScript Cookie</h3>
810
            <p><a href="https://github.com/js-cookie/js-cookie">JavaScript Cookie</a> is a "simple, lightweight JavaScript API for handling cookies," licensed under the <a href="https://github.com/js-cookie/js-cookie/blob/master/LICENSE">MIT license</a>.</p>
813
            <p><a href="https://github.com/js-cookie/js-cookie">JavaScript Cookie</a> is a "simple, lightweight JavaScript API for handling cookies," licensed under the <a href="https://github.com/js-cookie/js-cookie/blob/master/LICENSE">MIT license</a>.</p>
811
814
812
            <h2>Moment.js</h2>
815
            <h3>Moment.js</h3>
813
            <p><a href="https://momentjs.com/">Moment.js</a> licensed under the <a href="https://github.com/moment/moment/blob/develop/LICENSE">MIT license</a>.</p>
816
            <p><a href="https://momentjs.com/">Moment.js</a> licensed under the <a href="https://github.com/moment/moment/blob/develop/LICENSE">MIT license</a>.</p>
814
817
815
            <h2>Chocolat.js</h2>
818
            <h3>Chocolat.js</h3>
816
            <p><a href="http://chocolat.insipi.de">Chocolat.js</a> licensed under the <a href="https://github.com/nicolas-t/Chocolat/blob/master/LICENSE">GPL v3 license</a>.</p>
819
            <p><a href="http://chocolat.insipi.de">Chocolat.js</a> licensed under the <a href="https://github.com/nicolas-t/Chocolat/blob/master/LICENSE">GPL v3 license</a>.</p>
817
820
818
        </div>
821
        </div>
819
- 

Return to bug 27741