[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] r908 - GNUnet-docs/WWW/test
From: |
durner |
Subject: |
[GNUnet-SVN] r908 - GNUnet-docs/WWW/test |
Date: |
Mon, 13 Jun 2005 12:16:16 -0700 (PDT) |
Author: durner
Date: 2005-06-13 12:15:31 -0700 (Mon, 13 Jun 2005)
New Revision: 908
Modified:
GNUnet-docs/WWW/test/gnunet.css
GNUnet-docs/WWW/test/html_footer.php3
GNUnet-docs/WWW/test/html_header.php3
GNUnet-docs/WWW/test/index.php
GNUnet-docs/WWW/test/menu.php3
GNUnet-docs/WWW/test/scripts.inc
Log:
replay
Modified: GNUnet-docs/WWW/test/gnunet.css
===================================================================
--- GNUnet-docs/WWW/test/gnunet.css 2005-06-13 19:00:43 UTC (rev 907)
+++ GNUnet-docs/WWW/test/gnunet.css 2005-06-13 19:15:31 UTC (rev 908)
@@ -1,23 +1,107 @@
/* global css for GNUnet */
-ul,ol,li,div,td,th,address,blockquote,b,i,dl,dd,dt
- { font-family:"New Century Schoolbook","Courier","Utopia";color:#000000;}
+ul,ol,li,div,td,th,address,blockquote,b,i,dl,dd,dt,p,h1,h2,h3,h4,h5,font.subtitle,font.lang-menu
{
+ font-family: "Bitstream Vera Sans", "Lucida Grande", "Trebuchet MS",
"Lucida Sans Unicode", "Luxi Sans", "Helvetica", arial, helvetica, sans-serif;
+ font-size: 12px;
+}
+
+dt{
+ font-weight:bold;
+ margin: 10px;
+}
-dt{font-weight:bold;}
+dd {
+ margin-bottom: 12pt;
+}
-
/* font-family = Schriftart fuer Textelemente */
/* Arial,sans-serif = Arial und serifenlose Schrift, Wert aenderbar */
-h1{font-size:4ex;text-align:center;}
-h2{font-size:3.5ex;background-color:#3355EE;color:#FFFFFF;width:99%;border-style:none;border-width:thin;padding:0cm;text-align:center;}
-h3{font-size:3ex;background-color:#0066CC;color:#FFFFFF;width:99%;border-style:none;border-width:thin;padding:0cm;text-align:left;}
-h4{font-size:2.5ex;background-color:#3399FF;color:#000000;width:99%;border-style:none;border-width:thin;padding:0cm;text-align:left;}
-h5{font-size:1.5ex;}
-body{width:95%;background-color:#FEFEFE;color:#000000;}
+h1{
+ font-size:3.5ex;
+ text-align:center;
+}
+h2{
+ font-size:3ex;
+ background-color:#0B8AD0;
+ color:#FFFFFF;
+ border-color:#0a6cce;
+ border-style:solid;
+ border-width:1px;
+ padding:0cm;
+ text-align:center;
+}
+
+h3{
+ font-size:2.25ex;
+ background-color:#0C95DE;
+ color:#FFFFFF;
+ border-color:#0B8AD0;
+ border-style:solid;
+ border-width:1px;
+ padding:0cm;
+ text-align:left;
+ padding-left:12pt;
+}
+
+h4{
+ font-size:2ex;
+ background-color:#3399FF;
+ color:#000000;
+ border-style:none;
+ border-width:1px;
+ padding:0cm;
+ text-align:left;
+ padding-left:12pt;
+}
+
+h5{
+ font-size:1.5ex;
+}
+
+p{
+ margin: 10px;
+}
+
+body{
+ background-color:#FEFEFE;
+ color:#000000;
+}
+
pre{font-family:Courier New,Courier; color:#000000;}
tt{font-family:Courier New,Courier; color:#0000D0;}
+
+font.title {
+ color:white;
+ font-family: "Arial","Helvetica";
+ font-size:32px;
+ font-weight: bold;
+}
+
+font.subtitle {
+ font-family: "Bitstream Vera Sans", "Lucida Grande", "Trebuchet MS", "Lucida
Sans Unicode", "Luxi Sans", "Helvetica", arial, helvetica, sans-serif;
+ color:#d3d3d3;
+ font-size:11px;
+}
+
+td.menu {
+ background-color:#E4E4E4;
+ color:#FFFFFF;
+ font-size:11px;
+ font-weight: bold;
+ padding-top:2px;
+ padding-bottom:2px;
+ width: 12.5%;
+ text-align: center;
+}
+
+font.lang-menu {
+ background-color:#FFFFFF;
+ font-size:10px;
+}
+
+/*
table{background-color:#CCCCFF;color:#0F0F0F;}
table.plain{background-color:#FEFEFE;color:#000000;}
tr{background-color:#00FF00;color:#0F0F0F;}
@@ -26,8 +110,10 @@
tr.plain{background-color:#FEFEFE;color:#000000;}
td.plain{background-color:#FEFEFE;color:#000000;}
th.plain{background-color:#FEFEFE;color:#000000;}
+*/
font.desc{background-color:#FFFFFF;color:#001100;}
-a:link{color:#0033FF; text-decoration:underline;}
-a:visited{color:#333366; text-decoration:underline;}
+a:link{color:#0033FF; text-decoration:none;}
+a.menu:link{color:#FFFFFF; text-decoration:none;}
+a:visited{color:#333366; text-decoration:none;}
a:active{color:#EEEEEE; text-decoration:none;}
Modified: GNUnet-docs/WWW/test/html_footer.php3
===================================================================
--- GNUnet-docs/WWW/test/html_footer.php3 2005-06-13 19:00:43 UTC (rev
907)
+++ GNUnet-docs/WWW/test/html_footer.php3 2005-06-13 19:15:31 UTC (rev
908)
@@ -4,7 +4,7 @@
if ($menu != "NO") {
HR();
$menu_once = 0;
- include("menu.php3");
+ menu_bar();
}
HR();
PRE("Copyright (C) 2002, 2003, 2004, 2005 Christian Grothoff.\n" .
Modified: GNUnet-docs/WWW/test/html_header.php3
===================================================================
--- GNUnet-docs/WWW/test/html_header.php3 2005-06-13 19:00:43 UTC (rev
907)
+++ GNUnet-docs/WWW/test/html_header.php3 2005-06-13 19:15:31 UTC (rev
908)
@@ -34,10 +34,16 @@
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel=stylesheet type="text/css" href="gnunet.css">
</head>
-<body>
+<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
<?php
if ($menu != "NO") {
include("menu.php3");
+?>
+<font class="lang-menu">
+<?php
generateLanguageBar();
+?>
+</font>
+<?php
}
?>
Modified: GNUnet-docs/WWW/test/index.php
===================================================================
--- GNUnet-docs/WWW/test/index.php 2005-06-13 19:00:43 UTC (rev 907)
+++ GNUnet-docs/WWW/test/index.php 2005-06-13 19:15:31 UTC (rev 908)
@@ -5,8 +5,8 @@
include("html_header.php3");
H2("About GNUnet");
-gnunetlogo();
+BP();
W("GNUnet is a framework for secure peer-to-peer networking that does not use
any centralized or otherwise trusted services.");
W("A first service implemented on top of the networking layer allows anonymous
censorship-resistant file-sharing.");
W("GNUnet uses a simple, excess-based economic model to allocate resources.");
@@ -24,6 +24,7 @@
H2("News");
W("Older news can be found %s.\n",
intlink_("old_news.php3", "here"));
+EP();
echo "<dl>\n";
function convert_time($mysql_timestamp){
@@ -57,11 +58,11 @@
echo "<dt>" . $pd[0] . "-" . $pd[1] . "-" . $pd[2] . ": " .
W_($row["title"]) . "</dt>\n";
echo "<dd>\n";
include($row["include"]);
- echo "</dd>\n";
+ echo "\n</dd>\n";
}
echo "</dl>\n";
-P();
H2("Roadmap");
+BP();
W("Here is the current development plan:");
echo "<ul>\n";
LI("fix %s",
@@ -72,12 +73,14 @@
LI("extend GTK UI (delete, statistics, configuration, recursive insertion)");
LI("add download-daemon that manages ongoing/completed/stalled downloads");
echo "</ul>\n";
-P();
+EP();
H2("Contact");
+BP();
W("GNUnet is developed by %s.",
extlink_("http://www.gnu.org/software/gnunet/","the GNUnet developers"));
W("For questions about GNUnet send E-Mail to %s.",
extlink_("mailto:address@hidden","address@hidden"));
+EP();
include("html_footer.php3");
?>
Modified: GNUnet-docs/WWW/test/menu.php3
===================================================================
--- GNUnet-docs/WWW/test/menu.php3 2005-06-13 19:00:43 UTC (rev 907)
+++ GNUnet-docs/WWW/test/menu.php3 2005-06-13 19:15:31 UTC (rev 908)
@@ -2,20 +2,34 @@
if (! $menu_once) {
$menu_once = 1;
?>
-<center>
-<table border=0 rules=none width="90%">
- <tr>
- <th><?php intlink("index.php","Welcome") ?></th>
- <th><?php intlink("mailinglist.php3","Contact"); ?></th>
- <th><?php extlink("https://gnunet.org/drupal/", "Community"); ?></th>
- <th><?php intlink("faq.php3","FAQ"); ?></th>
- <th><?php intlink("download.php3","Download"); ?></th>
- <th><?php intlink("documentation.php3","Documentation"); ?></th>
- <th><?php intlink("papers.php3","Papers"); ?></th>
- <th><?php intlink("links.php3","Links"); ?></th>
- </tr>
+<table bgcolor="#0a6cce" border="0" cellpadding="0" cellspacing="0"
height="58" width="100%">
+ <tr>
+ <td colspan="4" height="10" nowrap="nowrap" valign="middle">
+ </td>
+ </tr>
+ <tr>
+ <td width="15">
+
+ </td>
+ <td height="1" nowrap="nowrap" valign="middle">
+ <font class="title">GNUnet</font>
+ <br />
+ <font class="subtitle">GNU's decentralized anonymous
and censor-resistant P2P framework.</font>
+
+ </td>
+ <td align="right" valign="top">
+ <img src="gnunet-logo.png" />
+ </td>
+ <td width="10">
+
+ </td>
+ </tr>
+ <tr>
+ <td colspan="4" height="10" nowrap="nowrap" valign="middle">
+ </td>
+ </tr>
</table>
-</center>
<?php
+ menu_bar();
}
?>
Modified: GNUnet-docs/WWW/test/scripts.inc
===================================================================
--- GNUnet-docs/WWW/test/scripts.inc 2005-06-13 19:00:43 UTC (rev 907)
+++ GNUnet-docs/WWW/test/scripts.inc 2005-06-13 19:15:31 UTC (rev 908)
@@ -10,6 +10,23 @@
img("gnu_in_net.png", "GNUnet logo", "RIGHT", 149, 150);
}
+function menu_bar() {
+?>
+ <table bgcolor="#0a6cce" border="0" cellpadding="0" cellspacing="0"
width="100%">
+ <tr>
+ <td class="menu"><?php intlink("index.php","Welcome") ?></td>
+ <td class="menu"><?php intlink("mailinglist.php3","Contact");
?></td>
+ <td class="menu"><?php extlink("https://gnunet.org/drupal/",
"Community"); ?></td>
+ <td class="menu"><?php intlink("faq.php3","FAQ"); ?></td>
+ <td class="menu"><?php intlink("download.php3","Download"); ?></td>
+ <td class="menu"><?php
intlink("documentation.php3","Documentation"); ?></td>
+ <td class="menu"><?php intlink("papers.php3","Papers"); ?></td>
+ <td class="menu"><?php intlink("links.php3","Links"); ?></td>
+ </tr>
+ </table>
+<?php
+}
+
function shortEntry_($a, $b="") {
return "<td align=center>" . W_($a) . $b . "</td>";
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] r908 - GNUnet-docs/WWW/test,
durner <=