diff -ru -d -N Pivot_1.10_full/pivot/modules/module_parser.php pivot-martin/pivot/modules/module_parser.php
--- Pivot_1.10_full/pivot/modules/module_parser.php	2004-03-23 18:39:00.000000000 +0100
+++ pivot-martin/pivot/modules/module_parser.php	2004-06-15 04:08:51.000000000 +0200
@@ -1015,85 +1015,37 @@
 
 	$body = snippet_body();
 
-	$description = strip_tags($introduction);
-	$tag = 	str_replace("_", "",  safe_string($Cfg['sitename'], TRUE)) . ",". date("Y") . ":" . 
-		str_replace("_", "",  safe_string($Weblogs[$Current_weblog]['name'], TRUE))."." . $uid;
-	
-	$lang = snippet_lang();
-
 	$date = format_date( $date, "%year%-%month%-%day%T%hour24%:%minute%:00").rss_offset();
 
-	if ( (isset($global_pref['rss_entry_length'])) && (strlen($description)>$global_pref['rss_entry_length']) ) {
-		$description=htmlspecialchars(substr($description, 0, $global_pref['rss_entry_length'])."..");
-		$description=str_replace("&nbsp;"," ", $description);
-	}
-
 	$rss_item='
 	<item>
 		<title>%title%</title>
 		<link>%link%</link>
-		<comments>%link%#comm</comments>
-		<description>%description%</description>
+		<pubDate>%date%</pubDate>
 		<guid isPermaLink="false">%guid%</guid>
-		<content:encoded><![CDATA[%content%]]></content:encoded>
-		<dc:subject>%category%</dc:subject>
-		<dc:date>%date%</dc:date>
+		<description>%description%</description>
     </item>
 ';
 
-	$atom_item='<entry>
-    <title>%title%</title>
-    <link rel="alternate" type="text/html" href="%link%"/>
-    <modified>%date%</modified>
-    <issued>%date%</issued>
-    <id>tag:%tag%</id>
-
-    <created>%date%</created>
-    <summary type="text/plain">%description%</summary>
-    <dc:subject>%title%</dc:subject>
-		<author>
-		 <name>%author%</name>
-	  </author>
-    <content type="text/html" mode="escaped" xml:lang="%lang%" xml:base="%link%">
-      <![CDATA[%content%]]>
-    </content>
-  </entry>
-';
-
-
 	$from = array(
 		"%title%", 
 		"%link%", 
-		"%description%", 
-		"%author%",
+		"%date%",
 		"%guid%", 
-		"%date%", 
-		"%category%", 
-		"%content%", 
-		"%tag%",
-		"%lang%",
+		"%description%"
 	);
 
 	$to = array(
-		htmlspecialchars(strip_tags($title)), 
-		$link, 
-		htmlspecialchars(RelativeToAbsoluteURLS($description)), 
-		$user, 
-		$uid."@".$weblog, 
-		$date, 
-		implode(", ",$category), 
-		RelativeToAbsoluteURLS($introduction.$body), 
-		$tag,
-		$lang,
+		htmlspecialchars(strip_tags($title)),
+		$link,
+		$date,
+		$uid."@".$weblog,
+		htmlspecialchars(RelativeToAbsoluteURLS($introduction.$body))
 	);
 
 	$rss_item= str_replace($from, $to, $rss_item);
-	$atom_item= str_replace($from, $to, $atom_item);
 
 	$rss_items[$date]=$rss_item;
-	$atom_items[$date]=$atom_item;
-
-
 }
 
 function finish_rss() {
@@ -1103,10 +1055,6 @@
 	ksort($rss_items);
 	$rss_items= array_reverse($rss_items);
 
-	ksort($atom_items);
-	$atom_items= array_reverse($atom_items);
-
-	
 	//write out the rss
 	if($Weblogs[$Current_weblog]['rss_filename'] != "") {
 			
@@ -1126,26 +1074,6 @@
 		write_file($filename, $rss);
 
 	}
-
-
-	//write out the atom feed
-	if($Weblogs[$Current_weblog]['atom_filename'] != "") {
-			
-		foreach ($atom_items as $item) {
-			$atom .= $item;
-		}
-
-		$atom.="\n</feed>\n";
-
-		$filename = $Weblogs[$Current_weblog]['rss_path'] . $Weblogs[$Current_weblog]['atom_filename'];
-
-		add_log("Write Atom: $filename");
-
-		write_file($filename, $atom); 
-
-
-	}
-
 }
 
 
diff -ru -d -N Pivot_1.10_full/pivot/pvlib.php pivot-martin/pivot/pvlib.php
--- Pivot_1.10_full/pivot/pvlib.php	2004-03-15 16:06:50.000000000 +0100
+++ pivot-martin/pivot/pvlib.php	2004-06-15 03:43:05.000000000 +0200
@@ -1807,6 +1807,17 @@
 	
 }
 
+function html2xml($i) {
+
+	$i = str_replace ('<', '&lt;', $i);
+	$i = str_replace ('>', '&gt;', $i);
+	$i = str_replace ('"', '&quot;', $i);
+	$i = str_replace ("'", '&#039;', $i);
+	$i = str_replace ("&", '&amp;', $i);
+	
+	return $i;
+	
+}
 
 function addquotes($i) {
 
diff -ru -d -N Pivot_1.10_full/pivot/templates/archivepage_template.html pivot-martin/pivot/templates/archivepage_template.html
--- Pivot_1.10_full/pivot/templates/archivepage_template.html	2004-01-12 22:02:10.000000000 +0100
+++ pivot-martin/pivot/templates/archivepage_template.html	2004-06-14 22:17:10.000000000 +0200
@@ -2,85 +2,33 @@
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-	<title>[[weblogtitle]]&nbsp;-&nbsp;[[weblogsubtitle]]</title>
+	<title>[[weblogtitle]]</title>
+	[[rss_autodiscovery]]
+	[[atom_autodiscovery]]
 	<meta http-equiv="Content-Type" content="text/html; charset='[[charset]]'" />
-	<link rel="stylesheet" type="text/css" href="[[template_dir]]pivot_template.css" />
+	<link rel="stylesheet" type="text/css" href="[[template_dir]]stylesheet.css" />
+	[[calendar_style]]
 </head>
 
 <body>
 
-<div id="header">
-
-<h1><a href="[[home]]">[[weblogtitle]]</a>&nbsp;&nbsp;-</h1><h4>&nbsp;[[weblogsubtitle]]</h4>
-
-<!-- end of 'header' --></div>
+<div id="banner">
+<h1><a href="[[home]]" accesskey="1">[[weblogtitle]]</a></h1>
+<span class="description">[[weblogsubttile]]</span>
+</div>
 
-<div id="rightcolumn">
+<div id="container">
 
-<div class="block">
-<h3>[[label:archives]]</h3>
-<p>
+<div class="blog">
+<div id="menu">
 [[archivenext]]
 [[archiveprevious]]
-</p>
-<p>[[archive_list]]<p>
-</div>
-
-<div class="block">
-<h3>[[label:last_comments]]</h3>
-[[last_comments]]
-</div>
-
-[[get_referrer]]
-<div class="block">
-<h3>[[label:last_referrers]]</h3>
-[[show_referrers]]
-</div>
-
-
-<div class="block">
-<h3>[[label:links]]</h3>
-<p>[[link_list]]</p>
 </div>
 
+[[subweblog:standard]]
 
-<div class="block">
-<h3>Stuff</h3>
-<p>[[pivotbutton]]&nbsp;<br />
-[[rssbutton]]&nbsp;<br />
-</p>
-
-
-</p>
 </div>
-
-
-<!-- end of 'rightcolumn' --></div>
-
-<div id="leftcolumn">
-
-<div class="block">
-<h3>About</h3>
-	<p>This is the default template for <a href="http://www.pivotlog.net" title="Pivot: a GPL weblog tool.">Pivot</a>. You can change this text by editing the file templates/frontpage_template.html in your pivot folder. </p>
-</div>
-
-<div class="block">
-<h3>Linkdump</h3>
-[[subweblog:linkdump]]
 </div>
-
-<!-- end of 'leftcolumn' --></div>
-
-<div id="centercolumn">
-
-<div class="content">
-
-[[subweblog:standard]]
-
-<!-- end of 'content' --></div>
-<!-- end of 'centercolumn' --></div>
-
-
 </body>
 </html>
 
diff -ru -d -N Pivot_1.10_full/pivot/templates/_aux_link_list.html pivot-martin/pivot/templates/_aux_link_list.html
--- Pivot_1.10_full/pivot/templates/_aux_link_list.html	2003-12-07 16:51:18.000000000 +0100
+++ pivot-martin/pivot/templates/_aux_link_list.html	2004-06-14 20:36:30.000000000 +0200
@@ -1,8 +1,3 @@
 <p>
-
-<a href="http://www.google.com/">Google</a><br />
-<a href="http://www.pivotlog.net/">Pivot</a><br /><br />
-
-To change this list, edit the file '_aux_link_list.html' in your pivot's templates folder.
-
+<a href="http://www.go-mono.com/">Mono</a><br />
 </p>
diff -ru -d -N Pivot_1.10_full/pivot/templates/_aux_template_onlybody.html pivot-martin/pivot/templates/_aux_template_onlybody.html
--- Pivot_1.10_full/pivot/templates/_aux_template_onlybody.html	2004-01-31 16:58:28.000000000 +0100
+++ pivot-martin/pivot/templates/_aux_template_onlybody.html	2004-06-14 20:52:48.000000000 +0200
@@ -4,7 +4,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <title>[[weblogtitle]]&nbsp;&raquo;&nbsp;[[title]]</title>
-<link rel="stylesheet" type="text/css" href="[[template_dir]]pivot_template.css">
+<link rel="stylesheet" type="text/css" href="[[template_dir]]stylesheet.css">
 </head>
 
 <body onload="top.iframeCallback(self, 'body', '[[code]]');">
diff -ru -d -N Pivot_1.10_full/pivot/templates/_aux_template_onlycomments.html pivot-martin/pivot/templates/_aux_template_onlycomments.html
--- Pivot_1.10_full/pivot/templates/_aux_template_onlycomments.html	2004-01-31 16:58:36.000000000 +0100
+++ pivot-martin/pivot/templates/_aux_template_onlycomments.html	1970-01-01 01:00:00.000000000 +0100
@@ -1,22 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<title>[[weblogtitle]]&nbsp;&raquo;&nbsp;[[title]]</title>
-<meta http-equiv="Content-Type" content="text/html; charset='[[charset]]'" />
-<link rel="stylesheet" type="text/css" href="[[template_dir]]pivot_template.css" />
-</head>
-
-<body onload="top.iframeCallback(self, 'comments', '[[code]]');">
-<div style="border-bottom: 1px solid #999; padding: 3px; margin-top:10px; width:96%;">
-<blockquote><p>[[comments]]</p>
-
-[[commentform]]
-
-</blockquote>
-<div style="clear:both;"></div></div>
-
-</body>
-</html>
-
diff -ru -d -N Pivot_1.10_full/pivot/templates/entrypage_template.html pivot-martin/pivot/templates/entrypage_template.html
--- Pivot_1.10_full/pivot/templates/entrypage_template.html	2003-10-18 19:29:36.000000000 +0200
+++ pivot-martin/pivot/templates/entrypage_template.html	2004-06-14 21:46:33.000000000 +0200
@@ -2,28 +2,44 @@
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-<title>[[weblogtitle]]&nbsp;&raquo;&nbsp;[[title]]</title>
-<meta http-equiv="Content-Type" content="text/html; charset='[[charset]]'" />
-<link rel="stylesheet" type="text/css" href="[[template_dir]]pivot_template.css" />
+	<title>[[weblogtitle]]</title>
+	[[rss_autodiscovery]]
+	[[atom_autodiscovery]]
+	<meta http-equiv="Content-Type" content="text/html; charset='[[charset]]'" />
+	<link rel="stylesheet" type="text/css" href="[[template_dir]]stylesheet.css" />
+	[[calendar_style]]
 </head>
-<body> 
-<div id="header"> 
-  <div class="prevnext_links">[[previousentry]][[nextentry]]</div> 
-  <h1><a href="[[home]]">[[weblogtitle]]</a>&nbsp;&nbsp;-</h1> 
-  <h4>&nbsp;[[title]]</h4> 
-  <!-- end of 'header' --> 
-</div> 
-<div class="entrycontent"> 
-  <h2><span class="date">[[diffdate]] [[karma:good:+]] [[karma:bad:-]] </span>[[title]] </h2> 	
-	[[introduction]]
-  [[body]]
-  [[message]]
-  [[comments]]
-  [[commentform]]
-  <div style="clear:both;"></div> 
-  <!-- end of 'entrycontent' --> 
-</div> 
-<br /> 
-<br /> 
+
+<body>
+
+<div id="banner">
+<h1><a href="[[home]]" accesskey="1">[[weblogtitle]]</a></h1>
+<span class="description">[[weblogsubttile]]</span>
+</div>
+
+<div id="container">
+
+<div class="blog">
+<div id="menu">
+[[previousentry]][[nextentry]]
+</div>
+</div>
+
+<div class="blog">
+<h2 class="date">[[fulldate]]</h2>
+
+<div class="blogbody">
+<h3 class="title">[[title]]</h3>
+
+<p>[[introduction]]
+[[body]]
+[[message]]
+</div>
+
+<div class="posted">
+Posted by [[user:emailtonick]] at [[fulldate]].
+</div>
+
+</div>
 </body>
 </html>
diff -ru -d -N Pivot_1.10_full/pivot/templates/frontpage_template.html pivot-martin/pivot/templates/frontpage_template.html
--- Pivot_1.10_full/pivot/templates/frontpage_template.html	2004-01-31 17:55:08.000000000 +0100
+++ pivot-martin/pivot/templates/frontpage_template.html	2004-06-15 04:11:32.000000000 +0200
@@ -2,102 +2,67 @@
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
-	<title>[[weblogtitle]]&nbsp;-&nbsp;[[weblogsubtitle]]</title>
+	<title>[[weblogtitle]]</title>
 	[[rss_autodiscovery]]
 	[[atom_autodiscovery]]
 	<meta http-equiv="Content-Type" content="text/html; charset='[[charset]]'" />
-	<link rel="stylesheet" type="text/css" href="[[template_dir]]pivot_template.css" />
+	<link rel="stylesheet" type="text/css" href="[[template_dir]]stylesheet.css" />
 	[[calendar_style]]
 </head>
 
 <body>
 
-<div id="header">
-
-<h1><a href="[[home]]">[[weblogtitle]]</a>&nbsp;&nbsp;-</h1><h4>&nbsp;[[weblogsubtitle]]</h4>
-
-<!-- end of 'header' --></div>
-
-<div id="rightcolumn">
+<div id="banner">
+<h1><a href="[[home]]/" accesskey="1">[[weblogtitle]]</a></h1>
+<span class="description">[[weblogsubttile]]</span>
+</div>
 
-<div class="block">
-<h3>Search</h3>
-[[search::go!]]
+<div id="content">
+<div class="blog">
+[[subweblog:standard]]
+</div>
 </div>
 
+<div id="links">
 
-<div class="block">
-<h3>[[label:calendar]]</h3>
+<div align="center" class="calendar">
 [[calendar]]
 </div>
 
-<div class="block">
-<h3>[[label:last_comments]]</h3>
-[[last_comments]]
+<div class="sidetitle">
+Search
 </div>
-
-[[get_referrer]]
-<div class="block">
-<h3>[[label:last_referrers]]</h3>
-[[show_referrers]]
+ 
+<div class="side">
+[[search:go!]]
 </div>
 
-
-<div class="block">
-<h3>[[label:archives]]</h3>
-<p>[[archive_list]]</p>
+<div class="sidetitle">
+Archives
 </div>
 
-
-
-<div class="block">
-<h3>[[label:links]]</h3>
-<p>[[link_list]]</p>
+<div class="side">
+[[archive_list]]
 </div>
 
-
-<div class="block">
-<h3>Stuff</h3>
-<p>[[pivotbutton]]&nbsp;<br />
-[[rssbutton]]&nbsp;<br />
-[[atombutton]]&nbsp;<br />
-</p>
-
-
+<div class="sidetitle">
+Links
 </div>
 
-
-<!-- end of 'rightcolumn' --></div>
-
-<div id="leftcolumn">
-
-	<div class="block">
-	<h3>About</h3>
-	<p>This is the default template for <a href="http://www.pivotlog.net" title="Pivot: a GPL weblog tool.">Pivot</a>. You can change this text by editing the file frontpage_template.html in your pivot/templates/ folder. </p>
-	</div>
-
-
-	<div class="block">
-	<h3>Linkdump</h3>
-	[[subweblog:linkdump]]
-	</div>
-
-
-	<!-- end of 'leftcolumn' -->
+<div class="side">
+[[link_list]]
 </div>
 
-<div id="centercolumn">
-
-	<div class="content">
-
-		[[subweblog:standard]]
-
-		<!-- end of 'content' -->
-	</div>
+<div class="sidetitle">
+Misc
+</div>
 
-	<!-- end of 'centercolumn' -->
+<div class="side">
+[[pivotbutton]]<br>
+[[rssbutton]]
 </div>
 
+</div>
 
 </body>
 </html>
diff -ru -d -N Pivot_1.10_full/pivot/templates/pivot_template.css pivot-martin/pivot/templates/pivot_template.css
--- Pivot_1.10_full/pivot/templates/pivot_template.css	2004-01-31 16:59:42.000000000 +0100
+++ pivot-martin/pivot/templates/pivot_template.css	2004-06-14 20:48:57.000000000 +0200
@@ -16,7 +16,6 @@
 
 #centercolumn {
 	border: 0px solid #666666;
-	margin-left: 201px;
 	margin-right: 201px;
 	padding: 10px 4px;
 }
@@ -29,13 +28,6 @@
 	background-image: url(img_87.gif);
 }
 
-#leftcolumn {
-	left: 0px;
-	position: absolute;
-	width: 200px;
-	margin-top: 4px;
-}
-
 #rightcolumn {
 	position: absolute;
 	right: 0px;
diff -ru -d -N Pivot_1.10_full/pivot/templates/stylesheet.css pivot-martin/pivot/templates/stylesheet.css
--- Pivot_1.10_full/pivot/templates/stylesheet.css	1970-01-01 01:00:00.000000000 +0100
+++ pivot-martin/pivot/templates/stylesheet.css	2004-06-14 22:13:41.000000000 +0200
@@ -0,0 +1,316 @@
+	body {
+		margin:0px 0px 20px 0px;
+		background:#FFF;		
+		}
+	A 		{ color: darkblue; text-decoration: underline; }
+	A:link		{ color: darkblue; text-decoration: underline; }
+	A:visited	{ color: darkblue; text-decoration: underline; }
+	A:active	{ color: #999999;  }
+	A:hover		{ color: #999999;  }
+
+	code	{ color: darkblue; }
+
+	h1, h2, h3 {
+		margin: 0px;
+		padding: 0px;
+	}
+	
+	#banner h1 a{
+		margin: 0px;
+		padding: 0px;
+		color: gray;
+		font-family:verdana, arial, sans-serif;
+	}
+	
+	#banner {
+		font-family:palatino,  georgia, verdana, arial, sans-serif;
+		color:#333;
+		font-size:x-large;
+		font-weight:normal;	
+  		padding:15px;
+                border-top:4px double #666;
+		}
+
+	#banner a,
+        #banner a:link,
+        #banner a:visited,
+        #banner a:active,
+        #banner a:hover {
+		font-family: palatino,  georgia, verdana, arial, sans-serif;
+		font-size: xx-large;
+		text-decoration: none;
+		}
+
+	.description {
+		font-family:palatino,  georgia, times new roman, serif;
+		color:#333;
+		font-size:small;
+  		text-transform:none;	
+		}
+				
+	#content {
+		position:absolute;
+		background:#FFF;
+		margin-right:20px;
+		margin-left:225px;
+		margin-bottom:20px;
+		border:1px solid #FFF;
+		min-width:700px;
+		}
+
+	#container {
+		background:#FFF;
+		border:1px solid #FFF;		
+		}
+
+	#links {	
+		padding:15px;				
+		border:1px solid #FFF;
+		width:200px;			
+		}
+		
+	.subtitle { font-family:arial; font-size:small; left-margin:10px }
+	.blog {
+  		padding:15px;
+		background:#FFF; 
+		}
+
+	.blogbody {
+		font-family:verdana, arial, sans-serif;
+		color:#333;
+		font-size:small;
+		font-weight:normal;
+  		background:#FFF;
+  		line-height:150%;
+		}
+
+	.blogbody a,
+	.blogbody a:link,
+	.blogbody a:visited,
+	.blogbody a:active,
+	.blogbody a:hover {
+		font-weight: normal;
+		text-decoration: underline;
+	}
+
+	.title {
+		font-family: arial, verdana, sans-serif;
+		font-size: medium;
+		color: darkblue;
+		}
+
+
+	#menu {
+  		margin-bottom:15px;
+		background:#FFF;
+		text-align:center;
+		}		
+
+	.date,
+	.date a	{ 
+		font-family:arial, verdana, sans-serif; 
+		font-size: small; 
+		color: gray; 
+		border-bottom:1px solid #999;
+		margin-bottom:10px;
+		font-weight:bold;
+		}
+		
+	.posted	{ 
+		font-family:verdana, arial, sans-serif; 
+		font-size: x-small; 
+		color: #000000; 
+		border-top:1px solid #999;
+		margin-top:8px;
+		margin-bottom:25px;
+	}
+		
+		
+	.calendar {
+		font-family:verdana, arial, sans-serif;
+		color:#666;
+		font-size:x-small;
+		font-weight:normal;
+  		background:whitesmoke;
+  		line-height:140%;
+  		padding:2px;
+        	text-align:left;
+	}
+	
+	.calendarHeader {	
+		font-family:verdana, sans-serif;
+		color:darkblue;
+		font-size:x-small;
+		font-weight:bold;
+  		padding:2px;
+  		margin-top:30px;
+		letter-spacing: .3em;
+		border-top: solid 1px whitesmoke;
+	}
+
+	.calendarToday { 
+		background-color: #FFFFFF;
+		font-weight: bold;
+		text-decoration: underline;
+	}
+
+	.calendarHeader A, .calendar A {
+		font-weight: bold;
+		color: #253A69;
+		text-decoration: none;
+	}
+	
+	.side {
+		font-family:verdana, arial, sans-serif;
+		color:#333;
+		font-size:x-small;
+		font-weight:normal;
+  		background:whitesmoke;
+  		line-height:140%;
+  		padding:6px;				
+		}	
+		
+	.sidetitle {
+		font-family:verdana, sans-serif;
+		color:darkblue;
+		font-size:x-small;
+		font-weight:bold;
+  		padding:2px;
+  		margin-top:30px;
+		letter-spacing: .3em;
+		border-bottom: solid 1px silver;
+/*  		background:#f0e1c4;*/
+		}		
+	
+	.syndicate {
+		font-family:verdana, arial, sans-serif;
+		font-size:xx-small;		
+  		line-height:140%;
+  		padding:2px;
+  		margin-top:15px;
+  		background:#FFF;  		
+ 		}	
+		
+	.powered {
+		font-family:palatino, georgia, times new roman, serif;
+		color:#666;
+		font-size:x-small;		
+		line-height:140%;
+		text-transform:uppercase; 
+		padding:2px;
+		margin-top:50px;
+		letter-spacing: .2em;					
+  		background:#FFF;		
+		}	
+		
+	
+	.comments-body {
+		font-family:palatino, georgia, verdana, arial, sans-serif;
+		color:#666;
+		font-size:small;
+		font-weight:normal;
+  		background:#FFF;
+  		line-height:140%;
+ 		padding-bottom:10px;
+  		padding-top:10px;		
+ 		border-bottom:1px dotted #999; 					
+		}		
+
+	.comments-post {
+		font-family:verdana, arial, sans-serif;
+		color:#666;
+		font-size:x-small;
+		font-weight:normal;
+  		background:#FFF;		
+		}	
+			
+	.code-csharp
+	{
+		margin:15px;
+		padding:15px;
+		font-size: small;
+		font-family: "Courier New", Courier;
+		background:whitesmoke;
+		border: solid 1px silver;
+  		line-height:110%;
+	}
+	
+	.code-xml 
+	{
+		margin:15px;
+		padding:15px;
+		font-size: small;
+		font-family: "Courier New", Courier;
+		background:whitesmoke;
+		border: solid 1px silver;
+  		line-height:110%;
+	}
+	
+	.script
+	{
+		margin:15px;
+		padding:15px;
+		font-size: small;
+		font-family: "Courier New", Courier;
+		background:whitesmoke;
+		border: solid 1px silver;
+  		line-height:110%;
+	}
+	
+	.trackback-url {
+		font-family:palatino, georgia, verdana, arial, sans-serif;
+		color:#666;
+		font-size:small;
+		font-weight:normal;
+  		background:#FFF;
+  		line-height:140%;
+ 		padding:5px;		
+ 		border:1px dotted #999; 					
+		}
+
+
+	.trackback-body {
+		font-family:palatino, georgia, verdana, arial, sans-serif;
+		color:#666;
+		font-size:small;
+		font-weight:normal;
+  		background:#FFF;
+  		line-height:140%;
+ 		padding-bottom:10px;
+  		padding-top:10px;		
+ 		border-bottom:1px dotted #999; 					
+		}		
+
+	.trackback-post {
+		font-family:verdana, arial, sans-serif;
+		color:#666;
+		font-size:x-small;
+		font-weight:normal;
+  		background:#FFF;		
+		}	
+
+		
+	.comments-head	{ 
+		font-family:palatino, georgia, verdana, arial, sans-serif; 
+		font-size:small; 
+		color: #666; 
+		border-bottom:1px solid #999;
+		margin-top:20px;
+		font-weight:bold;
+  		background:#FFF;		
+		}		
+
+	#banner-commentspop {
+		font-family:palatino, georgia, verdana, arial, sans-serif;
+		color:#FFF;
+		font-size:large;
+		font-weight:bold;
+		border-left:1px solid #FFF;	
+		border-right:1px solid #FFF;  		
+		border-top:1px solid #FFF;  		
+  		background:#003366;
+  		padding-left:15px;
+  		padding-right:15px;
+  		padding-top:5px;
+  		padding-bottom:5px;  		  		  			 
+		}
diff -ru -d -N Pivot_1.10_full/pivot/templates/styles-site.css pivot-martin/pivot/templates/styles-site.css
--- Pivot_1.10_full/pivot/templates/styles-site.css	1970-01-01 01:00:00.000000000 +0100
+++ pivot-martin/pivot/templates/styles-site.css	2004-06-14 20:51:46.000000000 +0200
@@ -0,0 +1,299 @@
+	body {
+		margin:0px 0px 20px 0px;
+		background:#FFF;		
+		}
+	A 			{ color: darkblue; text-decoration: underline; }
+	A:link		{ color: darkblue; text-decoration: underline; }
+	A:visited	{ color: darkblue; text-decoration: underline; }
+	A:active	{ color: #999999;  }
+	A:hover		{ color: #999999;  }
+
+	code	{ color: darkblue; }
+
+	h1, h2, h3 {
+		margin: 0px;
+		padding: 0px;
+	}
+	
+	#banner h1 a{
+		margin: 0px;
+		padding: 0px;
+		color: gray;
+		font-family:verdana, arial, sans-serif;
+	}
+	
+	#banner {
+		font-family:palatino,  georgia, verdana, arial, sans-serif;
+		color:#333;
+		font-size:x-large;
+		font-weight:normal;	
+  		padding:15px;
+                border-top:4px double #666;
+		}
+
+	#banner a,
+        #banner a:link,
+        #banner a:visited,
+        #banner a:active,
+        #banner a:hover {
+		font-family: palatino,  georgia, verdana, arial, sans-serif;
+		font-size: xx-large;
+		text-decoration: none;
+		}
+
+	.description {
+		font-family:palatino,  georgia, times new roman, serif;
+		color:#333;
+		font-size:small;
+  		text-transform:none;	
+		}
+				
+	#content {
+		position:absolute;
+		background:#FFF;
+		margin-right:20px;
+		margin-left:225px;
+		margin-bottom:20px;
+		border:1px solid #FFF;	
+		}
+
+	#container {
+		background:#FFF;
+		border:1px solid #FFF;		
+		}
+
+	#links {	
+		padding:15px;				
+		border:1px solid #FFF;
+		width:200px;			
+		}
+		
+	.subtitle { font-family:arial; font-size:small; left-margin:10px }
+	.blog {
+  		padding:15px;
+		background:#FFF; 
+		}
+
+	.blogbody {
+		font-family:verdana, arial, sans-serif;
+		color:#333;
+		font-size:small;
+		font-weight:normal;
+  		background:#FFF;
+  		line-height:150%;
+		}
+
+	.blogbody a,
+	.blogbody a:link,
+	.blogbody a:visited,
+	.blogbody a:active,
+	.blogbody a:hover {
+		font-weight: normal;
+		text-decoration: underline;
+	}
+
+	.title	{
+		font-family: arial, verdana, sans-serif;
+		font-size: medium;
+		color: darkblue;
+		}			
+
+	#menu {
+  		margin-bottom:15px;
+		background:#FFF;
+		text-align:center;
+		}		
+
+	.date	{ 
+		font-family:arial, verdana, sans-serif; 
+		font-size: small; 
+		color: gray; 
+		border-bottom:1px solid #999;
+		margin-bottom:10px;
+		font-weight:bold;
+		}			
+		
+	.posted	{ 
+		font-family:verdana, arial, sans-serif; 
+		font-size: x-small; 
+		color: #000000; 
+		margin-bottom:25px;
+		}
+		
+		
+	.calendar {
+		font-family:verdana, arial, sans-serif;
+		color:#666;
+		font-size:x-small;
+		font-weight:normal;
+  		background:whitesmoke;
+  		line-height:140%;
+  		padding:2px;
+        text-align:left;
+		}
+	
+	.calendarhead {	
+		font-family:verdana, sans-serif;
+		color:darkblue;
+		font-size:x-small;
+		font-weight:bold;
+  		padding:2px;
+  		margin-top:30px;
+		letter-spacing: .3em;
+		border-top: solid 1px whitesmoke;
+		}	
+	
+	.side {
+		font-family:verdana, arial, sans-serif;
+		color:#333;
+		font-size:x-small;
+		font-weight:normal;
+  		background:whitesmoke;
+  		line-height:140%;
+  		padding:6px;				
+		}	
+		
+	.sidetitle {
+		font-family:verdana, sans-serif;
+		color:darkblue;
+		font-size:x-small;
+		font-weight:bold;
+  		padding:2px;
+  		margin-top:30px;
+		letter-spacing: .3em;
+		border-bottom: solid 1px silver;
+/*  		background:#f0e1c4;*/
+		}		
+	
+	.syndicate {
+		font-family:verdana, arial, sans-serif;
+		font-size:xx-small;		
+  		line-height:140%;
+  		padding:2px;
+  		margin-top:15px;
+  		background:#FFF;  		
+ 		}	
+		
+	.powered {
+		font-family:palatino, georgia, times new roman, serif;
+		color:#666;
+		font-size:x-small;		
+		line-height:140%;
+		text-transform:uppercase; 
+		padding:2px;
+		margin-top:50px;
+		letter-spacing: .2em;					
+  		background:#FFF;		
+		}	
+		
+	
+	.comments-body {
+		font-family:palatino, georgia, verdana, arial, sans-serif;
+		color:#666;
+		font-size:small;
+		font-weight:normal;
+  		background:#FFF;
+  		line-height:140%;
+ 		padding-bottom:10px;
+  		padding-top:10px;		
+ 		border-bottom:1px dotted #999; 					
+		}		
+
+	.comments-post {
+		font-family:verdana, arial, sans-serif;
+		color:#666;
+		font-size:x-small;
+		font-weight:normal;
+  		background:#FFF;		
+		}	
+			
+	.code-csharp
+	{
+		margin:15px;
+		padding:15px;
+		font-size: small;
+		font-family: "Courier New", Courier;
+		background:whitesmoke;
+		border: solid 1px silver;
+  		line-height:110%;
+	}
+	
+	.code-xml 
+	{
+		margin:15px;
+		padding:15px;
+		font-size: small;
+		font-family: "Courier New", Courier;
+		background:whitesmoke;
+		border: solid 1px silver;
+  		line-height:110%;
+	}
+	
+	.script
+	{
+		margin:15px;
+		padding:15px;
+		font-size: small;
+		font-family: "Courier New", Courier;
+		background:whitesmoke;
+		border: solid 1px silver;
+  		line-height:110%;
+	}
+	
+	.trackback-url {
+		font-family:palatino, georgia, verdana, arial, sans-serif;
+		color:#666;
+		font-size:small;
+		font-weight:normal;
+  		background:#FFF;
+  		line-height:140%;
+ 		padding:5px;		
+ 		border:1px dotted #999; 					
+		}
+
+
+	.trackback-body {
+		font-family:palatino, georgia, verdana, arial, sans-serif;
+		color:#666;
+		font-size:small;
+		font-weight:normal;
+  		background:#FFF;
+  		line-height:140%;
+ 		padding-bottom:10px;
+  		padding-top:10px;		
+ 		border-bottom:1px dotted #999; 					
+		}		
+
+	.trackback-post {
+		font-family:verdana, arial, sans-serif;
+		color:#666;
+		font-size:x-small;
+		font-weight:normal;
+  		background:#FFF;		
+		}	
+
+		
+	.comments-head	{ 
+		font-family:palatino, georgia, verdana, arial, sans-serif; 
+		font-size:small; 
+		color: #666; 
+		border-bottom:1px solid #999;
+		margin-top:20px;
+		font-weight:bold;
+  		background:#FFF;		
+		}		
+
+	#banner-commentspop {
+		font-family:palatino, georgia, verdana, arial, sans-serif;
+		color:#FFF;
+		font-size:large;
+		font-weight:bold;
+		border-left:1px solid #FFF;	
+		border-right:1px solid #FFF;  		
+		border-top:1px solid #FFF;  		
+  		background:#003366;
+  		padding-left:15px;
+  		padding-right:15px;
+  		padding-top:5px;
+  		padding-bottom:5px;  		  		  			 
+		}
\ No newline at end of file
diff -ru -d -N Pivot_1.10_full/pivot/templates/_sub_commentform.html pivot-martin/pivot/templates/_sub_commentform.html
--- Pivot_1.10_full/pivot/templates/_sub_commentform.html	2003-11-16 21:03:28.000000000 +0100
+++ pivot-martin/pivot/templates/_sub_commentform.html	1970-01-01 01:00:00.000000000 +0100
@@ -1,33 +0,0 @@
-<br />
-<form method="post" action="[[pivot_dir]]submit.php#message" id="form">
-<table border='0' cellspacing='0' cellpadding='0' width="98%" class="commentform">
-<tr>
-      <td>[[label:name]]:&nbsp;&nbsp;</td>
-      <td><input type="text" name="piv_name" size="20" class="commentinput" value="[[cookie:name]]" /></td>
-      <td rowspan="3" valign="top"><div style="border-left: 1px solid #000; padding: 4px 8px; margin-left:8px;">[[label:remember_info]]
-          <br />
-        <input type="radio" id="remember" name="piv_rememberinfo" value="yes" [[cookie:remember_yes]] /><label for="remember">[[label:yes]]</label> <br />
-		<input type="radio" id="forget" name="piv_rememberinfo" value="no" [[cookie:remember_no]] /><label for="forget">[[label:no]]</label>
-      </div></td>
-</tr><tr>
-      <td>[[label:email]]:</td>
-      <td><input name="piv_email" type="text" size="30" class="commentinput" value="[[cookie:email]]" /></td>
-      </tr><tr>
-      <td>[[label:url]]:</td>
-      <td><input name="piv_url" type="text" size="30" class="commentinput" value="[[cookie:url]]" /></td>
-      </tr><tr><td colspan="2">[[label:comment]]:</td><td align="right">[[emotpopup]] /  [[textilepopup]]</td>
-      </tr><tr><td colspan='3'>
-<textarea name="piv_comment" cols="40" rows="5" style="width:99%"  class="commentinput"></textarea></td></tr>
-      <tr>
-        <td colspan='3'>
-					<input type="hidden" name="piv_code" value="[[code]]" />
-					<input type="hidden" name="piv_weblog" value="[[weblogname]]" />
-          <input type="submit" name="post" value="[[label:post_comment]]" class="commentbutton" style="font-weight: bold;" />
-          <input type="submit" name="preview" value="[[label:preview_comment]]" class="commentbutton" />
-<br />
-<br />
-
-        <small>[[label:disclaimer]]</small></td>
-      </tr>
-</table>
-</form>
\ No newline at end of file
diff -ru -d -N Pivot_1.10_full/pivot/templates/_sub_entry_linkdump.html pivot-martin/pivot/templates/_sub_entry_linkdump.html
--- Pivot_1.10_full/pivot/templates/_sub_entry_linkdump.html	2003-12-21 13:12:28.000000000 +0100
+++ pivot-martin/pivot/templates/_sub_entry_linkdump.html	1970-01-01 01:00:00.000000000 +0100
@@ -1,6 +0,0 @@
-<span class="date_linkdump">[[karma:good:+]] [[karma:bad:-]] | [[permalink:&sect;:Permanent link to '%title%' in the archives]] [[singlepermalink:&para;:Permanent link to entry '%title%']]</span><b>[[title]]</b><br />
-
-<p>[[introduction]] [[more]]</p>
-<div class="entryfooter_linkdump">[[diffdate]]  [[date]] | [[commentlink]]</div>
-
-
diff -ru -d -N Pivot_1.10_full/pivot/templates/_sub_entry_standard.html pivot-martin/pivot/templates/_sub_entry_standard.html
--- Pivot_1.10_full/pivot/templates/_sub_entry_standard.html	2003-12-21 13:14:38.000000000 +0100
+++ pivot-martin/pivot/templates/_sub_entry_standard.html	2004-06-14 22:01:24.000000000 +0200
@@ -1,5 +1,14 @@
-<h2 style="clear:both;"><span class="date">[[karma:good:+]] [[karma:bad:-]] | [[permalink:&sect;:Permanent link to '%title%' in the archives]] [[singlepermalink:&para;:Permanent link to entry '%title%']]</span>[[title]] </h2>
+<h2 class="date">
+[[fulldate]] ([[singlepermalink:permalink]])
+</h2>
 
-[[introduction]] [[more]] 
+<div class="blogbody">
+<h3 class="title">[[title]]</h3>
 
-<div class="entryfooter"> [[diffdate]]  [[date]] | [[user:emailtonick]] | [[category:inthisweblog]] | [[commentlink]] </div>
+[[introduction]]
+[[more]]
+</div>
+
+<div class="posted">
+Posted by [[user:emailtonick]] at [[fulldate]].
+</div>

