[Debconf6-data-commit] r69 - in website/www: . about about/sponsorship css news venue/travel

Neil McGovern neilm at costa.debian.org
Sun Nov 13 22:46:49 UTC 2005


Author: neilm
Date: 2005-11-13 22:46:48 +0000 (Sun, 13 Nov 2005)
New Revision: 69

Modified:
   website/www/about/menubar.html
   website/www/about/sponsorship/menubar.html
   website/www/css/main.css
   website/www/news/index.html
   website/www/news/read.html
   website/www/newsticker.html
   website/www/sponsors.html
   website/www/top.html
   website/www/venue/travel/tips.html
Log:
Embperl2 modifications


Modified: website/www/about/menubar.html
===================================================================
--- website/www/about/menubar.html	2005-11-08 09:59:20 UTC (rev 68)
+++ website/www/about/menubar.html	2005-11-13 22:46:48 UTC (rev 69)
@@ -5,11 +5,11 @@
 				<li><a href='/venue/' title='Information about the venue'>About Oaxtepec</a></li>
 			</ul>
 			<ul id='bottommenu'>
-				<li>Introduction</li>
+				<li id='bottomactive'>Introduction</li>
 				<li><a href='/about/talks/' title='Talks/BOFs information'>Talks/BOFs</a></li>
 				<li>Schedule</li>
 				<li>Donate</li>
-				<li><a href='/about/sponsorship/' title='Information about Sponsorship'>Sponsorship</li>
+				<li><a href='/about/sponsorship/' title='Information about Sponsorship'>Sponsorship</a></li>
 				<li><a href='/about/debianday.html' title='Debian Day information'>Debian Day</a></li>
 				<li>FAQ</li>
 			</ul>

Modified: website/www/about/sponsorship/menubar.html
===================================================================
--- website/www/about/sponsorship/menubar.html	2005-11-08 09:59:20 UTC (rev 68)
+++ website/www/about/sponsorship/menubar.html	2005-11-13 22:46:48 UTC (rev 69)
@@ -5,7 +5,7 @@
 				<li><a href='/venue/' title='Information about the venue'>About Oaxtepec</a></li>
 			</ul>
 			<ul id='bottommenu'>
-				<li>Introduction</li>
+				<li><a href='/about/' title='About Debconf'>Introduction</a></li>
 				<li><a href='/about/talks/' title='Talks/BOFs information'>Talks/BOFs</a></li>
 				<li>Schedule</li>
 				<li>Donate</li>

Modified: website/www/css/main.css
===================================================================
--- website/www/css/main.css	2005-11-08 09:59:20 UTC (rev 68)
+++ website/www/css/main.css	2005-11-13 22:46:48 UTC (rev 69)
@@ -305,3 +305,34 @@
 	vertical-align: middle;
 	background-color: inherit;
 }
+
+.comas-row {
+    border: solid 1px #ccc;
+    background-color: inherit;
+    padding: 0.3em;
+}
+
+.comas-row:hover {
+    background-color: #f6f6f6;
+}
+
+.comas-prompt {
+
+}
+
+.comas-prompt-req {
+    text-decoration: underline;
+}
+
+.comas-note {
+    font-size: 80%;
+}
+
+.comas-input {
+
+}
+
+.comas-error {
+    color: red;
+    font-size: 120%;
+}

Modified: website/www/news/index.html
===================================================================
--- website/www/news/index.html	2005-11-08 09:59:20 UTC (rev 68)
+++ website/www/news/index.html	2005-11-13 22:46:48 UTC (rev 69)
@@ -1,6 +1,10 @@
 [+
+do {
+$req = shift;
 $output .= "";
-foreach $name (sort { $b cmp $a } glob("items/*") ) {
+$pwd = $req->component->cwd;
+
+foreach $name (sort { $b cmp $a } glob($pwd."/items/*") ) {
 	open(DAT, $name);
 	@raw_data=<DAT>;
 	close(DAT);
@@ -9,4 +13,5 @@
 	$output .= "<h2>$2</h2>".$raw_data[0]."...<br /><a href='read.html?id=$1'>>>> read more</a>";
 }
 $foo = $output;
+}
 +]

Modified: website/www/news/read.html
===================================================================
--- website/www/news/read.html	2005-11-08 09:59:20 UTC (rev 68)
+++ website/www/news/read.html	2005-11-13 22:46:48 UTC (rev 69)
@@ -1,9 +1,12 @@
 [+
+do {
+$req = shift;
 $output .= "";
+$pwd = $req->component->cwd;
 use CGI;
 $q = new CGI;
 my $value = $q->param('id');
- at filename= glob("items/$value*");
+ at filename= glob($pwd."/items/$value*");
 open(DAT, $filename[0]);
 @raw_data=<DAT>;
 close(DAT);
@@ -14,6 +17,7 @@
 	$output .= "$line<br />";
 }
 $foo = $output;
+}
 +]
 <br />
 <a href='/news/' title='Return to the news index'>News index</a>

Modified: website/www/newsticker.html
===================================================================
--- website/www/newsticker.html	2005-11-08 09:59:20 UTC (rev 68)
+++ website/www/newsticker.html	2005-11-13 22:46:48 UTC (rev 69)
@@ -1,9 +1,13 @@
 <h1>Latest News</h1>
 [+
+do {
+$req = shift;
 $output .= "";
- at names = (sort { $b cmp $a } glob("news/items/*") ) ;
+$pwd = $req->component->cwd;
+ at names = (sort { $b cmp $a } glob($pwd."/news/items/*") ) ;
 $names[0] =~ s/-/ /g;
 $names[0] =~ /([0-9]{2})_(.*).html/;
 $output .= "$2<br /><a href='/news/read.html?id=$1'>>>> read more</a>";
 $foo = $output;
+}
 +]

Modified: website/www/sponsors.html
===================================================================
--- website/www/sponsors.html	2005-11-08 09:59:20 UTC (rev 68)
+++ website/www/sponsors.html	2005-11-13 22:46:48 UTC (rev 69)
@@ -1,10 +1,15 @@
 [+
+do {
+$req = shift;
 $output .= "";
-foreach $name (sort glob("sponsors/logos/*") ) {
+$pwd = $req->component->cwd;
+foreach $name (sort glob($pwd."/sponsors/logos/*") ) {
 $name =~ /[0-9]{2}_(.*).[a-z]{3}/;
 $url = $1;
 $url =~ s/\+/\//g;
-$output .= "<a href='http://$url'><img src='/$name' alt='Sponsor Logo'/></a><br />&nbsp;<br />";
+$name =~ s/$pwd//;
+$output .= "<a href='http://$url'><img src='$name' alt='Sponsor Logo'/></a><br />&nbsp;<br />";
 }
 $foo = $output;
+}
 +]

Modified: website/www/top.html
===================================================================
--- website/www/top.html	2005-11-08 09:59:20 UTC (rev 68)
+++ website/www/top.html	2005-11-13 22:46:48 UTC (rev 69)
@@ -4,6 +4,7 @@
 	<div id='topleftpanel'>
 		<div id='timeto'>
 		[+
+		do {
 		$datetill = Date::Manip::DateCalc("today","09:00 14th May, 2006",\$err,1);
 		$datetill =~ s/\+//;
 		@array = split(/:/,$datetill);
@@ -32,6 +33,7 @@
 		} else {
 			$output .= "!";
 		}
+		}
 		+]
 		</div>
 	</div>

Modified: website/www/venue/travel/tips.html
===================================================================
--- website/www/venue/travel/tips.html	2005-11-08 09:59:20 UTC (rev 68)
+++ website/www/venue/travel/tips.html	2005-11-13 22:46:48 UTC (rev 69)
@@ -38,7 +38,7 @@
 <h2>Embassies and Consular Services</h2>
 There are consular offices or agencies in most main tourist and business
 cities. A complete list of embassies and consulates can be found at
-<a href="http;//www.sre.gob.mx">www.sre.gob.mx</a>.
+<a href="http://www.sre.gob.mx">www.sre.gob.mx</a>.
 			   
 <h2>Health Hints</h2>
 No vaccinations are normally required to enter Mexico, but please check with




More information about the Debconf6-data-commit mailing list