/**
* Laconica, the distributed open-source microblogging tool
*
- * User profile page
+ * List of a user's subscriptions
*
* PHP version 5
*
* 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 Personal
+ * @category Social
* @package Laconica
* @author Evan Prodromou <evan@controlyourself.ca>
* @author Sarven Capadisli <csarven@controlyourself.ca>
exit(1);
}
-require_once INSTALLDIR.'/lib/subsgroupnav.php';
-
/**
- * User profile page
- *
- * When I created this page, "show stream" seemed like the best name for it.
- * Now, it seems like a really bad name.
+ * A list of the user's subscriptions
*
- * It shows a stream of the user's posts, plus lots of profile info, links
- * to subscriptions and stuff, etc.
- *
- * @category Personal
+ * @category Social
* @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
if (!defined('LACONICA')) { exit(1); }
-class SubscriptionsAction extends Action
+class SubscriptionsAction extends GalleryAction
{
- var $profile = null;
- var $user = null;
- var $page = null;
-
- function prepare($args)
- {
- parent::prepare($args);
-
- // FIXME very similar code below
-
- $nickname_arg = $this->arg('nickname');
- $nickname = common_canonical_nickname($nickname_arg);
-
- // Permanent redirect on non-canonical nickname
-
- if ($nickname_arg != $nickname) {
- $args = array('nickname' => $nickname);
- if ($this->arg('page') && $this->arg('page') != 1) {
- $args['page'] = $this->arg['page'];
- }
- common_redirect(common_local_url('subscriptions', $args), 301);
- return false;
- }
-
- $this->user = User::staticGet('nickname', $nickname);
-
- if (!$this->user) {
- $this->clientError(_('No such user.'), 404);
- return false;
- }
-
- $this->profile = $this->user->getProfile();
-
- if (!$this->profile) {
- $this->serverError(_('User has no profile.'));
- return false;
- }
-
- $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
-
- return true;
- }
-
- function isReadOnly()
- {
- return true;
- }
-
- function handle($args)
- {
- parent::handle($args);
- $this->showPage();
- }
-
function title()
{
if ($this->page == 1) {
}
}
- function showLocalNav()
+ function getAllTags()
{
- $nav = new SubGroupNav($this, $this->user);
- $nav->show();
+ return $this->getTags('subscribed', 'subscriber');
}
function showContent()
{
+ parent::showContent();
+
$offset = ($this->page-1) * PROFILES_PER_PAGE;
$limit = PROFILES_PER_PAGE + 1;
$subscriptions = $this->user->getSubscriptions($offset, $limit);
- if ($subs) {
- $subscriptions_list = new SubscriptionsList($subscriptions, null, $this);
+ if ($subscriptions) {
+ $subscriptions_list = new SubscriptionsList($subscriptions, $this->user, $this);
$subscriptions_list->show();
}
return;
}
- $this->elementStart('form', array('id' => 'subedit-' . $profile->id,
+ $this->out->elementStart('form', array('id' => 'subedit-' . $profile->id,
'method' => 'post',
'class' => 'subedit',
'action' => common_local_url('subedit')));
- $this->hidden('token', common_session_token());
- $this->hidden('profile', $profile->id);
- $this->checkbox('jabber', _('Jabber'), $sub->jabber);
- $this->checkbox('sms', _('SMS'), $sub->sms);
- $this->submit('save', _('Save'));
- $this->elementEnd('form');
+ $this->out->hidden('token', common_session_token());
+ $this->out->hidden('profile', $profile->id);
+ $this->out->checkbox('jabber', _('Jabber'), $sub->jabber);
+ $this->out->checkbox('sms', _('SMS'), $sub->sms);
+ $this->out->submit('save', _('Save'));
+ $this->out->elementEnd('form');
return;
}
}
}
legend {
-font-weight:bold;
+font-weight:bold;
font-size:1.3em;
text-transform:uppercase;
}
margin-left:11px;
}
-
-
-
/* FORM SETTINGS */
.form_settings fieldset {
margin-bottom:29px;
font-style:italic;
}
-
.form_settings .form_data li {
width:100%;
float:left;
margin-left:0;
}
-
.form_settings .form_note {
border-radius:4px;
-moz-border-radius:4px;
padding:0 7px;
}
-
-
/* FORM SETTINGS */
-
-
-
address {
float:left;
margin-bottom:18px;
font-weight:bold;
}
-
#header {
width:100%;
position:relative;
margin-left:11px;
}
-
.system_notice dt {
font-weight:bold;
text-transform:uppercase;
margin-bottom:18px;
}
-
-
-
#footer {
float:left;
width:64%;
padding:18px;
}
-
-
#site_nav_local_views {
width:100%;
float:left;
width:100%;
}
-
#site_nav_global_primary dt,
#site_nav_global_secondary dt {
display:none;
padding-left:28px;
}
-
-
#export_data ul {
display:inline;
}
margin-left:0;
}
-
-
#licenses {
font-size:0.9em;
}
margin-right:4px;
}
-
#wrap {
float:left;
margin:0 auto;
width:71.714em;
}
-
#core {
position:relative;
width:100%;
-webkit-border-radius:7px;
}
-
-
-
/*Start: FORM NOTICE*/
#form_notice {
width:384px;
/*end FORM NOTICE*/
-
-
-
-
/* entity_profile */
.entity_profile {
position:relative;
/* entity_profile */
-
-
-
-
/*entity_actions*/
.entity_actions {
float:right;
display:block;
}
-
-
.form_user_block input.submit,
.form_user_unblock input.submit,
#entity_send-a-message a,
padding:4px 4px 4px 23px;
}
-
-
.entity_tags ul {
list-style-type:none;
}
float:left;
}
-
-
.aside .section {
margin-bottom:29px;
clear:both;
content: ":";
}
-
#user_subscriptions,
#user_subscribers,
#user_groups, {
clear:both;
}
-
-
.profile .entity_profile {
margin-bottom:0;
min-height:60px;
display:none;
}
-
.profiles {
list-style-type:none;
}
width:auto;
}
-
-
/* NOTICE */
.notice,
.profile {
-webkit-border-radius:4px;
}
-
/* NOTICES */
#notices_primary {
float:left;
padding-left:28px;
}
-
.notice .author {
margin-right:11px;
}
}
-
.notice .entry-title {
float:left;
width:100%;
.notice div.entry-content a:hover {
}
-
-
.notice-data {
position:absolute;
top:18px;
/*END: NOTICES */
-
-
-
-
.pagination dt {
font-weight:bold;
display:none;
border-right:0;
}
-
/* END: NOTICE */
-
-
/*If there is hentry on #content_inner, then this doesn't need to be specific to #doc or any other section */
.hentry .entry-content p {
margin-bottom:18px;
margin-left:18px;
}
-
/*START: LOAD ALONG WITH JS*/
.notice .in-reply-to {
width:98%;
background-color:#D1D9E4;
}
-
-
.entity_actions #user_subscribe .form_note,
.entity_actions #user_subscribe .form_data,
.entity_actions #user_subscribe .form_actions label {
/*END: LOAD ALONG WITH JS*/
-
-
/* TOP_POSTERS */
#top-posters caption {
text-align:left;
width:24px;
}
-
-
/* tagcloud */
.tag-cloud {
list-style-type:none;
display:none;
}
-
-
-
#form_settings_photo .form_data {
clear:both;
}
-
-
#form_settings_avatar li {
width:auto;
}
#form_settings_avatar input {
-margin-left:0;
+margin-left:0;
}
#avatar_original,
#avatar_preview {
margin-bottom:0;
}
-
-
#groups_related ul,
#users_featured ul {
list-style-type:none;
font-weight:bold;
}
-
-
#home.logged_out h1 {
display:none;
}
text-align:center;
}
-
#testimonials {
clear:both;
}
+
+.entity_tags dt {
+display:block;
+}
\ No newline at end of file