Bug 7143: New developers
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / about.tt
index 326d83f..0163c5b 100644 (file)
 
     <div id="abouttabs" class="toptabs numbered">
         <ul>
-        <li><a href="#about">Server Information</a></li>
+        <li><a href="#about">Server information</a></li>
         <li><a href="#perl">Perl modules</a></li>
         <li><a href="#sysinfo">System information</a></li>
-        <li><a href="#team">Koha Team</a></li>
+        <li><a href="#team">Koha team</a></li>
         <li><a href="#licenses">Licenses</a></li>
         <li><a href="#translations">Translations</a></li>
-        <li><a href="#history">Koha Timeline</a></li>
+        <li><a href="#history">Timeline</a></li>
         </ul>
 
         <div id="about">
@@ -83,7 +83,9 @@
                     <th scope="row" style="background-color:#FF8A8A;font-weight:normal" title="Optional module missing">
                     [% END %]
                     [% END %]
-                    [% ro.name %]
+                    [% IF ( ro.name ) %]
+                    [% ro.name %] <span style="font-weight:normal; font-size:smaller"> ([%ro.reqversion %])</span>
+                    [% END %]
                     </th>
                     [% IF ( ro.name == '' ) %]
                     <td>
         </div>
 
         <div id="sysinfo">
+    [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatron ||
+          warnNoActiveCurrency || QueryParserError || warnIsRootUser || xml_config_warnings.size %]
         [% IF (warnIsRootUser) %]
             <h2>Warning regarding current user</h2>
             <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>
             <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>
         [% END %]
+
+        [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatron ||
+              warnNoActiveCurrency || QueryParserError %]
             <h2>Warnings regarding the system configuration</h2>
-        [% IF ( (prefNoZebra) || (warnPrefBiblioAddsAuthorities) || warnPrefEasyAnalyticalRecords ) %]
-        <table>
-            <caption>Preferences</caption>
-            [% IF (prefNoZebra) %]
-            <tr><th scope="row"><b>Warning</b> </th><td>System preference 'nozebra' set. Deprectated!</td></tr>
-            [% END %]
-            [% IF (warnPrefBiblioAddsAuthorities) %]
-            <tr><th scope="row"><b>Warning</b> </th><td>System preference 'AutoCreateAuthorities' set, but needs 'BiblioAddsAuthorities' set as well.</td></tr>
-            [% END %]
-            [% IF (warnPrefEasyAnalyticalRecords) %]
-            <tr><th scope="row"><b>Warning</b> </th><td>System preference 'EasyAnalyticalRecords' set, but UseControlNumber preference is set to 'Use'. Set it to 'Don't use' or else the 'Show analytics' links in the staff client and the OPAC will be broken.</td></tr>
+            <table>
+                <caption>Preferences and parameters</caption>
+                [% IF (warnPrefBiblioAddsAuthorities) %]
+                <tr><th scope="row"><b>Warning</b> </th><td>System preference 'AutoCreateAuthorities' set, but needs 'BiblioAddsAuthorities' set as well.</td></tr>
+                [% END %]
+                [% IF (warnPrefEasyAnalyticalRecords) %]
+                <tr><th scope="row"><b>Warning</b> </th><td>System preference 'EasyAnalyticalRecords' set, but UseControlNumber preference is set to 'Use'. Set it to 'Don't use' or else the 'Show analytics' links in the staff client and the OPAC will be broken.</td></tr>
+                [% END %]
+                [% IF warnPrefAnonymousPatron %]
+                    <tr><th scope="row"><b>Warning</b> </th><td>System preference 'OPACPrivacy' set, but AnonymousPatron preference is set to '0'. Set it to a valid borrower number if you want that this feature works correctly.</td></tr>
+                [% END %]
+                [% IF warnNoActiveCurrency %]
+                    <tr><th scope="row"><b>Warning</b> </th><td>No active currency is defined. Please go to <a href="/cgi-bin/koha/admin/currency.pl">Administration &gt; Currencies and exchange rates</a> and mark one currency as active.</td></tr>
+                [% END %]
+                [% IF QueryParserError %]
+                    <tr><th scope="row"><b>Warning</b> </th><td>
+                        You have set UseQueryParser but there was a problem inititializing QueryParser.
+                    [% IF QueryParserError.fallback %]
+                        The 'queryparser_config' entry is missing in your configuration file.
+                        <strong>[% QueryParserError.file %]</strong> was used instead without success.
+                    [% ELSE %]
+                        The following configuration file was used without success: <strong>[% QueryParserError.file %]</strong>.
+                    [% END %]
+                        </td>
+                    </tr>
+                [% END %]
+            </table>
+        [% END %]
+
+        [% IF xml_config_warnings.size %]
+            <table>
+                <caption>XML configuration file</caption>
+            [% FOREACH config_entry IN xml_config_warnings %]
+                [% IF config_entry.error == 'zebra_bib_index_mode_warn' %]
+                <tr>
+                    <th scope="row"><b>Warning</b></th>
+                    <td>The &lt;zebra_bib_index_mode&gt; entry is missing in your configuration file.
+                        It should be set to <strong>dom</strong> or <strong>grs1</strong> (deprecated).
+                        It will default to <strong>dom</strong>.
+                    </td>
+                </tr>
+                [% ELSIF config_entry.error == 'zebra_bib_mode_seems_grs1' %]
+                <tr>
+                    <th scope="row"><b>Info</b></th>
+                    <td>Your configuration file still seems to be set up for <strong>grs1</strong>.</td>
+                </tr>
+                [% ELSIF config_entry.error == 'zebra_bib_mode_seems_dom' %]
+                <tr>
+                    <th scope="row"><b>Info</b></th>
+                    <td>Your configuration file seems to be set up for <strong>dom</strong>.</td>
+                </tr>
+                [% ELSIF config_entry.error == 'zebra_auth_index_mode_warn' %]
+                <tr>
+                    <th scope="row"><b>Warning</b></th>
+                    <td>The &lt;zebra_auth_index_mode&gt; entry is missing in your configuration file.
+                        It should be set to <strong>dom</strong> or <strong>grs1</strong> (deprecated).
+                        It will default to <strong>dom</strong>.
+                    </td>
+                </tr>
+                [% ELSIF config_entry.error == 'zebra_auth_mode_seems_grs1' %]
+                <tr>
+                    <th scope="row"><b>Info</b></th>
+                    <td>Your configuration file still seems to be set up for <strong>grs1</strong>.</td>
+                </tr>
+                [% ELSIF config_entry.error == 'zebra_auth_mode_seems_dom' %]
+                <tr>
+                    <th scope="row"><b>Info</b></th>
+                    <td>Your configuration file seems to be set up for <strong>dom</strong>.</td>
+                </tr>
+                [% ELSIF config_entry.error == 'zebra_bib_grs_warn' %]
+                <tr>
+                    <th scope="row"><b>Warning</b></th>
+                    <td>The &lt;zebra_bib_index_mode&gt; entry is set to <strong>grs1</strong>.
+                        GRS-1 support is now deprecated and will be removed in future releases.
+                        Please use DOM instead by setting &lt;zebra_bib_index_mode&gt; to
+                        <strong>dom</strong> (full reindex required).
+                    </td>
+                </tr>
+                [% ELSIF config_entry.error == 'zebra_bib_index_mode_mismatch_warn' %]
+                <tr>
+                    <th scope="row"><b>Warning</b></th>
+                    <td>The &lt;zebra_bib_index_mode&gt; entry is set to <strong>dom</strong>, but your system still appears to be set up for <strong>grs1</strong> indexing.</td>
+                </tr>
+                [% ELSIF config_entry.error == 'zebra_auth_grs_warn' %]
+                <tr>
+                    <th scope="row"><b>Warning</b></th>
+                    <td>The &lt;zebra_auth_index_mode&gt; entry is set to <strong>grs1</strong>.
+                        GRS-1 support is now deprecated and will be removed in future releases.
+                        Please use DOM instead by setting &lt;zebra_auth_index_mode&gt; to
+                        <strong>dom</strong> (full reindex required).
+                    </td>
+                </tr>
+                [% ELSIF config_entry.error == 'zebra_auth_index_mode_mismatch_warn' %]
+                <tr>
+                    <th scope="row"><b>Warning</b></th>
+                    <td>The &lt;zebra_auth_index_mode&gt; entry is set to <strong>dom</strong>, but your system still appears to be set up for <strong>grs1</strong> indexing.</td>
+                </tr>
+                [% ELSIF config_entry.error == 'queryparser_entry_missing' %]
+                <tr>
+                    <th scope="row"><b>Warning</b></th>
+                    <td>You have set UseQueryParser but the 'queryparser_config' entry is missing in your configuration
+                        file. <strong>[% config_entry.file %]</strong> is used as a fallback.
+                    </td>
+                </tr>
+                [% ELSIF config_entry.error == 'use_zebra_facets_entry_missing' %]
+                <tr>
+                    <th scope="row"><b>Warning</b></th>
+                    <td>The &lt;use_zebra_facets&gt; entry is missing in your configuration file. Falling back
+                        to legacy facet calculation.
+                    </td>
+                </tr>
+                [% ELSIF config_entry.error == 'use_zebra_facets_needs_dom' %]
+                <tr>
+                    <th scope="row"><b>Warning</b></th>
+                    <td>You have set &lt;use_zebra_facets&gt; but the &lt;zebra_bib_index_mode&gt; is not set to <strong>dom</strong>. Falling back
+                        to legacy facet calculation.
+                    </td>
+                </tr>
+                [% ELSIF config_entry.error == 'log4perl_entry_missing' %]
+                <tr>
+                    <th scope="row"><b>Warning</b></th>
+                    <td>You are missing the &lt;log4perl_conf&gt; entry in your koha-conf.xml file. Please
+                        add it, pointing to the log4perl.conf file for your Koha instance.
+                    </td>
+                </tr>
+                [% END %]
             [% END %]
-        </table>
-        [% ELSE %]
-            <p>No warnings</p>
+            </table>
         [% END %]
+    [% ELSE %]
+        <p>No warnings.</p>
+    [% END %]
         </div>
 
         <div id="team">
             <h2>Special thanks to the following organizations</h2>
             <ul>
                 <li><a href="http://library.org.nz">Horowhenua Library Trust</a>, New Zealand, and Rosalie Blake, Head of Libraries, (Koha 1.0)</li>
-                <li>The <a href="http://myacpl.org">Nelsonville Public Library System</a>, Ohio, USA (MARC sponsorship, documentation, template maintenance)</li>
+                <li>The <a href="http://www.myacpl.org/">Athens County Public Libraries</a>, Ohio, USA (MARC sponsorship, documentation, template maintenance)</li>
                 <li><a href="http://www.emn.fr">EMN (Ecole des Mines de Nantes)</a>, France (Suggestions, Stats wizards and improved LDAP sponsorship)</li>
                 <li><a href="http://www.mines-paristech.fr">Mines Paristech (previously Ecole Nationale Supérieure des Mines de Paris)</a>, France (biblio frameworks, MARC authorities, OPAC basket, Serials sponsorship)</li>
                 <li><a href="http://www.mediathequeouestprovence.fr/">SAN-Ouest Provence</a>, France (Koha 3.0 enhancements to patrons and holds modules)</li>
                 <li><a href="http://www.ashs.school.nz/">Albany Senior High School</a>, Auckland, New Zealand (OPAC 'star-ratings' sponsorship)</li>
             </ul>
 
-            <h2>Release team for Koha 3.12</h2>
+            <h2>Koha 3.22 release team</h2>
             <ul>
-               <li>D Ruth Bavousett (Translation Manager)</li>
-               <li>Jared Camins-Esakov (Release Manager)</li>
-               <li><a href="https://www.ohloh.net/p/koha/contributors/6618544609030">Chris Cormack</a> (3.8, 3.10 Release Maintainer)</li>
-               <li><a href="https://www.ohloh.net/p/koha/contributors/6618544646984">Nicole C. Engard</a> (Documentation Manager)</li>
-               <li>Katrin Fischer (QA Manager)</li>
-               <li>Liz Rea (3.6 Release Maintainer)</li>
+                <li><strong>Release manager:</strong>
+                    <a href="https://www.openhub.net/p/koha/contributors/6618544730094">Tomás Cohen Arazi</a></li>
+                <li><strong>Quality assurance manager:</strong>
+                    <a href="https://www.openhub.net/p/koha/contributors/6618544670742">Katrin Fischer</a></li>
+                <li><strong>(Database) Documentation manager:</strong>
+                    <a href="https://www.openhub.net/p/koha/contributors/6618544646984">Nicole C. Engard</a></li>
+                <li><strong>Translation manager:</strong>
+                    <a href="https://www.openhub.net/p/koha/contributors/6618544839606">Bernardo González Kriegel</a></li>
+                <li><strong>Quality assurance team:</strong>
+                    <ul>
+                        <li><a href="https://www.openhub.net/p/koha/contributors/6618545125093">Jonathan Druart</a></li>
+                        <li><a href="https://www.openhub.net/p/koha/contributors/6618544661344">Brendan Gallagher</a></li>
+                        <li><a href="https://www.openhub.net/p/koha/contributors/6620692261494">Kyle Hall</a></li>
+                        <li><a href="https://www.openhub.net/p/koha/contributors/6618544612249">Paul Poulain</a></li>
+                        <li><a href="https://www.openhub.net/p/koha/contributors/6618544785220">Martin Renvoize</a></li>
+                        <li><a href="https://www.openhub.net/p/koha/contributors/6618544727712">Marcel de Rooy</a></li>
+                    </ul>
+                </li>
+                <li><strong>Release maintainers:</strong>
+                    <ul>
+                        <li><a href="https://www.openhub.net/p/koha/contributors/6618544609030">Chris Cormack</a> (3.20)</li>
+                        <li><a href="https://www.openhub.net/p/koha/contributors/6618544650708">Liz Rea</a> (3.18)</li>
+                        <li><a href="https://www.openhub.net/p/koha/contributors/6618544618401">Mason James</a> (3.16)</li>
+                        <li><a href="https://www.openhub.net/p/koha/contributors/6620692831733">Fridolin Somers</a> (3.14)</li>
+                    </ul>
+                </li>
+                <li><strong>Packaging manager:</strong>
+                    <a href="https://www.openhub.net/p/koha/contributors/6618544619438">Robin Sheat</a>
+                </li>
+                <li><strong>Bug wranglers:</strong>
+                    <ul>
+                        <li>Indranil Das Gupta</li>
+                        <li><a href="https://www.openhub.net/p/koha/contributors/6618544677502">Magnus Enger</a></li>
+                        <li>Amit Gupta</li>
+                        <li>Eivin Giske Skaaren</li>
+                        <li>Zeno Tajoli</li>
+                        <li>Mirko Tietgen</li>
+                    </ul>
+                </li>
             </ul>
 
-            <h2>Former Koha release team members</h2>
-            <ul>
-               <li>Jared Camins-Esakov (3.6 Release Maintainer)</li>
-               <li>Colin Campbell (3.4 QA Manager)</li>
-               <li><a href="https://www.ohloh.net/p/koha/contributors/6618544614260">Galen Charlton</a> (3.2 Release Manager)</li>
-               <li><a href="https://www.ohloh.net/p/koha/contributors/6618544609030">Chris Cormack</a> (1.x, 3.4, 3.6 Release Manager, 3.2 Translation Manager, 3.8 Release Maintainer)</li>
-               <li><a href="https://www.ohloh.net/p/koha/contributors/6620692210484">Frédéric Demians</a> (3.4, 3.6, 3.8, 3.10 Translation Manager)</li>
-               <li><a href="https://www.ohloh.net/p/koha/contributors/6618544646984">Nicole C. Engard</a> (3.x Documentation Manager)</li>
-               <li><a href="https://www.ohloh.net/p/koha/contributors/6618544609053">Joshua Ferraro</a> (3.0 Release Manager &amp; Translation Manager)</li>
-               <li>Rachel Hamilton-Williams (Kaitiaki from 2004 to present)</li>
-               <li><a href="https://www.ohloh.net/p/koha/contributors/6618544614275">Henri-Damien Laurent</a> (3.0 Release Maintainer)</li>
-               <li><a href="https://www.ohloh.net/p/koha/contributors/6618544609147">Owen Leonard</a> (3.x Interface Design)</li>
-               <li><a href="https://www.ohloh.net/p/koha/contributors/6618544615991">Chris Nighswonger</a> (3.2, 3.4, 3.6 Release Maintainer)</li>
-               <li><a href="https://www.ohloh.net/p/koha/contributors/6618544612249">Paul Poulain</a> (2.0 Release Manager, 2.2 Release Manager/Maintainer, 3.8, 3.10 Release Manager)</li>
-               <li><a href="http://www.ohloh.net/p/koha/contributors/6620692116417">MJ Ray</a> (2.0 Release Maintainer)</li>
-                <li>Ian Walls (3.6, 3.8, 3.10 QA Manager)</li>
-                </ul>
-
             <h2>Koha development team</h2>
             <ul>
+                <li>Jacek Ablewicz</li>
                 <li>Md. Aftabuddin</li>
                 <li>Jon Aker</li>
                 <li>Edward Allen</li>
                 <li>Francisco M. Marzoa Alonso</li>
                 <li>Joseph Alway</li>
                 <li>Cindy Murdock Ames</li>
+                <li>Aleisha Amohia</li>
+                <li>Roman Amor</li>
                 <li>Richard Anderson</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6620692181851">Nahuel Angelinetti</a></li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6620692181851">Nahuel Angelinetti</a></li>
                 <li>Nuño López Ansótegui</li>
-                <li>Tomás Cohen Arazi</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6620692124662">Andrew Arensburger (the small and great C4::Context module)</a></li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544730094">Tomás Cohen Arazi (3.18 and 3.20 Release Manager; 3.12 Release Maintainer)</a></li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6620692124662">Andrew Arensburger (the small and great C4::Context module)</a></li>
                 <li>Alex Arnaud</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6618544614259">Joe Atzberger</a></li>
+                <li>Petter Goksoyr Asen</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544614259">Joe Atzberger</a></li>
+                <li>Héctor Eduardo Castro Avalos</li>
                 <li>Larry Baerveldt</li>
+                <li>Marc Balmer</li>
+                <li>Edmund Balnaves</li>
                 <li>Al Banks</li>
                 <li>Daniel Banzli</li>
+                <li>Stefano Bargioni</li>
+                <li>Daniel Barker</li>
                 <li>Greg Barniskis</li>
                 <li>Benedykt P. Barszcz (Polish for 2.0)</li>
-                <li>D Ruth Bavousett</li>
+                <li>D Ruth Bavousett (3.12 Translation Manager)</li>
+                <li>Maxime Beaulieu</li>
+                <li>Natalie Bennison</li>
                 <li>John Beppu</li>
+                <li>Pablo Bianchi</li>
                 <li>David Birmingham</li>
                 <li>Florian Bischof</li>
                 <li>Gaetan Boisson</li>
                 <li>Danny Bouman</li>
+                <li>Christopher Brannon (3.20 QA Team Member)</li>
                 <li>Stan Brinkerhoff</li>
+                <li>Isaac Brodsky</li>
                 <li>Ivan Brown</li>
                 <li>Roger Buck</li>
                 <li>Steven Callender</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6620692376789">Jared Camins-Esakov</a></li>
-                <li>Colin Campbell</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6620692376789">Jared Camins-Esakov (3.12 Release Manager; 3.6 Release Maintainer)</a></li>
+                <li>Colin Campbell (3.4 QA Manager)</li>
                 <li>Fernando Canizo</li>
+                <li>Barry Cannon</li>
                 <li>Frédérick Capovilla</li>
                 <li>DeAndre Carroll</li>
                 <li>Chris Catalfo (new plugin MARC editor)</li>
                 <li>Marc Chantreux</li>
                 <li>Jerome Charaoui</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544614260">Galen Charlton (3.2, 3.14, and 3.16 Release Manager; 3.16 Release Maintainer; 3.18 QA Team Member)</a></li>
+                <li>Evonne Cheung</li>
                 <li>Andrew Chilton</li>
+                <li>Barton Chittenden</li>
+                <li>Koha SAB CINECA</li>
+                <li>Nick Clemens</li>
                 <li>Garry Collum</li>
                 <li>David Cook</li>
                 <li>John Copeland</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544609030">Chris Cormack (1.x, 3.4, and 3.6 Release Manager; 3.8, 3.10 and 3.18 Release Maintainer; 3.2 Translation Manager; 3.14 QA Team Member)</a></li>
                 <li>Jeremy Crabtree</li>
+                <li>Samuel Crosby</li>
                 <li>Christophe Croullebois</li>
+                <li>Olivier Crouzet</li>
                 <li>Nate Curulla</li>
                 <li>Vincent Danjean</li>
                 <li>Hugh Davenport</li>
-                <li>Elliott Davis</li>
+                <li>Elliott Davis (3.12 QA Team Member)</li>
                 <li>Doug Dearden</li>
                 <li>Kip DeGraaf</li>
                 <li>Stéphane Delaune</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6620692210484">Frédéric Demians (3.4 - 3.10 Translation Manager)</a></li>
                 <li>Connor Dewar</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6620692210484">Frédéric Demians</a></li>
-                <li>Jonathan Druart</li>
+                <li>Srikanth Dhondi</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618545125093">Jonathan Druart (3.8 - 3.20 QA Team Member)</a></li>
                 <li>Serhij Dubyk</li>
+                <li>Yohann Dufour</li>
                 <li>Thomas Dukleth (MARC Frameworks Maintenance)</li>
                 <li>Frederic Durand</li>
                 <li>Sebastiaan Durand</li>
+                <li>Rachel Dustin</li>
                 <li>Ecole des Mines de Saint Etienne, Philippe Jaillon (OAI-PMH support)</li>
                 <li>Stephen Edwards</li>
                 <li>Andrew Elwell</li>
                 <li>Brian Engard</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6618544677502">Magnus Enger</a></li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544646984">Nicole C. Engard (3.0+ Documentation Manager)</a></li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544677502">Magnus Enger</a></li>
                 <li>Esiee School (Jérome Vizcaino, Michel Lerenard, Pierre Cauchois)</li>
+                <li>Jason Etheridge</li>
                 <li>Shaun Evans</li>
                 <li>Pat Eyler (Kaitiaki from 2002 to 2004)</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6618544609865">Antoine Farnault</a></li>
+                <li>Charles Farmer</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544609865">Antoine Farnault</a></li>
                 <li>Vitor Fernandes</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6618544670742">Katrin Fischer</a></li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544609053">Joshua Ferraro (3.0 Release Manager and Translation Manager)</a></li>
+                <li>Julian Fiol</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544670742">Katrin Fischer (3.12 - 3.20 QA Manager)</a></li>
+                <li>Connor Fraser</li>
                 <li>Clay Fouts</li>
+                <li>Brendon Ford</li>
                 <li>Claudia Forsman</li>
                 <li>Corey Fuimaono</li>
                 <li>Marco Gaiarin</li>
                 <li>Pierrick Le Gall</li>
-                <li>Brendan A. Gallagher</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544661344">Brendan A. Gallagher (3.14 - 3.20 QA Team Member)</a></li>
                 <li>Tumer Garip</li>
                 <li>Russel Garlick</li>
                 <li>Mark Gavillet</li>
                 <li>Daniel Kahn Gillmor</li>
                 <li>David Goldfein</li>
-                <li>Bernardo Gonzalez Kriegel</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544839606">Bernardo González Kriegel (3.14 - 3.20 Translation Manager; 3.10 Release Maintainer)</a></li>
                 <li>Daniel Grobani</li>
                 <li>Amit Gupta</li>
+                <li>Indranil Das Gupta</li>
                 <li>Michael Hafen</li>
-                <li>Christopher Hall</li>
+                <li>Christopher Hall (3.8 Release Maintainer)</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6620692261494">Kyle Hall (3.8 Release Maintainer; 3.14 - 3.20 QA Team Member)</a></li>
+                <li>Sean Hamlin</li>
+                <li>Tim Hannah</li>
                 <li>Mike Hansen</li>
                 <li>Brian Harrington</li>
+                <li>Brandon Haveman</li>
+                <li>Rochelle Healy</li>
+                <li>Emma Heath</li>
                 <li>Friedrich zur Hellen</li>
+                <li>Kate Henderson</li>
                 <li>Michaes Herman</li>
                 <li>Claire Hernandez</li>
                 <li>Wolfgang Heymans</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6618544614261">Ryan Higgins</a></li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544614261">Ryan Higgins</a></li>
+                <li>Morag Hills</li>
                 <li>Sèbastien Hinderer</li>
+                <li>Kristina D.C. Hoeppner</li>
                 <li>Stephanie Hogan</li>
                 <li>Daniel Holth</li>
                 <li>Andrew Hooper</li>
+                <li>Alexandra Horsman</li>
+                <li>Tom Houlker</li>
                 <li>Matthew Hunt</li>
                 <li>Christopher Hyde</li>
+                <li>Rolando Isidoro</li>
                 <li>Cory Jaeger</li>
                 <li>Srdjan Jankovic</li>
                 <li>Philippe Jaillon</li>
-                <li><a href="https://www.ohloh.net/accounts/kohaaloha">Mason James</a></li>
+                <li><a href="https://www.openhub.net/accounts/kohaaloha">Mason James (3.10 - 3.14 QA Team Member, 3.16 Release Maintainer)</a></li>
                 <li>Mike Johnson</li>
                 <li>Donovan Jones</li>
+                <li>Bart Jorgensen</li>
                 <li>Janusz Kaczmarek</li>
                 <li>Koustubha Kale</li>
+                <li>Pasi Kallinen</li>
+                <li>Peter Crellan Kelly</li>
+                <li>Jorgia Kelsey</li>
+                <li>Attila Kinali</li>
                 <li>Ulrich Kleiber</li>
+                <li>Rafal Kopaczka</li>
                 <li>Piotr Kowalski</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544614275">Henri-Damien Laurent (3.0 Release Maintainer)</a></li>
                 <li>Arnaud Laurin</li>
+                <li>Nicolas Legrand</li>
+                <li>Sonia Lemaire</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544609147">Owen Leonard (3.0+ Interface Design)</a></li>
                 <li>Ambrose Li (translation tool)</li>
                 <li>Gynn Lomax</li>
+                <li>Peter Lorimer</li>
                 <li>Robert Lyon (Corporate Serials)</li>
+                <li>Merllisia Manueli</li>
                 <li>Francois Marier</li>
                 <li>Jesse Maseto</li>
                 <li>Frère Sébastien Marie</li>
                 <li>Ricardo Dias Marques</li>
-                <li>Julian Maurice</li>
+                <li>Julian Maurice (3.18 QA Team Member)</li>
                 <li>Brig C. McCoy</li>
                 <li>Dorian Meid (German translation)</li>
                 <li>Meenakshi. R</li>
                 <li>Melia Meggs</li>
+                <li>Holger Meißner</li>
+                <li>Karl Menzies</li>
                 <li>Matthias Meusburger</li>
                 <li>Sophie Meynieux</li>
+                <li>Janet McGowan</li>
                 <li>Alan Millar</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6618544607803">Andrew Moore</a></li>
+                <li>Jono Mingard</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544607803">Andrew Moore</a></li>
+                <li>Francesca Moore</li>
+                <li>Josef Moravec</li>
                 <li>Sharon Moreland</li>
                 <li>Nicolas Morin</li>
                 <li>Mike Mylonas</li>
                 <li>Nadia Nicolaides</li>
                 <li>Joy Nelson</li>
-                <li><a href="https://www.ohloh.net/accounts/cnighswonger">Chris Nighswonger</a></li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544615991">Chris Nighswonger (3.2 - 3.6 Release Maintainer)</a></li>
+                <li>Brian Norris</li>
                 <li>Albert Oller</li>
                 <li>Eric Olsen</li>
                 <li>H. Passini</li>
                 <li>Dobrica Pavlinusic</li>
                 <li>Maxime Pelletier</li>
-                <li>Polytechnic University</li>
                 <li>Shari Perkins</li>
+                <li>Fred Pierre</li>
+                <li>Polytechnic University</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544612249">Paul Poulain (2.0, 2.2, 3.8, 3.10 Release Manager; 2.2 Release Maintainer; 3.12 - 3.20 QA Team Member)</a></li>
+                <li>Karam Qubsi</li>
                 <li>Romina Racca</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6620692116417">MJ Ray</a></li>
-                <li>Liz Rea</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6620692116417">MJ Ray (2.0 Release Maintainer)</a></li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544650708">Liz Rea</a> (3.6 Release Maintainer)</li>
                 <li>Thatcher Rea</li>
                 <li>Allen Reinmeyer</li>
                 <li>Serge Renaux</li>
-                <li>Martin Renvoize</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544785220">Martin Renvoize (3.16 - 3.20 QA Team Member)</a></li>
+                <li>Abby Robertson</li>
                 <li>Waylon Robertson</li>
-                <li>Marcel de Rooy</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544727712">Marcel de Rooy (3.8 - 3.20 QA Team Member)</a></li>
                 <li>Salvador Zaragoza Rubio</li>
                 <li>Mathieu Saby</li>
+                <li>Eivin Giske Skaaren</li>
                 <li>Brice Sanchez</li>
                 <li>Sam Sanders</li>
+                <li>Viktor Sarge</li>
+                <li>A. Sassmannshausen</li>
                 <li>Adrien Saurat</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6618544619438">Robin Sheat</a></li>
+                <li>Dan Scott</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544619438">Robin Sheat (3.2+ Packaging Manager)</a></li>
+                <li>Juhani Seppälä</li>
                 <li>John Seymour</li>
                 <li>Juan Romay Sieira</li>
                 <li>Zach Sim</li>
+                <li>Simith</li>
+                <li>Silvia Simonetti</li>
                 <li>Savitra Sirohi</li>
                 <li>Pawel Skuza (Polish for 1.2)</li>
-                <li>Fridolyn Somers</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6620692831733">Fridolin Somers (3.14 Release Maintainer)</a></li>
                 <li>Southeastern University</li>
                 <li>Glen Stewart</li>
                 <li>Will Stokes</li>
                 <li>Ed Summers (Some code and Perl packages like MARC::Record)</li>
                 <li>Daniel Sweeney</li>
                 <li>Zeno Tajoli</li>
+                <li>Samanta Tello</li>
                 <li>Adam Thick</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6618544609107">Finlay Thompson</a></li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6618544609107">Finlay Thompson</a></li>
+                <li>Peggy Thrasher</li>
                 <li>Fabio Tiana</li>
-        <li>Mirko Tietgen</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6620692101577">Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)</a></li>
+                <li>Mirko Tietgen</li>
+                <li>Mark Tompsett</li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6620692101577">Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)</a></li>
                 <li>Bruno Toumi</li>
                 <li>Andrei V. Toutoukine</li>
+                <li>Duncan Tyler</li>
                 <li>Kathryn Tyree</li>
                 <li>Darrell Ulm</li>
                 <li>Universidad ORT Uruguay (Ernesto Silva, Andres Tarallo)</li>
                 <li>Marc Veron</li>
+                <li>Justin Vos</li>
                 <li>Aleksa Vujicic</li>
                 <li>Reed Wade</li>
                 <li>Stacey Walker</li>
-                <li>Ian Walls</li>
-                <li><a href="http://www.ohloh.net/accounts/janewagner">Jane Wagner</a></li>
+                <li>Ian Walls (3.6 - 3.10 QA Manager)</li>
+                <li><a href="https://www.openhub.net/accounts/janewagner">Jane Wagner</a></li>
                 <li>Ward van Wanrooij</li>
-                <li><a href="https://www.ohloh.net/accounts/pianohacker">Jesse Weaver</a></li>
+                <li><a href="https://www.openhub.net/accounts/pianohacker">Jesse Weaver</a></li>
+                <li>Stefan Weil</li>
+                <li>Aaron Wells</li>
                 <li>Rick Welykochy</li>
                 <li>Piotr Wejman</li>
                 <li>Ron Wickersham</li>
                 <li>Brett Wilkins</li>
-                <li><a href="https://www.ohloh.net/p/koha/contributors/6620692127299">Olwen Williams (Database design and data extraction for Koha 1.0)</a></li>
+                <li><a href="https://www.openhub.net/p/koha/contributors/6620692127299">Olwen Williams (Database design and data extraction for Koha 1.0)</a></li>
                 <li>Robert Williams</li>
                 <li>James Winter</li>
                 <li>Lars Wirzenius</li>
+                <li>Thomas Wright</li>
+                <li>Jen Zajac</li>
+                <li>Kenza Zaki</li>
             </ul>
             <h3>Contributing companies and institutions</h3>
             <ul>
                 <li>ByWater Solutions, USA</li>
                 <li>Calyx, Australia</li>
                 <li>Catalyst IT, New Zealand</li>
+                <li>C &amp; P Bibliography Services, USA</li>
+                <li>Hochschule für Gesundheit (hsg), Germany</li>
                 <li>Katipo Communications, New Zealand</li>
+                <li>KEEP SOLUTIONS, Portugal</li>
                 <li>KohaAloha, New Zealand</li>
                 <li>LibLime, USA</li>
                 <li>Libriotech, Norway</li>
                 <li>Nelsonville Public Library, Ohio, USA</li>
+                <li>Prosentient Systems, Australia</li>
                 <li>PTFS, Maryland, USA</li>
                 <li>PTFS Europe Ltd, United Kingdom</li>
                 <li>Rijksmuseum, Amsterdam, The Netherlands</li>
                 <li>SAN-Ouest Provence, France</li>
-                <li>Software Coop, United Kingdom</li>
+                <li>software.coop, United Kingdom</li>
                 <li>Tamil, France</li>
+                <li>Universidad Nacional de Córdoba, Argentina</li>
                 <li>Xercode, Spain</li>
             </ul>
 
-            <h2>Additional Thanks To...</h2>
+            <h2>Additional thanks to...</h2>
             <ul>
+                <li>Irma Birchall</li>
+                <li>Rachel Hamilton-Williams (Kaitiaki from 2004 to present)</li>
+                <li>Stephen Hedges (early Documentation Manager)</li>
+                <li>Brooke Johnson</li>
                 <li>Jo Ransom</li>
-                <li>Nicholas Rosasco, (Documentation Compiler)</li>
+                <li>Nicholas Rosasco (Documentation Compiler)</li>
                 <li>Regula Sebastiao</li>
-                <li>Brooke Johnson</li>
-                <li>Stephen Hedges (early Documentation Manager)</li>
             </ul>
         </div>
 
         <div id="licenses">
             <h2>Koha</h2>
             <p>
-            <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.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 2 of the License, or (at your option) any later version.</a>
+            <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>
             </p>
+            <h2>jQuery and jQueryUI</h2>
+            <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>
+            <h2>Bootstrap</h2>
+            <p><a href="http://twitter.github.com/bootstrap/">Bootstrap</a> code and <a href="http://glyphicons.com">Glyphicons Free</a> licensed under <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License v2.0</a>.</p>
             <h2>YUI</h2>
             <p>
-            <a href="http://developer.yahoo.com/auth/license.txt">BSD License</a>
+            <a href="http://yuilibrary.com/license/">BSD License</a>
             </p>
             <h2>Famfamfam iconset</h2>
               <ul>
                   by the Bridge Consortium of Carleton College and St. Olaf College.</li>
               </ul>
 
-            <h2>The Sudoc Icon Set</h2>
-              <ul>
-                <li><a href="http://www.abes.fr/Sudoc/Boite-a-outils-Sudoc-public/Les-icones-Sudoc">Les icones Sudoc</a></li>
-                <li>The Sudoc Icon Set is licensed under a
-                  <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License</a>
-                  by Agence Bibliographique de l'Enseignement Supérieur</li>
-              </ul>
             <h2>The Noun Project icons</h2>
                 <ul>
                     <li>All images come from <a href="http://thenounproject.com/">The Noun Project</a> collection</li>
                         glass") symbol by Philipp Suess ; Lists ("folder") symbol by Jack
                         Biesek, Gladys Brenner, Margaret Faye, Healther Merrifield, Kate
                         Keating, Wendy Olmstead, Todd Pierce, Jamie Cowgill, Jim Bolek ;
+                        Course reserves ("stack of books") symbol by Jeremy J. Bristol;
                         Cataloging ("price tag") symbol by the Noun Project ; Authorities
                         ("link") symbol by Matthew Exton ; Serials ("newspaper") symbol by John
                         Caserta ; Acquisitions ("present") symbol by David Goodger ; Reports
 
             <p>Copyright &copy; 2008 <a href="http://www.fyneworks.com/">Fyneworks.com</a></p>
 
+            <h2>jQuery insertAtCaret Plugin</h2>
+            <p>jQuery insertAtCaret Plugin v1.0 by the phpMyAdmin devel team is licensed under the <a target="_blank" href="http://www.gnu.org/licenses/gpl.html">GPL License</a>.</p>
+
+            <p>Copyright &copy; 2003-2010 phpMyAdmin devel team</p>
+
+            <h2>jQuery treetable Plugin</h2>
+
+            <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>
+
+            <h2>OpenJS Keyboard Shortcuts Library</h2>
+
+            <p>The <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJS keyboard shortcuts library</a>
+               by Binny V A is licensed under the BSD license.</p>
+
+            <h2>jquery.dataTables.grouping.js</h2>
+            <p>The <a href="https://code.google.com/p/jquery-datatables-row-grouping/">jquery.dataTables.grouping.js</a>
+               plugin by Jovan Popovic is licensed under the BSD and GPL v2 license.</p>
+
+            <h2>jQuery Colvis plugin</h2>
+            <p>The <a href="http://datatables.net/extensions/colvis/">controls for column visiblity in DataTables</a>
+                by Allan Jardine is licensed under the BSD 3 and GPL v2 license.</p>
+
+            <h2>jquery.multiple.select.js</h2>
+            <p>The <a href="http://wenzhixin.net.cn/p/multiple-select/">jQuery multiple select plugin</a>
+               by Zhixin Wen is licensed under the MIT license.</p>
+
+            <h2>Javascript Diff Algorithm</h2>
+            <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>
+
+            <h2>jQuery Validation Plugin</h2>
+            <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>
+
         </div>
 
         <div id="translations">
             <h2>Translation</h2>
             <ul>
-<li>&#1575;&#1604;&#1593;&#1585;&#1576;&#1610;&#1577; (Arabic)</li>
+<li>العربية (Arabic) Version 3.2 to 3.4, 3.16 & 3.18 by KnowledgeWare Technologies; Versions 3.6 to 3.14 by Arabic Koha support team: Karam Qubsi, Kouider Bounama, Sham Bajaa, Ghofran Alshami, Chrestian Aboud, Fatema Salem and Duaa Bazzazi.
 <li>&#4768;&#4635;&#4653;&#4763; (Amharic) Getway II Ethiopia Co. (Yohannes Mulugeta (Team Leader), Tegene Assefa, Abiyot Bayou)</li>
 <li>Armenian Tigran Zargaryan</li>
 <li>&#1041;&#1098;&#1083;&#1075;&#1072;&#1088;&#1089;&#1082;&#1080; (Bulgarian) Radoslav Kolev</li>
-<li>euskara (Basque) Fernando Berrizbeitia, the librarians of Eima Katalogoa, and Nere Erkiaga</li>
+<li>euskara (Basque) Fernando Berrizbeitia, the librarians of Eima Katalogoa, Tabakalera International Contemporary Culture Centre, and Nere Erkiaga</li>
 <li>&#2476;&#2494;&#2434;&#2482;&#2494; (Bengali) Parthasarathi Mukhopadhyay</li>
 <li>&#20013;&#25991; (Chinese)</li>
 <li>Hrvatski (Croatian)</li>
 <li>Nederlands-Belgi&euml; (Dutch-Belgium)</li>
 <li>English</li>
 <li>suomi, suomen kieli (Finnish) Pasi Korkalo</li>
-<li>Fran&ccedil;ais (French) <a href="http://www.koha-fr.org/category/tags/association">Kohala</a>, Pascale Nalon (ENSMP), and many more </li>
+<li>Fran&ccedil;ais (French) <a href="http://www.koha-fr.org/content/lassociation-kohala">Kohala</a>, Pascale Nalon (ENSMP), and many more </li>
 <li>Galego (Galician) Ignacio Javier</li>
 <li>Deutsch (German) Friedrich zur Hellen, Robert Hillig, Katrin Fischer, Beda Szukics, Mirko Tietgen and Marc Véron</li>
 <li>&#949;&#955;&#955;&#951;&#957;&#953;&#954;&#940; (Greek, Modern [1453- ]) Georgia Katsarou, Panoraia Gaitanou and Kiriaki Roditi</li>
 <li>Magyar (Hungarian)Agnes Imecs</li>
 <li>Norsk Bokmål (Norwegian) Axel Bojer and Thomas Gramstad</li>
 <li>Norsk Nynorsk (Norwegian) Unni Knutsen and Marit Kristine Ådland</li>
-<li>ArmenianTigran Zargaryan</li>
 <li>(Indonesian)</li>
 <li>Italiano (Italian) for 3.2: Zeno Tajoli, Pietro Gozzetti and Paolo Pozzan; for 3.4 and more: Zeno Tajoli, Stefano Bargioni, Paolo Bizzarri</li>
 <li>&#26085;&#26412;&#35486; (Japanese)</li>
 <li>Portugu&ecirc;s (Portuguese)</li>
 <li>Rom&acirc;n&#259; (Romanian)</li>
 <li>&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081; (Russian) Victor Titarchuk and Serhij Dubyk</li>
-<li>Espa&ntilde;ol (Spanish) Alejandro Tiraboschi (UNC), Bernardo González Kriegel (UNC) and Martín Longo, with the help of the koha-es community.</li>
-<li>Espa&ntilde;ol (Spanish, Venezuela) Ailé Filippi </li>
+<li>Espa&ntilde;ol (Spanish) Bernardo González Kriegel, Héctor Castro and Tomás Cohen Arazi, with the help of the koha-es community.</li>
 <li>Svenska (Swedish)</li>
 <li>Tetun (Tetum) Karen Myers</li>
 <li>&#3616;&#3634;&#3625;&#3634;&#3652;&#3607;&#3618; (Thai)</li>
-<li>T&uuml;rk&ccedil;e (Turkish) Selma Aslan</li>
+<li>T&uuml;rk&ccedil;e (Turkish) pre-3.8: Selma Aslan; for 3.8+, Suleyman Demirel University (Ugur Bulgan, Onur Erdem, Kemal Caner Bayrakci, and Alper Tutunsatar)</li>
 <li>&#1575;&#1585;&#1583;&#1608;(Urdu) Ata ur Rehman</li>
 <li>&#1059;&#1082;&#1088;&#1072;&#1111;&#1085;&#1089;&#1100;&#1082;&#1072; (Ukrainian) Victor Titarchuk and Serhij Dubyk</li>
             </ul>
 
         <div id="history">
         <h2>Koha history timeline</h2>
+    [% IF ! timeline_read_error %]
         <table style="cursor:pointer">
         <thead>
         <tr>
             </tr>
         [% END %]
         </table>
+    [% ELSE %]
+        <div class="dialog alert">
+            Could not read the history.txt file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
+        </div>
+    [% END %]
         </div>
 
     </div>