summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRobin Millette <millette@plantard.controlezvous.ca>2009-01-22 20:49:45 +0000
committerRobin Millette <millette@plantard.controlezvous.ca>2009-01-22 20:49:45 +0000
commite33d80fe9dd4cd6e7e913157361311757a3265a3 (patch)
tree85cb0d20b7730c4d1b9bf88e2b06ceed166ee455 /lib
parent0c7176b603dc91585449883d02dc0e3c3ad74244 (diff)
parent4f58dbf55718133eadcb4b18b72a70504b31defa (diff)
Merge branch 'master' of /var/www/trunk
Diffstat (limited to 'lib')
-rw-r--r--lib/personaltagcloudsection.php86
-rw-r--r--lib/profilesection.php8
-rw-r--r--lib/tagcloudsection.php113
-rw-r--r--lib/topposterssection.php11
4 files changed, 211 insertions, 7 deletions
diff --git a/lib/personaltagcloudsection.php b/lib/personaltagcloudsection.php
new file mode 100644
index 000000000..0882822db
--- /dev/null
+++ b/lib/personaltagcloudsection.php
@@ -0,0 +1,86 @@
+<?php
+/**
+ * Laconica, the distributed open-source microblogging tool
+ *
+ * Personal tag cloud section
+ *
+ * PHP version 5
+ *
+ * LICENCE: This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * @category Widget
+ * @package Laconica
+ * @author Evan Prodromou <evan@controlyourself.ca>
+ * @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 <evan@controlyourself.ca>
+ * @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;
+ }
+
+}
diff --git a/lib/profilesection.php b/lib/profilesection.php
index 14068b082..91a3dfa34 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/tagcloudsection.php b/lib/tagcloudsection.php
new file mode 100644
index 000000000..121dfc499
--- /dev/null
+++ b/lib/tagcloudsection.php
@@ -0,0 +1,113 @@
+<?php
+/**
+ * Laconica, the distributed open-source microblogging tool
+ *
+ * Base class for sections showing tag clouds
+ *
+ * PHP version 5
+ *
+ * LICENCE: This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * @category Widget
+ * @package Laconica
+ * @author Evan Prodromou <evan@controlyourself.ca>
+ * @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 <evan@controlyourself.ca>
+ * @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));
+ }
+}
diff --git a/lib/topposterssection.php b/lib/topposterssection.php
index 7a3d46aa5..4701ca83f 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()