~quam-plures-core/quam-plures/file_manager_limits

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/**
 * provides content when $disp == 'credits'
 *
 * @author {@link http://wonderwinds.com/ Ed Bennett}
 * @author {@link http://astonishme.co.uk/ Yabba (Paul Jones, rest in peace)}
 * @copyright (c) 2009 by {@link http://quamplures.net/ the Quam Plures project}
 * @license http://www.gnu.org/licenses/gpl.txt GNU General Public License v3
 * @package templates
 */
if(!defined('QP_MAIN_INIT')) die('fail');

global $app_charset;

// list of contributors for this version. Add new entries to the end of the array
$_hic_sunt_dracones = array(
	'edb' => array(
		'name' => 'EdB',
		'homepage' => 'http://wonderwinds.com/',
		'locale' => 'en-US',
		'spiel' => 'Not everything that counts can be counted, and not everything that can be counted counts - <em>AE</em>'
	),
	'leeturner' => array(
		'name' => 'Lee Turner',
		'homepage' => 'http://www.hackingquamplures.com',
		'locale' => 'en-UK',
		'spiel' => 'All things Quam Plures - Plugins, Templates and hacking the core'
	),
	'tblue' => array(
		'name' => 'Tblue',
		'homepage' => 'http://ax86.net/',
		'locale' => 'de-DE',
		'spiel' => 'Some German guy who coincidentally is Yet Another Dracone&trade; and mostly writes (in German and sometimes in English) about Linux and other technical stuff, on some rare occasions even about politics.'
	),
	'yabs' => array(
		'name' => 'Yabs',
		'homepage' => 'http://innervisions.org.uk/',
		'locale' => 'en-UK',
		'spiel' => 'Blonde Bimbo who plays with flowers'
	),
	'laibcoms' => array(
		'name' => 'JC John Sese Cuneta',
		'homepage' => 'http://laibcoms.com/',
		'locale' => 'en-PH',
		'spiel' => 'An ASEAN Chinese-Filipino from the <b>Pearl of the Orient Seas</b>!  An advocate of reviving the use of Baybayin script.<br/>"In every thing give thanks: for this is the will of God in Christ Jesus concerning you." I Thessalonians 5:18 [KJV]'
	),
	'kimberly' => array(
		'name' => 'Geek Girl',
		'homepage' => 'http://secretcorners.net/',
		'locale' => 'en-US',
		'spiel' => 'When you are living on the edge, it doesn\'t take much to push you over.',
	),

);

/* how to do it with localization ...
'tilqi' => array(
	'name' => convert_charset( 'Emin Özlem', $app_charset, 'UTF-8' ),
	'homepage' => 'http://www.eodepo.com/',
	'locale' => 'tr-TR',
	'spiel' => 'the fixer.'
),
*/

?>