Bug 21782: Release team 18.11 in About
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / about.tt
1 [% USE HtmlTags %]
2 [% USE Koha %]
3 [% USE KohaDates %]
4 [% SET footerjs = 1 %]
5 [% INCLUDE 'doc-head-open.inc' %]
6 <title>Koha &rsaquo; About Koha</title>
7 [% INCLUDE 'doc-head-close.inc' %]
8 </head>
9 <body id="about_about" class="about">
10 [% INCLUDE 'header.inc' %]
11
12 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; About Koha</div>
13
14
15 <div class="main container-fluid">
16     <div class="row">
17         <div class="col-md-12">
18
19             <h1>About Koha</h1>
20
21     <div id="abouttabs" class="toptabs numbered">
22         <ul>
23         <li><a href="#about">Server information</a></li>
24         <li><a href="#perl">Perl modules</a></li>
25         <li><a href="#sysinfo">System information</a></li>
26         <li><a href="#team">Koha team</a></li>
27         <li><a href="#licenses">Licenses</a></li>
28         <li><a href="#translations">Translations</a></li>
29         <li><a href="#history">Timeline</a></li>
30         </ul>
31
32         <div id="about">
33
34         <table>
35             <caption>Server information</caption>
36             <tr><th scope="row">Koha version: </th><td>[% kohaVersion | html %]</td></tr>
37             <tr><th scope="row">OS version ('uname -a'): </th><td>[% osVersion | html %]</td></tr>
38             <tr><th scope="row">Perl interpreter: </th><td>[% perlPath | html %]</td></tr>
39             <tr><th scope="row">Perl version: </th><td>[% perlVersion | html %]</td></tr>
40             <tr><th scope="row">Perl @INC: </th><td>
41                 [% FOREACH perlIncPat IN perlIncPath %]
42                     [% perlIncPat.perlinc | html %] <br />
43                 [% END %]
44             </td></tr>
45             <tr><th scope="row">MySQL version: </th><td>[% mysqlVersion | html %]</td></tr>
46             <tr><th scope="row">Apache version: </th><td>[% apacheVersion | html %]</td></tr>
47           [% IF (is_psgi) %]
48             <tr><th scope="row">PSGI: </th><td>[% psgi_server | html %]</td></tr>
49           [% END %]
50           [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' %]
51             <tr>
52                 <th scope="row">Elasticsearch: </th>
53             [% IF elasticsearch_fatal_config_error %]
54                 <td><span class="status_warn">[% elasticsearch_fatal_config_error | html %]</span></td>
55             [% ELSE %]
56                 <td>
57                     Nodes:
58                     <span>[% elasticsearch_status.nodes.join(' / ') | html %]</span>
59                     |
60                     Status:
61                 [% IF elasticsearch_status.running %]
62                     <span class="status_ok">running</span>
63                     |
64                     Indices:
65                   [% FOREACH index IN elasticsearch_status.indexes %]
66                       [% index.index_name | html %] (count: <emph>[% index.count | html %]</emph>)[% UNLESS loop.last %], [% END %]
67                   [% END %]
68                 [% ELSE %]
69                     <span class="status_warn">not running</span>
70                 [% END %]
71                 </td>
72             [% END %]
73             </tr>
74           [% END %]
75             <tr><th scope="row">Memcached: </th>
76                 <td>
77                     Servers: [% IF memcached_servers %]<span>[% memcached_servers | html %]</span>
78                              [% ELSE %]<span>undefined</span>[% END %] |
79                     Namespace: [% IF memcached_namespace %]<span>[% memcached_namespace | html %]</span>
80                                [% ELSE %]<span>undefined</span>[% END %] |
81                     Status: [% IF memcached_servers %]
82                                 [% IF memcached_running and is_memcached_still_active %]
83                                     <span class="status_ok">running</span>.
84                                 [% ELSE %]
85                                     <span class="status_warn">not running</span>.
86                                     [% IF is_psgi %]
87                                         <span>Remember memcached needs to be started before Plack.</span>
88                                     [% END %]
89                                 [% END %]
90                             [% ELSE %]
91                                 <span>unknown</span>
92                             [% END %] |
93                     Config read from:
94                     [% SWITCH where_is_memcached_config %]
95                         [% CASE 'config_only' %]
96                             <span class="status_ok">koha-conf.xml</span>
97                         [% CASE 'ENV_only' %]
98                             <span class="status_warn">ENV</span> Note that the right place to define the memcached config is in your $KOHA_CONF file
99                         [% CASE 'both' %]
100                             <span class="status_warn">ENV and koha-conf.xml</span> Note that the right place to define the memcached config is in your $KOHA_CONF file. To avoid any misunderstanding you should not export the memcached config from ENV.
101                         [% CASE # nowhere %]
102                             <span class="status_warn">Nowhere</span> Note that the right place to define the memcached config is in your $KOHA_CONF file. Currently you do not have a valid memcached configuration defined.
103                     [% END %]
104                   [% IF effective_caching_method != 'Cache::Memcached::Fast' %]
105                     | Effective caching method: [% effective_caching_method | html %]
106                   [% END %]
107                 </td>
108             </tr>
109             <tr><th scope="row">Zebra version: </th><td>[% zebraVersion | html %]</td></tr>
110             [% IF (errZebraConnection == 10000) %]
111             <tr><th scope="row"><b>Error</b> </th><td>Zebra server seems not to be available. Is it started?</td></tr>
112             [% ELSIF (errZebraConnection) %]
113             <tr><th scope="row"><b>Warning</b> </th><td>Error message from Zebra: [% ( errZebraConnection ) | html %] </td></tr>
114             [% END %]
115             <tr>
116               <th scope="row">Date and time: </th>
117               <td>[% current_date_and_time | $KohaDates with_hours => 1 | html %]</td>
118             </tr>
119             <tr>
120               [% timezone_config_class = (time_zone.config_invalid) ? 'status_warn' : '' %]
121               [% timezone_env_class    = (time_zone.env_invalid)    ? 'status_warn' : '' %]
122               <th scope="row">Time zone: </th>
123               <td>Used: <span>[% time_zone.actual | html %]</span>
124                           [% IF time_zone.actual_bad_tz_fallback %]
125                              <span>(This is a fallback value due to a bad configuration)</span>
126                           [% END %]
127                            |
128                   Config: [% IF time_zone.config != '' %]
129                             <span class="[% timezone_config_class | html %]">[% time_zone.config | html %]</span>
130                           [% ELSE %]
131                             <span>Undefined</span>
132                           [% END %] |
133                   Environment (TZ):  [% IF time_zone.environment != '' %]
134                           <span class="[% timezone_env_class | html %]">[% time_zone.environment | html %]</span>
135                         [% ELSE %]
136                           <span>Undefined</span>
137                         [% END %]
138               </td>
139             </tr>
140         </table>
141         </div>
142         <div id="perl">
143             <table style="cursor:pointer">
144                 <caption>Perl modules</caption>
145                 [% FOREACH tabl IN table %]
146                 <tr>
147                     [% FOREACH ro IN tabl.row %]
148                     [% IF ( ro.current ) %]
149                     [% IF ( ro.require ) %]
150                     <th scope="row" style="font-weight:bold;" title="Module current">
151                     [% ELSE %]
152                     <th scope="row" style="font-weight:normal" title="Module current">
153                     [% END %]
154                     [% ELSIF ( ro.upgrade ) %]
155                     [% IF ( ro.require ) %]
156                     <th scope="row" style="background-color:#FFCB2F;font-weight:bold;" title="Module upgrade needed">
157                     [% ELSE %]
158                     <th scope="row" style="background-color:#FFCB2F;font-weight:normal" title="Module upgrade needed">
159                     [% END %]
160                     [% ELSE %]
161                     [% IF ( ro.name == '' ) %]
162                     <th>
163                     [% ELSIF ( ro.require ) %]
164                     <th scope="row" style="background-color:#FF8A8A;font-weight:bold;" title="Required module missing">
165                     [% ELSE %]
166                     <th scope="row" style="background-color:#FF8A8A;font-weight:normal" title="Optional module missing">
167                     [% END %]
168                     [% END %]
169                     [% IF ( ro.name ) %]
170                     [% ro.name | html %] <span style="font-weight:normal; font-size:smaller"> ([% ro.reqversion | html %])</span>
171                     [% END %]
172                     </th>
173                     [% IF ( ro.name == '' ) %]
174                     <td>
175                     [% ELSIF ( ro.version ) %]
176                     <td>[% ro.version | html %]
177                     [% ELSE %]
178                     <td style="font-weight:bold">Not Installed [% END %]</td>
179                     [% END %]
180                 </tr>
181                 [% END %]
182             </table>
183         </div>
184
185         <div id="sysinfo">
186     [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatron || warnPrefAnonymousPatron_PatronDoesNotExist || warnNoActiveCurrency || QueryParserError || warnIsRootUser || xml_config_warnings.size || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || has_ai_issues || oauth2_missing_deps %]
187         [% IF (warnIsRootUser) %]
188             <h2>Warning regarding current user</h2>
189             <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>
190             <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>
191         [% END %]
192
193         [% IF has_ai_issues %]
194             <h2>Data problems</h2>
195             <p>Some of your tables have problems with their auto_increment values which may lead to data loss.</p>
196             <p><strong>You should not ignore this warning.</strong></p>
197             <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>
198             <p>To know how to avoid this problem see the related wiki page:
199             <a href="https://wiki.koha-community.org/wiki/DBMS_auto_increment_fix">DBMS auto increment fix</a>
200             </p>
201
202             <h3>Problems found</h3>
203             [% IF ai_patrons %]
204                 <h4>Patrons</h4>
205                 <p>The following ids exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:</p>
206                 <p>[% FOR p IN ai_patrons %][% p.borrowernumber | html %][% UNLESS loop.last %], [% END %][% END %]</p>
207             [% END %]
208             [% IF ai_biblios %]
209                 <h4>Bibliographic records</h4>
210                 <p>The following ids exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:</p>
211                 <p>[% FOR b IN ai_biblios %][% b.biblionumber | html %][% UNLESS loop.last %], [% END %][% END %]</p>
212             [% END %]
213             [% IF ai_items %]
214                 <h4>Items</h4>
215                 <p>The following ids exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:</p>
216                 <p>[% FOR i IN ai_items %][% i.itemnumber | html %][% UNLESS loop.last %], [% END %][% END %]</p>
217             [% END %]
218             [% IF ai_checkouts %]
219                 <h4>Checkouts</h4>
220                 <p>The following ids exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:</p>
221                 <p>[% FOR c IN ai_checkouts %][% c.issue_id | html %][% UNLESS loop.last %], [% END %][% END %]</p>
222             [% END %]
223             [% IF ai_holds %]
224                 <h4>Holds</h4>
225                 <p>The following ids exist in both tables [% "holds" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:</p>
226                 <p>[% FOR h IN ai_holds %][% h.reserve_id | html %][% UNLESS loop.last %], [% END %][% END %]</p>
227             [% END %]
228             <br/>
229         [% END %]
230
231         [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatron || warnPrefAnonymousPatron_PatronDoesNotExist || warnNoActiveCurrency || QueryParserError || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || oauth2_missing_deps %]
232             <h2>Warnings regarding the system configuration</h2>
233             <table>
234                 <caption>Preferences and parameters</caption>
235                 [% IF (warnPrefBiblioAddsAuthorities) %]
236                 <tr><th scope="row"><b>Warning</b> </th><td>System preference 'AutoCreateAuthorities' set, but needs 'BiblioAddsAuthorities' set as well.</td></tr>
237                 [% END %]
238                 [% IF (warnPrefEasyAnalyticalRecords) %]
239                 <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>
240                 [% END %]
241                 [% IF warnPrefAnonymousPatron %]
242                     <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>
243                 [% END %]
244                 [% IF warnPrefAnonymousPatron_PatronDoesNotExist %]
245                     <tr><th scope="row"><b>Warning</b> </th><td>Some patrons have requested a privacy on returning item but the AnonymousPatron pref is not set correctly. Set it to a valid borrower number if you want that this feature works correctly.</td></tr>
246                 [% END %]
247                 [% IF warnNoActiveCurrency %]
248                     <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>
249                 [% END %]
250                 [% IF warnStatisticsFieldsError %]
251                     <tr><th scope="row"><b>Warning</b> </th><td>System preference 'StatisticsFields' contains field names not belonging to the items database table: [% warnStatisticsFieldsError | html %] </td></tr>
252                 [% END %]
253                 [% IF QueryParserError %]
254                     <tr><th scope="row"><b>Warning</b> </th><td>
255                         You have set UseQueryParser but there was a problem inititializing QueryParser.
256                     [% IF QueryParserError.fallback %]
257                         The 'queryparser_config' entry is missing in your configuration file.
258                         The following configuration file was used without success: [% QueryParserError.file | html %].
259                     [% ELSE %]
260                         The following configuration file was used without success: [% QueryParserError.file | html %].
261                     [% END %]
262                         </td>
263                     </tr>
264                 [% END %]
265                 [% IF AutoSelfCheckPatronDoesNotHaveSelfCheckPerm %]
266                     <tr><th scope="row"><b>Warning</b> </th><td>
267                     The patron used for the self checkout module at the OPAC does not have the self_check => self_checkout_module permission.
268                     </td></tr>
269                 [% END %]
270                 [% IF AutoSelfCheckPatronHasTooManyPerm %]
271                     <tr><th scope="row"><b>Warning</b> </th><td>
272                     The patron used for the self checkout module at the OPAC has too many permissions. They should only have self_check => self_checkout_module.
273                     </td></tr>
274                 [% END %]
275                 [% IF warnNoTemplateCaching %]
276                     <tr><th scope="row"><b>Warning</b> </th><td>
277                     You are missing the &lt;template_cache_dir&gt; entry in your koha-conf.xml file.
278                     That will bring a performance boost to enable it.
279                     </td></tr>
280                 [% END %]
281                 [% IF warnILLConfiguration %]
282                   [% IF no_ill_backends %]
283                     <tr><th scope="row"><b>Warning</b> </th><td>
284                     The ILL module is enabled, but there are no backends available.
285                     </td></tr>
286                   [% END %]
287                   [% IF ill_partner_code_not_defined %]
288                     <tr><th scope="row"><b>Warning</b> </th><td>
289                     The ILL module is enabled, but no 'partner_code' defined in koha-conf.xml. Falling back to the hardcoded 'ILLLIBS'.
290                     </td></tr>
291                   [%END %]
292                   [% IF ill_branch_not_defined %]
293                     <tr><th scope="row"><b>Warning</b> </th><td>
294                     The ILL module is enabled, but no 'branch' block is defined in koha-conf.xml. You must define this block before use.
295                     </td></tr>
296                   [%END %]
297                   [% IF ill_partner_code_doesnt_exist %]
298                     <tr><th scope="row"><b>Warning</b> </th><td>
299                     The ILL module is enabled, but the configured 'partner_code' ([% ill_partner_code_doesnt_exist | html %]) is not defined on the system.
300                     </td></tr>
301                   [% END %]
302                 [% END %]
303                 [% IF oauth2_missing_deps %]
304                     <tr><th scope="row"><b>Warning</b> </th><td>
305                     System preference 'RESTOAuth2ClientCredentials' is set, but the required Net::OAuth2::AuthorizationServer dependency is missing. The feature is disabled.
306                     </td></tr>
307                 [% END %]
308             </table>
309         [% END %]
310
311         [% IF xml_config_warnings.size %]
312             <table>
313                 <caption>XML configuration file</caption>
314             [% FOREACH config_entry IN xml_config_warnings %]
315                 [% IF config_entry.error == 'zebra_bib_index_mode_is_grs1' %]
316                 <tr>
317                     <th scope="row"><b>Warning</b></th>
318                     <td>The &lt;zebra_bib_index_mode&gt; entry set to 'grs1', which is no longer supported.
319                         Please use DOM instead. To switch follow this page of wiki:
320                         <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">Switching to dom indexing</a>
321                     </td>
322                 </tr>
323                 [% ELSIF config_entry.error == 'zebra_auth_index_mode_is_grs1' %]
324                 <tr>
325                     <th scope="row"><b>Warning</b></th>
326                     <td>The &lt;zebra_auth_index_mode&gt; entry set to 'grs1', which is no longer supported.
327                         Please use DOM instead. To switch follow this page of wiki:
328                         <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">Switching to dom indexing</a>
329                     </td>
330                 </tr>
331                 [% ELSIF config_entry.error == 'queryparser_entry_missing' %]
332                 <tr>
333                     <th scope="row"><b>Warning</b></th>
334                     <td>You have set UseQueryParser but the 'queryparser_config' entry is missing in your configuration
335                         file. [% config_entry.file | html %] is used as a fallback.
336                     </td>
337                 </tr>
338                 [% ELSIF config_entry.error == 'use_zebra_facets_entry_missing' %]
339                 <tr>
340                     <th scope="row"><b>Warning</b></th>
341                     <td>The &lt;use_zebra_facets&gt; entry is missing in your configuration file. Falling back
342                         to legacy facet calculation.
343                     </td>
344                 </tr>
345                 [% ELSIF config_entry.error == 'log4perl_entry_missing' %]
346                 <tr>
347                     <th scope="row"><b>Warning</b></th>
348                     <td>You are missing the &lt;log4perl_conf&gt; entry in your koha-conf.xml file. Please
349                         add it, pointing to the log4perl.conf file for your Koha instance.
350                     </td>
351                 </tr>
352                 [% ELSIF config_entry.error == 'uploadpath_entry_missing' %]
353                 <tr>
354                     <th scope="row"><b>Warning</b></th>
355                     <td>You are missing the &lt;upload_path&gt; entry in your koha-conf.xml file. Please
356                         add it, pointing to the configured file upload directory for your Koha instance.
357                     </td>
358                 </tr>
359                 [% ELSIF config_entry.error == 'uploadpath_and_opacbaseurl_entry_missing' %]
360                 <tr>
361                     <th scope="row"><b>Warning</b></th>
362                     <td>You are missing the &lt;upload_path&gt; entry in your koha-conf.xml file. Please
363                         add it, pointing to the configured file upload directory for your Koha instance.
364                         Also note that you need to properly set the OPACBaseURL preference for the file upload plugin to work.
365                     </td>
366                 </tr>
367                 [% ELSIF config_entry.error == 'tmp_path_missing' %]
368                 <tr>
369                     <th scope="row"><b>Warning</b></th>
370                     <td>You are missing the &lt;tmp_path&gt; entry in your koha-conf.xml file. Please
371                         add it, pointing to the configured temporary directory for your Koha instance.
372                         The effective temporary directory is '[% config_entry.effective_tmp_dir | html %]'.
373                     </td>
374                 </tr>
375                 [% END %]
376             [% END %]
377             </table>
378         [% END %]
379     [% ELSE %]
380         <p>No warnings.</p>
381     [% END %]
382         </div>
383
384         <div id="team">
385             <h2>Special thanks to the following organizations</h2>
386             <ul>
387                 <li><a href="http://library.org.nz">Horowhenua Library Trust</a>, New Zealand, and Rosalie Blake, Head of Libraries, (Koha 1.0)</li>
388                 <li>The <a href="http://www.myacpl.org/">Athens County Public Libraries</a>, Ohio, USA (MARC sponsorship, documentation, template maintenance)</li>
389                 <li><a href="http://www.emn.fr">EMN (Ecole des Mines de Nantes)</a>, France (Suggestions, Stats wizards and improved LDAP sponsorship)</li>
390                 <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>
391                 <li><a href="http://www.mediathequeouestprovence.fr/">SAN-Ouest Provence</a>, France (Koha 3.0 enhancements to patrons and holds modules)</li>
392                 <li>The <a href="http://ccfls.org">Crawford County Federated Library System</a>, PA, USA (Koha 3.0 Zebra Integration sponsorship)</li>
393                 <li>The <a href="http://www.geauga.lib.oh.us/">Geauga County Public Library</a>, OH, USA (Koha 3.0 beta testing)</li>
394                 <li>The <a href="http://library.neu.edu.tr">Near East University</a>, Cyprus</li>
395                 <li>OPUS International Consultants, Wellington, New Zealand (Corporate Serials sponsorship)</li>
396                 <li><a href="http://www.famfamfam.com/">famfamfam.com</a> Birmingham (UK) based developer Mark James for the famfamfam Silk iconset.</li>
397                 <li><a href="http://www.ashs.school.nz/">Albany Senior High School</a>, Auckland, New Zealand (OPAC 'star-ratings' sponsorship)</li>
398             </ul>
399
400             <h2>Koha 18.11 release team</h2>
401             <ul>
402                 <li><strong>Release manager:</strong>
403                     <a href="https://www.openhub.net/p/koha/contributors/6620692886191">Nick Clemens</a>
404                 </li>
405                 <li><strong>Release manager assistants:</strong>
406                     <ul>
407                         <li><a href="https://www.openhub.net/p/koha/contributors/6618544730094">Tomás Cohen Arazi</a></li>
408                         <li><a href="https://www.openhub.net/p/koha/contributors/6618545125093">Jonathan Druart</a></li>
409                         <li><a href="https://www.openhub.net/p/koha/contributors/6618544661344">Brendan Gallagher</a></li>
410                         <li><a href="https://www.openhub.net/p/koha/contributors/6620692261494">Kyle Hall</a></li>
411                     </ul>
412                 </li>
413                 <li><strong>Documentation team:</strong>
414                     <ul>
415                         <li>Caroline Cyr La Rose</li>
416                         <li>Lee Jamison</li>
417                         <li>David Nind</li>
418                     </ul>
419                 </li>
420                 <li><strong>Translation manager:</strong>
421                     <a href="https://www.openhub.net/p/koha/contributors/6618544839606">Bernardo González Kriegel</a>
422                 </li>
423                 <li><strong>Quality assurance manager:</strong>
424                     <a href="https://www.openhub.net/p/koha/contributors/6618544670742">Katrin Fischer</a>
425                 </li>
426                 <li><strong>Quality assurance team:</strong>
427                     <ul>
428                         <li>Alex Arnaud</li>
429                         <li><a href="https://www.openhub.net/p/koha/contributors/6618544730094">Tomás Cohen Arazi</a></li>
430                         <li><a href="https://www.openhub.net/p/koha/contributors/6618544609030">Chris Cormack</a></li>
431                         <li><a href="https://www.openhub.net/p/koha/contributors/6618545125093">Jonathan Druart</a></li>
432                         <li><a href="https://www.openhub.net/p/koha/contributors/6620692261494">Kyle Hall</a></li>
433                         <li><a href="https://www.openhub.net/p/koha/contributors/6620692419690">Julian Maurice</a></li>
434                         <li>Josef Moravec</li>
435                         <li><a href="https://www.openhub.net/p/koha/contributors/6618544785220">Martin Renvoize</a></li>
436                         <li><a href="https://www.openhub.net/p/koha/contributors/6618544727712">Marcel de Rooy</a></li>
437                     </ul>
438                 </li>
439                 <li><strong>Release maintainers:</strong>
440                     <ul>
441                         <li><a href="https://www.openhub.net/p/koha/contributors/6618544785220">Martin Renvoize</a> (18.05)</li>
442                         <li><a href="https://www.openhub.net/p/koha/contributors/6620692831733">Fridolin Somers</a> (17.11)</li>
443                         <li><a href="https://www.openhub.net/p/koha/contributors/6620692831733">Fridolin Somers</a> (17.05)</li>
444                     </ul>
445                 </li>
446                 <li><strong>Packaging manager:</strong>
447                     <ul>
448                         <li><a href="https://www.openhub.net/p/koha/contributors/6620692605913">Mirko Tietgen</a></li>
449                         <li><a href="https://www.openhub.net/accounts/kohaaloha">Mason James</a> (Assistant)</li>
450                     </ul>
451                 </li>
452                 <li><strong>Jenkins maintainer:</strong>
453                     <a href="https://www.openhub.net/p/koha/contributors/6618544730094">Tomás Cohen Arazi</a>
454                 </li>
455                 <li><strong>Bug wranglers:</strong>
456                     <ul>
457                         <li>Indranil Das Gupta</li>
458                         <li>Claire Gravely</li>
459                         <li>Amit Gupta</li>
460                         <li>Jon Knight</li>
461                     </ul>
462                 </li>
463             </ul>
464
465             <h2>Koha development team</h2>
466             <ul class="columns-4">
467                 <li>Jacek Ablewicz</li>
468                 <li>Md. Aftabuddin</li>
469                 <li>Jon Aker</li>
470                 <li>Chloe Alabaster</li>
471                 <li>Edward Allen</li>
472                 <li>Francisco M. Marzoa Alonso</li>
473                 <li>Morgane Alonso</li>
474                 <li>Joseph Alway</li>
475                 <li>Cindy Murdock Ames</li>
476                 <li>Aleisha Amohia</li>
477                 <li>Roman Amor</li>
478                 <li>Roch D'Amour</li>
479                 <li>Richard Anderson</li>
480                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692181851">Nahuel Angelinetti</a></li>
481                 <li>Nuño López Ansótegui</li>
482                 <li>Dimitris Antonakis</li>
483                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544730094">Tomás Cohen Arazi (3.18 - 3.22 Release Manager; 3.12 Release Maintainer; 16.05 - 18.05 QA Team Member)</a></li>
484                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692124662">Andrew Arensburger (the small and great C4::Context module)</a></li>
485                 <li>Alex Arnaud (18.05 QA Team Member)</li>
486                 <li>Cori Lynn Arnold</li>
487                 <li>Petter Goksøyr Åsen</li>
488                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544614259">Joe Atzberger</a></li>
489                 <li>Philippe Audet-Fortin</li>
490                 <li>Héctor Eduardo Castro Avalos</li>
491                 <li>Larry Baerveldt</li>
492                 <li>Marc Balmer</li>
493                 <li>Edmund Balnaves</li>
494                 <li>Al Banks</li>
495                 <li>Daniel Banzli</li>
496                 <li>Stefano Bargioni</li>
497                 <li>Daniel Barker</li>
498                 <li>Greg Barniskis</li>
499                 <li>Benedykt P. Barszcz (Polish for 2.0)</li>
500                 <li>D Ruth Bavousett (3.12 Translation Manager)</li>
501                 <li>Maxime Beaulieu</li>
502                 <li>Zoe Bennett</li>
503                 <li>Natalie Bennison</li>
504                 <li>John Beppu</li>
505                 <li>Pablo Bianchi</li>
506                 <li>Chad Billman</li>
507                 <li>David Birmingham</li>
508                 <li>Florian Bischof</li>
509                 <li>Oliver Bock</li>
510                 <li>Gaetan Boisson</li>
511                 <li>David Bourgault</li>
512                 <li>Rebecca Blundell</li>
513                 <li>Danny Bouman</li>
514                 <li>Christopher Brannon (3.20 QA Team Member)</li>
515                 <li>Stan Brinkerhoff</li>
516                 <li>Isaac Brodsky</li>
517                 <li>Ivan Brown</li>
518                 <li>Roger Buck</li>
519                 <li>Alex Buckley</li>
520                 <li>Michael Andrew Cabus</li>
521                 <li>Steven Callender</li>
522                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692376789">Jared Camins-Esakov (3.12 Release Manager; 3.6 Release Maintainer)</a></li>
523                 <li>Colin Campbell (3.4 QA Manager)</li>
524                 <li>Fernando Canizo</li>
525                 <li>Barry Cannon</li>
526                 <li>Frédérick Capovilla</li>
527                 <li>DeAndre Carroll</li>
528                 <li>Chris Catalfo (new plugin MARC editor)</li>
529                 <li>Marc Chantreux</li>
530                 <li>Jerome Charaoui</li>
531                 <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; 16.05 Packaging Manager)</a></li>
532                 <li>Francois Charbonnier</li>
533                 <li>Evonne Cheung</li>
534                 <li>Andrew Chilton</li>
535                 <li>Pongtawat Chippimolchai</li>
536                 <li>Barton Chittenden</li>
537                 <li>Koha SAB CINECA</li>
538                 <li>Nick Clemens (16.11 - 18.05 QA Team Member; 17.11 Release Maintainer)</li>
539                 <li>Garry Collum</li>
540                 <li>David Cook</li>
541                 <li>John Copeland</li>
542                 <li>Charlotte Cordwell</li>
543                 <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, 3.18, 3.20 and 16.11 Release Maintainer; 3.2 Translation Manager; 3.14 QA Team Member; 17.05 Documentation Manager; 17.11 Documentation Team Member)</a></li>
544                 <li>Jeremy Crabtree</li>
545                 <li>Bonnie Crawford</li>
546                 <li>Samuel Crosby</li>
547                 <li>Christophe Croullebois</li>
548                 <li>Olivier Crouzet</li>
549                 <li>Nate Curulla</li>
550                 <li>Caroline Cyr La Rose (18.05 Documentation Team Member)</li>
551                 <li>Vincent Danjean</li>
552                 <li>Hugh Davenport</li>
553                 <li>Elliott Davis (3.12 QA Team Member)</li>
554                 <li>Doug Dearden</li>
555                 <li>Kip DeGraaf</li>
556                 <li>Stéphane Delaune</li>
557                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692210484">Frédéric Demians (3.4 - 3.10 Translation Manager; 3.20, 16.05 Release Maintainer)</a></li>
558                 <li>Connor Dewar</li>
559                 <li>Srikanth Dhondi</li>
560                 <li>Leire Diez</li>
561                 <li>Yarik</li>
562                 <li>Rocio Dressler</li>
563                 <li><a href="https://www.openhub.net/p/koha/contributors/6618545125093">Jonathan Druart (3.8 - 17.05 QA Team Member; 17.11 - 18.05 Release Manager)</a></li>
564                 <li>Serhij Dubyk</li>
565                 <li>Yohann Dufour</li>
566                 <li>Thomas Dukleth (MARC Frameworks Maintenance)</li>
567                 <li>Frederic Durand</li>
568                 <li>Sebastiaan Durand</li>
569                 <li>Rachel Dustin</li>
570                 <li>Ecole des Mines de Saint Etienne, Philippe Jaillon (OAI-PMH support)</li>
571                 <li>Stephen Edwards</li>
572                 <li>Dani Elder</li>
573                 <li>Gus Ellerm</li>
574                 <li>Andrew Elwell</li>
575                 <li>Brian Engard</li>
576                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544646984">Nicole C. Engard (3.0 - 16.11 Documentation Manager)</a></li>
577                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544677502">Magnus Enger</a></li>
578                 <li>Esiee School (Jérome Vizcaino, Michel Lerenard, Pierre Cauchois)</li>
579                 <li>Jason Etheridge</li>
580                 <li>Shaun Evans</li>
581                 <li>Pat Eyler (Kaitiaki from 2002 to 2004)</li>
582                 <li>Charles Farmer</li>
583                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544609865">Antoine Farnault</a></li>
584                 <li>Arslan Farooq</li>
585                 <li>Vitor Fernandes</li>
586                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544609053">Joshua Ferraro (3.0 Release Manager and Translation Manager)</a></li>
587                 <li>Julian Fiol</li>
588                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544670742">Katrin Fischer (3.12 - 16.11 QA Manager, 16.11 Release Maintainer, 17.11 Documentation Team Member, 18.05 QA Manager)</a></li>
589                 <li>Connor Fraser</li>
590                 <li>Clay Fouts</li>
591                 <li>Brendon Ford</li>
592                 <li>Claudia Forsman</li>
593                 <li>Jessica Freeman</li>
594                 <li>Corey Fuimaono</li>
595                 <li>Marco Gaiarin</li>
596                 <li>Pierrick Le Gall</li>
597                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544661344">Brendan A. Gallagher (3.14 - 3.22 QA Team Member; 16.05 - 17.05 Release Manager; 17.11 QA Team Member)</a></li>
598                 <li>Joachim Ganseman</li>
599                 <li>Tumer Garip</li>
600                 <li>Russel Garlick</li>
601                 <li>Mark Gavillet</li>
602                 <li>Daniel Kahn Gillmor</li>
603                 <li>David Goldfein</li>
604                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544839606">Bernardo González Kriegel (3.14 - 18.05 Translation Manager; 3.10 Release Maintainer)</a></li>
605                 <li>Caitlin Goodger</li>
606                 <li>Isobel Graham</li>
607                 <li>Claire Gravely</li>
608                 <li>Briana Greally</li>
609                 <li>Daniel Grobani</li>
610                 <li>Victor Grousset</li>
611                 <li>Isabel Grubi</li>
612                 <li>David Gustafsson</li>
613                 <li>Amit Gupta</li>
614                 <li>Indranil Das Gupta (17.11 Documentation Team Member)</li>
615                 <li>Michael Hafen</li>
616                 <li>Margaret Hade</li>
617                 <li>Christopher Hall (3.8 Release Maintainer)</li>
618                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692261494">Kyle Hall (3.8 Release Maintainer; 3.14 - 18.05 QA Team Member; 16.11 - 17.05 Release Manager)</a></li>
619                 <li>Sean Hamlin</li>
620                 <li>Tim Hannah</li>
621                 <li>Mike Hansen</li>
622                 <li>Brian Harrington</li>
623                 <li>Brandon Haveman</li>
624                 <li>Rochelle Healy</li>
625                 <li>Emma Heath</li>
626                 <li>Friedrich zur Hellen</li>
627                 <li>Kate Henderson</li>
628                 <li>Michaes Herman</li>
629                 <li>Claire Hernandez</li>
630                 <li>Wolfgang Heymans</li>
631                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544614261">Ryan Higgins</a></li>
632                 <li>Morag Hills</li>
633                 <li>Sèbastien Hinderer</li>
634                 <li>Kristina D.C. Hoeppner</li>
635                 <li>Stefan Berndtsson</li>
636                 <li>Stephanie Hogan</li>
637                 <li>Karl Holten</li>
638                 <li>Daniel Holth</li>
639                 <li>Andrew Hooper</li>
640                 <li>Luke Honiss</li>
641                 <li>Alexandra Horsman</li>
642                 <li>Tom Houlker</li>
643                 <li>Matthew Hunt</li>
644                 <li>Christopher Hyde</li>
645                 <li>Andrew Isherwood</li>
646                 <li>Rolando Isidoro</li>
647                 <li>Te Rauhina Jackson</li>
648                 <li>Cory Jaeger</li>
649                 <li>Lee Jamison (18.05 Documentation Team Member)</li>
650                 <li>Srdjan Jankovic</li>
651                 <li>Philippe Jaillon</li>
652                 <li><a href="https://www.openhub.net/accounts/kohaaloha">Mason James (3.10 - 3.14 QA Team Member, 3.16, 16.05 Release Maintainer)</a></li>
653                 <li>Karen Jen</li>
654                 <li>Mike Johnson</li>
655                 <li>Donovan Jones</li>
656                 <li>Andreas Jonsson</li>
657                 <li>Bart Jorgensen</li>
658                 <li>Janusz Kaczmarek</li>
659                 <li>Koustubha Kale</li>
660                 <li>Pasi Kallinen</li>
661                 <li>Dimitris Kamenopoulos</li>
662                 <li>Vassilis Kanellopoulos</li>
663                 <li>Peter Crellan Kelly</li>
664                 <li>Jorgia Kelsey</li>
665                 <li>Olli-Antti Kivilahti</li>
666                 <li>Attila Kinali</li>
667                 <li>Chris Kirby</li>
668                 <li>Ulrich Kleiber</li>
669                 <li>Jon Knight</li>
670                 <li>Rafal Kopaczka</li>
671                 <li>Piotr Kowalski</li>
672                 <li>David Kuhn</li>
673                 <li>Joonas Kylmälä</li>
674                 <li>Johan Larsson</li>
675                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544614275">Henri-Damien Laurent (3.0 Release Maintainer)</a></li>
676                 <li>Arnaud Laurin</li>
677                 <li>Nicolas Legrand</li>
678                 <li>Sonia Lemaire</li>
679                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544609147">Owen Leonard (3.0+ Interface Design)</a></li>
680                 <li>Ambrose Li (translation tool)</li>
681                 <li>Gynn Lomax</li>
682                 <li>Peter Lorimer</li>
683                 <li>Robert Lyon (Corporate Serials)</li>
684                 <li>Ere Maijala</li>
685                 <li>Sherryn Mak</li>
686                 <li>Merllisia Manueli</li>
687                 <li>Florent Mara</li>
688                 <li>Francois Marier</li>
689                 <li>Patricio Marrone</li>
690                 <li>Jose Martin</li>
691                 <li>Alberto Martinez</li>
692                 <li>Jesse Maseto</li>
693                 <li>Frère Sébastien Marie</li>
694                 <li>Ricardo Dias Marques</li>
695                 <li>Julian Maurice (3.18, 17.05 - 18.05 QA Team Member; 3.22 Release Maintainer)</li>
696                 <li>Remi Mayrand-Provencher</li>
697                 <li>Brig C. McCoy</li>
698                 <li>Grace McKenzie</li>
699                 <li>Tim McMahon</li>
700                 <li>Dorian Meid (German translation)</li>
701                 <li>Meenakshi. R</li>
702                 <li>Melia Meggs</li>
703                 <li>Holger Meißner</li>
704                 <li>Karl Menzies</li>
705                 <li>Matthias Meusburger</li>
706                 <li>Sophie Meynieux</li>
707                 <li>Janet McGowan</li>
708                 <li>Alan Millar</li>
709                 <li>Jono Mingard</li>
710                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544607803">Andrew Moore</a></li>
711                 <li>Francesca Moore</li>
712                 <li>Josef Moravec (18.05 QA Team Member)</li>
713                 <li>Sharon Moreland</li>
714                 <li>Nicolas Morin</li>
715                 <li>Mike Mylonas</li>
716                 <li>Natasha ?? [Catalyst Academy]</li>
717                 <li>Nadia Nicolaides</li>
718                 <li>Nazlı</li>
719                 <li>Joy Nelson</li>
720                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544615991">Chris Nighswonger (3.2 - 3.6 Release Maintainer)</a></li>
721                 <li>David Nind (18.05 Documentation Team Member)</li>
722                 <li>Brian Norris</li>
723                 <li>Duy Tinh Nguyen</li>
724                 <li>Simith D'Oliveira</li>
725                 <li>Albert Oller</li>
726                 <li>Eric Olsen</li>
727                 <li>H. Passini</li>
728                 <li>Priya Patel</li>
729                 <li>Aliki Pavlidou</li>
730                 <li>Dobrica Pavlinusic</li>
731                 <li>Maxime Pelletier</li>
732                 <li>Shari Perkins</li>
733                 <li>Martin Persson</li>
734                 <li>Dominic Pichette</li>
735                 <li>Fred Pierre</li>
736                 <li>Eric Phetteplace (phette23)</li>
737                 <li>Genevieve Plantin</li>
738                 <li>Simon Pouchol</li>
739                 <li>Polytechnic University</li>
740                 <li>Pongtawat</li>
741                 <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 - 16.05 QA Team Member)</a></li>
742                 <li>Karam Qubsi</li>
743                 <li>Romina Racca</li>
744                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692116417">MJ Ray (2.0 Release Maintainer)</a></li>
745                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544650708">Liz Rea</a> (3.6, 3.18 Release Maintainer)</li>
746                 <li>Thatcher Rea</li>
747                 <li>Allen Reinmeyer</li>
748                 <li>Serge Renaux</li>
749                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544785220">Martin Renvoize (3.16 - 17.11 QA Team Member)</a></li>
750                 <li>Francesco Rivetti</li>
751                 <li>Abby Robertson</li>
752                 <li>Waylon Robertson</li>
753                 <li>Benjamin Rokseth</li>
754                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544727712">Marcel de Rooy (3.8 - 18.05 QA Team Member)</a></li>
755                 <li>Andreas Roussos</li>
756                 <li>Salvador Zaragoza Rubio</li>
757                 <li>Mathieu Saby</li>
758                 <li>Eivin Giske Skaaren</li>
759                 <li>Brice Sanchez</li>
760                 <li>Jane Sandberg</li>
761                 <li>Sam Sanders</li>
762                 <li>Rodrigo Santellan</li>
763                 <li>Viktor Sarge</li>
764                 <li>Alex Sassmannshausen (17.11 QA Team Member)</li>
765                 <li>Adrien Saurat</li>
766                 <li>Zoe Schoeler</li>
767                 <li>Dan Scott</li>
768                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544619438">Robin Sheat (3.2 - 3.22 Packaging Manager)</a></li>
769                 <li>Maksim Sen</li>
770                 <li>Juhani Seppälä</li>
771                 <li>John Seymour</li>
772                 <li>Juan Romay Sieira</li>
773                 <li>Zach Sim</li>
774                 <li>Radek Šiman</li>
775                 <li>Silvia Simonetti</li>
776                 <li>Savitra Sirohi</li>
777                 <li>Pawel Skuza (Polish for 1.2)</li>
778                 <li>Emma Smith</li>
779                 <li>Grace Smyth</li>
780                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692831733">Fridolin Somers (3.14 Release Maintainer, 17.05 QA Team Member, 17.05 Release Maintainer)</a></li>
781                 <li>Southeastern University</li>
782                 <li>Martin Stenberg</li>
783                 <li>Glen Stewart</li>
784                 <li>Will Stokes</li>
785                 <li>Simon Story</li>
786                 <li>David Strainchamps</li>
787                 <li>Ed Summers (Some code and Perl packages like MARC::Record)</li>
788                 <li>Daniel Sweeney</li>
789                 <li>Zeno Tajoli</li>
790                 <li>Lari Taskula</li>
791                 <li>Samanta Tello</li>
792                 <li>Adam Thick</li>
793                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544609107">Finlay Thompson</a></li>
794                 <li>Peggy Thrasher</li>
795                 <li>Fabio Tiana</li>
796                 <li>Mirko Tietgen (16.11 - 18.05 Packaging Manager)</li>
797                 <li>Mark Tompsett</li>
798                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692101577">Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)</a></li>
799                 <li>Bruno Toumi</li>
800                 <li>Andrei V. Toutoukine</li>
801                 <li>Duncan Tyler</li>
802                 <li>Kathryn Tyree</li>
803                 <li>Darrell Ulm</li>
804                 <li>Universidad ORT Uruguay (Ernesto Silva, Andres Tarallo)</li>
805                 <li>Eric Vantillard </li>
806                 <li>Oleg Vasylenko</li>
807                 <li><a href="https://www.openhub.net/p/koha/contributors/6618545408147">Marc Véron</a></li>
808                 <li>Father Vlasie</li>
809                 <li>Justin Vos</li>
810                 <li>Aleksa Vujicic</li>
811                 <li>Reed Wade</li>
812                 <li>Stacey Walker</li>
813                 <li>Ian Walls (3.6 - 3.10 QA Manager)</li>
814                 <li><a href="https://www.openhub.net/accounts/janewagner">Jane Wagner</a></li>
815                 <li>Ward van Wanrooij</li>
816                 <li>Jenny Way</li>
817                 <li><a href="https://www.openhub.net/accounts/pianohacker">Jesse Weaver (16.05, 16.11 QA Team Member)</a></li>
818                 <li>Chris Weeks</li>
819                 <li>Stefan Weil</li>
820                 <li>Aaron Wells</li>
821                 <li>Rick Welykochy</li>
822                 <li>Piotr Wejman</li>
823                 <li>Ron Wickersham</li>
824                 <li>Brett Wilkins</li>
825                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692127299">Olwen Williams (Database design and data extraction for Koha 1.0)</a></li>
826                 <li>Robert Williams</li>
827                 <li>James Winter</li>
828                 <li>Lars Wirzenius</li>
829                 <li>Baptiste Wojtkowski</li>
830                 <li>Thomas Wright</li>
831                 <li>Jen Zajac</li>
832                 <li>Kenza Zaki</li>
833             </ul>
834             <h2>Contributing companies and institutions</h2>
835             <ul class="columns-4">
836                 <li>Allen Ginsberg Library, USA</li>
837                 <li>Alingsås Public Library, Sweden</li>
838                 <li>American Numismatic Society, USA</li>
839                 <li>Arcadia Public Library, USA</li>
840                 <li>Athens County Public Libraries, USA</li>
841                 <li>BdP de la Meuse, France</li>
842                 <li>BibLibre, France</li>
843                 <li>Bibliotheksservice-Zentrum Baden-Württemberg (BSZ), Germany</li>
844                 <li>Briar Cliff University, USA</li>
845                 <li>Brooklyn Law School Library, USA</li>
846                 <li>Bibliothèque universitaire des langues et civilisations (<a href="http://www.bulac.fr/">BULAC</a>), France</li>
847                 <li>ByWater Solutions, USA</li>
848                 <li>California College of the Arts, USA</li>
849                 <li>Camden County, USA</li>
850                 <li>Carnegie Stout Library, USA</li>
851                 <li>Calyx, Australia</li>
852                 <li>Catalyst IT, New Zealand</li>
853                 <li>Central Kansas Library System (CKLS), USA</li>
854                 <li>Centre collégial des services regroupés (CCSR), Canada</li>
855                 <li>Cheshire Libraries, United Kingdom</li>
856                 <li>Coeur d'Alene Public Library, USA</li>
857                 <li>Corpus Christi Public Libraries, USA</li>
858                 <li>C &amp; P Bibliography Services, USA</li>
859                 <li>Do Space, USA</li>
860                 <li>DoverNet, USA</li>
861                 <li>Escuela de Orientacion Lacaniana, Argentina</li>
862                 <li>Farmington Public Library, USA</li>
863                 <li>FIT</li>
864                 <li>Foundations Bible College &amp; Seminary, USA</li>
865                 <li>Goethe-Institut, Germany</li>
866                 <li>Gothenburg University Library, Sweden</li>
867                 <li>Halland County Library, Sweden</li>
868                 <li>Harrison Carmel Public Library, USA</li>
869                 <li>Hauraki District Libraries, New Zealand</li>
870                 <li>Hochschule für Gesundheit (hsg), Germany</li>
871                 <li>Hotchkiss School, USA</li>
872                 <li>Katipo Communications, New Zealand</li>
873                 <li>KEEP SOLUTIONS, Portugal</li>
874                 <li>KohaAloha, New Zealand</li>
875                 <li>LibLime, USA</li>
876                 <li>Library of the Józef Piłsudski Institute of America, USA</li>
877                 <li>Libriotech, Norway</li>
878                 <li>Los Gatos Public Library, USA</li>
879                 <li>MassCat, USA</li>
880                 <li>Middletown Township Public Library, USA</li>
881                 <li>New Zealand Central Agencies Library, New Zealand</li>
882                 <li>New Zealand Ministry of Education Library, New Zealand</li>
883                 <li>North Central Regional Library (NCRL), USA</li>
884                 <li>Northeast Kansas Library System (NEKLS), USA</li>
885                 <li>OPUS</li>
886                 <li>Orex Digital, Spain</li>
887                 <li>Oslo Public Library, Norway</li>
888                 <li>Plano Independent School, USA</li>
889                 <li>Prosentient Systems, Australia</li>
890                 <li>PTFS, Maryland, USA</li>
891                 <li>PTFS Europe Ltd, United Kingdom</li>
892                 <li>Rijksmuseum, Amsterdam, The Netherlands</li>
893                 <li>Rolling Hills Consolidated Libraries, USA</li>
894                 <li>Round Rock Public Library, USA</li>
895                 <li>SAN-Ouest Provence, France</li>
896                 <li>software.coop, United Kingdom</li>
897                 <li>South-East Kansas Library System (SEKLS), USA</li>
898                 <li>Stockholm University Library, Sweden</li>
899                 <li>SWITCH Library Consortium, USA</li>
900                 <li>Talking Tech, Global</li>
901                 <li>Tamil, France</li>
902                 <li>Tulong Aklatan, Philippines</li>
903                 <li>Universidad de El Salvador, El Salvador</li>
904                 <li>Universidad Empresarial Siglo 21, Argentina</li>
905                 <li>Universidad Nacional de Córdoba, Argentina</li>
906                 <li>Université d'Aix-Marseille, France</li>
907                 <li>Université de Lyon 3, France</li>
908                 <li>Université de Rennes 2, France</li>
909                 <li>Université de St Etienne, France</li>
910                 <li>University of the Arts London, United Kingdom</li>
911                 <li>Vaara-kirjastot, Finland</li>
912                 <li>Vanier College, Canada</li>
913                 <li>Ville de Victoriaville, Canada</li>
914                 <li>Vermont Organization of Koha Automated Libraries (VOKAL), USA</li>
915                 <li>Washoe County Library System, USA</li>
916                 <li>Xercode, Spain</li>
917             </ul>
918
919             <h2>Additional thanks to...</h2>
920             <ul>
921                 <li>Irma Birchall</li>
922                 <li>Rachel Hamilton-Williams (Kaitiaki from 2004 to present)</li>
923                 <li>Stephen Hedges (early Documentation Manager)</li>
924                 <li>Brooke Johnson</li>
925                 <li>Jo Ransom</li>
926                 <li>Nicholas Rosasco (Documentation Compiler)</li>
927                 <li>Regula Sebastiao</li>
928             </ul>
929         </div>
930
931         <div id="licenses">
932             <h2>Koha</h2>
933             <p>
934             <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>
935             </p>
936             <h2>jQuery and jQueryUI</h2>
937             <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>
938             <h2>Bootstrap</h2>
939             <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>
940             <h2>YUI</h2>
941             <p>
942             <a href="http://yuilibrary.com/license/">BSD License</a>
943             </p>
944             <h2>Famfamfam iconset</h2>
945               <ul>
946                 <li><a href="http://www.famfamfam.com/lab/icons/silk/">FamFamFam Site</a></li>
947                 <li><a href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a></li>
948               </ul>
949             <h2>The Bridge Material Type Icon Set</h2>
950               <ul>
951                 <li><a href="http://apps.carleton.edu/campus/library/bridge_icons/">Bridge Material Type Icons Project</a></li>
952                 <li>The Bridge Material Type Icon Set is licensed under a
953                   <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 License</a>
954                   by the Bridge Consortium of Carleton College and St. Olaf College.</li>
955               </ul>
956
957             <h2>The Noun Project icons</h2>
958                 <ul>
959                     <li>All images come from <a href="https://thenounproject.com/">The Noun Project</a> collection</li>
960                     <li>
961                         Circulation ("<a href="https://thenounproject.com/icon/743/">fair-trade</a>") symbol by Edward Boatman ; Patrons
962                         ("<a href="https://thenounproject.com/term/childrens-library/739/">children's library</a>") symbol by Edward Boatman, Saul Tannenbaum,
963                         Stephen Kennedy, Nikki Snow, Brooke Hamilton ; Search ("<a href="https://thenounproject.com/term/magnifying-glass/907/">magnifying
964                         glass</a>") symbol by Philipp Süß ; Lists ("<a href="https://thenounproject.com/term/folder/650/">folder</a>") symbol by Jack
965                         Biesek, Gladys Brenner, Margaret Faye, Healther Merrifield, Kate
966                         Keating, Wendy Olmstead, Todd Pierce, Jamie Cowgill, Jim Bolek ;
967                         Course reserves ("<a href="https://thenounproject.com/term/stack-of-books/11494/">stack of books</a>") symbol by Jeremy J. Bristol;
968                         Cataloging ("<a href="https://thenounproject.com/term/tag/888732/">price tag</a>") symbol by the Noun Project ; Authorities
969                         ("<a href="https://thenounproject.com/term/link/1690/">link</a>") symbol by Matthew Exton ; Serials ("<a href="https://thenounproject.com/term/newspaper/1233/">newspaper</a>") symbol by John
970                         Caserta ; Acquisitions ("<a href="https://thenounproject.com/term/gift/970853/">gift</a>") symbol by David Goodger ; Reports
971                         ("<a href="https://thenounproject.com/term/pie-chart/805/">pie chart</a>") symbol by Scott Lewis ; Administration ("<a href="https://thenounproject.com/term/gears/1063/">gears</a>") symbol by
972                         Jeremy Minnick ; Tools ("<a href="https://thenounproject.com/term/wrench/234/">wrench</a>") symbol by National Park Service ; Interlibrary loan ("<a href="https://thenounproject.com/term/exchange/1265396">exchange</a>") symbol by Iconstock.
973                     </li>
974                 </ul>
975
976             <h2>jQuery Star Rating Plugin</h2>
977               <p>jQuery Star Rating Plugin v3.14 by <a href="http://www.fyneworks.com/">Fyneworks.com</a> is licensed under the <a href="http://en.wikipedia.org/wiki/MIT_License">MIT License</a> and the <a href="http://creativecommons.org/licenses/GPL/2.0/">GPL License</a>.</p>
978
979             <p>Copyright &copy; 2008 <a href="http://www.fyneworks.com/">Fyneworks.com</a></p>
980
981             <h2>jQuery insertAtCaret Plugin</h2>
982             <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>
983
984             <p>Copyright &copy; 2003-2010 phpMyAdmin devel team</p>
985
986             <h2>jQuery treetable Plugin</h2>
987
988             <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>
989
990             <h2>OpenJS Keyboard Shortcuts Library</h2>
991
992             <p>The <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJS keyboard shortcuts library</a>
993                by Binny V A is licensed under the BSD license.</p>
994
995             <h2>jquery.dataTables.grouping.js</h2>
996             <p>The <a href="https://code.google.com/p/jquery-datatables-row-grouping/">jquery.dataTables.grouping.js</a>
997                plugin by Jovan Popovic is licensed under the BSD and GPL v2 license.</p>
998
999             <h2>jQuery Colvis plugin</h2>
1000             <p>The <a href="http://datatables.net/extensions/colvis/">controls for column visiblity in DataTables</a>
1001                 by Allan Jardine is licensed under the BSD 3 and GPL v2 license.</p>
1002
1003             <h2>jquery.multiple.select.js</h2>
1004             <p>The <a href="http://wenzhixin.net.cn/p/multiple-select/">jQuery multiple select plugin</a>
1005                by Zhixin Wen is licensed under the MIT license.</p>
1006
1007             <h2>Javascript Diff Algorithm</h2>
1008             <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>
1009
1010             <h2>jQuery Validation Plugin</h2>
1011             <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>
1012
1013             <h2>TinyMCE WYSIWYG editor</h2>
1014             <p>The <a href="http://www.tinymce.com/">TinyMCE WYSIWYG editor v3.5.8 </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>
1015
1016             <h2>Font Awesome</h2>
1017             <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>
1018
1019             <h2>CodeMirror editing library</h2>
1020             <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>
1021
1022             <h2>FileSaver library</h2>
1023             <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>
1024
1025             <h2>Require.js JS module system</h2>
1026             <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>
1027
1028             <h2>OAI xslt stylesheet</h2>
1029             <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>
1030
1031             <h2>Select2</h2>
1032             <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>
1033
1034             <h2>jquery.tablednd.js</h2>
1035             <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>
1036
1037             <h2>Leaflet</h2>
1038             <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>
1039
1040             <h2>jquery.emojiarea.js</h2>
1041             <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>
1042
1043             <h2>JSZip</h2>
1044             <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>
1045
1046             <h2>D3.js</h2>
1047             <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>
1048
1049             <h2>C3.js</h2>
1050             <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>
1051
1052             <h2>Font Face Observer</h2>
1053             <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>
1054
1055             <h2>Noto fonts</h2>
1056             <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>
1057         </div>
1058
1059         <div id="translations">
1060             <h2>Translation</h2>
1061             <ul>
1062 <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.
1063 <li>&#4768;&#4635;&#4653;&#4763; (Amharic) Getway II Ethiopia Co. (Yohannes Mulugeta (Team Leader), Tegene Assefa, Abiyot Bayou)</li>
1064 <li>Armenian Tigran Zargaryan</li>
1065 <li>&#1041;&#1098;&#1083;&#1075;&#1072;&#1088;&#1089;&#1082;&#1080; (Bulgarian) Radoslav Kolev</li>
1066 <li>euskara (Basque) Fernando Berrizbeitia, the librarians of Eima Katalogoa, Tabakalera International Contemporary Culture Centre, and Nere Erkiaga</li>
1067 <li>&#2476;&#2494;&#2434;&#2482;&#2494; (Bengali) Parthasarathi Mukhopadhyay</li>
1068 <li>&#20013;&#25991; (Chinese)</li>
1069 <li>Hrvatski (Croatian)</li>
1070 <li>&#x010D;e&#353;tina (Czech)</li>
1071 <li>D&aelig;nsk (Danish)</li>
1072 <li>Nederlands-Nederland (Dutch-The Netherlands) Sponsored by Rijksmuseum</li>
1073 <li>Nederlands-Belgi&euml; (Dutch-Belgium)</li>
1074 <li>English</li>
1075 <li>suomi, suomen kieli (Finnish) Pasi Korkalo</li>
1076 <li>Fran&ccedil;ais (French) <a href="http://www.koha-fr.org/content/lassociation-kohala">Kohala</a>, Pascale Nalon (ENSMP), and many more </li>
1077 <li>Galego (Galician) Ignacio Javier</li>
1078 <li>Deutsch (German) Friedrich zur Hellen, Robert Hillig, Katrin Fischer, Beda Szukics, Mirko Tietgen and Marc Véron</li>
1079 <li>&#949;&#955;&#955;&#951;&#957;&#953;&#954;&#940; (Greek, Modern [1453- ]) Georgia Katsarou, Panoraia Gaitanou and Kiriaki Roditi</li>
1080 <li>&#1506;&#1489;&#1512;&#1497;&#1514; (Hebrew)</li>
1081 <li>&#2361;&#2367;&#2344;&#2381;&#2342;&#2368; (Hindi)</li>
1082 <li>Magyar (Hungarian)Agnes Imecs</li>
1083 <li>Norsk Bokmål (Norwegian) Axel Bojer and Thomas Gramstad</li>
1084 <li>Norsk Nynorsk (Norwegian) Unni Knutsen and Marit Kristine Ådland</li>
1085 <li>(Indonesian)</li>
1086 <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>
1087 <li>&#26085;&#26412;&#35486; (Japanese)</li>
1088 <li>&#54620;&#44397;&#50612; (Korean)</li>
1089 <li>&#3221;&#3240;&#3277;&#3240;&#3233; (kanna&#7693;a)</li>
1090 <li>Latina (Latin)</li>
1091 <li>Lao Anousak Anthony Souphavanh</li>
1092 <li>M&#257;ori</li>
1093 <li>&#3374;&#3378;&#3375;&#3390;&#3379;&#3330; (Malayalam)</li>
1094 <li>&#1601;&#1575;&#1585;&#1587;&#1609; (Persian)</li>
1095 <li>&#2835;&#2908;&#2879;&#2822; (&#x014D;&#7771;iy&#257;)</li>
1096 <li>Polski (Polish)</li>
1097 <li>Portugu&ecirc;s (Portuguese)</li>
1098 <li>Rom&acirc;n&#259; (Romanian)</li>
1099 <li>&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081; (Russian) Victor Titarchuk and Serhij Dubyk</li>
1100 <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>
1101 <li>Svenska (Swedish)</li>
1102 <li>Tetun (Tetum) Karen Myers</li>
1103 <li>&#3616;&#3634;&#3625;&#3634;&#3652;&#3607;&#3618; (Thai)</li>
1104 <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>
1105 <li>&#1575;&#1585;&#1583;&#1608;(Urdu) Ata ur Rehman</li>
1106 <li>&#1059;&#1082;&#1088;&#1072;&#1111;&#1085;&#1089;&#1100;&#1082;&#1072; (Ukrainian) Victor Titarchuk and Serhij Dubyk</li>
1107             </ul>
1108
1109         </div>
1110
1111         <div id="history">
1112         <h2>Koha history timeline</h2>
1113     [% IF ! timeline_read_error %]
1114         <table style="cursor:pointer">
1115         <thead>
1116         <tr>
1117             <td  style="font-weight:bold;" >Date</td>
1118             <td  style="font-weight:bold;" >Description</td>
1119         </tr>
1120         </thead>
1121         [% FOREACH tabl IN table2 %]
1122             <tr class="[% loop.parity | html %]">
1123                 [% FOREACH ro IN tabl.row2 %]
1124                      <td>[% ro.date | html %]</td>
1125                      <td>[% ro.desc | html %]</td>
1126                 [% END %]
1127             </tr>
1128         [% END %]
1129         </table>
1130     [% ELSE %]
1131         <div class="dialog alert">
1132             Could not read the history.txt file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
1133         </div>
1134     [% END %]
1135         </div>
1136
1137     </div>
1138 </div>
1139 </div>
1140
1141 [% MACRO jsinclude BLOCK %]
1142     <script type="text/javascript">
1143          $(document).ready(function() {
1144             $('#abouttabs').tabs();
1145          });
1146     </script>
1147 [% END %]
1148 <!-- the main div is closed in intranet-bottom.inc -->
1149 [% INCLUDE 'intranet-bottom.inc' %]