[pLog-svn] r1952 - in templates/trunk: . GreenTrack GreenTrack/img StreetCorner StreetCorner/img

oscar at devel.plogworld.net oscar at devel.plogworld.net
Fri May 6 12:36:46 GMT 2005


Author: oscar
Date: 2005-05-06 12:36:45 +0000 (Fri, 06 May 2005)
New Revision: 1952

Added:
   templates/trunk/GreenTrack/
   templates/trunk/GreenTrack/album.template
   templates/trunk/GreenTrack/albums.template
   templates/trunk/GreenTrack/commentarticle.template
   templates/trunk/GreenTrack/commentform.template
   templates/trunk/GreenTrack/error.template
   templates/trunk/GreenTrack/footer.template
   templates/trunk/GreenTrack/header.template
   templates/trunk/GreenTrack/img/
   templates/trunk/GreenTrack/img/Thumbs.db
   templates/trunk/GreenTrack/img/blockquote.png
   templates/trunk/GreenTrack/img/bullet.png
   templates/trunk/GreenTrack/img/ico-talk-act.gif
   templates/trunk/GreenTrack/img/ico-talk.gif
   templates/trunk/GreenTrack/img/rail.jpg
   templates/trunk/GreenTrack/main.template
   templates/trunk/GreenTrack/panel.template
   templates/trunk/GreenTrack/post.template
   templates/trunk/GreenTrack/postandcomments.template
   templates/trunk/GreenTrack/posttrackbacks.template
   templates/trunk/GreenTrack/resource.template
   templates/trunk/GreenTrack/screenshot.jpg
   templates/trunk/GreenTrack/searchresults.template
   templates/trunk/GreenTrack/style.css
   templates/trunk/StreetCorner/
   templates/trunk/StreetCorner/album.template
   templates/trunk/StreetCorner/albums.template
   templates/trunk/StreetCorner/commentarticle.template
   templates/trunk/StreetCorner/commentform.template
   templates/trunk/StreetCorner/error.template
   templates/trunk/StreetCorner/footer.template
   templates/trunk/StreetCorner/header.template
   templates/trunk/StreetCorner/img/
   templates/trunk/StreetCorner/img/Thumbs.db
   templates/trunk/StreetCorner/img/bg.gif
   templates/trunk/StreetCorner/img/blockquote.png
   templates/trunk/StreetCorner/img/bullet.png
   templates/trunk/StreetCorner/img/ico-talk-act.gif
   templates/trunk/StreetCorner/img/ico-talk.gif
   templates/trunk/StreetCorner/img/paris.jpg
   templates/trunk/StreetCorner/img/sidebar-btm-bg.jpg
   templates/trunk/StreetCorner/img/sidebar-top-bg.jpg
   templates/trunk/StreetCorner/main.template
   templates/trunk/StreetCorner/panel.template
   templates/trunk/StreetCorner/post.template
   templates/trunk/StreetCorner/postandcomments.template
   templates/trunk/StreetCorner/posttrackbacks.template
   templates/trunk/StreetCorner/resource.template
   templates/trunk/StreetCorner/screenshot.jpg
   templates/trunk/StreetCorner/searchresults.template
   templates/trunk/StreetCorner/style.css
Log:
added two templates by user 'james'


Added: templates/trunk/GreenTrack/album.template
===================================================================
--- templates/trunk/GreenTrack/album.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/GreenTrack/album.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,87 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2>{$album->getName()}</h2>
+<p>
+{$album->getDescription()}
+</p>
+<!-- album contents go here -->
+<div id="album">
+<table style="border:0px;width:93%" summary="Album Resources">
+<tr>
+<td style="width:30%;" align="center" >
+<a class="nodecoration" href="{$url->parentAlbumLink($album)}">
+<img style="border:0px" src="{$url->getUrl("/imgs/folder.gif")}" alt="Folder" /><br/>
+..
+</a>
+</td>
+{assign var="counter" value=1}
+{assign var=children value=$album->getChildren()}
+{foreach from=$children item=childalbum}
+<td style="width:30%;" align="center" >
+<a class="nodecoration" href="{$url->albumLink($childalbum)}">
+<img style="border:0px;" src="{$url->getUrl("/imgs/folder.gif")}" alt="Folder" /><br/>
+{$childalbum->getName()} ({$childalbum->getNumResources()})
+</a>
+<br/><br/>
+{assign var="counter" value="`$counter+1`"}
+</td>
+{if $counter%3 == 0}
+</tr>
+<tr>
+{/if}
+{/foreach}
+<!--- show the resources here -->
+
+{assign var=resources value=$album->getResources()}
+{foreach from=$resources item=resource}
+<td style="width:30%;" align="center" >
+{if $resource->hasPreview()}
+{*<a class="nodecoration" target="_blank" href="resserver.php?blogId={$blog->getId()}&amp;resource={$resource->getFileName()}">*}
+<a class="nodecoration" href="{$url->resourceLink($resource)}">
+<img alt="{$resource->getDescription()}" style="border:0px;" src="{$url->resourcePreviewLink($resource)}" />
+<br/>{$resource->getFileName()}
+</a>
+{else}
+<a class="nodecoration" href="{$url->resourceLink($resource)}">
+{if $resource->isSound()}
+<img alt="Sound" src="{$url->getUrl("/imgs/sound.gif")}" height="64" width="64" style="border:0px;" />
+{elseif $resource->isVideo()}
+<img alt="Video" src="{$url->getUrl("/imgs/video.gif")}" height="64" width="64" style="border:0px;" />
+{elseif $resource->isZip()}
+<img alt="Zip" src="{$url->getUrl("/imgs/compressed.gif")}" height="64" width="64" style="border:0px;" />
+{else}
+<img alt="File" src="{$url->getUrl("/imgs/file.gif")}" height="64" width="64" style="border:0px;" />
+{/if}
+<br/>{$resource->getFileName()}
+</a>
+{/if}
+<br/>
+{assign var=metadata value=$resource->getMetadataReader()}
+{$metadata->getRoundedSize()}<br/>
+{if $resource->isImage()}
+{$metadata->getWidth()} x {$metadata->getHeight()}<br/>
+{elseif $resource->isSound()}
+{$metadata->getFormat()|upper} {$metadata->getSampleRate()} bps<br/>
+{elseif $resource->isVideo()}
+{$metadata->getFormat()|upper}
+{$metadata->getWidth()} x {$metadata->getHeight()},
+{$metadata->getLengthString()}<br/>
+{elseif $resource->isZip()}
+{$metadata->getTotalFiles()} {$locale->tr("files")}<br/>
+{/if}
+{assign var="counter" value="`$counter+1`"}
+</td>
+{if $counter%3 == 0}
+</tr>
+<tr>
+{/if}
+{/foreach}
+<td></td></tr>
+</table>
+</div>
+<!-- end of album contents -->
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/GreenTrack/albums.template
===================================================================
--- templates/trunk/GreenTrack/albums.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/GreenTrack/albums.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,30 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2>{$locale->tr("albums")}</h2>
+<!-- album contents go here -->
+<div id="album">
+<table style="border:0px;width:93%;" summary="Albums">
+<tr>
+{assign var="counter" value=0}
+{foreach from=$albums item=album}
+<td style="width:30%;" align="center">
+<a class="nodecoration" href="{$url->albumLink($album)}">
+<img style="border:0px;" src="{$url->getUrl("/imgs/folder.gif")}" alt="Folder" /><br/>
+{$album->getName()} ({$album->getNumResources()})
+</a>
+{assign var="counter" value="`$counter+1`"}
+</td>
+{if $counter%3 == 0}
+</tr>
+<tr>
+{/if}
+{/foreach}
+<td></td></tr>
+</table>
+</div>
+<!-- end of the albums -->
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/GreenTrack/commentarticle.template
===================================================================

Added: templates/trunk/GreenTrack/commentform.template
===================================================================
--- templates/trunk/GreenTrack/commentform.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/GreenTrack/commentform.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,13 @@
+<form id="commentform" name="commentform" action="{$url->getBaseUrl()}/index.php" method="post">
+<p><input name="userName" type="text" size="35" /><small>{$locale->tr("comment_username")} (required)</small></p>
+<p><input name="commentTopic" type="text" size="35" /><small>{$locale->tr("comment_topic")}</small></p>
+<p><input name="userUrl" type="text" size="35" /><small>{$locale->tr("comment_url")}</small></p>
+<p><input name="userEmail" type="text" size="35" /><small>{$locale->tr("comment_email")}</small></p>
+<p><textarea rows="10" cols="45" name="commentText"></textarea></p>
+<p><input style="font-weight: bold;" type="submit" name="post" value="&nbsp;{$locale->tr("comment_send")}&nbsp;" />
+&nbsp;&nbsp;<input style="font-weight: bold;" type="reset"></p>
+<input type="hidden" name="op" value="AddComment"/>
+<input type="hidden" name="articleId" value="{$post->getId()}"/>
+<input type="hidden" name="blogId" value="{$blog->getId()}"/>
+<input type="hidden" name="parentId" value="{$parentId}"/>
+</form>
\ No newline at end of file

Added: templates/trunk/GreenTrack/error.template
===================================================================
--- templates/trunk/GreenTrack/error.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/GreenTrack/error.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,10 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+   <div class="post">
+      <p class="post-info">{$locale->tr("error")}</p>
+      <p>{$locale->tr($message)}</p>
+      <p><a href="javascript:history.go(-1)">{$locale->tr("back")}</a></p>
+   </div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/GreenTrack/footer.template
===================================================================
--- templates/trunk/GreenTrack/footer.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/GreenTrack/footer.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,6 @@
+<p id="footer">
+Power by <a href="http://www.plogworld.net" target="_blank">pLog</a>. Design by <a href="http://wpthemes.info" title="WP Themes.Info">WPThemes.Info</a>&nbsp; Converted to use with pLog by James Huang. Valid <a href="http://validator.w3.org/check/referer">XHTML</a> and <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a></p>
+</div>
+</div>
+</body>
+</html>
\ No newline at end of file

Added: templates/trunk/GreenTrack/header.template
===================================================================
--- templates/trunk/GreenTrack/header.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/GreenTrack/header.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,25 @@
+<!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" xml:lang="{$locale->getLanguageId()}" lang="{$locale->getLanguageId()}" dir="{$locale->getDirection()}">
+<head>
+	<meta http-equiv="Content-Type" content="text/html;charset={$locale->getCharset()}" />
+	<meta name="generator" content="{$version}" />
+	<meta http-equiv="Content-Language" content="{$locale->getLanguageId()}" />
+	<title>{$blog->getBlog()}{$postPageTitle}</title>
+	<link rel="stylesheet" title="Default" href="{$url->getTemplateFile("style.css")}" type="text/css" />
+	<link rel="alternate" type="text/xml" title="RSS 2.0" href="{$url->rssLink("rss20")}" />
+	<link rel="alternate" type="text/xml" title="RSS 1.0" href="{$url->rssLink("rss10")}" />
+	<link rel="alternate" type="text/xml" title="RSS 0.90" href="{$url->rssLink("rss090")}" />
+	<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="{$url->rssLink("atom")}" />
+</head>
+<body>
+	<div id="rap">
+		<ul id="topnav">
+			<li><a href="{$url->blogLink()}"> {$locale->tr("main")} </a> | </li>
+			<li><a href="admin.php" accesskey="2">{$locale->tr("dashboard")} </a> | </li>
+			<li><a href="{$url->albumLink()}">{$locale->tr("albums")} </a> | </li>
+		</ul> 
+		<div id="header">
+			<h1><a href="{$url->blogLink()}" accesskey="1"> {$blog->getBlog()}</a></h1>
+			<div class="description">{$blog->getAbout()}</div>
+		</div>
+		<hr />

Added: templates/trunk/GreenTrack/img/Thumbs.db
===================================================================
(Binary files differ)


Property changes on: templates/trunk/GreenTrack/img/Thumbs.db
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/GreenTrack/img/blockquote.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/GreenTrack/img/blockquote.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/GreenTrack/img/bullet.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/GreenTrack/img/bullet.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/GreenTrack/img/ico-talk-act.gif
===================================================================
(Binary files differ)


Property changes on: templates/trunk/GreenTrack/img/ico-talk-act.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/GreenTrack/img/ico-talk.gif
===================================================================
(Binary files differ)


Property changes on: templates/trunk/GreenTrack/img/ico-talk.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/GreenTrack/img/rail.jpg
===================================================================
(Binary files differ)


Property changes on: templates/trunk/GreenTrack/img/rail.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/GreenTrack/main.template
===================================================================
--- templates/trunk/GreenTrack/main.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/GreenTrack/main.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,8 @@
+{include file="$blogtemplate/header.template"}
+	<div id="content">
+	{foreach from=$posts item=post}
+  		{include file="$blogtemplate/post.template"}
+	{/foreach}
+	</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/GreenTrack/panel.template
===================================================================
--- templates/trunk/GreenTrack/panel.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/GreenTrack/panel.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,73 @@
+<div id="sidebar">
+<!--Calendar-->
+<h2> {$locale->tr("calendar")} </h2>
+<ul>
+	<li>
+		<div align="center">
+		{$calendar}
+		</div>
+	</li>
+</ul>
+<!--Search-->
+<form name="search_form" method="post" action="{$url->getIndexUrl()}">
+<h2> {$locale->tr("search")} </h2>
+<ul>
+	<li><div align="center">
+		<input type="text" name="searchTerms" value="" size="14" /><br/>
+		<input type="hidden" name="op" value="Search" />
+		<input type="hidden" name="blogId" value="{$blog->getId()}" />
+		<input type="submit" name="Search" value="{$locale->tr("search")|capitalize}" />
+	</div></li>
+</ul>
+</form>
+
+<!--Recent Articles-->
+<h2> {$locale->tr("recently")} </h2>
+<ul>
+{foreach from=$recentposts item=recentpost}
+<li><a title="{$recentpost->getText()|truncate:150:"..."|strip_tags|escape}" href="{$url->postLink($recentpost)}">{$recentpost->getTopic()}</a></li>
+{/foreach}
+</ul>
+
+<!--archives-->
+<h2> {$locale->tr("archives")} </h2>
+<ul>
+{foreach from=$archives item=month}
+<li><a href="{$month->getUrl()}">{$month->getName()}</a></li>
+{/foreach}
+</ul>
+
+<!--categories-->
+<h2> {$locale->tr("categories")} </h2>
+<ul>
+{foreach from=$articlecategories item=articleCategory}
+<li><a href="{$url->categoryRssLink($articleCategory)}"><img src="{$url->getUrl("/imgs/rss_logo_small.gif")}" style="border:0px;" alt="RSS 0.90" align="middle" /></a>
+<a href="{$url->categoryLink($articleCategory)}">{$articleCategory->getName()}</a> [{$articleCategory->getNumArticles()}]</li>
+{/foreach}
+</ul>
+
+<!--Mylink-->
+<h2> {$locale->tr("my_links")} </h2>
+<ul>
+{foreach from=$mylinkscategories item=linkcategory}
+<li>{$linkcategory->getName()}
+<ul class='children'>
+{foreach from=$linkcategory->getLinks() item=link}
+<li><a href="{$link->getUrl()}" title="{$link->getDescription()}">{$link->getName()}</a></li>
+{/foreach}
+</ul>
+</li>
+{/foreach}
+</ul>
+
+<!--Syndicate-->
+<h2> {$locale->tr("syndicate")} </h2>
+<ul>
+<li>
+<a class="nodecoration" title="Link to the RSS 0.90 feed." href="{$url->rssLink("rss090")}"><img src="{$url->getUrl("/imgs/rss090_logo.gif")}" style="border:0px;" alt="RSS 0.90" /></a><br />
+<a class="nodecoration" title="Link to the RSS 1.0 feed." href="{$url->rssLink("rss10")}"><img src="{$url->getUrl("/imgs/rss10_logo.gif")}" style="border:0px;" alt="RSS 1.0" /></a><br />
+<a class="nodecoration" title="Link to the RSS 2.0 feed." href="{$url->rssLink("rss20")}"><img src="{$url->getUrl("/imgs/rss20_logo.gif")}" style="border:0px;" alt="RSS 2.0" /></a><br />
+<a class="nodecoration" title="Link to the Atom 0.3 feed." href="{$url->rssLink("atom")}"><img src="{$url->getUrl("/imgs/atom_logo.png")}" style="border:0px;" alt="Atom 0.3" /></a><br />
+</li>
+</ul>
+</div>
\ No newline at end of file

Added: templates/trunk/GreenTrack/post.template
===================================================================
--- templates/trunk/GreenTrack/post.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/GreenTrack/post.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,16 @@
+<!-- {$url->postTrackbackLink($post)} -->
+{assign var="postDate" value=$post->getDateObject()}
+{assign var="postOwner" value=$post->getUserInfo()}
+		<!-- post start -->
+		<div class="post-title">
+			<em>
+				[{foreach name=categories from=$post->getCategories() item=postcategory}
+				<a href="{$url->categoryLink($postcategory)}">{$postcategory->getName()}</a>
+				{if !$smarty.foreach.categories.last}, {/if}
+				{/foreach}]
+			</em>
+			{$locale->formatDate($postDate,"%d %B, %Y %H:%M")}
+		</div>
+		<p class="post-info"><a href="{$url->postPermalink($post)}" rel="bookmark" title="Permanent Link: {$post->getTopic()}"> {$post->getTopic()} </a></p>
+		<div class="post-content">{$post->getText()}</div>
+		<div class="post-footer"><span class='link-comment'><a href="{$url->postPermalink($post)}"> ({$post->getTotalComments()}) {$locale->tr("comment on this")} </a></span>&nbsp;|&nbsp;[<a href="{$url->postTrackbackStatsLink($post)}"> ({$post->getNumTrackbacks()}) {$locale->tr("trackbacks")}  </a>]&nbsp;|&nbsp;[<a href="{$url->postPermalink($post)}">{$locale->tr("permalink")}</a>]</div>

Added: templates/trunk/GreenTrack/postandcomments.template
===================================================================
--- templates/trunk/GreenTrack/postandcomments.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/GreenTrack/postandcomments.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,45 @@
+{include file="$blogtemplate/header.template"}
+{assign var="postDate" value=$post->getDateObject()}
+{assign var="postOwner" value=$post->getUserInfo()}
+{assign var=nextpost value=$post->getNextArticle()}
+{assign var=prevpost value=$post->getPrevArticle()}
+{assign var=postId value=$post->getId()}
+<div id="content">
+<div class="post">
+<p align="center">
+{if $prevpost == true}
+<a href="{$url->postPermalink($prevpost)}" title="{$locale->tr("previous_post")}: {$prevpost->getTopic()}">&laquo; {$locale->tr("previous_post")}</a> |
+{/if}
+{if $nextpost == true}
+<a href="{$url->postPermalink($nextpost)}" title="{$locale->tr("next_post")}: {$nextpost->getTopic()}">{$locale->tr("next_post")}&raquo;</a>
+{/if}
+</p>
+{include file="$blogtemplate/post.template"}
+
+{* show comments *}
+<h3 id="comments">{$post->getTotalComments()} COMMONS TO "{$post->getTopic()}"</h3>
+<ol class="commentlist">
+{foreach name=comment from=$comments item=comment}
+<li class="alt" id="comment-{$comment->getId()}">
+{$locale->tr("posted_by")}
+{if $comment->getUserUrl() != ""}
+<cite><a href="{$comment->getUserUrl()}"}>{$comment->getUsername()}</a></cite>
+{else}
+<cite>{$comment->getUsername()}</cite>
+{/if}
+<a name="{$comment->getId()}"></a>
+{$comment->getTopic()} [<a href="{$url->postPermalink($post)}#NewComment"> {$locale->tr("reply")} </a>]<br />
+<small class="commentmetadata">{assign var=commentDate value=$comment->getDateObject()}	{$locale->formatDate($commentDate, "%d/%m/%Y, %H:%M")}</small>
+<p>{$comment->getText()}</p>
+</li>
+{/foreach}
+</ol>
+{if $blogsettings->getValue("comments_enabled") && $post->getCommentsEnabled()==1}
+<h3 id="respond"><a name="Newcomment"></a>{$locale->tr("add_comment")}</h3>
+{include file="$blogtemplate/commentform.template"}
+{/if}
+
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/GreenTrack/posttrackbacks.template
===================================================================
--- templates/trunk/GreenTrack/posttrackbacks.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/GreenTrack/posttrackbacks.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,17 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2 class="post-title">{$locale->tr("trackbacks_for_article")} "<a href="{$url->postLink($post)}">{$post->getTopic()}</a>":</h2>
+<br/<br/>
+{foreach from=$trackbacks item=trackback}
+<b>{$locale->tr("trackbacks_for_article")}:</b><a href="{$trackback->getUrl()}">{$trackback->getTitle()}</a><br/>
+<b>{$locale->tr("trackback_excerpt")}:</b> {$trackback->getExcerpt()}<br/>
+<b>{$locale->tr("trackback_weblog")}:</b> {$trackback->getBlogName()}<br/>
+{assign var="trackbackDate" value=$trackback->getDateObject()}
+<b>{$locale->tr("date")}:</b> {$locale->formatDate($trackbackDate, "%d/%m/%Y %H:%M")}<br/>
+<div class="post-footer">&nbsp;</div>
+{/foreach}
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/GreenTrack/resource.template
===================================================================
--- templates/trunk/GreenTrack/resource.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/GreenTrack/resource.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,58 @@
+{include file="$blogtemplate/header.template"}
+{assign var=metadata value=$resource->getMetadataReader()}
+{assign var=updated value=$resource->getTimestamp()}
+<div id="content">
+<div class="post">
+<h2>{$resource->getFileName()}</h2>
+<br/>
+<div id="Resource-Desc">
+<a href="{$url->resourceDownloadLink($resource)}">{$locale->tr("download")}</a>
+({$metadata->getRoundedSize()}) | {$locale->tr("created")} {$locale->formatDate($updated,"%d %B, %Y")}
+<div id="album">
+<p>{$resource->getDescription()}</p>
+{if $resource->isImage()}
+<img src="{$url->resourceMediumSizePreviewLink($resource)}" alt="{$resource->getFileName()}, {$metadata->getRoundedSize()}" />
+{else}
+<a href="{$url->resourceDownloadLink($resource)}">
+{* show some information about the file *}
+{if $resource->isSound()}
+<img alt="Sound" src="{$url->getUrl("/imgs/sound.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a><br/>
+{$locale->tr("format")}: {$metadata->getFormat()|upper}<br/>
+{$locale->tr("length")}: {$metadata->getLengthString()}<br/>
+{$locale->tr("sample_rate")}: {$metadata->getSampleRate()} Khz
+{elseif $resource->isVideo()}
+<img alt="Sound" src="{$url->getUrl("/imgs/video.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a><br/>
+{$locale->tr("format")}: {$metadata->getFormat()|upper}<br/>
+{$locale->tr("size")}: {$metadata->getHeight()} x {$metadata->getWidth()}<br/>
+{$locale->tr("length")}: {$metadata->getLengthString()}<br/>
+{$locale->tr("video_codec")}: {$metadata->getVideoCodec()}<br/>
+{$locale->tr("audio_codec")}: {$metadata->getAudioCodec()}
+{elseif $resource->isZip()}
+<img alt="Sound" src="{$url->getUrl("/imgs/compressed.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a><br/>
+{$metadata->getTotalFiles()} {$locale->tr("files")}<br/>
+{$locale->tr("uncompressed_size")}: {$metadata->getRoundedUncompressedSize()}
+{else}
+<img alt="Sound" src="{$url->getUrl("/imgs/file.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a>
+{/if}
+{/if}
+<br/>
+</div>
+<p>
+{assign var=album value=$resource->getAlbum()}
+{if $prevresource}<a href="{$url->resourceLink($prevresource)}">&laquo;</a> | {/if}
+<a href="{$url->albumLink($album)}">{$locale->tr("back")}</a>
+{if $nextresource}| <a href="{$url->resourceLink($nextresource)}">&raquo;</a>{/if}
+</p>
+</div>
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/GreenTrack/screenshot.jpg
===================================================================
(Binary files differ)


Property changes on: templates/trunk/GreenTrack/screenshot.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/GreenTrack/searchresults.template
===================================================================
--- templates/trunk/GreenTrack/searchresults.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/GreenTrack/searchresults.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,22 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2 class="post-title">{$locale->tr("search_results")}: {foreach from=$searchterms item=term}{$term} {/foreach}</h2><br/>
+<div class="post-info">
+{foreach from=$searchresults item=result}
+{assign var=article value=$result->getArticle()}
+<h3 class="post-title"><a href="{$url->postPermalink($article)}">{$article->getTopic()}</a></h3>
+
+{$locale->tr("categories")}:
+{foreach name=categories from=$article->getCategories() item=articleCategory}
+<a href="{$url->categoryLink($articleCategory)}">{$articleCategory->getName()}</a>{if !$smarty.foreach.categories.last}, {/if}
+{/foreach}
+
+<div class="post-content">{$article->getText()|strip_tags|truncate:300:"...":false}</div>
+<div class="post-footer">&nbsp;</div>
+{/foreach}
+</div>
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/GreenTrack/style.css
===================================================================
--- templates/trunk/GreenTrack/style.css	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/GreenTrack/style.css	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,340 @@
+/* 
+Template: GreenTrackV1
+Design Name: volatile
+Description: Green Track v1
+Author: Sadish Balasubramanian
+Author URI: http://www.simpleinside.com
+*/
+body {
+	margin:0;
+	padding:0;
+	font-family: Georgia, Times, Times New Roman, sans-serif;
+	font-size: 0.9em;
+	text-align:center;
+	color:#29303B;
+	line-height:1.3em;
+	background: #636363;
+}
+a {
+	color: #8a3207;	
+	text-decoration:none;
+}
+a:visited {
+	color: #8a3207;
+}
+a:hover {
+	color: #753206;
+	text-decoration:underline;
+}
+#rap 
+{
+	background:#fff;
+	border-left: 4px solid black;
+	border-right: 4px solid black;
+	width:760px;
+	margin:0 auto;
+	padding:8px;
+	text-align:left;
+	font-family: Trebuchet MS, Georgia, Arial, serif;
+	font-size: 0.9em;
+}
+#header {
+	background: url('img/rail.jpg'); 	
+ 	height: 175px;
+	margin: 0;
+	padding:0;
+}
+
+#content {
+	width:520px;
+	float:left;
+	padding:8px 0 0 1em;
+	margin:0;
+}
+
+#sidebar {
+	width:200px;
+	float:right;
+	padding:8px 0;
+	margin:0;
+} 
+a img {
+	border: none;
+}
+acronym, abbr {
+	border-bottom: 1px dotted #0c6bf0;
+}
+acronym, abbr, span.caps {
+	cursor: help;
+	letter-spacing: .07em;
+}
+code {
+	font-size: 1em;
+	font-style: italic;
+}
+blockquote{
+	background: #EEE url(img/blockquote.png) no-repeat bottom left;
+	/*border: 1px solid #E0E0E0;*/
+	padding: 10px;
+	padding-bottom: 40px;
+	margin: 1em;
+}
+
+cite {
+	font-size: 0.9em;
+	font-style: normal;
+}
+h3 {
+	margin: 0;
+	padding: 0;
+	font: normal 1.3em verdana, helvetica, sans-serif;
+}
+p {
+	margin: 0 0 1em;
+	padding: 0;
+	line-height: 1.5em;
+}
+h1, h2, h3, h4 {
+	font-family: Georgia, "Lucida Grande", "Lucida Sans Unicode", lucida, Verdana, sans-serif;
+	font-weight: normal;
+	letter-spacing: 1px;
+}
+#header h1 {
+	margin: 0;
+	font-size: 1.6em;
+	color: #f0f0f0;
+	letter-spacing: 0.5em;
+	padding:10px;
+}
+h2 {
+	margin: 0;
+	padding: 0;
+	font-size: 1.1em;
+	color: #333;
+	font-weight: bold;
+}
+h3 {
+	margin: 0;
+	padding: 0;
+	font-size: 1.2em;
+	color: #333;
+	font-weight: bold;
+}
+.description 
+{
+	margin:0;
+	padding:10px 100px 0 10px;
+	font-size:1.1em;
+	color:#f0f0f0;	
+}
+#sidebar h2 {
+	margin: 0;
+	padding:5px;
+	font-size: 1em;
+	color: #333;
+	font-weight: normal;
+	border-bottom:#ccc 1px solid;	
+}
+h4 {
+	margin-top: 0;
+	margin-bottom: 0;
+	font-size: 1.1em;
+	color: #999;
+}
+#sidebar ul {
+	list-style-type: none;
+	padding: 0 0 1em 5px;
+	margin: 0;	
+}
+#sidebar ul li {
+	margin: 0.5em 0 0 0;
+	padding: 0;
+	font-size: 0.9em;
+}
+#sidebar li a:link, #sidebar li a:visited {
+	color: #8a3207;	
+	text-decoration: none;
+}
+#sidebar li a:hover {
+	color: #753206;
+	border-bottom: 1px solid #753206;
+}
+#header a:link, #header a:visited, #header a:hover, #header a:active {
+	color: #f0f0f0;
+	text-decoration: none;
+	border-bottom: none;
+}
+#content ul {
+	margin-left: 0;
+	padding-left: 15px;
+	list-style-type: none;
+}
+#content ul li {
+	background: url('img/bullet.png') no-repeat 0 7px;
+	padding-left: 1.5em;
+}
+.post-footer, .copyright {
+	margin-bottom: 3em;
+	font-size: 0.9em;
+	color: #666;
+}
+.post-content {
+	padding: 1em 0 0;
+}
+img {
+	border: #ccc 1px solid;
+	padding: 3px;
+}
+.post-title {
+	margin: 0 0 0.2em;	
+	text-align: right;
+	padding: 0.5em 1em 0 0;
+	color: #999;
+	border-bottom:#ccc 1px solid;
+}
+.post-title em {
+	text-decoration: none;
+	float: left;
+	font-style: normal;
+	font-size: 0.9em;		
+	padding:0;
+	
+}
+.post-info {
+	color: #999;
+	font-family:Georgia, Arial, Serif;
+	font-size:1.2em;
+	margin:0;
+}
+.post-info a {
+	text-decoration: none;
+	color: #8a3207;
+	border: none;
+}
+hr {
+	display: none;
+}
+#footer {
+	margin:0;
+	padding: 7px 20px;
+	border-top: 1px solid #e6e6e6;
+	clear: both;
+	font-size: 0.8em;
+	color: #999;
+	background: #fff;
+	text-align:center;
+}
+#footer a {
+border:none;
+color:#7A7636;
+}
+#commentlist {
+	font-size:1em;
+	font-weight:bold;
+	color: #ccc;
+}
+#commentlist li {
+	color: #666;
+	font-weight: normal;
+	font-size:0.85em;
+}
+#commentlist cite {
+	font-size: 0.8em;
+	color: #808080;
+	margin: 0 0 1em;
+	padding: 0 0 0.5em;
+}
+cite a {
+	border-bottom: 1px dotted #DC9204;
+	text-decoration: none;
+}
+cite a:visited, a:hover {
+	border-bottom: none;
+}
+#commentform #author, #commentform #email, #commentform #url, #commentform textarea {
+	background: #F5F5F5;
+	border: 1px solid #669BB4;
+	padding: 0.2em;
+}
+#commentform textarea {
+	width: 80%;
+}
+#commentform p {
+	margin: 0 0 1em;
+}
+#commentlist li ul {
+	border-left: 1px solid #ddd;
+	font-size: 110%;
+	list-style-type: none;
+}
+#comments {
+	text-transform: uppercase;
+	margin-top: 3em;
+	color: #AA7D39;
+	font: 0.9em verdana, helvetica, sans-serif;
+}
+#postcomment {
+	text-transform: uppercase;
+	margin-top: 0.9em;
+	color: #AA7D39;
+	font: 1em verdana, helvetica, sans-serif;
+}
+
+.link-comment {
+	background: url('img/ico-talk-act.gif') no-repeat left;
+	padding-left: 15px;
+}
+.link-comment-off {
+	background: url('img/ico-talk.gif') no-repeat left;
+	padding-left: 15px;
+}
+.pauthor, .ptime, .pcat {
+	font-size: 0.8em;
+	padding-right:15px;
+}
+.pauthor {
+	background: url('img/user.png') no-repeat left;
+	padding-left: 12px;
+}
+.ptime {
+	background: url('img/heure.png') no-repeat left;
+	padding-left: 12px;
+}
+.pcat {
+	background: url('img/puce.png') no-repeat left;
+	padding-left: 12px;
+}
+#topnav 
+{
+	list-style:none;
+	font-size:0.9em;
+	margin:0 auto;	
+	padding:2px 0 0 5px;
+	text-align:right;	
+	text-transform:lowercase;	
+	border-bottom:#ddd 1px solid;
+}
+#topnav li 
+{
+	list-style:none;
+	display:inline;
+	padding:0 1em 0 0;
+	margin:0;
+}
+#topnav li a:link, #topnav li a:visited, #topnav li a:hover, #topnav li a:active 
+{
+	text-decoration:none;	
+	color:#666;
+}
+#topnav li a:hover
+{
+	border-bottom:#7A7636 3px solid;
+	color:#7A7636;	
+}
+.announ 
+{
+	margin-bottom:10px;
+	padding:10px;
+	background:#fff;
+	border:#ccc 1px dotted;
+}
\ No newline at end of file

Added: templates/trunk/StreetCorner/album.template
===================================================================
--- templates/trunk/StreetCorner/album.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/StreetCorner/album.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,87 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2>{$album->getName()}</h2>
+<p>
+{$album->getDescription()}
+</p>
+<!-- album contents go here -->
+<div id="album">
+<table style="border:0px;width:93%" summary="Album Resources">
+<tr>
+<td style="width:30%;" align="center" >
+<a class="nodecoration" href="{$url->parentAlbumLink($album)}">
+<img style="border:0px" src="{$url->getUrl("/imgs/folder.gif")}" alt="Folder" /><br/>
+..
+</a>
+</td>
+{assign var="counter" value=1}
+{assign var=children value=$album->getChildren()}
+{foreach from=$children item=childalbum}
+<td style="width:30%;" align="center" >
+<a class="nodecoration" href="{$url->albumLink($childalbum)}">
+<img style="border:0px;" src="{$url->getUrl("/imgs/folder.gif")}" alt="Folder" /><br/>
+{$childalbum->getName()} ({$childalbum->getNumResources()})
+</a>
+<br/><br/>
+{assign var="counter" value="`$counter+1`"}
+</td>
+{if $counter%3 == 0}
+</tr>
+<tr>
+{/if}
+{/foreach}
+<!--- show the resources here -->
+
+{assign var=resources value=$album->getResources()}
+{foreach from=$resources item=resource}
+<td style="width:30%;" align="center" >
+{if $resource->hasPreview()}
+{*<a class="nodecoration" target="_blank" href="resserver.php?blogId={$blog->getId()}&amp;resource={$resource->getFileName()}">*}
+<a class="nodecoration" href="{$url->resourceLink($resource)}">
+<img alt="{$resource->getDescription()}" style="border:0px;" src="{$url->resourcePreviewLink($resource)}" />
+<br/>{$resource->getFileName()}
+</a>
+{else}
+<a class="nodecoration" href="{$url->resourceLink($resource)}">
+{if $resource->isSound()}
+<img alt="Sound" src="{$url->getUrl("/imgs/sound.gif")}" height="64" width="64" style="border:0px;" />
+{elseif $resource->isVideo()}
+<img alt="Video" src="{$url->getUrl("/imgs/video.gif")}" height="64" width="64" style="border:0px;" />
+{elseif $resource->isZip()}
+<img alt="Zip" src="{$url->getUrl("/imgs/compressed.gif")}" height="64" width="64" style="border:0px;" />
+{else}
+<img alt="File" src="{$url->getUrl("/imgs/file.gif")}" height="64" width="64" style="border:0px;" />
+{/if}
+<br/>{$resource->getFileName()}
+</a>
+{/if}
+<br/>
+{assign var=metadata value=$resource->getMetadataReader()}
+{$metadata->getRoundedSize()}<br/>
+{if $resource->isImage()}
+{$metadata->getWidth()} x {$metadata->getHeight()}<br/>
+{elseif $resource->isSound()}
+{$metadata->getFormat()|upper} {$metadata->getSampleRate()} bps<br/>
+{elseif $resource->isVideo()}
+{$metadata->getFormat()|upper}
+{$metadata->getWidth()} x {$metadata->getHeight()},
+{$metadata->getLengthString()}<br/>
+{elseif $resource->isZip()}
+{$metadata->getTotalFiles()} {$locale->tr("files")}<br/>
+{/if}
+{assign var="counter" value="`$counter+1`"}
+</td>
+{if $counter%3 == 0}
+</tr>
+<tr>
+{/if}
+{/foreach}
+<td></td></tr>
+</table>
+</div>
+<!-- end of album contents -->
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/StreetCorner/albums.template
===================================================================
--- templates/trunk/StreetCorner/albums.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/StreetCorner/albums.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,30 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2>{$locale->tr("albums")}</h2>
+<!-- album contents go here -->
+<div id="album">
+<table style="border:0px;width:93%;" summary="Albums">
+<tr>
+{assign var="counter" value=0}
+{foreach from=$albums item=album}
+<td style="width:30%;" align="center">
+<a class="nodecoration" href="{$url->albumLink($album)}">
+<img style="border:0px;" src="{$url->getUrl("/imgs/folder.gif")}" alt="Folder" /><br/>
+{$album->getName()} ({$album->getNumResources()})
+</a>
+{assign var="counter" value="`$counter+1`"}
+</td>
+{if $counter%3 == 0}
+</tr>
+<tr>
+{/if}
+{/foreach}
+<td></td></tr>
+</table>
+</div>
+<!-- end of the albums -->
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/StreetCorner/commentarticle.template
===================================================================

Added: templates/trunk/StreetCorner/commentform.template
===================================================================
--- templates/trunk/StreetCorner/commentform.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/StreetCorner/commentform.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,13 @@
+<form id="commentform" name="commentform" action="{$url->getBaseUrl()}/index.php" method="post">
+<p><input name="userName" type="text" size="35" /><small>{$locale->tr("comment_username")} (required)</small></p>
+<p><input name="commentTopic" type="text" size="35" /><small>{$locale->tr("comment_topic")}</small></p>
+<p><input name="userUrl" type="text" size="35" /><small>{$locale->tr("comment_url")}</small></p>
+<p><input name="userEmail" type="text" size="35" /><small>{$locale->tr("comment_email")}</small></p>
+<p><textarea rows="10" cols="45" name="commentText"></textarea></p>
+<p><input style="font-weight: bold;" type="submit" name="post" value="&nbsp;{$locale->tr("comment_send")}&nbsp;" />
+&nbsp;&nbsp;<input style="font-weight: bold;" type="reset"></p>
+<input type="hidden" name="op" value="AddComment"/>
+<input type="hidden" name="articleId" value="{$post->getId()}"/>
+<input type="hidden" name="blogId" value="{$blog->getId()}"/>
+<input type="hidden" name="parentId" value="{$parentId}"/>
+</form>
\ No newline at end of file

Added: templates/trunk/StreetCorner/error.template
===================================================================
--- templates/trunk/StreetCorner/error.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/StreetCorner/error.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,10 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+   <div class="post">
+      <p class="post-info">{$locale->tr("error")}</p>
+      <p>{$locale->tr($message)}</p>
+      <p><a href="javascript:history.go(-1)">{$locale->tr("back")}</a></p>
+   </div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/StreetCorner/footer.template
===================================================================
--- templates/trunk/StreetCorner/footer.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/StreetCorner/footer.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,6 @@
+<p id="footer">
+Power by <a href="http://www.plogworld.net" target="_blank">pLog</a>. Design by <a href="http://wpthemes.info" title="WP Themes.Info">WPThemes.Info</a>&nbsp; Converted to use with pLog by James Huang. Valid <a href="http://validator.w3.org/check/referer">XHTML</a> and <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a></p>
+</div>
+</div>
+</body>
+</html>
\ No newline at end of file

Added: templates/trunk/StreetCorner/header.template
===================================================================
--- templates/trunk/StreetCorner/header.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/StreetCorner/header.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,25 @@
+<!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" xml:lang="{$locale->getLanguageId()}" lang="{$locale->getLanguageId()}" dir="{$locale->getDirection()}">
+<head>
+	<meta http-equiv="Content-Type" content="text/html;charset={$locale->getCharset()}" />
+	<meta name="generator" content="{$version}" />
+	<meta http-equiv="Content-Language" content="{$locale->getLanguageId()}" />
+	<title>{$blog->getBlog()}{$postPageTitle}</title>
+	<link rel="stylesheet" title="Default" href="{$url->getTemplateFile("style.css")}" type="text/css" />
+	<link rel="alternate" type="text/xml" title="RSS 2.0" href="{$url->rssLink("rss20")}" />
+	<link rel="alternate" type="text/xml" title="RSS 1.0" href="{$url->rssLink("rss10")}" />
+	<link rel="alternate" type="text/xml" title="RSS 0.90" href="{$url->rssLink("rss090")}" />
+	<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="{$url->rssLink("atom")}" />
+</head>
+<body>
+	<div id="rap">
+		<ul id="topnav">
+			<li><a href="{$url->blogLink()}"> {$locale->tr("main")} </a> | </li>
+			<li><a href="admin.php" accesskey="2">{$locale->tr("dashboard")} </a> | </li>
+			<li><a href="{$url->albumLink()}">{$locale->tr("albums")} </a> | </li>
+		</ul> 
+		<div id="header">
+			<h1><a href="{$url->blogLink()}" accesskey="1"> {$blog->getBlog()}</a></h1>
+			<div class="description">{$blog->getAbout()}</div>
+		</div>
+		<hr />

Added: templates/trunk/StreetCorner/img/Thumbs.db
===================================================================
(Binary files differ)


Property changes on: templates/trunk/StreetCorner/img/Thumbs.db
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/StreetCorner/img/bg.gif
===================================================================
(Binary files differ)


Property changes on: templates/trunk/StreetCorner/img/bg.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/StreetCorner/img/blockquote.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/StreetCorner/img/blockquote.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/StreetCorner/img/bullet.png
===================================================================
(Binary files differ)


Property changes on: templates/trunk/StreetCorner/img/bullet.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/StreetCorner/img/ico-talk-act.gif
===================================================================
(Binary files differ)


Property changes on: templates/trunk/StreetCorner/img/ico-talk-act.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/StreetCorner/img/ico-talk.gif
===================================================================
(Binary files differ)


Property changes on: templates/trunk/StreetCorner/img/ico-talk.gif
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/StreetCorner/img/paris.jpg
===================================================================
(Binary files differ)


Property changes on: templates/trunk/StreetCorner/img/paris.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/StreetCorner/img/sidebar-btm-bg.jpg
===================================================================
(Binary files differ)


Property changes on: templates/trunk/StreetCorner/img/sidebar-btm-bg.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/StreetCorner/img/sidebar-top-bg.jpg
===================================================================
(Binary files differ)


Property changes on: templates/trunk/StreetCorner/img/sidebar-top-bg.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/StreetCorner/main.template
===================================================================
--- templates/trunk/StreetCorner/main.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/StreetCorner/main.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,8 @@
+{include file="$blogtemplate/header.template"}
+	<div id="content">
+	{foreach from=$posts item=post}
+  		{include file="$blogtemplate/post.template"}
+	{/foreach}
+	</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/StreetCorner/panel.template
===================================================================
--- templates/trunk/StreetCorner/panel.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/StreetCorner/panel.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,73 @@
+<div id="sidebar">
+<!--Calendar-->
+<h2> {$locale->tr("calendar")} </h2>
+<ul>
+	<li>
+		<div align="center">
+		{$calendar}
+		</div>
+	</li>
+</ul>
+<!--Search-->
+<form name="search_form" method="post" action="{$url->getIndexUrl()}">
+<h2> {$locale->tr("search")} </h2>
+<ul>
+	<li><div align="center">
+		<input type="text" name="searchTerms" value="" size="14" /><br/>
+		<input type="hidden" name="op" value="Search" />
+		<input type="hidden" name="blogId" value="{$blog->getId()}" />
+		<input type="submit" name="Search" value="{$locale->tr("search")|capitalize}" />
+	</div></li>
+</ul>
+</form>
+
+<!--Recent Articles-->
+<h2> {$locale->tr("recently")} </h2>
+<ul>
+{foreach from=$recentposts item=recentpost}
+<li><a title="{$recentpost->getText()|truncate:150:"..."|strip_tags|escape}" href="{$url->postLink($recentpost)}">{$recentpost->getTopic()}</a></li>
+{/foreach}
+</ul>
+
+<!--archives-->
+<h2> {$locale->tr("archives")} </h2>
+<ul>
+{foreach from=$archives item=month}
+<li><a href="{$month->getUrl()}">{$month->getName()}</a></li>
+{/foreach}
+</ul>
+
+<!--categories-->
+<h2> {$locale->tr("categories")} </h2>
+<ul>
+{foreach from=$articlecategories item=articleCategory}
+<li><a href="{$url->categoryRssLink($articleCategory)}"><img src="{$url->getUrl("/imgs/rss_logo_small.gif")}" style="border:0px;" alt="RSS 0.90" align="middle" /></a>
+<a href="{$url->categoryLink($articleCategory)}">{$articleCategory->getName()}</a> [{$articleCategory->getNumArticles()}]</li>
+{/foreach}
+</ul>
+
+<!--Mylink-->
+<h2> {$locale->tr("my_links")} </h2>
+<ul>
+{foreach from=$mylinkscategories item=linkcategory}
+<li>{$linkcategory->getName()}
+<ul class='children'>
+{foreach from=$linkcategory->getLinks() item=link}
+<li><a href="{$link->getUrl()}" title="{$link->getDescription()}">{$link->getName()}</a></li>
+{/foreach}
+</ul>
+</li>
+{/foreach}
+</ul>
+
+<!--Syndicate-->
+<h2> {$locale->tr("syndicate")} </h2>
+<ul>
+<li>
+<a class="nodecoration" title="Link to the RSS 0.90 feed." href="{$url->rssLink("rss090")}"><img src="{$url->getUrl("/imgs/rss090_logo.gif")}" style="border:0px;" alt="RSS 0.90" /></a><br />
+<a class="nodecoration" title="Link to the RSS 1.0 feed." href="{$url->rssLink("rss10")}"><img src="{$url->getUrl("/imgs/rss10_logo.gif")}" style="border:0px;" alt="RSS 1.0" /></a><br />
+<a class="nodecoration" title="Link to the RSS 2.0 feed." href="{$url->rssLink("rss20")}"><img src="{$url->getUrl("/imgs/rss20_logo.gif")}" style="border:0px;" alt="RSS 2.0" /></a><br />
+<a class="nodecoration" title="Link to the Atom 0.3 feed." href="{$url->rssLink("atom")}"><img src="{$url->getUrl("/imgs/atom_logo.png")}" style="border:0px;" alt="Atom 0.3" /></a><br />
+</li>
+</ul>
+</div>
\ No newline at end of file

Added: templates/trunk/StreetCorner/post.template
===================================================================
--- templates/trunk/StreetCorner/post.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/StreetCorner/post.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,16 @@
+<!-- {$url->postTrackbackLink($post)} -->
+{assign var="postDate" value=$post->getDateObject()}
+{assign var="postOwner" value=$post->getUserInfo()}
+		<!-- post start -->
+		<div class="post-title">
+			<em>
+				[{foreach name=categories from=$post->getCategories() item=postcategory}
+				<a href="{$url->categoryLink($postcategory)}">{$postcategory->getName()}</a>
+				{if !$smarty.foreach.categories.last}, {/if}
+				{/foreach}]
+			</em>
+			{$locale->formatDate($postDate,"%d %B, %Y %H:%M")}
+		</div>
+		<p class="post-info"><a href="{$url->postPermalink($post)}" rel="bookmark" title="Permanent Link: {$post->getTopic()}"> {$post->getTopic()} </a></p>
+		<div class="post-content">{$post->getText()}</div>
+		<div class="post-footer"><span class='link-comment'><a href="{$url->postPermalink($post)}"> ({$post->getTotalComments()}) {$locale->tr("comment on this")} </a></span>&nbsp;|&nbsp;[<a href="{$url->postTrackbackStatsLink($post)}"> ({$post->getNumTrackbacks()}) {$locale->tr("trackbacks")}  </a>]&nbsp;|&nbsp;[<a href="{$url->postPermalink($post)}">{$locale->tr("permalink")}</a>]</div>

Added: templates/trunk/StreetCorner/postandcomments.template
===================================================================
--- templates/trunk/StreetCorner/postandcomments.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/StreetCorner/postandcomments.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,45 @@
+{include file="$blogtemplate/header.template"}
+{assign var="postDate" value=$post->getDateObject()}
+{assign var="postOwner" value=$post->getUserInfo()}
+{assign var=nextpost value=$post->getNextArticle()}
+{assign var=prevpost value=$post->getPrevArticle()}
+{assign var=postId value=$post->getId()}
+<div id="content">
+<div class="post">
+<p align="center">
+{if $prevpost == true}
+<a href="{$url->postPermalink($prevpost)}" title="{$locale->tr("previous_post")}: {$prevpost->getTopic()}">&laquo; {$locale->tr("previous_post")}</a> |
+{/if}
+{if $nextpost == true}
+<a href="{$url->postPermalink($nextpost)}" title="{$locale->tr("next_post")}: {$nextpost->getTopic()}">{$locale->tr("next_post")}&raquo;</a>
+{/if}
+</p>
+{include file="$blogtemplate/post.template"}
+
+{* show comments *}
+<h3 id="comments">{$post->getTotalComments()} COMMONS TO "{$post->getTopic()}"</h3>
+<ol class="commentlist">
+{foreach name=comment from=$comments item=comment}
+<li class="alt" id="comment-{$comment->getId()}">
+{$locale->tr("posted_by")}
+{if $comment->getUserUrl() != ""}
+<cite><a href="{$comment->getUserUrl()}"}>{$comment->getUsername()}</a></cite>
+{else}
+<cite>{$comment->getUsername()}</cite>
+{/if}
+<a name="{$comment->getId()}"></a>
+{$comment->getTopic()} [<a href="{$url->postPermalink($post)}#NewComment"> {$locale->tr("reply")} </a>]<br />
+<small class="commentmetadata">{assign var=commentDate value=$comment->getDateObject()}	{$locale->formatDate($commentDate, "%d/%m/%Y, %H:%M")}</small>
+<p>{$comment->getText()}</p>
+</li>
+{/foreach}
+</ol>
+{if $blogsettings->getValue("comments_enabled") && $post->getCommentsEnabled()==1}
+<h3 id="respond"><a name="Newcomment"></a>{$locale->tr("add_comment")}</h3>
+{include file="$blogtemplate/commentform.template"}
+{/if}
+
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/StreetCorner/posttrackbacks.template
===================================================================
--- templates/trunk/StreetCorner/posttrackbacks.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/StreetCorner/posttrackbacks.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,17 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2 class="post-title">{$locale->tr("trackbacks_for_article")} "<a href="{$url->postLink($post)}">{$post->getTopic()}</a>":</h2>
+<br/<br/>
+{foreach from=$trackbacks item=trackback}
+<b>{$locale->tr("trackbacks_for_article")}:</b><a href="{$trackback->getUrl()}">{$trackback->getTitle()}</a><br/>
+<b>{$locale->tr("trackback_excerpt")}:</b> {$trackback->getExcerpt()}<br/>
+<b>{$locale->tr("trackback_weblog")}:</b> {$trackback->getBlogName()}<br/>
+{assign var="trackbackDate" value=$trackback->getDateObject()}
+<b>{$locale->tr("date")}:</b> {$locale->formatDate($trackbackDate, "%d/%m/%Y %H:%M")}<br/>
+<div class="post-footer">&nbsp;</div>
+{/foreach}
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/StreetCorner/resource.template
===================================================================
--- templates/trunk/StreetCorner/resource.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/StreetCorner/resource.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,58 @@
+{include file="$blogtemplate/header.template"}
+{assign var=metadata value=$resource->getMetadataReader()}
+{assign var=updated value=$resource->getTimestamp()}
+<div id="content">
+<div class="post">
+<h2>{$resource->getFileName()}</h2>
+<br/>
+<div id="Resource-Desc">
+<a href="{$url->resourceDownloadLink($resource)}">{$locale->tr("download")}</a>
+({$metadata->getRoundedSize()}) | {$locale->tr("created")} {$locale->formatDate($updated,"%d %B, %Y")}
+<div id="album">
+<p>{$resource->getDescription()}</p>
+{if $resource->isImage()}
+<img src="{$url->resourceMediumSizePreviewLink($resource)}" alt="{$resource->getFileName()}, {$metadata->getRoundedSize()}" />
+{else}
+<a href="{$url->resourceDownloadLink($resource)}">
+{* show some information about the file *}
+{if $resource->isSound()}
+<img alt="Sound" src="{$url->getUrl("/imgs/sound.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a><br/>
+{$locale->tr("format")}: {$metadata->getFormat()|upper}<br/>
+{$locale->tr("length")}: {$metadata->getLengthString()}<br/>
+{$locale->tr("sample_rate")}: {$metadata->getSampleRate()} Khz
+{elseif $resource->isVideo()}
+<img alt="Sound" src="{$url->getUrl("/imgs/video.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a><br/>
+{$locale->tr("format")}: {$metadata->getFormat()|upper}<br/>
+{$locale->tr("size")}: {$metadata->getHeight()} x {$metadata->getWidth()}<br/>
+{$locale->tr("length")}: {$metadata->getLengthString()}<br/>
+{$locale->tr("video_codec")}: {$metadata->getVideoCodec()}<br/>
+{$locale->tr("audio_codec")}: {$metadata->getAudioCodec()}
+{elseif $resource->isZip()}
+<img alt="Sound" src="{$url->getUrl("/imgs/compressed.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a><br/>
+{$metadata->getTotalFiles()} {$locale->tr("files")}<br/>
+{$locale->tr("uncompressed_size")}: {$metadata->getRoundedUncompressedSize()}
+{else}
+<img alt="Sound" src="{$url->getUrl("/imgs/file.gif")}" height="64" width="64" style="border:0px;" /><br/>
+{$resource->getFileName()}
+</a>
+{/if}
+{/if}
+<br/>
+</div>
+<p>
+{assign var=album value=$resource->getAlbum()}
+{if $prevresource}<a href="{$url->resourceLink($prevresource)}">&laquo;</a> | {/if}
+<a href="{$url->albumLink($album)}">{$locale->tr("back")}</a>
+{if $nextresource}| <a href="{$url->resourceLink($nextresource)}">&raquo;</a>{/if}
+</p>
+</div>
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/StreetCorner/screenshot.jpg
===================================================================
(Binary files differ)


Property changes on: templates/trunk/StreetCorner/screenshot.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: templates/trunk/StreetCorner/searchresults.template
===================================================================
--- templates/trunk/StreetCorner/searchresults.template	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/StreetCorner/searchresults.template	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,22 @@
+{include file="$blogtemplate/header.template"}
+<div id="content">
+<div class="post">
+<h2 class="post-title">{$locale->tr("search_results")}: {foreach from=$searchterms item=term}{$term} {/foreach}</h2><br/>
+<div class="post-info">
+{foreach from=$searchresults item=result}
+{assign var=article value=$result->getArticle()}
+<h3 class="post-title"><a href="{$url->postPermalink($article)}">{$article->getTopic()}</a></h3>
+
+{$locale->tr("categories")}:
+{foreach name=categories from=$article->getCategories() item=articleCategory}
+<a href="{$url->categoryLink($articleCategory)}">{$articleCategory->getName()}</a>{if !$smarty.foreach.categories.last}, {/if}
+{/foreach}
+
+<div class="post-content">{$article->getText()|strip_tags|truncate:300:"...":false}</div>
+<div class="post-footer">&nbsp;</div>
+{/foreach}
+</div>
+</div>
+</div>
+{include file="$blogtemplate/panel.template"}
+{include file="$blogtemplate/footer.template"}
\ No newline at end of file

Added: templates/trunk/StreetCorner/style.css
===================================================================
--- templates/trunk/StreetCorner/style.css	2005-05-05 23:31:06 UTC (rev 1951)
+++ templates/trunk/StreetCorner/style.css	2005-05-06 12:36:45 UTC (rev 1952)
@@ -0,0 +1,380 @@
+/* 
+Template: StreetCorner for pLog
+Design Author: JamesHuang
+*/
+body {
+	margin:0;
+	padding:0;
+	font-family: Georgia, Times, Times New Roman, sans-serif;
+	font-size: 0.9em;
+	text-align:center;
+	color:#29303B;
+	line-height:1.3em;
+	background: #636363;
+}
+a {
+	color: #0080C0;	
+	text-decoration:none;
+}
+a:visited {
+	color: #0080C0;
+}
+a:hover {
+	color: #0080C0;
+	text-decoration:underline;
+}
+#rap 
+{
+	background: url('img/bg.gif');
+	border-left: 4px solid black;
+	border-right: 4px solid black;
+	width:760px;
+	margin:0 auto;
+	padding:8px;
+	text-align:left;
+	font-family: Trebuchet MS, Georgia, Arial, serif;
+	font-size: 0.9em;
+}
+#header {
+	background: url('img/paris.jpg');
+ 	height: 180px;
+	margin: 0;
+	padding: 0;
+	border:black 1px solid;
+}
+
+#content {
+	width:560px;
+	float:left;
+	padding:8px 0 0 1em;
+	margin:0;
+}
+
+#sidebar {
+	width:180px;
+	float:right;
+	padding:8px 0;
+	margin:0;
+
+} 
+a img {
+	border: none;
+}
+acronym, abbr {
+	border-bottom: 1px dotted #0c6bf0;
+}
+acronym, abbr, span.caps {
+	cursor: help;
+	letter-spacing: .07em;
+}
+code {
+	font-size: 1em;
+	font-style: italic;
+}
+blockquote{
+	background: #EEE url(img/blockquote.png) no-repeat bottom left;
+	/*border: 1px solid #E0E0E0;*/
+	padding: 10px;
+	padding-bottom: 40px;
+	margin: 1em;
+}
+
+cite {
+	font-size: 0.9em;
+	font-style: normal;
+}
+h3 {
+	margin: 0;
+	padding: 0;
+	font: normal 1.3em verdana, helvetica, sans-serif;
+}
+p {
+	margin: 0 0 1em;
+	padding: 0;
+	line-height: 1.5em;
+}
+h1, h2, h3, h4 {
+	font-family: Georgia, "Lucida Grande", "Lucida Sans Unicode", lucida, Verdana, sans-serif;
+	font-weight: normal;
+	letter-spacing: 1px;
+}
+#header h1 {
+	margin: 120px 0 0 0;
+	font-size: 1.6em;
+	color: #f0f0f0;
+	letter-spacing: 0.5em;
+	padding:10px;
+}
+h2 {
+	margin: 0;
+	padding: 0;
+	font-size: 1.1em;
+	color: #333;
+	font-weight: bold;
+}
+h3 {
+	margin: 0;
+	padding: 0;
+	font-size: 1.2em;
+	color: #333;
+	font-weight: bold;
+}
+.description 
+{
+	margin:0;
+	padding:0px 100px 0 10px;
+	font-size:1.1em;
+	color:#f0f0f0;	
+}
+#sidebar h2 {
+	margin: 0;
+	padding:0px;
+	font-size: 12px;
+	color: #676E04;
+	text-align:center;
+	background:url(img/sidebar-top-bg.jpg) repeat-x top;
+	height:23px;
+	font-weight:bold;
+	border-left:#ccc 1px solid;
+	border-right:#ccc 1px solid;
+}
+#sidebar ul {
+	list-style-type: none;
+	padding: 5px;
+	margin: 0 0 10px 0;
+	font-size: 12px;	
+	padding-bottom:20px;
+	background:#fff url(img/sidebar-btm-bg.jpg) repeat-x bottom;
+	border:#E1D6c6 1px solid;
+	border-top:#f3f6ed 1px solid;
+}
+h4 {
+	margin-top: 0;
+	margin-bottom: 0;
+	font-size: 1.1em;
+	color: #999;
+}
+
+#sidebar ul li {
+	margin: 0 0 0 0;
+	padding: 0;
+	font-size: 0.9em;
+	background: #fff;
+}
+#sidebar li a:link, #sidebar li a:visited {
+	color: #C46C1E;	
+	text-decoration: none;
+}
+#sidebar li a:hover {
+	color: #C46C1E;
+	border-bottom: 1px solid #753206;
+}
+
+#sidebar ul ul {
+	list-style-type: none;
+	padding: 0px;
+	margin: 0;
+	font-size: 1em;	
+	background:none;
+	border:none;
+}
+#sidebar ul ul li 
+{
+	margin:0;
+	padding:0;
+	padding-left:10px;
+	margin-left:10px;
+	background:url(img/bullet.png) no-repeat left;
+}
+
+#header a:link, #header a:visited, #header a:hover, #header a:active {
+	color: #f0f0f0;
+	text-decoration: none;
+	border-bottom: none;
+}
+#content ul {
+	margin-left: 0;
+	padding-left: 15px;
+	list-style-type: none;
+}
+#content ul li {
+	background: url('img/bullet.png') no-repeat 0 7px;
+	padding-left: 1.5em;
+}
+.post-footer, .copyright {
+	margin-bottom: 3em;
+	font-size: 12px;
+	color: #666;
+}
+.post-content {
+	padding: 1em 0 0;
+}
+img {
+	border: #ccc 1px solid;
+	padding: 3px;
+}
+.post-title {
+	margin: 0 0 0.2em;	
+	text-align: right;
+	padding: 0.5em 1em 0 0;
+	color: #999;
+	border-bottom:#ccc 1px solid;
+}
+.post-title em {
+	text-decoration: none;
+	float: left;
+	font-style: normal;
+	font-size: 12px;
+	padding:0;
+}
+
+.post-title em a:link, .post-title em a:visited, .post-title em a:hover, .post-title em a:active 
+{
+	text-decoration:none;	
+	color:#666;
+}
+
+.post-info {
+	color: #999;
+	font-family:Georgia, Arial, Serif;
+	font-size:1.3em;
+	font-weight:bold;
+	margin:0;
+}
+.post-info a {
+	text-decoration: none;
+	color: #8a3207;
+	border: none;
+}
+hr {
+	display: none;
+}
+#footer {
+	margin:0;
+	padding: 3px;
+	border-top: 1px solid #e6e6e6;
+	clear: both;
+	font-size: 12px;
+	color: #999;
+	background: #fff;
+	text-align:center;
+}
+#footer a {
+border:none;
+color:#7A7636;
+}
+#commentlist {
+	font-size:1em;
+	font-weight:bold;
+	color: #ccc;
+}
+#commentlist li {
+	color: #666;
+	font-weight: normal;
+	font-size:0.85em;
+}
+#commentlist cite {
+	font-size: 0.8em;
+	color: #808080;
+	margin: 0 0 1em;
+	padding: 0 0 0.5em;
+}
+cite a {
+	border-bottom: 1px dotted #DC9204;
+	text-decoration: none;
+}
+cite a:visited, a:hover {
+	border-bottom: none;
+}
+#commentform #author, #commentform #email, #commentform #url, #commentform textarea {
+	background: #F5F5F5;
+	border: 1px solid #669BB4;
+	padding: 0.2em;
+}
+#commentform textarea {
+	width: 80%;
+}
+#commentform p {
+	margin: 0 0 1em;
+}
+#commentlist li ul {
+	border-left: 1px solid #ddd;
+	font-size: 110%;
+	list-style-type: none;
+}
+#comments {
+	text-transform: uppercase;
+	margin-top: 3em;
+	color: #AA7D39;
+	font: 0.9em verdana, helvetica, sans-serif;
+}
+#postcomment {
+	text-transform: uppercase;
+	margin-top: 0.9em;
+	color: #AA7D39;
+	font: 12px verdana, helvetica, sans-serif;
+}
+
+.link-comment {
+	background: url('img/ico-talk-act.gif') no-repeat left;
+	padding-left: 15px;
+}
+.link-comment-off {
+	background: url('img/ico-talk.gif') no-repeat left;
+	padding-left: 15px;
+}
+.pauthor, .ptime, .pcat {
+	font-size: 0.8em;
+	padding-right:15px;
+}
+.pauthor {
+	background: url('img/user.png') no-repeat left;
+	padding-left: 12px;
+}
+.ptime {
+	background: url('img/heure.png') no-repeat left;
+	padding-left: 12px;
+}
+.pcat {
+	background: url('img/puce.png') no-repeat left;
+	padding-left: 12px;
+}
+#topnav 
+{
+	list-style:none;
+	font-size:12px;
+	margin:0 auto;	
+	padding:2px 0 0 5px;
+	text-align:right;	
+	text-transform:lowercase;	
+	border-bottom:#ddd 1px solid;
+}
+#topnav li 
+{
+	list-style:none;
+	display:inline;
+	padding:0 1em 0 0;
+	margin:0;
+}
+#topnav li a:link, #topnav li a:visited, #topnav li a:hover, #topnav li a:active 
+{
+	text-decoration:none;	
+	color:#666;
+}
+#topnav li a:hover
+{
+	border-bottom:#7A7636 3px solid;
+	color:#7A7636;	
+}
+.announ 
+{
+	margin-bottom:10px;
+	padding:10px;
+	background:#fff;
+	border:#ccc 1px dotted;
+}
+
+.calMonthToday{
+	border:1px dotted #669933;
+	background-color:#eeeeee;
+}
\ No newline at end of file




More information about the pLog-svn mailing list