From 94d9329b5f9ae1906bb062911d263a2ea6d067e5 Mon Sep 17 00:00:00 2001 From: sarven Date: Thu, 22 Jan 2009 20:32:26 +0000 Subject: [PATCH 1/5] entry content opacity --- theme/identica/css/display.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index 5d07cfd9a7..c16dc9fd70 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -214,8 +214,8 @@ background:transparent url(../images/icons/twotone/green/disfavourite.gif) no-re background:transparent url(../images/icons/twotone/green/trash.gif) no-repeat 0 45%; } -div.entry-content, -div.notice-options { +.notices div.entry-content, +.notices div.notice-options { opacity:0.3; } .notices li.hover div.entry-content, From 9bab9ae078cab16cb2e19bf3272d4d5157e14264 Mon Sep 17 00:00:00 2001 From: sarven Date: Thu, 22 Jan 2009 20:39:13 +0000 Subject: [PATCH 2/5] Top posters section markup and stye --- lib/profilesection.php | 8 ++++---- lib/topposterssection.php | 11 ++++++++--- theme/base/css/display.css | 15 +++++++-------- 3 files changed, 19 insertions(+), 15 deletions(-) diff --git a/lib/profilesection.php b/lib/profilesection.php index 14068b0827..91a3dfa34d 100644 --- a/lib/profilesection.php +++ b/lib/profilesection.php @@ -58,13 +58,13 @@ class ProfileSection extends Section $cnt = 0; - $this->out->elementStart('ul', 'entities users xoxo'); - + $this->out->elementStart('table'); + $this->out->elementStart('tbody'); while ($profiles->fetch() && ++$cnt <= PROFILES_PER_SECTION) { $this->showProfile($profiles); } - - $this->out->elementEnd('ul'); + $this->out->elementEnd('tbody'); + $this->out->elementEnd('table'); return ($cnt > PROFILES_PER_SECTION); } diff --git a/lib/topposterssection.php b/lib/topposterssection.php index 7a3d46aa5f..4701ca83fb 100644 --- a/lib/topposterssection.php +++ b/lib/topposterssection.php @@ -71,7 +71,9 @@ class TopPostersSection extends ProfileSection function showProfile($profile) { - $this->out->elementStart('li', 'vcard'); + $this->out->elementStart('tr'); + $this->out->elementStart('td'); + $this->out->elementStart('span', 'vcard'); $this->out->elementStart('a', array('title' => ($profile->fullname) ? $profile->fullname : $profile->nickname, @@ -87,11 +89,14 @@ class TopPostersSection extends ProfileSection $profile->fullname : $profile->nickname)); $this->out->element('span', 'fn nickname', $profile->nickname); + $this->out->elementEnd('span'); $this->out->elementEnd('a'); + $this->out->elementEnd('td'); if ($profile->value) { - $this->out->element('span', 'value', $profile->value); + $this->out->element('td', 'value', $profile->value); } - $this->out->elementEnd('li'); + + $this->out->elementEnd('tr'); } function title() diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 44dbff5dac..c55b3fd23a 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -1057,28 +1057,27 @@ background-color:#fff; /*END: LOAD ALONG WITH JS*/ /* TOP_POSTERS */ -#top-posters caption { +#top_posters caption { text-align:left; text-transform:uppercase; } -#top-posters thead { +#top_posters thead { display:none; } -#top-poster_user { +#top_poster_user { width:199px; } -#top-poster_number-of-notices { +#top_poster_number-of-notices { width:123px; } -#top-posters tbody td { +#top_posters tbody td { padding-right:11px; padding-bottom:4px; } -#top-posters img { +#top_posters img { margin-right:7px; -height:24px; -width:24px; +margin-bottom:0; } /* tagcloud */ From 183ad682afa0e7c406b2f1c41f4881c090408909 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 22 Jan 2009 20:45:53 +0000 Subject: [PATCH 3/5] A base class for tag cloud sections --- lib/tagcloudsection.php | 113 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 lib/tagcloudsection.php diff --git a/lib/tagcloudsection.php b/lib/tagcloudsection.php new file mode 100644 index 0000000000..121dfc4990 --- /dev/null +++ b/lib/tagcloudsection.php @@ -0,0 +1,113 @@ +. + * + * @category Widget + * @package Laconica + * @author Evan Prodromou + * @copyright 2009 Control Yourself, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://laconi.ca/ + */ + +if (!defined('LACONICA')) { + exit(1); +} + +define('TAGS_PER_SECTION', 20); + +/** + * Base class for sections + * + * These are the widgets that show interesting data about a person + * group, or site. + * + * @category Widget + * @package Laconica + * @author Evan Prodromou + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://laconi.ca/ + */ + +class TagCloudSection extends Section +{ + function showContent() + { + $tags = $this->getTags(); + + if (!$tags) { + return false; + } + + $cnt = 0; + + $tw = array(); + $sum = 0; + + while ($tags->fetch() && ++$cnt <= TAGS_PER_SECTION) { + $tw[$tags->tag] = $tags->weight; + $sum += $tags->weight; + } + + ksort($tw); + + $this->out->elementStart('ul', 'tags xoxo tag-cloud'); + foreach ($tw as $tag => $weight) { + $this->showTag($tag, $weight, $weight/$sum); + } + $this->out->elementEnd('ul'); + + return ($cnt > TAGS_PER_SECTION); + } + + function getTags() + { + return null; + } + + function showTag($tag, $weight, $relative) + { + if ($relative > 0.1) { + $rel = 'tag-cloud-7'; + } else if ($relative > 0.05) { + $rel = 'tag-cloud-6'; + } else if ($relative > 0.02) { + $rel = 'tag-cloud-5'; + } else if ($relative > 0.01) { + $rel = 'tag-cloud-4'; + } else if ($relative > 0.005) { + $rel = 'tag-cloud-3'; + } else if ($relative > 0.002) { + $rel = 'tag-cloud-2'; + } else { + $rel = 'tag-cloud-1'; + } + + $this->out->elementStart('li', $rel); + $this->out->element('a', array('href' => $this->tagUrl($tag)), + $tag); + $this->out->elementEnd('li'); + } + + function tagUrl($tag) + { + return common_local_url('tag', array('tag' => $tag)); + } +} From 1be3efd1b5e2ed50940f492eec4ba365f5881d00 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 22 Jan 2009 20:46:10 +0000 Subject: [PATCH 4/5] A section for showing a cloud of tags in a person's notices --- lib/personaltagcloudsection.php | 86 +++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 lib/personaltagcloudsection.php diff --git a/lib/personaltagcloudsection.php b/lib/personaltagcloudsection.php new file mode 100644 index 0000000000..0882822db2 --- /dev/null +++ b/lib/personaltagcloudsection.php @@ -0,0 +1,86 @@ +. + * + * @category Widget + * @package Laconica + * @author Evan Prodromou + * @copyright 2009 Control Yourself, Inc. + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://laconi.ca/ + */ + +if (!defined('LACONICA')) { + exit(1); +} + +/** + * Personal tag cloud section + * + * @category Widget + * @package Laconica + * @author Evan Prodromou + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://laconi.ca/ + */ + +class PersonalTagCloudSection extends TagCloudSection +{ + var $user = null; + + function __construct($out=null, $user=null) + { + parent::__construct($out); + $this->user = $user; + } + + function title() + { + return sprintf(_('Tags in %s\'s notices'), $this->user->nickname); + } + + function getTags() + { + $qry = 'SELECT notice_tag.tag, '. + 'sum(exp(-(now() - notice_tag.created)/%s)) as weight ' . + 'FROM notice_tag JOIN notice ' . + 'ON notice_tag.notice_id = notice.id ' . + 'WHERE notice.profile_id = %d ' . + 'GROUP BY notice_tag.tag ' . + 'ORDER BY weight DESC '; + + $limit = TAGS_PER_SECTION; + $offset = 0; + + if (common_config('db','type') == 'pgsql') { + $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; + } else { + $qry .= ' LIMIT ' . $offset . ', ' . $limit; + } + + $tag = Memcached_DataObject::cachedQuery('Notice_tag', + sprintf($qry, + common_config('tag', 'dropoff'), + $this->user->id), + 3600); + return $tag; + } + +} From 4e7192579ab0a1e3114d6f599495e3a54e1c397c Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 22 Jan 2009 20:46:37 +0000 Subject: [PATCH 5/5] Add personal tag cloud --- actions/showstream.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/actions/showstream.php b/actions/showstream.php index 1ea84cf218..9e209cd4a0 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -388,6 +388,8 @@ class ShowstreamAction extends Action $this->showSubscribers(); $this->showGroups(); $this->showStatistics(); + $cloud = new PersonalTagCloudSection($this, $this->user); + $cloud->show(); } function showSubscriptions()