You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2006/10/27 19:24:20 UTC

svn commit: r468464 - /incubator/roller/trunk/web/WEB-INF/velocity/weblog.vm

Author: agilliland
Date: Fri Oct 27 10:24:20 2006
New Revision: 468464

URL: http://svn.apache.org/viewvc?view=rev&rev=468464
Log:
removing #showTagCloud() macro because we don't want to support it and it's easy enough for users to do on their own.

slighly modifying #showEntryTags() macro to use a regular space instead of non-breaking space.


Modified:
    incubator/roller/trunk/web/WEB-INF/velocity/weblog.vm

Modified: incubator/roller/trunk/web/WEB-INF/velocity/weblog.vm
URL: http://svn.apache.org/viewvc/incubator/roller/trunk/web/WEB-INF/velocity/weblog.vm?view=diff&rev=468464&r1=468463&r2=468464
==============================================================================
--- incubator/roller/trunk/web/WEB-INF/velocity/weblog.vm (original)
+++ incubator/roller/trunk/web/WEB-INF/velocity/weblog.vm Fri Oct 27 10:24:20 2006
@@ -789,22 +789,15 @@
 #end
 #end
 
-#** 
-Shows a Tag cloud for a given set of tags
-*#
-#macro(showTagCloud $tags)
-
-  #foreach ($tag in $tags)
-	<a class="tag s${tag.intensity}" href="$url.tag($tag.name)" title="$tag.count">$tag.name</a> 
-  #end
-			
-#end
 
+#**
+ Display a list of tag urls for the tags on a given entry.
+*#
 #macro(showEntryTags $entry)
   
   #set ( $tags = $entry.tags )
   #foreach($tag in $tags)
-	    <a href="$url.tag($tag.name)" rel="tag">$tag.name</a>&nbsp;
+	    <a href="$url.tag($tag.name)" rel="tag">$tag.name</a> 
   #end
   
 #end