Update of /cvsroot/php-blog/serendipity/templates/default
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6904/templates/default
Modified Files:
comments.tpl entries.tpl entries_summary.tpl
Log Message:
CVS apparently missed this one
Index: comments.tpl
===================================================================
RCS file: /cvsroot/php-blog/serendipity/templates/default/comments.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- comments.tpl 19 Nov 2004 11:06:07 -0000 1.2
+++ comments.tpl 25 Feb 2005 13:30:27 -0000 1.3
@@ -1,13 +1,13 @@
{foreach from=$comments item=comment}
<a id="c{$comment.id}"></a>
- <div class="serendipity_comment serendipity_comment_author_{$comment.username|@makeFilename} {if $entry.username == $comment.username}serendipity_comment_author_self{/if}" style="padding-left: {$comment.depth*20}px">
+ <div class="serendipity_comment serendipity_comment_author_{$comment.author|@makeFilename} {if $entry.author == $comment.author}serendipity_comment_author_self{/if}" style="padding-left: {$comment.depth*20}px">
<div class="serendipity_commentBody">{$comment.body}</div>
<div class="serendipity_comment_source">
<a href="#c{$comment.id}" title="Link to comment #{$comment.trace}">#{$comment.trace}</a>
{if $comment.email}
- <a href="mailto:{$comment.email}">{$comment.username|@default:$CONST.ANONYMOUS}</a>
+ <a href="mailto:{$comment.email}">{$comment.author|@default:$CONST.ANONYMOUS}</a>
{else}
- {$comment.username|@default:$CONST.ANONYMOUS}
+ {$comment.author|@default:$CONST.ANONYMOUS}
{/if}
{if $comment.url}
(<a href="{$comment.url}" title="{$comment.url|@escape}">Link</a>)
@@ -15,7 +15,7 @@
{$CONST.ON}
{$comment.timestamp|@formatTime:$CONST.DATE_FORMAT_SHORT}
{if $entry.is_entry_owner}
- (<a href="{$comment.link_delete}" onclick="return confirm('{$CONST.COMMENT_DELETE_CONFIRM|@sprintf:$comment.id:$comment.username}');">delete</a>)
+ (<a href="{$comment.link_delete}" onclick="return confirm('{$CONST.COMMENT_DELETE_CONFIRM|@sprintf:$comment.id:$comment.author}');">delete</a>)
{/if}
{if $entry.allow_comments}
(<a href="#serendipity_CommentForm" onclick="document.getElementById('serendipity_replyTo').value='{$comment.id}';">Reply</a>)
Index: entries.tpl
===================================================================
RCS file: /cvsroot/php-blog/serendipity/templates/default/entries.tpl,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- entries.tpl 4 Feb 2005 13:10:15 -0000 1.12
+++ entries.tpl 25 Feb 2005 13:30:27 -0000 1.13
@@ -12,7 +12,7 @@
{foreach from=$dategroup.entries item="entry"}
<h4 class="serendipity_title"><a href="{$entry.link}">{$entry.title}</a></h4>
- <div class="serendipity_entry serendipity_entry_author_{$entry.username|@makeFilename} {if $entry.is_entry_owner}serendipity_entry_author_self{/if}">
+ <div class="serendipity_entry serendipity_entry_author_{$entry.author|@makeFilename} {if $entry.is_entry_owner}serendipity_entry_author_self{/if}">
{if $entry.categories}
<span class="serendipity_entryIcon">
{foreach from=$entry.categories item="category"}
@@ -36,7 +36,7 @@
{/if}
<div class='serendipity_entryFooter'>
- {$CONST.POSTED_BY} <a href="{$entry.link_username}">{$entry.username}</a>
+ {$CONST.POSTED_BY} <a href="{$entry.link_author}">{$entry.author}</a>
{if $entry.categories}
{$CONST.IN} {foreach from=$entry.categories item="category" name="categories"}<a href="{$category.category_link}">{$category.category_name|@escape}</a>{if not $smarty.foreach.categories.last}, {/if}{/foreach}
{/if}
Index: entries_summary.tpl
===================================================================
RCS file: /cvsroot/php-blog/serendipity/templates/default/entries_summary.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- entries_summary.tpl 28 Nov 2004 01:53:29 -0000 1.3
+++ entries_summary.tpl 25 Feb 2005 13:30:27 -0000 1.4
@@ -5,7 +5,7 @@
{foreach from=$entries item="entries"}
{foreach from=$entries.entries item="entry"}
<li><a href="{$entry.link}">{$entry.title}</a>
- <br />{$CONST.POSTED_BY} {$entry.username} {$CONST.ON} {$entry.timestamp|@formatTime:DATE_FORMAT_ENTRY}</li>
+ <br />{$CONST.POSTED_BY} {$entry.author} {$CONST.ON} {$entry.timestamp|@formatTime:DATE_FORMAT_ENTRY}</li>
{/foreach}
{/foreach}
</ul>
|