Return-Path: Delivered-To: apmail-incubator-roller-commits-archive@www.apache.org Received: (qmail 37009 invoked from network); 27 Oct 2006 17:24:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Oct 2006 17:24:43 -0000 Received: (qmail 6456 invoked by uid 500); 27 Oct 2006 17:24:55 -0000 Delivered-To: apmail-incubator-roller-commits-archive@incubator.apache.org Received: (qmail 6432 invoked by uid 500); 27 Oct 2006 17:24:54 -0000 Mailing-List: contact roller-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: roller-dev@incubator.apache.org Delivered-To: mailing list roller-commits@incubator.apache.org Received: (qmail 6420 invoked by uid 99); 27 Oct 2006 17:24:54 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Oct 2006 10:24:54 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Oct 2006 10:24:41 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id AAFE41A9846; Fri, 27 Oct 2006 10:24:20 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r468464 - /incubator/roller/trunk/web/WEB-INF/velocity/weblog.vm Date: Fri, 27 Oct 2006 17:24:20 -0000 To: roller-commits@incubator.apache.org From: agilliland@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061027172420.AAFE41A9846@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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) - $tag.name - #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) -   + #end #end