[pLog-svn] r3931 - in templates/trunk: Innerscape SimpleRules aquasoft standard_green standard_happy standard_new standard_red standard_wine

oscar at devel.lifetype.net oscar at devel.lifetype.net
Sun Sep 3 18:29:58 GMT 2006


Author: oscar
Date: 2006-09-03 18:29:57 +0000 (Sun, 03 Sep 2006)
New Revision: 3931

Modified:
   templates/trunk/Innerscape/rightmenu.template
   templates/trunk/SimpleRules/footer.template
   templates/trunk/aquasoft/panel.template
   templates/trunk/standard_green/footer.template
   templates/trunk/standard_happy/footer.template
   templates/trunk/standard_new/footer.template
   templates/trunk/standard_red/footer.template
   templates/trunk/standard_wine/footer.template
Log:
fix for issue 1016


Modified: templates/trunk/Innerscape/rightmenu.template
===================================================================
--- templates/trunk/Innerscape/rightmenu.template	2006-09-03 18:29:19 UTC (rev 3930)
+++ templates/trunk/Innerscape/rightmenu.template	2006-09-03 18:29:57 UTC (rev 3931)
@@ -1,7 +1,7 @@
 <div id="right">
 <H1 CLASS="rightmenu">About Me</H1>
 {assign var=blogOwner value=$blog->getOwnerInfo()} {if $blogOwner->hasPicture()}
-{assign var=image value=$blogOwner->getPicture()} <img src="{$url->resourceDownloadLink($image)}" alt="My Blog Profile @ site4me.us" />
+{assign var=image value=$blogOwner->getPicture()} <img src="{$image->getPreviewLink()}" alt="My Picture" />
 {/if}
 <H1 CLASS="userprofile"> {$blogOwner->getAboutMyself()}  </H1>
 <!--Calendar-->

Modified: templates/trunk/SimpleRules/footer.template
===================================================================
--- templates/trunk/SimpleRules/footer.template	2006-09-03 18:29:19 UTC (rev 3930)
+++ templates/trunk/SimpleRules/footer.template	2006-09-03 18:29:57 UTC (rev 3931)
@@ -21,7 +21,7 @@
 <ul>
 <li><div align="center">
 {assign var=picture value=$blogOwner->getPicture()}
-<img src="{$url->resourcePreviewLink($picture)}" alt="{$picture->getDescription()}" />
+<img src="{$picture->getPreviewLink()}" alt="{$picture->getDescription()}" />
 </div>
 </li>
 </ul>
@@ -84,12 +84,12 @@
 <p style="float:left;">Design by <a href="http://poolie.kulando.de/">Alexander Kaiser</a></span></p>
 <p style="float:right; text-align:right;"><span>
 
-<a title="{$locale->tr("main")}" href="{$url->blogLink()}">{$locale->tr("main")}</a> | <a title="{$locale->tr("albums")}" href="{$url->albumLink()}">{$locale->tr("albums")}</a>
+<a title="{$locale->tr("main")}" href="{$url->blogLink()}">{$locale->tr("main")}</a> | <a title="{$locale->tr("albums")}" href="{$url->albumLink()}">{$locale->tr("albums")}</a>
 {if $flickr}
 {if $flickr->isEnabled()}
 | <a title="Flickr" href="{$flickr->pluginTemplatePage()}">Flickr</a>
-{/if}
 {/if}
+{/if}
 
 <br />
 <a title="RSS 0.90 feed." href="{$url->rssLink("rss090")}" style="color:#898989;">RSS 0.90</a> | <a title="RSS 1.0 feed." href="{$url->rssLink("rss10")}" style="color:#898989;">RSS 1.0</a> | <a title="RSS 2.0 feed." href="{$url->rssLink("rss20")}" style="color:#898989;">RSS 2.0</a> | <a title="Atom 0.3 feed." href="{$url->rssLink("atom")}" style="color:#898989;">Atom 0.3</a></span></p>

Modified: templates/trunk/aquasoft/panel.template
===================================================================
--- templates/trunk/aquasoft/panel.template	2006-09-03 18:29:19 UTC (rev 3930)
+++ templates/trunk/aquasoft/panel.template	2006-09-03 18:29:57 UTC (rev 3931)
@@ -33,7 +33,7 @@
       {assign var=blogOwner value=$blog->getOwnerInfo()}
       {if $blogOwner->hasPicture()}
       {assign var=picture value=$blogOwner->getPicture()}
-      <img src="{$url->resourcePreviewLink($picture)}" alt="My picture!" /><br><br>
+      <img src="{$picture->getPreviewLink()}" alt="My picture!" /><br><br>
       {/if}
     </ul>		
   </div>

Modified: templates/trunk/standard_green/footer.template
===================================================================
--- templates/trunk/standard_green/footer.template	2006-09-03 18:29:19 UTC (rev 3930)
+++ templates/trunk/standard_green/footer.template	2006-09-03 18:29:57 UTC (rev 3931)
@@ -13,8 +13,7 @@
   	<h2>{$locale->tr("about_myself")}</h2>
   	<div id="AboutMyself">
   	{assign var=picture value=$blogOwner->getPicture()}
-  	{assign var=picture value=$blogOwner->getPicture()}
-  	<img id="UserPicture" src="{$url->resourcePreviewLink($picture)}" alt="{$blogOwner->getUsername()}" />
+  	<img id="UserPicture" src="{$picture->getPreviewLink()}" alt="{$blogOwner->getUsername()}" />
   	<p>{$AboutMyself}</p>
   	<div class="clearer">&nbsp;</div>
   	</div>

Modified: templates/trunk/standard_happy/footer.template
===================================================================
--- templates/trunk/standard_happy/footer.template	2006-09-03 18:29:19 UTC (rev 3930)
+++ templates/trunk/standard_happy/footer.template	2006-09-03 18:29:57 UTC (rev 3931)
@@ -13,8 +13,7 @@
   	<h2>{$locale->tr("about_myself")}</h2>
   	<div id="AboutMyself">
   	{assign var=picture value=$blogOwner->getPicture()}
-  	{assign var=picture value=$blogOwner->getPicture()}
-  	<img id="UserPicture" src="{$url->resourcePreviewLink($picture)}" alt="{$blogOwner->getUsername()}" />
+  	<img id="UserPicture" src="{$picture->getPreviewLink()}" alt="{$blogOwner->getUsername()}" />
   	<p>{$AboutMyself}</p>
   	<div class="clearer">&nbsp;</div>
   	</div>

Modified: templates/trunk/standard_new/footer.template
===================================================================
--- templates/trunk/standard_new/footer.template	2006-09-03 18:29:19 UTC (rev 3930)
+++ templates/trunk/standard_new/footer.template	2006-09-03 18:29:57 UTC (rev 3931)
@@ -8,7 +8,7 @@
 {assign var=blogOwner value=$blog->getOwnerInfo()}
 {if $blogOwner->hasPicture()}
   {assign var=picture value=$blogOwner->getPicture()}
-  <img id="UserPicture" src="{$url->resourceDownloadLink($picture)}" alt="{$blogOwner->getUsername()}" />
+  <img id="UserPicture" src="{$picture->getPreviewLink()}" alt="{$blogOwner->getUsername()}" />
 {/if}
 
 

Modified: templates/trunk/standard_red/footer.template
===================================================================
--- templates/trunk/standard_red/footer.template	2006-09-03 18:29:19 UTC (rev 3930)
+++ templates/trunk/standard_red/footer.template	2006-09-03 18:29:57 UTC (rev 3931)
@@ -13,8 +13,7 @@
   	<h2>{$locale->tr("about_myself")}</h2>
   	<div id="AboutMyself">
   	{assign var=picture value=$blogOwner->getPicture()}
-  	{assign var=picture value=$blogOwner->getPicture()}
-  	<img id="UserPicture" src="{$url->resourcePreviewLink($picture)}" alt="{$blogOwner->getUsername()}" />
+  	<img id="UserPicture" src="{$picture->getPreviewLink()}" alt="{$blogOwner->getUsername()}" />
   	<p>{$AboutMyself}</p>
   	<div class="clearer">&nbsp;</div>
   	</div>

Modified: templates/trunk/standard_wine/footer.template
===================================================================
--- templates/trunk/standard_wine/footer.template	2006-09-03 18:29:19 UTC (rev 3930)
+++ templates/trunk/standard_wine/footer.template	2006-09-03 18:29:57 UTC (rev 3931)
@@ -13,8 +13,7 @@
   	<h2>{$locale->tr("about_myself")}</h2>
   	<div id="AboutMyself">
   	{assign var=picture value=$blogOwner->getPicture()}
-  	{assign var=picture value=$blogOwner->getPicture()}
-  	<img id="UserPicture" src="{$url->resourcePreviewLink($picture)}" alt="{$blogOwner->getUsername()}" />
+  	<img id="UserPicture" src="{$picture->getPreviewLink()}" alt="{$blogOwner->getUsername()}" />
   	<p>{$AboutMyself}</p>
   	<div class="clearer">&nbsp;</div>
   	</div>



More information about the pLog-svn mailing list