aboutsummaryrefslogtreecommitdiffstats
path: root/donators.inc.php
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2014-10-12 12:27:45 +0300
committerThomas Backlund <tmb@mageia.org>2014-10-12 12:27:45 +0300
commit9ce6d646ff718cd62f6434c9a4c94e450436612a (patch)
tree3ee82e5db7c0aee44a5573d9d17035c6ecac697d /donators.inc.php
parenta0b2d09125d7911656fe4cb286f20643c4432281 (diff)
downloadwww-9ce6d646ff718cd62f6434c9a4c94e450436612a.tar
www-9ce6d646ff718cd62f6434c9a4c94e450436612a.tar.gz
www-9ce6d646ff718cd62f6434c9a4c94e450436612a.tar.bz2
www-9ce6d646ff718cd62f6434c9a4c94e450436612a.tar.xz
www-9ce6d646ff718cd62f6434c9a4c94e450436612a.zip
Revert "Updated Estonian translation"
Diffstat (limited to 'donators.inc.php')
-rw-r--r--donators.inc.php52
1 files changed, 52 insertions, 0 deletions
diff --git a/donators.inc.php b/donators.inc.php
new file mode 100644
index 000000000..458b1710c
--- /dev/null
+++ b/donators.inc.php
@@ -0,0 +1,52 @@
+<?php
+/**
+*/
+
+$orgs = array(
+ array('http://www.mandrivafr.org/', 'AUFML'),
+ array('http://dedibox.fr/', 'Dédibox'),
+ array('http://www.gandi.net/', 'Gandi.net'),
+ array('http://www.kazar.net/', 'Kazar.net'),
+ array('http://www.lost-oasis.net/', 'Lost-Oasis'),
+ array('http://www.mageialinux-online.org/', 'MLO'),
+ array('http://nfrance.fr/', 'NFrance'),
+ array('http://www.spreadshirt.com/', 'Spreadshirt'),
+ array('http://zarb.org/', 'zarb.org'),
+
+ // see mirrors.mageia.org
+ array('http://www.upmc.fr/', 'Université Pierre et Marie Curie'),
+ array('http://www.ibiblio.org/', 'The Public\'s Library and Digital Archive'),
+ array('http://www.mandrivauser.de', 'Mandrivauser.de'),
+ array('http://www.hs-esslingen.de/', 'Hochschule Esslingen'),
+ array('http://uni-erlangen.de/', 'Universit&auml;t Erlangen-N&uuml;rnberg'),
+ // mageia.supp.name?
+ // fundawang.lcuc.org.cn?
+ // ftp.LinuxCabal.org?
+ // mageia.nautile.nc?
+);
+
+
+/**
+*/
+function html_people_list($people)
+{
+ $html = '<ul class="ty-ppl-list">';
+ foreach ($people as $p)
+ $html .= sprintf('<li>%s</li>', $p);
+ $html .= '</ul>';
+
+ return $html;
+}
+
+/**
+*/
+function html_orgs_list($orgs)
+{
+ $html = '<ul class="ty-ppl-list twocol">';
+ foreach ($orgs as $o)
+ $html .= sprintf('<li><a href="%s">%s</a> %s</li>', $o[0], $o[1], @$o[2]);
+ $html .= '</ul>';
+
+ return $html;
+}
+