slitaz-forge diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/people/index.php	Tue Feb 22 13:05:49 2011 +0100
     1.3 @@ -0,0 +1,116 @@
     1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
     1.5 +	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     1.6 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
     1.7 +<head>
     1.8 +    <title>SliTaz People</title>
     1.9 +    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
    1.10 +    <meta name="description" content="SliTaz contributors stuff" />
    1.11 +    <meta name="robots" content="index, nofollow" />
    1.12 +    <meta name="expires" content="never" />
    1.13 +    <meta name="modified" content="<?php echo (date( "Y-m-d H:i:s", getlastmod())); ?>" />
    1.14 +    <meta name="publisher" content="www.slitaz.org" />
    1.15 +    <link rel="shortcut icon" href="favicon.ico" />
    1.16 +    <link rel="stylesheet" type="text/css" href="slitaz.css" />
    1.17 +    <link rel="Content" href="#content" />
    1.18 +</head>
    1.19 +<body>
    1.20 +
    1.21 +<!-- Header -->
    1.22 +<div id="header">
    1.23 +	<!-- Access -->
    1.24 +	<div id="access"></div>
    1.25 +    <!-- Logo -->
    1.26 +	<a href="http://people.slitaz.org/"><img id="logo"
    1.27 +		src="pics/website/logo.png" 
    1.28 +		title="people.slitaz.org" alt="people.slitaz.org" /></a>
    1.29 +	<p id="titre">#!/People</p>
    1.30 +</div>
    1.31 +
    1.32 +<!-- Content -->
    1.33 +<div id="content-full">
    1.34 +
    1.35 +<!-- Block begin -->
    1.36 +<div class="block">
    1.37 +	<!-- Nav block begin -->
    1.38 +	<div id="block_nav" style="min-height: 200px;">
    1.39 +		<h3><img src="pics/website/development.png" alt="png" />Devel corner</h3>
    1.40 +		<ul>
    1.41 +			<li><a href="http://www.slitaz.org/en/devel/">Website/devel</a></li>
    1.42 +			<li><a href="http://labs.slitaz.org/">Laboratories</a></li>
    1.43 +			<li><a href="http://hg.slitaz.org/">Mercurial Repos</a></li>
    1.44 +			<li><a href="http://bb.slitaz.org/">Build Bot</a></li>
    1.45 +			<li><a href="http://scn.slitaz.org/">Community Network</a></li>
    1.46 +			<li><a href="http://pkgs.slitaz.org/">Packages</a></li>
    1.47 +			<li><a href="http://tank.slitaz.org/">Tank Server</a></li>
    1.48 +		</ul>	
    1.49 +	<!-- Nav block end -->
    1.50 +	</div>
    1.51 +	<!-- Top block begin -->
    1.52 +	<div id="block_top" style="min-height: 200px;">
    1.53 +		<h1>people.slitaz.org</h1>
    1.54 +		<p>
    1.55 +			Each contributor who has access to the project main server,
    1.56 +			code name <a href="http://tank.slitaz.org/">Tank</a>, can 
    1.57 +			have a public directory to put personal stuff related to SliTaz.
    1.58 +			This Public directory can be reached with URLs in the form of: 
    1.59 +			http://people.slitaz.org/~contributors/. More information on 
    1.60 +			<a href="http://www.slitaz.org/">SliTaz Website</a> and
    1.61 +			<a href="http://labs.slitaz.org/">SliTaz Labs</a>.
    1.62 +		</p>
    1.63 +	<!-- Top block end -->
    1.64 +	</div>
    1.65 +<!-- Block end -->
    1.66 +</div>
    1.67 +
    1.68 +<h2>SliTaz people</h2>
    1.69 +
    1.70 +<ul>
    1.71 +<?php
    1.72 +if ($handle = opendir('/home')) {
    1.73 +	while (false !== ($dir = readdir($handle))) {
    1.74 +		if ($dir != "." && $dir != "..") {
    1.75 +			$pub = "/home/$dir/Public";
    1.76 +			$user = "$dir";
    1.77 +			if (file_exists($pub)) {
    1.78 +			echo "	<li><a href=\"/~$user/\">$user</a></li>\n";
    1.79 +			}
    1.80 +		}
    1.81 +	}
    1.82 +	closedir($handle);
    1.83 +}
    1.84 +?>
    1.85 +</ul>
    1.86 +
    1.87 +<!-- End of content -->
    1.88 +</div>
    1.89 +
    1.90 +<!-- Footer -->
    1.91 +<div id="footer">
    1.92 +	<div class="right_box">
    1.93 +	<h4>SliTaz Network</h4>
    1.94 +		<ul>
    1.95 +			<li><a href="http://www.slitaz.org/">Main Website</a></li>
    1.96 +			<li><a href="http://doc.slitaz.org/">Documentation</a></li>
    1.97 +			<li><a href="http://forum.slitaz.org/">Support Forum</a></li>
    1.98 +			<li><a href="http://scn.slitaz.org/">Community Network</a></li>
    1.99 +			<li><a href="http://labs.slitaz.org/">Laboratories</a></li>
   1.100 +			<li><a href="http://twitter.com/slitaz">SliTaz on Twitter</a></li>
   1.101 +			<li><a href="http://distrowatch.com/slitaz">SliTaz on DistroWatch</a></li>
   1.102 +		</ul>
   1.103 +	</div>
   1.104 +	<h4>Informations</h4>
   1.105 +	<ul>
   1.106 +		<li>Copyright &copy; <span class="year"></span>
   1.107 +			<a href="http://www.slitaz.org/">SliTaz</a></li>
   1.108 +		<li><a href="http://www.slitaz.org/en/about/">About the project</a></li>
   1.109 +		<li><a href="http://www.slitaz.org/netmap.php">Network Map</a></li>
   1.110 +		<li>Page modified the <?php echo (date( "d M Y", getlastmod())); ?></li>
   1.111 +		<li><a href="http://validator.w3.org/check?uri=referer"><img
   1.112 +		src="pics/website/xhtml10.png" alt="Valid XHTML 1.0"
   1.113 +		title="Code validé XHTML 1.0"
   1.114 +		style="width: 80px; height: 15px; vertical-align: middle;" /></a></li>
   1.115 +	</ul>
   1.116 +</div>
   1.117 +
   1.118 +</body>
   1.119 +</html>