Bug 17261: (followup) Mention the need to start memcached before plack
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / about.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; About Koha</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 <script type="text/javascript">
5 //<![CDATA[
6
7      $(document).ready(function() {
8         $('#abouttabs').tabs();
9      });
10 //]]>
11 </script>
12 </head>
13 <body id="about_about" class="about">
14 [% INCLUDE 'header.inc' %]
15
16 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; About Koha</div>
17
18 <div id="doc3" class="yui-t7">
19
20    <div id="bd">
21     <div id="yui-main">
22     <div class="yui-g">
23             <h1>About Koha</h1>
24
25     <div id="abouttabs" class="toptabs numbered">
26         <ul>
27         <li><a href="#about">Server information</a></li>
28         <li><a href="#perl">Perl modules</a></li>
29         <li><a href="#sysinfo">System information</a></li>
30         <li><a href="#team">Koha team</a></li>
31         <li><a href="#licenses">Licenses</a></li>
32         <li><a href="#translations">Translations</a></li>
33         <li><a href="#history">Timeline</a></li>
34         </ul>
35
36         <div id="about">
37
38         <table>
39             <caption>Server information</caption>
40             <tr><th scope="row">Koha version: </th><td>[% kohaVersion |html %]</td></tr>
41             <tr><th scope="row">OS version ('uname -a'): </th><td>[% osVersion |html %]</td></tr>
42             <tr><th scope="row">Perl interpreter: </th><td>[% perlPath |html %]</td></tr>
43             <tr><th scope="row">Perl version: </th><td>[% perlVersion |html %]</td></tr>
44             <tr><th scope="row">Perl @INC: </th><td>
45                 [% FOREACH perlIncPat IN perlIncPath %]
46                     [% perlIncPat.perlinc |html %] <br />
47                 [% END %]
48             </td></tr>
49             <tr><th scope="row">MySQL version: </th><td>[% mysqlVersion |html %]</td></tr>
50             <tr><th scope="row">Apache version: </th><td>[% apacheVersion |html %]</td></tr>
51           [% IF (is_psgi) %]
52             <tr><th scope="row">PSGI: </th><td>[% psgi_server |html %]</td></tr>
53           [% END %]
54             <tr><th scope="row">Memcached: </th>
55                 <td>
56                     Servers: [% IF memcached_servers %]<span>[% memcached_servers | html %]</span>
57                              [% ELSE %]<span>undefined</span>[% END %] |
58                     Namespace: [% IF memcached_namespace %]<span>[% memcached_namespace | html %]</span>
59                                [% ELSE %]<span>undefined</span>[% END %] |
60                     Status: [% IF memcached_servers %]
61                                 [% IF memcached_running and is_memcached_still_active %]
62                                     <span class="status_ok">running</span>.
63                                 [% ELSE %]
64                                     <span class="status_warn">not running</span>.
65                                     [% IF is_psgi %]
66                                         <span>Remember memcached needs to be started before Plack.</span>
67                                     [% END %]
68                                 [% END %]
69                             [% ELSE %]
70                                 <span>unknown</span>
71                             [% END %]
72                   [% IF effective_caching_method != 'Cache::Memcached::Fast' %]
73                     | Effective caching method: [% effective_caching_method %]
74                   [% END %]
75                 </td>
76             </tr>
77             <tr><th scope="row">Zebra version: </th><td>[% zebraVersion |html %]</td></tr>
78             [% IF (errZebraConnection == 10000) %]
79             <tr><th scope="row"><b>Error</b> </th><td>Zebra server seems not to be available. Is it started?</td></tr>
80             [% ELSIF (errZebraConnection) %]
81             <tr><th scope="row"><b>Warning</b> </th><td>Error message from Zebra: [% ( errZebraConnection ) %] </td></tr>
82             [% END %]
83         </table>
84         </div>
85         <div id="perl">
86             <table style="cursor:pointer">
87                 <caption>Perl modules</caption>
88                 [% FOREACH tabl IN table %]
89                 <tr>
90                     [% FOREACH ro IN tabl.row %]
91                     [% IF ( ro.current ) %]
92                     [% IF ( ro.require ) %]
93                     <th scope="row" style="font-weight:bold;" title="Module current">
94                     [% ELSE %]
95                     <th scope="row" style="font-weight:normal" title="Module current">
96                     [% END %]
97                     [% ELSIF ( ro.upgrade ) %]
98                     [% IF ( ro.require ) %]
99                     <th scope="row" style="background-color:#FFCB2F;font-weight:bold;" title="Module upgrade needed">
100                     [% ELSE %]
101                     <th scope="row" style="background-color:#FFCB2F;font-weight:normal" title="Module upgrade needed">
102                     [% END %]
103                     [% ELSE %]
104                     [% IF ( ro.name == '' ) %]
105                     <th>
106                     [% ELSIF ( ro.require ) %]
107                     <th scope="row" style="background-color:#FF8A8A;font-weight:bold;" title="Required module missing">
108                     [% ELSE %]
109                     <th scope="row" style="background-color:#FF8A8A;font-weight:normal" title="Optional module missing">
110                     [% END %]
111                     [% END %]
112                     [% IF ( ro.name ) %]
113                     [% ro.name %] <span style="font-weight:normal; font-size:smaller"> ([%ro.reqversion %])</span>
114                     [% END %]
115                     </th>
116                     [% IF ( ro.name == '' ) %]
117                     <td>
118                     [% ELSIF ( ro.version ) %]
119                     <td>[% ro.version %]
120                     [% ELSE %]
121                     <td style="font-weight:bold">Not Installed [% END %]</td>
122                     [% END %]
123                 </tr>
124                 [% END %]
125             </table>
126         </div>
127
128         <div id="sysinfo">
129     [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatron || warnPrefAnonymousPatron_PatronDoesNotExist ||
130           warnNoActiveCurrency || QueryParserError || warnIsRootUser || xml_config_warnings.size || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError %]
131         [% IF (warnIsRootUser) %]
132             <h2>Warning regarding current user</h2>
133             <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>
134             <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>
135         [% END %]
136
137         [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatron || warnPrefAnonymousPatron_PatronDoesNotExist ||
138               warnNoActiveCurrency || QueryParserError || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError%]
139             <h2>Warnings regarding the system configuration</h2>
140             <table>
141                 <caption>Preferences and parameters</caption>
142                 [% IF (warnPrefBiblioAddsAuthorities) %]
143                 <tr><th scope="row"><b>Warning</b> </th><td>System preference 'AutoCreateAuthorities' set, but needs 'BiblioAddsAuthorities' set as well.</td></tr>
144                 [% END %]
145                 [% IF (warnPrefEasyAnalyticalRecords) %]
146                 <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>
147                 [% END %]
148                 [% IF warnPrefAnonymousPatron %]
149                     <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>
150                 [% END %]
151                 [% IF warnPrefAnonymousPatron_PatronDoesNotExist %]
152                     <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>
153                 [% END %]
154                 [% IF warnNoActiveCurrency %]
155                     <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>
156                 [% END %]
157                 [% IF warnStatisticsFieldsError %]
158                     <tr><th scope="row"><b>Warning</b> </th><td>System preference 'StatisticsFields' contains field names not belonging to the items database table: [% warnStatisticsFieldsError %] </td></tr>
159                 [% END %]
160                 [% IF QueryParserError %]
161                     <tr><th scope="row"><b>Warning</b> </th><td>
162                         You have set UseQueryParser but there was a problem inititializing QueryParser.
163                     [% IF QueryParserError.fallback %]
164                         The 'queryparser_config' entry is missing in your configuration file.
165                         The following configuration file was used without success: [% QueryParserError.file %].
166                     [% ELSE %]
167                         The following configuration file was used without success: [% QueryParserError.file %].
168                     [% END %]
169                         </td>
170                     </tr>
171                 [% END %]
172                 [% IF AutoSelfCheckPatronDoesNotHaveSelfCheckPerm %]
173                     <tr><th scope="row"><b>Warning</b> </th><td>
174                     The patron used for the self checkout module at the OPAC does not have the circulate => self_checkout permission.
175                     </td></tr>
176                 [% END %]
177                 [% IF AutoSelfCheckPatronHasTooManyPerm %]
178                     <tr><th scope="row"><b>Warning</b> </th><td>
179                     The patron used for the self checkout module at the OPAC has too many permissions. They should only have circulate => self_checkout.
180                     </td></tr>
181                 [% END %]
182             </table>
183         [% END %]
184
185         [% IF xml_config_warnings.size %]
186             <table>
187                 <caption>XML configuration file</caption>
188             [% FOREACH config_entry IN xml_config_warnings %]
189                 [% IF config_entry.error == 'zebra_bib_index_mode_warn' %]
190                 <tr>
191                     <th scope="row"><b>Warning</b></th>
192                     <td>The &lt;zebra_bib_index_mode&gt; entry is missing in your configuration file.
193                         It should be set to 'dom' or 'grs1' (deprecated).
194                         It will default to 'dom'.
195                     </td>
196                 </tr>
197                 [% ELSIF config_entry.error == 'zebra_bib_mode_seems_grs1' %]
198                 <tr>
199                     <th scope="row"><b>Info</b></th>
200                     <td>Your configuration file still seems to be set up for 'grs1'.</td>
201                 </tr>
202                 [% ELSIF config_entry.error == 'zebra_bib_mode_seems_dom' %]
203                 <tr>
204                     <th scope="row"><b>Info</b></th>
205                     <td>Your configuration file seems to be set up for 'dom'.</td>
206                 </tr>
207                 [% ELSIF config_entry.error == 'zebra_auth_index_mode_warn' %]
208                 <tr>
209                     <th scope="row"><b>Warning</b></th>
210                     <td>The &lt;zebra_auth_index_mode&gt; entry is missing in your configuration file.
211                         It should be set to 'dom' or 'grs1' (deprecated).
212                         It will default to 'dom'.
213                     </td>
214                 </tr>
215                 [% ELSIF config_entry.error == 'zebra_auth_mode_seems_grs1' %]
216                 <tr>
217                     <th scope="row"><b>Info</b></th>
218                     <td>Your configuration file still seems to be set up for 'grs1'.</td>
219                 </tr>
220                 [% ELSIF config_entry.error == 'zebra_auth_mode_seems_dom' %]
221                 <tr>
222                     <th scope="row"><b>Info</b></th>
223                     <td>Your configuration file seems to be set up for 'dom'.</td>
224                 </tr>
225                 [% ELSIF config_entry.error == 'zebra_bib_grs_warn' %]
226                 <tr>
227                     <th scope="row"><b>Warning</b></th>
228                     <td>The &lt;zebra_bib_index_mode&gt; entry is set to 'grs1'.
229                         GRS-1 support is now deprecated and will be removed in future releases.
230                         Please use DOM instead. To switch follow this page of wiki:
231                         <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">Switching to dom indexing</a>
232                     </td>
233                 </tr>
234                 [% ELSIF config_entry.error == 'zebra_bib_index_mode_mismatch_warn' %]
235                 <tr>
236                     <th scope="row"><b>Warning</b></th>
237                     <td>The &lt;zebra_bib_index_mode&gt; entry is set to 'dom', but your system still appears to be set up for 'grs1' indexing.</td>
238                 </tr>
239                 [% ELSIF config_entry.error == 'zebra_auth_grs_warn' %]
240                 <tr>
241                     <th scope="row"><b>Warning</b></th>
242                     <td>The &lt;zebra_auth_index_mode&gt; entry is set to 'grs1'.
243                         GRS-1 support is now deprecated and will be removed in future releases.
244                         Please use DOM instead. To switch follow this page of wiki:
245                         <a href="https://wiki.koha-community.org/wiki/Switching_to_dom_indexing">Switching to dom indexing</a>
246                     </td>
247                 </tr>
248                 [% ELSIF config_entry.error == 'zebra_auth_index_mode_mismatch_warn' %]
249                 <tr>
250                     <th scope="row"><b>Warning</b></th>
251                     <td>The &lt;zebra_auth_index_mode&gt; entry is set to 'dom', but your system still appears to be set up for 'grs1' indexing.</td>
252                 </tr>
253                 [% ELSIF config_entry.error == 'queryparser_entry_missing' %]
254                 <tr>
255                     <th scope="row"><b>Warning</b></th>
256                     <td>You have set UseQueryParser but the 'queryparser_config' entry is missing in your configuration
257                         file. [% config_entry.file %] is used as a fallback.
258                     </td>
259                 </tr>
260                 [% ELSIF config_entry.error == 'use_zebra_facets_entry_missing' %]
261                 <tr>
262                     <th scope="row"><b>Warning</b></th>
263                     <td>The &lt;use_zebra_facets&gt; entry is missing in your configuration file. Falling back
264                         to legacy facet calculation.
265                     </td>
266                 </tr>
267                 [% ELSIF config_entry.error == 'use_zebra_facets_needs_dom' %]
268                 <tr>
269                     <th scope="row"><b>Warning</b></th>
270                     <td>You have set &lt;use_zebra_facets&gt; but the &lt;zebra_bib_index_mode&gt; is not set to 'dom'. Falling back
271                         to legacy facet calculation.
272                     </td>
273                 </tr>
274                 [% ELSIF config_entry.error == 'log4perl_entry_missing' %]
275                 <tr>
276                     <th scope="row"><b>Warning</b></th>
277                     <td>You are missing the &lt;log4perl_conf&gt; entry in your koha-conf.xml file. Please
278                         add it, pointing to the log4perl.conf file for your Koha instance.
279                     </td>
280                 </tr>
281                 [% ELSIF config_entry.error == 'uploadpath_entry_missing' %]
282                 <tr>
283                     <th scope="row"><b>Warning</b></th>
284                     <td>You are missing the &lt;upload_path&gt; entry in your koha-conf.xml file. Please
285                         add it, pointing to the configured file upload directory for your Koha instance.
286                     </td>
287                 </tr>
288                 [% ELSIF config_entry.error == 'uploadpath_and_opacbaseurl_entry_missing' %]
289                 <tr>
290                     <th scope="row"><b>Warning</b></th>
291                     <td>You are missing the &lt;upload_path&gt; entry in your koha-conf.xml file. Please
292                         add it, pointing to the configured file upload directory for your Koha instance.
293                         Also note that you need to properly set the OPACBaseURL preference for the file upload plugin to work.
294                     </td>
295                 </tr>
296                 [% END %]
297             [% END %]
298             </table>
299         [% END %]
300     [% ELSE %]
301         <p>No warnings.</p>
302     [% END %]
303         </div>
304
305         <div id="team">
306             <h2>Special thanks to the following organizations</h2>
307             <ul>
308                 <li><a href="http://library.org.nz">Horowhenua Library Trust</a>, New Zealand, and Rosalie Blake, Head of Libraries, (Koha 1.0)</li>
309                 <li>The <a href="http://www.myacpl.org/">Athens County Public Libraries</a>, Ohio, USA (MARC sponsorship, documentation, template maintenance)</li>
310                 <li><a href="http://www.emn.fr">EMN (Ecole des Mines de Nantes)</a>, France (Suggestions, Stats wizards and improved LDAP sponsorship)</li>
311                 <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>
312                 <li><a href="http://www.mediathequeouestprovence.fr/">SAN-Ouest Provence</a>, France (Koha 3.0 enhancements to patrons and holds modules)</li>
313                 <li>The <a href="http://ccfls.org">Crawford County Federated Library System</a>, PA, USA (Koha 3.0 Zebra Integration sponsorship)</li>
314                 <li>The <a href="http://www.geauga.lib.oh.us/">Geauga County Public Library</a>, OH, USA (Koha 3.0 beta testing)</li>
315                 <li>The <a href="http://library.neu.edu.tr">Near East University</a>, Cyprus</li>
316                 <li>OPUS International Consultants, Wellington, New Zealand (Corporate Serials sponsorship)</li>
317                 <li><a href="http://www.famfamfam.com/">famfamfam.com</a> Birmingham (UK) based developer Mark James for the famfamfam Silk iconset.</li>
318                 <li><a href="http://www.ashs.school.nz/">Albany Senior High School</a>, Auckland, New Zealand (OPAC 'star-ratings' sponsorship)</li>
319             </ul>
320
321             <h2>Koha <span style="color:red" title="Koha version numbering has jumped from 3.22 to 16.05 (yy.mm) as from May 2016">16.11</span> release team</h2>
322             <ul>
323                 <li><strong>Release manager:</strong>
324                     <a href="https://www.openhub.net/p/koha/contributors/6620692261494">Kyle Hall</a>, <a href="https://www.openhub.net/p/koha/contributors/6618544661344">Brendan Gallagher</a></li>
325                 <li><strong>Quality assurance manager:</strong>
326                     <a href="https://www.openhub.net/p/koha/contributors/6618544670742">Katrin Fischer</a></li>
327                 <li><strong>(Database) Documentation manager:</strong>
328                     <a href="https://www.openhub.net/p/koha/contributors/6618544646984">Nicole C. Engard</a>, David Nind (Assistant)
329                 </li>
330                 <li><strong>Translation manager:</strong>
331                     <a href="https://www.openhub.net/p/koha/contributors/6618544839606">Bernardo González Kriegel</a></li>
332                 <li><strong>Quality assurance team:</strong>
333                     <ul>
334                         <li><a href="https://www.openhub.net/p/koha/contributors/6618544730094">Tomás Cohen Arazi</a></li>
335                         <li><a href="https://www.openhub.net/p/koha/contributors/6620692886191">Nick Clemens</a></li>
336                         <li><a href="https://www.openhub.net/p/koha/contributors/6618545125093">Jonathan Druart</a></li>
337                         <li><a href="https://www.openhub.net/p/koha/contributors/6620692261494">Kyle Hall</a></li>
338                         <li><a href="https://www.openhub.net/p/koha/contributors/6618544727712">Marcel de Rooy</a></li>
339                         <li><a href="https://www.openhub.net/p/koha/contributors/6618544627356">Jesse Weaver</a></li>
340                     </ul>
341                 </li>
342                 <li><strong>Release maintainers:</strong>
343                     <ul>
344                         <li><a href="https://www.openhub.net/p/koha/contributors/6620692210484">Frédéric Demians</a> (16.05)</li>
345                         <li><a href="https://www.openhub.net/p/koha/contributors/6620692419690">Julian Maurice</a> (3.22)</li>
346                         <li><a href="https://www.openhub.net/p/koha/contributors/6618544609030">Chris Cormack</a> (3.20)</li>
347                     </ul>
348                 </li>
349                 <li><strong>Packaging manager:</strong>
350                     <a href="https://www.openhub.net/p/koha/contributors/6620692605913">Mirko Tietgen</a>
351                 </li>
352                 <li><strong>Jenkins maintainer:</strong>
353                     <a href="https://www.openhub.net/p/koha/contributors/6618544730094">Tomás Cohen Arazi</a>
354                 </li>
355                 <li><strong>Bug wranglers:</strong>
356                     <ul>
357                         <li>Indranil Das Gupta</li>
358                         <li><a href="https://www.openhub.net/p/koha/contributors/6618545408147">Marc Véron</a></li>
359                     </ul>
360                 </li>
361             </ul>
362
363             <h2>Koha development team</h2>
364             <ul>
365                 <li>Jacek Ablewicz</li>
366                 <li>Md. Aftabuddin</li>
367                 <li>Jon Aker</li>
368                 <li>Chloe Alabaster</li>
369                 <li>Edward Allen</li>
370                 <li>Francisco M. Marzoa Alonso</li>
371                 <li>Joseph Alway</li>
372                 <li>Cindy Murdock Ames</li>
373                 <li>Aleisha Amohia</li>
374                 <li>Roman Amor</li>
375                 <li>Richard Anderson</li>
376                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692181851">Nahuel Angelinetti</a></li>
377                 <li>Nuño López Ansótegui</li>
378                 <li>Dimitris Antonakis</li>
379                 <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 QA Team Member)</a></li>
380                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692124662">Andrew Arensburger (the small and great C4::Context module)</a></li>
381                 <li>Alex Arnaud</li>
382                 <li>Petter Goksoyr Asen</li>
383                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544614259">Joe Atzberger</a></li>
384                 <li>Héctor Eduardo Castro Avalos</li>
385                 <li>Larry Baerveldt</li>
386                 <li>Marc Balmer</li>
387                 <li>Edmund Balnaves</li>
388                 <li>Al Banks</li>
389                 <li>Daniel Banzli</li>
390                 <li>Stefano Bargioni</li>
391                 <li>Daniel Barker</li>
392                 <li>Greg Barniskis</li>
393                 <li>Benedykt P. Barszcz (Polish for 2.0)</li>
394                 <li>D Ruth Bavousett (3.12 Translation Manager)</li>
395                 <li>Maxime Beaulieu</li>
396                 <li>Natalie Bennison</li>
397                 <li>John Beppu</li>
398                 <li>Pablo Bianchi</li>
399                 <li>David Birmingham</li>
400                 <li>Florian Bischof</li>
401                 <li>Gaetan Boisson</li>
402                 <li>Danny Bouman</li>
403                 <li>Christopher Brannon (3.20 QA Team Member)</li>
404                 <li>Stan Brinkerhoff</li>
405                 <li>Isaac Brodsky</li>
406                 <li>Ivan Brown</li>
407                 <li>Roger Buck</li>
408                 <li>Steven Callender</li>
409                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692376789">Jared Camins-Esakov (3.12 Release Manager; 3.6 Release Maintainer)</a></li>
410                 <li>Colin Campbell (3.4 QA Manager)</li>
411                 <li>Fernando Canizo</li>
412                 <li>Barry Cannon</li>
413                 <li>Frédérick Capovilla</li>
414                 <li>DeAndre Carroll</li>
415                 <li>Chris Catalfo (new plugin MARC editor)</li>
416                 <li>Marc Chantreux</li>
417                 <li>Jerome Charaoui</li>
418                 <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>
419                 <li>Francois Charbonnier</li>
420                 <li>Evonne Cheung</li>
421                 <li>Andrew Chilton</li>
422                 <li>Barton Chittenden</li>
423                 <li>Koha SAB CINECA</li>
424                 <li>Nick Clemens</li>
425                 <li>Garry Collum</li>
426                 <li>David Cook</li>
427                 <li>John Copeland</li>
428                 <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 and 3.20 Release Maintainer; 3.2 Translation Manager; 3.14 QA Team Member)</a></li>
429                 <li>Jeremy Crabtree</li>
430                 <li>Samuel Crosby</li>
431                 <li>Christophe Croullebois</li>
432                 <li>Olivier Crouzet</li>
433                 <li>Nate Curulla</li>
434                 <li>Vincent Danjean</li>
435                 <li>Hugh Davenport</li>
436                 <li>Elliott Davis (3.12 QA Team Member)</li>
437                 <li>Doug Dearden</li>
438                 <li>Kip DeGraaf</li>
439                 <li>Stéphane Delaune</li>
440                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692210484">Frédéric Demians (3.4 - 3.10 Translation Manager; 3.20 Release Maintainer)</a></li>
441                 <li>Connor Dewar</li>
442                 <li>Srikanth Dhondi</li>
443                 <li>Rocio Dressler</li>
444                 <li><a href="https://www.openhub.net/p/koha/contributors/6618545125093">Jonathan Druart (3.8 - 16.05 QA Team Member)</a></li>
445                 <li>Serhij Dubyk</li>
446                 <li>Yohann Dufour</li>
447                 <li>Thomas Dukleth (MARC Frameworks Maintenance)</li>
448                 <li>Frederic Durand</li>
449                 <li>Sebastiaan Durand</li>
450                 <li>Rachel Dustin</li>
451                 <li>Ecole des Mines de Saint Etienne, Philippe Jaillon (OAI-PMH support)</li>
452                 <li>Stephen Edwards</li>
453                 <li>Gus Ellerm</li>
454                 <li>Andrew Elwell</li>
455                 <li>Brian Engard</li>
456                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544646984">Nicole C. Engard (3.0 - 16.05 Documentation Manager)</a></li>
457                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544677502">Magnus Enger</a></li>
458                 <li>Esiee School (Jérome Vizcaino, Michel Lerenard, Pierre Cauchois)</li>
459                 <li>Jason Etheridge</li>
460                 <li>Shaun Evans</li>
461                 <li>Pat Eyler (Kaitiaki from 2002 to 2004)</li>
462                 <li>Charles Farmer</li>
463                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544609865">Antoine Farnault</a></li>
464                 <li>Arslan Farooq</li>
465                 <li>Vitor Fernandes</li>
466                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544609053">Joshua Ferraro (3.0 Release Manager and Translation Manager)</a></li>
467                 <li>Julian Fiol</li>
468                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544670742">Katrin Fischer (3.12 - 16.05 QA Manager)</a></li>
469                 <li>Connor Fraser</li>
470                 <li>Clay Fouts</li>
471                 <li>Brendon Ford</li>
472                 <li>Claudia Forsman</li>
473                 <li>Corey Fuimaono</li>
474                 <li>Marco Gaiarin</li>
475                 <li>Pierrick Le Gall</li>
476                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544661344">Brendan A. Gallagher (3.14 - 3.22 QA Team Member; 16.05 Release Manager)</a></li>
477                 <li>Tumer Garip</li>
478                 <li>Russel Garlick</li>
479                 <li>Mark Gavillet</li>
480                 <li>Claire Gravely</li>
481                 <li>Daniel Kahn Gillmor</li>
482                 <li>David Goldfein</li>
483                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544839606">Bernardo González Kriegel (3.14 - 16.05 Translation Manager; 3.10 Release Maintainer)</a></li>
484                 <li>Briana Greally</li>
485                 <li>Daniel Grobani</li>
486                 <li>Amit Gupta</li>
487                 <li>Indranil Das Gupta</li>
488                 <li>Michael Hafen</li>
489                 <li>Christopher Hall (3.8 Release Maintainer)</li>
490                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692261494">Kyle Hall (3.8 Release Maintainer; 3.14 - 16.05 QA Team Member)</a></li>
491                 <li>Sean Hamlin</li>
492                 <li>Tim Hannah</li>
493                 <li>Mike Hansen</li>
494                 <li>Brian Harrington</li>
495                 <li>Brandon Haveman</li>
496                 <li>Rochelle Healy</li>
497                 <li>Emma Heath</li>
498                 <li>Friedrich zur Hellen</li>
499                 <li>Kate Henderson</li>
500                 <li>Michaes Herman</li>
501                 <li>Claire Hernandez</li>
502                 <li>Wolfgang Heymans</li>
503                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544614261">Ryan Higgins</a></li>
504                 <li>Morag Hills</li>
505                 <li>Sèbastien Hinderer</li>
506                 <li>Kristina D.C. Hoeppner</li>
507                 <li>Stephanie Hogan</li>
508                 <li>Karl Holten</li>
509                 <li>Daniel Holth</li>
510                 <li>Andrew Hooper</li>
511                 <li>Alexandra Horsman</li>
512                 <li>Tom Houlker</li>
513                 <li>Matthew Hunt</li>
514                 <li>Christopher Hyde</li>
515                 <li>Rolando Isidoro</li>
516                 <li>Cory Jaeger</li>
517                 <li>Srdjan Jankovic</li>
518                 <li>Philippe Jaillon</li>
519                 <li><a href="https://www.openhub.net/accounts/kohaaloha">Mason James (3.10 - 3.14 QA Team Member, 3.16 Release Maintainer)</a></li>
520                 <li>Mike Johnson</li>
521                 <li>Donovan Jones</li>
522                 <li>Bart Jorgensen</li>
523                 <li>Janusz Kaczmarek</li>
524                 <li>Koustubha Kale</li>
525                 <li>Pasi Kallinen</li>
526                 <li>Peter Crellan Kelly</li>
527                 <li>Jorgia Kelsey</li>
528                 <li>Olli-Antti Kivilahti</li>
529                 <li>Attila Kinali</li>
530                 <li>Ulrich Kleiber</li>
531                 <li>Rafal Kopaczka</li>
532                 <li>Piotr Kowalski</li>
533                 <li>Joonas Kylmälä</li>
534                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544614275">Henri-Damien Laurent (3.0 Release Maintainer)</a></li>
535                 <li>Arnaud Laurin</li>
536                 <li>Nicolas Legrand</li>
537                 <li>Sonia Lemaire</li>
538                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544609147">Owen Leonard (3.0+ Interface Design)</a></li>
539                 <li>Ambrose Li (translation tool)</li>
540                 <li>Gynn Lomax</li>
541                 <li>Peter Lorimer</li>
542                 <li>Robert Lyon (Corporate Serials)</li>
543                 <li>Merllisia Manueli</li>
544                 <li>Francois Marier</li>
545                 <li>Jesse Maseto</li>
546                 <li>Frère Sébastien Marie</li>
547                 <li>Ricardo Dias Marques</li>
548                 <li>Julian Maurice (3.18 QA Team Member; 3.22 Release Maintainer)</li>
549                 <li>Remi Mayrand-Provencher</li>
550                 <li>Brig C. McCoy</li>
551                 <li>Dorian Meid (German translation)</li>
552                 <li>Meenakshi. R</li>
553                 <li>Melia Meggs</li>
554                 <li>Holger Meißner</li>
555                 <li>Karl Menzies</li>
556                 <li>Matthias Meusburger</li>
557                 <li>Sophie Meynieux</li>
558                 <li>Janet McGowan</li>
559                 <li>Alan Millar</li>
560                 <li>Jono Mingard</li>
561                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544607803">Andrew Moore</a></li>
562                 <li>Francesca Moore</li>
563                 <li>Josef Moravec</li>
564                 <li>Sharon Moreland</li>
565                 <li>Nicolas Morin</li>
566                 <li>Mike Mylonas</li>
567                 <li>Natasha ?? [Catalyst Academy]</li>
568                 <li>Nadia Nicolaides</li>
569                 <li>Joy Nelson</li>
570                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544615991">Chris Nighswonger (3.2 - 3.6 Release Maintainer)</a></li>
571                 <li>Brian Norris</li>
572                 <li>Duy Tinh Nguyen</li>
573                 <li>Simith D'Oliveira</li>
574                 <li>Albert Oller</li>
575                 <li>Eric Olsen</li>
576                 <li>H. Passini</li>
577                 <li>Aliki Pavlidou</li>
578                 <li>Dobrica Pavlinusic</li>
579                 <li>Maxime Pelletier</li>
580                 <li>Shari Perkins</li>
581                 <li>Martin Persson</li>
582                 <li>Fred Pierre</li>
583                 <li>Genevieve Plantin</li>
584                 <li>Polytechnic University</li>
585                 <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>
586                 <li>Karam Qubsi</li>
587                 <li>Romina Racca</li>
588                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692116417">MJ Ray (2.0 Release Maintainer)</a></li>
589                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544650708">Liz Rea</a> (3.6, 3.18 Release Maintainer)</li>
590                 <li>Thatcher Rea</li>
591                 <li>Allen Reinmeyer</li>
592                 <li>Serge Renaux</li>
593                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544785220">Martin Renvoize (3.16 - 16.05 QA Team Member)</a></li>
594                 <li>Abby Robertson</li>
595                 <li>Waylon Robertson</li>
596                 <li>Benjamin Rokseth</li>
597                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544727712">Marcel de Rooy (3.8 - 16.05 QA Team Member)</a></li>
598                 <li>Salvador Zaragoza Rubio</li>
599                 <li>Mathieu Saby</li>
600                 <li>Eivin Giske Skaaren</li>
601                 <li>Brice Sanchez</li>
602                 <li>Sam Sanders</li>
603                 <li>Viktor Sarge</li>
604                 <li>A. Sassmannshausen</li>
605                 <li>Adrien Saurat</li>
606                 <li>Dan Scott</li>
607                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544619438">Robin Sheat (3.2 - 3.22 Packaging Manager)</a></li>
608                 <li>Juhani Seppälä</li>
609                 <li>John Seymour</li>
610                 <li>Juan Romay Sieira</li>
611                 <li>Zach Sim</li>
612                 <li>Silvia Simonetti</li>
613                 <li>Savitra Sirohi</li>
614                 <li>Pawel Skuza (Polish for 1.2)</li>
615                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692831733">Fridolin Somers (3.14 Release Maintainer)</a></li>
616                 <li>Southeastern University</li>
617                 <li>Martin Stenberg</li>
618                 <li>Glen Stewart</li>
619                 <li>Will Stokes</li>
620                 <li>Simon Story</li>
621                 <li>David Strainchamps</li>
622                 <li>Ed Summers (Some code and Perl packages like MARC::Record)</li>
623                 <li>Daniel Sweeney</li>
624                 <li>Zeno Tajoli</li>
625                 <li>Lari Taskula</li>
626                 <li>Samanta Tello</li>
627                 <li>Adam Thick</li>
628                 <li><a href="https://www.openhub.net/p/koha/contributors/6618544609107">Finlay Thompson</a></li>
629                 <li>Peggy Thrasher</li>
630                 <li>Fabio Tiana</li>
631                 <li>Mirko Tietgen</li>
632                 <li>Mark Tompsett</li>
633                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692101577">Steve Tonnesen (early MARC work, Virtual Bookshelves concept, KohaCD)</a></li>
634                 <li>Bruno Toumi</li>
635                 <li>Andrei V. Toutoukine</li>
636                 <li>Duncan Tyler</li>
637                 <li>Kathryn Tyree</li>
638                 <li>Darrell Ulm</li>
639                 <li>Universidad ORT Uruguay (Ernesto Silva, Andres Tarallo)</li>
640                 <li><a href="https://www.openhub.net/p/koha/contributors/6618545408147">Marc Véron</a></li>
641                 <li>Justin Vos</li>
642                 <li>Aleksa Vujicic</li>
643                 <li>Reed Wade</li>
644                 <li>Stacey Walker</li>
645                 <li>Ian Walls (3.6 - 3.10 QA Manager)</li>
646                 <li><a href="https://www.openhub.net/accounts/janewagner">Jane Wagner</a></li>
647                 <li>Ward van Wanrooij</li>
648                 <li><a href="https://www.openhub.net/accounts/pianohacker">Jesse Weaver (16.05 QA Team Member)</a></li>
649                 <li>Stefan Weil</li>
650                 <li>Aaron Wells</li>
651                 <li>Rick Welykochy</li>
652                 <li>Piotr Wejman</li>
653                 <li>Ron Wickersham</li>
654                 <li>Brett Wilkins</li>
655                 <li><a href="https://www.openhub.net/p/koha/contributors/6620692127299">Olwen Williams (Database design and data extraction for Koha 1.0)</a></li>
656                 <li>Robert Williams</li>
657                 <li>James Winter</li>
658                 <li>Lars Wirzenius</li>
659                 <li>Thomas Wright</li>
660                 <li>Jen Zajac</li>
661                 <li>Kenza Zaki</li>
662             </ul>
663             <h3>Contributing companies and institutions</h3>
664             <ul>
665                 <li>BibLibre, France</li>
666                 <li>Bibliotheksservice-Zentrum Baden-Württemberg (BSZ), Germany</li>
667                 <li>ByWater Solutions, USA</li>
668                 <li>Calyx, Australia</li>
669                 <li>Catalyst IT, New Zealand</li>
670                 <li>C &amp; P Bibliography Services, USA</li>
671                 <li>Hochschule für Gesundheit (hsg), Germany</li>
672                 <li>Katipo Communications, New Zealand</li>
673                 <li>KEEP SOLUTIONS, Portugal</li>
674                 <li>KohaAloha, New Zealand</li>
675                 <li>LibLime, USA</li>
676                 <li>Libriotech, Norway</li>
677                 <li>Nelsonville Public Library, Ohio, USA</li>
678                 <li>Prosentient Systems, Australia</li>
679                 <li>PTFS, Maryland, USA</li>
680                 <li>PTFS Europe Ltd, United Kingdom</li>
681                 <li>Rijksmuseum, Amsterdam, The Netherlands</li>
682                 <li>SAN-Ouest Provence, France</li>
683                 <li>software.coop, United Kingdom</li>
684                 <li>Tamil, France</li>
685                 <li>Universidad Nacional de Córdoba, Argentina</li>
686                 <li>Xercode, Spain</li>
687             </ul>
688
689             <h2>Additional thanks to...</h2>
690             <ul>
691                 <li>Irma Birchall</li>
692                 <li>Rachel Hamilton-Williams (Kaitiaki from 2004 to present)</li>
693                 <li>Stephen Hedges (early Documentation Manager)</li>
694                 <li>Brooke Johnson</li>
695                 <li>Jo Ransom</li>
696                 <li>Nicholas Rosasco (Documentation Compiler)</li>
697                 <li>Regula Sebastiao</li>
698             </ul>
699         </div>
700
701         <div id="licenses">
702             <h2>Koha</h2>
703             <p>
704             <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>
705             </p>
706             <h2>jQuery and jQueryUI</h2>
707             <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>
708             <h2>Bootstrap</h2>
709             <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>
710             <h2>YUI</h2>
711             <p>
712             <a href="http://yuilibrary.com/license/">BSD License</a>
713             </p>
714             <h2>Famfamfam iconset</h2>
715               <ul>
716                 <li><a href="http://www.famfamfam.com/lab/icons/silk/">FamFamFam Site</a></li>
717                 <li><a href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a></li>
718               </ul>
719             <h2>The Bridge Material Type Icon Set</h2>
720               <ul>
721                 <li><a href="http://apps.carleton.edu/campus/library/bridge_icons/">Bridge Material Type Icons Project</a></li>
722                 <li>The Bridge Material Type Icon Set is licensed under a
723                   <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons Attribution-ShareAlike 2.5 License</a>
724                   by the Bridge Consortium of Carleton College and St. Olaf College.</li>
725               </ul>
726
727             <h2>The Noun Project icons</h2>
728                 <ul>
729                     <li>All images come from <a href="http://thenounproject.com/">The Noun Project</a> collection</li>
730                     <li>
731                         Circulation ("fair-trade") symbol by Edward Boatman ; Patrons
732                         ("children's library") symbol by Edward Boatman, Saul Tannenbaum,
733                         Stephen Kennedy, Nikki Snow, Brooke Hamilton ; Search ("magnifying
734                         glass") symbol by Philipp Suess ; Lists ("folder") symbol by Jack
735                         Biesek, Gladys Brenner, Margaret Faye, Healther Merrifield, Kate
736                         Keating, Wendy Olmstead, Todd Pierce, Jamie Cowgill, Jim Bolek ;
737                         Course reserves ("stack of books") symbol by Jeremy J. Bristol;
738                         Cataloging ("price tag") symbol by the Noun Project ; Authorities
739                         ("link") symbol by Matthew Exton ; Serials ("newspaper") symbol by John
740                         Caserta ; Acquisitions ("present") symbol by David Goodger ; Reports
741                         ("pie chart") symbol by Scott Lewis ; Administration ("gears") symbol by
742                         Jeremy Minnick ; Tools ("wrench") symbol by National Park Service
743                     </li>
744                 </ul>
745
746             <h2>jQuery Star Rating Plugin</h2>
747               <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>
748
749             <p>Copyright &copy; 2008 <a href="http://www.fyneworks.com/">Fyneworks.com</a></p>
750
751             <h2>jQuery insertAtCaret Plugin</h2>
752             <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>
753
754             <p>Copyright &copy; 2003-2010 phpMyAdmin devel team</p>
755
756             <h2>jQuery treetable Plugin</h2>
757
758             <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>
759
760             <h2>OpenJS Keyboard Shortcuts Library</h2>
761
762             <p>The <a href="http://www.openjs.com/scripts/events/keyboard_shortcuts/">OpenJS keyboard shortcuts library</a>
763                by Binny V A is licensed under the BSD license.</p>
764
765             <h2>jquery.dataTables.grouping.js</h2>
766             <p>The <a href="https://code.google.com/p/jquery-datatables-row-grouping/">jquery.dataTables.grouping.js</a>
767                plugin by Jovan Popovic is licensed under the BSD and GPL v2 license.</p>
768
769             <h2>jQuery Colvis plugin</h2>
770             <p>The <a href="http://datatables.net/extensions/colvis/">controls for column visiblity in DataTables</a>
771                 by Allan Jardine is licensed under the BSD 3 and GPL v2 license.</p>
772
773             <h2>jquery.multiple.select.js</h2>
774             <p>The <a href="http://wenzhixin.net.cn/p/multiple-select/">jQuery multiple select plugin</a>
775                by Zhixin Wen is licensed under the MIT license.</p>
776
777             <h2>Javascript Diff Algorithm</h2>
778             <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>
779
780             <h2>jQuery Validation Plugin</h2>
781             <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>
782
783             <h2>TinyMCE WYSIWYG editor</h2>
784             <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>
785
786             <h2>Font Awesome</h2>
787             <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>
788
789             <h2>CodeMirror editing library</h2>
790             <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>
791
792             <h2>FileSaver library</h2>
793             <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>
794
795             <h2>Require.js JS module system</h2>
796             <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>
797
798             <h2>OAI xslt stylesheet</h2>
799             <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>
800
801             <h2>Select2</h2>
802             <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>
803
804             <h2>jquery.tablednd.js</h2>
805             <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>
806         </div>
807
808         <div id="translations">
809             <h2>Translation</h2>
810             <ul>
811 <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.
812 <li>&#4768;&#4635;&#4653;&#4763; (Amharic) Getway II Ethiopia Co. (Yohannes Mulugeta (Team Leader), Tegene Assefa, Abiyot Bayou)</li>
813 <li>Armenian Tigran Zargaryan</li>
814 <li>&#1041;&#1098;&#1083;&#1075;&#1072;&#1088;&#1089;&#1082;&#1080; (Bulgarian) Radoslav Kolev</li>
815 <li>euskara (Basque) Fernando Berrizbeitia, the librarians of Eima Katalogoa, Tabakalera International Contemporary Culture Centre, and Nere Erkiaga</li>
816 <li>&#2476;&#2494;&#2434;&#2482;&#2494; (Bengali) Parthasarathi Mukhopadhyay</li>
817 <li>&#20013;&#25991; (Chinese)</li>
818 <li>Hrvatski (Croatian)</li>
819 <li>&#x010D;e&#353;tina (Czech)</li>
820 <li>D&aelig;nsk (Danish)</li>
821 <li>Nederlands-Nederland (Dutch-The Netherlands) Sponsored by Rijksmuseum</li>
822 <li>Nederlands-Belgi&euml; (Dutch-Belgium)</li>
823 <li>English</li>
824 <li>suomi, suomen kieli (Finnish) Pasi Korkalo</li>
825 <li>Fran&ccedil;ais (French) <a href="http://www.koha-fr.org/content/lassociation-kohala">Kohala</a>, Pascale Nalon (ENSMP), and many more </li>
826 <li>Galego (Galician) Ignacio Javier</li>
827 <li>Deutsch (German) Friedrich zur Hellen, Robert Hillig, Katrin Fischer, Beda Szukics, Mirko Tietgen and Marc Véron</li>
828 <li>&#949;&#955;&#955;&#951;&#957;&#953;&#954;&#940; (Greek, Modern [1453- ]) Georgia Katsarou, Panoraia Gaitanou and Kiriaki Roditi</li>
829 <li>&#1506;&#1489;&#1512;&#1497;&#1514; (Hebrew)</li>
830 <li>&#2361;&#2367;&#2344;&#2381;&#2342;&#2368; (Hindi)</li>
831 <li>Magyar (Hungarian)Agnes Imecs</li>
832 <li>Norsk Bokmål (Norwegian) Axel Bojer and Thomas Gramstad</li>
833 <li>Norsk Nynorsk (Norwegian) Unni Knutsen and Marit Kristine Ådland</li>
834 <li>(Indonesian)</li>
835 <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>
836 <li>&#26085;&#26412;&#35486; (Japanese)</li>
837 <li>&#54620;&#44397;&#50612; (Korean)</li>
838 <li>&#3221;&#3240;&#3277;&#3240;&#3233; (kanna&#7693;a)</li>
839 <li>Latina (Latin)</li>
840 <li>Lao Anousak Anthony Souphavanh</li>
841 <li>M&#257;ori</li>
842 <li>&#3374;&#3378;&#3375;&#3390;&#3379;&#3330; (Malayalam)</li>
843 <li>&#1601;&#1575;&#1585;&#1587;&#1609; (Persian)</li>
844 <li>&#2835;&#2908;&#2879;&#2822; (&#x014D;&#7771;iy&#257;)</li>
845 <li>Polski (Polish)</li>
846 <li>Portugu&ecirc;s (Portuguese)</li>
847 <li>Rom&acirc;n&#259; (Romanian)</li>
848 <li>&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081; (Russian) Victor Titarchuk and Serhij Dubyk</li>
849 <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>
850 <li>Svenska (Swedish)</li>
851 <li>Tetun (Tetum) Karen Myers</li>
852 <li>&#3616;&#3634;&#3625;&#3634;&#3652;&#3607;&#3618; (Thai)</li>
853 <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>
854 <li>&#1575;&#1585;&#1583;&#1608;(Urdu) Ata ur Rehman</li>
855 <li>&#1059;&#1082;&#1088;&#1072;&#1111;&#1085;&#1089;&#1100;&#1082;&#1072; (Ukrainian) Victor Titarchuk and Serhij Dubyk</li>
856             </ul>
857
858         </div>
859
860         <div id="history">
861         <h2>Koha history timeline</h2>
862     [% IF ! timeline_read_error %]
863         <table style="cursor:pointer">
864         <thead>
865         <tr>
866             <td  style="font-weight:bold;" >Date</td>
867             <td  style="font-weight:bold;" >Description</td>
868         </tr>
869         </thead>
870         [% FOREACH tabl IN table2 %]
871             <tr class="[% loop.parity %]">
872                 [% FOREACH ro IN tabl.row2 %]
873                      <td>[% ro.date %]</td>
874                      <td>[% ro.desc|html %]</td>
875                 [% END %]
876             </tr>
877         [% END %]
878         </table>
879     [% ELSE %]
880         <div class="dialog alert">
881             Could not read the history.txt file. Please make sure &lt;docdir&gt; is correctly defined in koha-conf.xml.
882         </div>
883     [% END %]
884         </div>
885
886     </div>
887 </div></div></div>
888 [% INCLUDE 'intranet-bottom.inc' %]