From 8fd20f58e67c57364437b6c68205361b91f5ac2e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 29 Jul 2008 15:42:46 -0400 Subject: show the weight in output (for my own edification) darcs-hash:20080729194246-84dde-4a47578d8727720097dab9362cb356bd8f4d2a7d.gz --- actions/tag.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'actions') diff --git a/actions/tag.php b/actions/tag.php index cc95690e2..b967136d9 100644 --- a/actions/tag.php +++ b/actions/tag.php @@ -111,14 +111,14 @@ class TagAction extends StreamAction { } foreach ($tw as $tag => $weight) { - $this->show_tag($tag, $weight/$sum); + $this->show_tag($tag, $weight, $weight/$sum); } common_element_end('p'); } } - function show_tag($tag, $relative) { + function show_tag($tag, $weight, $relative) { # XXX: these should probably tune to the size of the site $cls = ($relative > 0.1) ? 'largest' : @@ -129,7 +129,7 @@ class TagAction extends StreamAction { ($relative > 0.002) ? 'verysmall' : 'smallest'; - common_element('a', array('class' => $cls, + common_element('a', array('class' => "$cls weight-$weight", 'href' => common_local_url('tag', array('tag' => $tag))), $tag); common_text(' '); -- cgit v1.2.3-54-g00ecf