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