slitaz-forge view people/index.php @ rev 7

Add people.slitaz.org files
author Christophe Lincoln <pankso@slitaz.org>
date Tue Feb 22 13:05:49 2011 +0100 (2011-02-22)
parents
children 1fa6db906aa3
line source
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4 <head>
5 <title>SliTaz People</title>
6 <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
7 <meta name="description" content="SliTaz contributors stuff" />
8 <meta name="robots" content="index, nofollow" />
9 <meta name="expires" content="never" />
10 <meta name="modified" content="<?php echo (date( "Y-m-d H:i:s", getlastmod())); ?>" />
11 <meta name="publisher" content="www.slitaz.org" />
12 <link rel="shortcut icon" href="favicon.ico" />
13 <link rel="stylesheet" type="text/css" href="slitaz.css" />
14 <link rel="Content" href="#content" />
15 </head>
16 <body>
18 <!-- Header -->
19 <div id="header">
20 <!-- Access -->
21 <div id="access"></div>
22 <!-- Logo -->
23 <a href="http://people.slitaz.org/"><img id="logo"
24 src="pics/website/logo.png"
25 title="people.slitaz.org" alt="people.slitaz.org" /></a>
26 <p id="titre">#!/People</p>
27 </div>
29 <!-- Content -->
30 <div id="content-full">
32 <!-- Block begin -->
33 <div class="block">
34 <!-- Nav block begin -->
35 <div id="block_nav" style="min-height: 200px;">
36 <h3><img src="pics/website/development.png" alt="png" />Devel corner</h3>
37 <ul>
38 <li><a href="http://www.slitaz.org/en/devel/">Website/devel</a></li>
39 <li><a href="http://labs.slitaz.org/">Laboratories</a></li>
40 <li><a href="http://hg.slitaz.org/">Mercurial Repos</a></li>
41 <li><a href="http://bb.slitaz.org/">Build Bot</a></li>
42 <li><a href="http://scn.slitaz.org/">Community Network</a></li>
43 <li><a href="http://pkgs.slitaz.org/">Packages</a></li>
44 <li><a href="http://tank.slitaz.org/">Tank Server</a></li>
45 </ul>
46 <!-- Nav block end -->
47 </div>
48 <!-- Top block begin -->
49 <div id="block_top" style="min-height: 200px;">
50 <h1>people.slitaz.org</h1>
51 <p>
52 Each contributor who has access to the project main server,
53 code name <a href="http://tank.slitaz.org/">Tank</a>, can
54 have a public directory to put personal stuff related to SliTaz.
55 This Public directory can be reached with URLs in the form of:
56 http://people.slitaz.org/~contributors/. More information on
57 <a href="http://www.slitaz.org/">SliTaz Website</a> and
58 <a href="http://labs.slitaz.org/">SliTaz Labs</a>.
59 </p>
60 <!-- Top block end -->
61 </div>
62 <!-- Block end -->
63 </div>
65 <h2>SliTaz people</h2>
67 <ul>
68 <?php
69 if ($handle = opendir('/home')) {
70 while (false !== ($dir = readdir($handle))) {
71 if ($dir != "." && $dir != "..") {
72 $pub = "/home/$dir/Public";
73 $user = "$dir";
74 if (file_exists($pub)) {
75 echo " <li><a href=\"/~$user/\">$user</a></li>\n";
76 }
77 }
78 }
79 closedir($handle);
80 }
81 ?>
82 </ul>
84 <!-- End of content -->
85 </div>
87 <!-- Footer -->
88 <div id="footer">
89 <div class="right_box">
90 <h4>SliTaz Network</h4>
91 <ul>
92 <li><a href="http://www.slitaz.org/">Main Website</a></li>
93 <li><a href="http://doc.slitaz.org/">Documentation</a></li>
94 <li><a href="http://forum.slitaz.org/">Support Forum</a></li>
95 <li><a href="http://scn.slitaz.org/">Community Network</a></li>
96 <li><a href="http://labs.slitaz.org/">Laboratories</a></li>
97 <li><a href="http://twitter.com/slitaz">SliTaz on Twitter</a></li>
98 <li><a href="http://distrowatch.com/slitaz">SliTaz on DistroWatch</a></li>
99 </ul>
100 </div>
101 <h4>Informations</h4>
102 <ul>
103 <li>Copyright &copy; <span class="year"></span>
104 <a href="http://www.slitaz.org/">SliTaz</a></li>
105 <li><a href="http://www.slitaz.org/en/about/">About the project</a></li>
106 <li><a href="http://www.slitaz.org/netmap.php">Network Map</a></li>
107 <li>Page modified the <?php echo (date( "d M Y", getlastmod())); ?></li>
108 <li><a href="http://validator.w3.org/check?uri=referer"><img
109 src="pics/website/xhtml10.png" alt="Valid XHTML 1.0"
110 title="Code validé XHTML 1.0"
111 style="width: 80px; height: 15px; vertical-align: middle;" /></a></li>
112 </ul>
113 </div>
115 </body>
116 </html>