show the weight in output (for my own edification)

darcs-hash:20080729194246-84dde-4a47578d8727720097dab9362cb356bd8f4d2a7d.gz
This commit is contained in:
Evan Prodromou 2008-07-29 15:42:46 -04:00
parent 7d43f211c0
commit 8fd20f58e6
1 changed files with 3 additions and 3 deletions

View File

@ -111,14 +111,14 @@ class TagAction extends StreamAction {
} }
foreach ($tw as $tag => $weight) { foreach ($tw as $tag => $weight) {
$this->show_tag($tag, $weight/$sum); $this->show_tag($tag, $weight, $weight/$sum);
} }
common_element_end('p'); 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 # XXX: these should probably tune to the size of the site
$cls = ($relative > 0.1) ? 'largest' : $cls = ($relative > 0.1) ? 'largest' :
@ -129,7 +129,7 @@ class TagAction extends StreamAction {
($relative > 0.002) ? 'verysmall' : ($relative > 0.002) ? 'verysmall' :
'smallest'; 'smallest';
common_element('a', array('class' => $cls, common_element('a', array('class' => "$cls weight-$weight",
'href' => common_local_url('tag', array('tag' => $tag))), 'href' => common_local_url('tag', array('tag' => $tag))),
$tag); $tag);
common_text(' '); common_text(' ');