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 [% "borrower_relationships.relationship" | $HtmlTags tag="strong" %] column. 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 [% "borrower_relationships.relationship" | $HtmlTags tag="strong" %] column. 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 || 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 || 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 665-671 Link Here
665
                <li>Xercode, Spain</li>
667
                <li>Xercode, Spain</li>
666
            </ul>
668
            </ul>
667
669
668
            <h2>Additional thanks to...</h2>
670
            <h3>Additional thanks to...</h3>
669
            <ul>
671
            <ul>
670
                <li>Irma Birchall</li>
672
                <li>Irma Birchall</li>
671
                <li>Rachel Hamilton-Williams (Kaitiaki from 2004 to present)</li>
673
                <li>Rachel Hamilton-Williams (Kaitiaki from 2004 to present)</li>
Lines 678-706 Link Here
678
        </div>
680
        </div>
679
681
680
        <div id="licenses">
682
        <div id="licenses">
681
            <h2>Koha</h2>
683
            <h2>Licenses</h2>
684
            <h3>Koha</h3>
682
            <p>
685
            <p>
683
            <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>
686
            <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>
684
            </p>
687
            </p>
685
            <h2>jQuery and jQueryUI</h2>
688
            <h3>jQuery and jQueryUI</h3>
686
            <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>
689
            <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>
687
690
688
            <h2>Bootstrap</h2>
691
            <h3>Bootstrap</h3>
689
            <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>
692
            <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>
690
693
691
            <h2>Bootstrap Icons</h2>
694
            <h3>Bootstrap Icons</h3>
692
            <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>
695
            <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>
693
696
694
            <h2>YUI</h2>
697
            <h3>YUI</h3>
695
            <p>
698
            <p>
696
            <a href="http://yuilibrary.com/license/">BSD License</a>
699
            <a href="http://yuilibrary.com/license/">BSD License</a>
697
            </p>
700
            </p>
698
            <h2>Famfamfam iconset</h2>
701
            <h3>Famfamfam iconset</h3>
699
              <ul>
702
              <ul>
700
                <li><a href="http://www.famfamfam.com/lab/icons/silk/">FamFamFam Site</a></li>
703
                <li><a href="http://www.famfamfam.com/lab/icons/silk/">FamFamFam Site</a></li>
701
                <li><a href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a></li>
704
                <li><a href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a></li>
702
              </ul>
705
              </ul>
703
            <h2>The Bridge Material Type Icon Set</h2>
706
            <h3>The Bridge Material Type Icon Set</h3>
704
              <ul>
707
              <ul>
705
                <li><a href="http://apps.carleton.edu/campus/library/bridge_icons/">Bridge Material Type Icons Project</a></li>
708
                <li><a href="http://apps.carleton.edu/campus/library/bridge_icons/">Bridge Material Type Icons Project</a></li>
706
                <li>The Bridge Material Type Icon Set is licensed under a
709
                <li>The Bridge Material Type Icon Set is licensed under a
Lines 708-817 Link Here
708
                  by the Bridge Consortium of Carleton College and St. Olaf College.</li>
711
                  by the Bridge Consortium of Carleton College and St. Olaf College.</li>
709
              </ul>
712
              </ul>
710
713
711
            <h2>jQuery Bar Rating Plugin</h2>
714
            <h3>jQuery Bar Rating Plugin</h3>
712
              <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>
715
              <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>
713
716
714
            <p>Copyright &copy; 2012-2016 <a href="http://antenna.io">Kazik Pietruszewski</a></p>
717
            <p>Copyright &copy; 2012-2016 <a href="http://antenna.io">Kazik Pietruszewski</a></p>
715
718
716
            <h2>jQuery insertAtCaret Plugin</h2>
719
            <h3>jQuery insertAtCaret Plugin</h3>
717
            <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>
720
            <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>
718
721
719
            <p>Copyright &copy; 2003-2010 phpMyAdmin devel team</p>
722
            <p>Copyright &copy; 2003-2010 phpMyAdmin devel team</p>
720
723
721
            <h2>jQuery treetable Plugin</h2>
724
            <h3>jQuery treetable Plugin</h3>
722
725
723
            <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>
726
            <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>
724
727
725
            <h2>OpenJS Keyboard Shortcuts Library</h2>
728
            <h3>OpenJS Keyboard Shortcuts Library</h3>
726
729
727
            <p>The <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJS keyboard shortcuts library</a>
730
            <p>The <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJS keyboard shortcuts library</a>
728
               by Binny V A is licensed under the BSD license.</p>
731
               by Binny V A is licensed under the BSD license.</p>
729
732
730
            <h2>jquery.dataTables.grouping.js</h2>
733
            <h3>jquery.dataTables.grouping.js</h3>
731
            <p>The <a href="https://code.google.com/p/jquery-datatables-row-grouping/">jquery.dataTables.grouping.js</a>
734
            <p>The <a href="https://code.google.com/p/jquery-datatables-row-grouping/">jquery.dataTables.grouping.js</a>
732
               plugin by Jovan Popovic is licensed under the BSD and GPL v2 license.</p>
735
               plugin by Jovan Popovic is licensed under the BSD and GPL v2 license.</p>
733
736
734
            <h2>jQuery Colvis plugin</h2>
737
            <h3>jQuery Colvis plugin</h3>
735
            <p>The <a href="http://datatables.net/extensions/colvis/">controls for column visiblity in DataTables</a>
738
            <p>The <a href="http://datatables.net/extensions/colvis/">controls for column visiblity in DataTables</a>
736
                by Allan Jardine is licensed under the BSD 3 and GPL v2 license.</p>
739
                by Allan Jardine is licensed under the BSD 3 and GPL v2 license.</p>
737
740
738
            <h2>jquery.multiple.select.js</h2>
741
            <h3>jquery.multiple.select.js</h3>
739
            <p>The <a href="http://wenzhixin.net.cn/p/multiple-select/">jQuery multiple select plugin</a>
742
            <p>The <a href="http://wenzhixin.net.cn/p/multiple-select/">jQuery multiple select plugin</a>
740
               by Zhixin Wen is licensed under the MIT license.</p>
743
               by Zhixin Wen is licensed under the MIT license.</p>
741
744
742
            <h2>Javascript Diff Algorithm</h2>
745
            <h3>Javascript Diff Algorithm</h3>
743
            <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>
746
            <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>
744
747
745
            <h2>jQuery Validation Plugin</h2>
748
            <h3>jQuery Validation Plugin</h3>
746
            <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>
749
            <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>
747
750
748
            <h2>TinyMCE WYSIWYG editor</h2>
751
            <h3>TinyMCE WYSIWYG editor</h3>
749
            <p>The <a href="http://www.tinymce.com/">TinyMCE WYSIWYG editor v5.0.16 </a> by Moxiecode (Ephox) is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt">LGPL v2.1</a>.</p>
752
            <p>The <a href="http://www.tinymce.com/">TinyMCE WYSIWYG editor v5.0.16 </a> by Moxiecode (Ephox) is licensed under the <a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt">LGPL v2.1</a>.</p>
750
753
751
            <h2>Font Awesome</h2>
754
            <h3>Font Awesome</h3>
752
            <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>
755
            <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>
753
756
754
            <h2>CodeMirror editing library</h2>
757
            <h3>CodeMirror editing library</h3>
755
            <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>
758
            <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>
756
759
757
            <h2>FileSaver library</h2>
760
            <h3>FileSaver library</h3>
758
            <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>
761
            <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>
759
762
760
            <h2>Require.js JS module system</h2>
763
            <h3>Require.js JS module system</h3>
761
            <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>
764
            <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>
762
765
763
            <h2>OAI xslt stylesheet</h2>
766
            <h3>OAI xslt stylesheet</h3>
764
            <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>
767
            <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>
765
768
766
            <h2>OpenAPI 2.0 schema</h2>
769
            <h3>OpenAPI 3.0 schema</h3>
767
            <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>
770
            <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>
768
771
769
            <h2>Select2</h2>
772
            <h3>Select3</h3>
770
            <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>
773
            <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>
771
774
772
            <h2>jquery.tablednd.js</h2>
775
            <h3>jquery.tablednd.js</h3>
773
            <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>
776
            <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>
774
777
775
            <h2>Leaflet</h2>
778
            <h3>Leaflet</h3>
776
            <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>
779
            <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>
777
780
778
            <h2>jquery.emojiarea.js</h2>
781
            <h3>jquery.emojiarea.js</h3>
779
            <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>
782
            <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>
780
783
781
            <h2>JSZip</h2>
784
            <h3>JSZip</h3>
782
            <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>
785
            <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>
783
786
784
            <h2>D3.js</h2>
787
            <h3>D3.js</h3>
785
            <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>
788
            <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>
786
789
787
            <h2>C3.js</h2>
790
            <h3>C3.js</h3>
788
            <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>
791
            <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>
789
792
790
            <h2>Font Face Observer</h2>
793
            <h3>Font Face Observer</h3>
791
            <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>
794
            <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>
792
795
793
            <h2>Noto fonts</h2>
796
            <h3>Noto fonts</h3>
794
            <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>
797
            <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>
795
798
796
            <h2>HC Sticky</h2>
799
            <h3>HC Sticky</h3>
797
            <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>
800
            <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>
798
801
799
            <h2>kjua</h2>
802
            <h3>kjua</h3>
800
            <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>
803
            <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>
801
804
802
            <h2>Verovio</h2>
805
            <h3>Verovio</h3>
803
            <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>
806
            <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>
804
807
805
            <h2>jquery.cookie</h2>
808
            <h3>jquery.cookie</h3>
806
            <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>
809
            <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>
807
810
808
            <h2>JavaScript Cookie</h2>
811
            <h3>JavaScript Cookie</h3>
809
            <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>
812
            <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>
810
813
811
            <h2>Moment.js</h2>
814
            <h3>Moment.js</h3>
812
            <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>
815
            <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>
813
816
814
            <h2>Chocolat.js</h2>
817
            <h3>Chocolat.js</h3>
815
            <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>
818
            <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>
816
819
817
        </div>
820
        </div>
818
- 

Return to bug 27741