diff options
Diffstat (limited to 'actions')
-rw-r--r-- | actions/accesstoken.php | 2 | ||||
-rw-r--r-- | actions/allrss.php | 5 | ||||
-rw-r--r-- | actions/api.php | 4 | ||||
-rw-r--r-- | actions/avatarbynickname.php | 5 | ||||
-rw-r--r-- | actions/doc.php | 5 | ||||
-rw-r--r-- | actions/favoritesrss.php | 5 | ||||
-rw-r--r-- | actions/groups.php | 5 | ||||
-rw-r--r-- | actions/groupsearch.php | 5 | ||||
-rw-r--r-- | actions/logout.php | 2 | ||||
-rw-r--r-- | actions/microsummary.php | 5 | ||||
-rw-r--r-- | actions/noticesearch.php | 5 | ||||
-rw-r--r-- | actions/noticesearchrss.php | 5 | ||||
-rw-r--r-- | actions/nudge.php | 5 | ||||
-rw-r--r-- | actions/openidlogin.php | 13 | ||||
-rw-r--r-- | actions/opensearch.php | 5 | ||||
-rw-r--r-- | actions/peoplesearch.php | 5 | ||||
-rw-r--r-- | actions/public.php | 9 | ||||
-rw-r--r-- | actions/publicrss.php | 5 | ||||
-rw-r--r-- | actions/replies.php | 5 | ||||
-rw-r--r-- | actions/repliesrss.php | 5 | ||||
-rw-r--r-- | actions/showmessage.php | 7 | ||||
-rw-r--r-- | actions/showstream.php | 5 | ||||
-rw-r--r-- | actions/subscribers.php | 5 | ||||
-rw-r--r-- | actions/tagrss.php | 5 | ||||
-rw-r--r-- | actions/usergroups.php | 5 | ||||
-rw-r--r-- | actions/userrss.php | 5 |
26 files changed, 129 insertions, 8 deletions
diff --git a/actions/accesstoken.php b/actions/accesstoken.php index 65c67c64e..77fdf6aef 100644 --- a/actions/accesstoken.php +++ b/actions/accesstoken.php @@ -50,7 +50,7 @@ class AccesstokenAction extends Action * Class handler. * * @param array $args query arguments - * + * * @return boolean false if user doesn't exist */ function handle($args) diff --git a/actions/allrss.php b/actions/allrss.php index 248f59f43..05787f3f7 100644 --- a/actions/allrss.php +++ b/actions/allrss.php @@ -123,5 +123,10 @@ class AllrssAction extends Rss10Action $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); return $avatar ? $avatar->url : null; } + + function isReadOnly() + { + return true; + } } diff --git a/actions/api.php b/actions/api.php index dfe2c8857..21fe4eea3 100644 --- a/actions/api.php +++ b/actions/api.php @@ -162,12 +162,12 @@ class ApiAction extends Action if ($this->content_type == 'xml') { header('Content-Type: application/xml; charset=utf-8'); - common_start_xml(); + $this->startXML(); $this->elementStart('hash'); $this->element('error', null, $msg); $this->element('request', null, $_SERVER['REQUEST_URI']); $this->elementEnd('hash'); - common_end_xml(); + $this->endXML(); } else if ($this->content_type == 'json') { header('Content-Type: application/json; charset=utf-8'); $error_array = array('error' => $msg, 'request' => $_SERVER['REQUEST_URI']); diff --git a/actions/avatarbynickname.php b/actions/avatarbynickname.php index fec202016..9bbdecefa 100644 --- a/actions/avatarbynickname.php +++ b/actions/avatarbynickname.php @@ -97,5 +97,10 @@ class AvatarbynicknameAction extends Action } common_redirect($url, 302); } + + function isReadOnly() + { + return true; + } } diff --git a/actions/doc.php b/actions/doc.php index 3755bb051..6957659ad 100644 --- a/actions/doc.php +++ b/actions/doc.php @@ -107,4 +107,9 @@ class DocAction extends Action { return ucfirst($this->title); } + + function isReadOnly() + { + return true; + } } diff --git a/actions/favoritesrss.php b/actions/favoritesrss.php index 19339325c..ad72dce9e 100644 --- a/actions/favoritesrss.php +++ b/actions/favoritesrss.php @@ -114,5 +114,10 @@ class FavoritesrssAction extends Rss10Action { return null; } + + function isReadOnly() + { + return true; + } } diff --git a/actions/groups.php b/actions/groups.php index 261f9b3aa..39dc2232b 100644 --- a/actions/groups.php +++ b/actions/groups.php @@ -51,6 +51,11 @@ class GroupsAction extends Action var $page = null; var $profile = null; + function isReadOnly() + { + return true; + } + function title() { if ($this->page == 1) { diff --git a/actions/groupsearch.php b/actions/groupsearch.php index 66f5c87b3..9b0026db9 100644 --- a/actions/groupsearch.php +++ b/actions/groupsearch.php @@ -103,5 +103,10 @@ class GroupSearchResults extends GroupList { return preg_replace($this->pattern, '<strong>\\1</strong>', htmlspecialchars($text)); } + + function isReadOnly() + { + return true; + } } diff --git a/actions/logout.php b/actions/logout.php index 0ff8dc754..3977f90a0 100644 --- a/actions/logout.php +++ b/actions/logout.php @@ -54,7 +54,7 @@ class LogoutAction extends Action */ function isReadOnly() { - return true; + return false; } /** diff --git a/actions/microsummary.php b/actions/microsummary.php index 196dd5de8..065a2e0eb 100644 --- a/actions/microsummary.php +++ b/actions/microsummary.php @@ -73,4 +73,9 @@ class MicrosummaryAction extends Action print $user->nickname . ': ' . $notice->content; } + + function isReadOnly() + { + return true; + } } diff --git a/actions/noticesearch.php b/actions/noticesearch.php index 8c5128de1..3c3fdca9f 100644 --- a/actions/noticesearch.php +++ b/actions/noticesearch.php @@ -222,5 +222,10 @@ class NoticesearchAction extends SearchAction } while ($count); return $result; } + + function isReadOnly() + { + return true; + } } diff --git a/actions/noticesearchrss.php b/actions/noticesearchrss.php index c1a1c2c67..7172977ee 100644 --- a/actions/noticesearchrss.php +++ b/actions/noticesearchrss.php @@ -95,4 +95,9 @@ class NoticesearchrssAction extends Rss10Action { return null; } + + function isReadOnly() + { + return true; + } } diff --git a/actions/nudge.php b/actions/nudge.php index ca6fd3761..ca7947f5a 100644 --- a/actions/nudge.php +++ b/actions/nudge.php @@ -122,5 +122,10 @@ class NudgeAction extends Action // XXX: notify by SMS } } + + function isReadOnly() + { + return true; + } } diff --git a/actions/openidlogin.php b/actions/openidlogin.php index ec5361c8b..7a267a2bd 100644 --- a/actions/openidlogin.php +++ b/actions/openidlogin.php @@ -90,16 +90,27 @@ class OpenidloginAction extends Action function showContent() { $formaction = common_local_url('openidlogin'); $this->elementStart('form', array('method' => 'post', - 'id' => 'openidlogin', + 'id' => 'form_openid_login', + 'class' => 'form_settings', 'action' => $formaction)); + $this->elementStart('fieldset'); + $this->element('legend', null, _('OpenID login')); $this->hidden('token', common_session_token()); + + $this->elementStart('ul', 'form_data'); + $this->elementStart('li'); $this->input('openid_url', _('OpenID URL'), $this->openid_url, _('Your OpenID URL')); + $this->elementEnd('li'); + $this->elementStart('li', array('id' => 'settings_rememberme')); $this->checkbox('rememberme', _('Remember me'), false, _('Automatically login in the future; ' . 'not for shared computers!')); + $this->elementEnd('li'); + $this->elementEnd('ul'); $this->submit('submit', _('Login')); + $this->elementEnd('fieldset'); $this->elementEnd('form'); } diff --git a/actions/opensearch.php b/actions/opensearch.php index d7705972f..7709249bb 100644 --- a/actions/opensearch.php +++ b/actions/opensearch.php @@ -83,5 +83,10 @@ class OpensearchAction extends Action $this->elementEnd('OpenSearchDescription'); common_end_xml(); } + + function isReadOnly() + { + return true; + } } diff --git a/actions/peoplesearch.php b/actions/peoplesearch.php index 3c672c940..615201c46 100644 --- a/actions/peoplesearch.php +++ b/actions/peoplesearch.php @@ -109,5 +109,10 @@ class PeopleSearchResults extends ProfileList { return preg_replace($this->pattern, '<strong>\\1</strong>', htmlspecialchars($text)); } + + function isReadOnly() + { + return true; + } } diff --git a/actions/public.php b/actions/public.php index f5380589a..cfdc99bb3 100644 --- a/actions/public.php +++ b/actions/public.php @@ -56,6 +56,11 @@ class PublicAction extends Action var $page = null; + function isReadOnly() + { + return true; + } + /** * Read and validate arguments * @@ -200,8 +205,8 @@ class PublicAction extends Action function showSections() { - $top = new TopPostersSection($this); - $top->show(); + // $top = new TopPostersSection($this); + // $top->show(); $pop = new PopularNoticeSection($this); $pop->show(); $gbp = new GroupsByPostsSection($this); diff --git a/actions/publicrss.php b/actions/publicrss.php index 844c334be..c35877997 100644 --- a/actions/publicrss.php +++ b/actions/publicrss.php @@ -102,5 +102,10 @@ class PublicrssAction extends Rss10Action { // nop } + + function isReadOnly() + { + return true; + } } diff --git a/actions/replies.php b/actions/replies.php index ea8ef4764..5777d17fd 100644 --- a/actions/replies.php +++ b/actions/replies.php @@ -191,4 +191,9 @@ class RepliesAction extends Action $this->page, 'replies', array('nickname' => $this->user->nickname)); } + + function isReadOnly() + { + return true; + } } diff --git a/actions/repliesrss.php b/actions/repliesrss.php index 48c4fa255..985318bf1 100644 --- a/actions/repliesrss.php +++ b/actions/repliesrss.php @@ -82,4 +82,9 @@ class RepliesrssAction extends Rss10Action $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); return ($avatar) ? $avatar->url : null; } + + function isReadOnly() + { + return true; + } } diff --git a/actions/showmessage.php b/actions/showmessage.php index 289414153..572a71739 100644 --- a/actions/showmessage.php +++ b/actions/showmessage.php @@ -176,4 +176,9 @@ class ShowmessageAction extends MailboxAction { return ''; } -}
\ No newline at end of file + + function isReadOnly() + { + return true; + } +} diff --git a/actions/showstream.php b/actions/showstream.php index 2fd56ad2e..c1ef8ba52 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -60,6 +60,11 @@ class ShowstreamAction extends Action var $page = null; var $profile = null; + function isReadOnly() + { + return true; + } + function title() { if ($this->page == 1) { diff --git a/actions/subscribers.php b/actions/subscribers.php index be9df2b12..fb8733c77 100644 --- a/actions/subscribers.php +++ b/actions/subscribers.php @@ -103,4 +103,9 @@ class SubscribersList extends ProfileList 'nickname' => $this->owner->nickname)); $bf->show(); } + + function isReadOnly() + { + return true; + } } diff --git a/actions/tagrss.php b/actions/tagrss.php index b0227ab39..b4c2dcdff 100644 --- a/actions/tagrss.php +++ b/actions/tagrss.php @@ -66,4 +66,9 @@ class TagrssAction extends Rss10Action 'description' => sprintf(_('Microblog tagged with %s'), $tagname)); return $c; } + + function isReadOnly() + { + return true; + } } diff --git a/actions/usergroups.php b/actions/usergroups.php index 20f2e5a75..748585e1d 100644 --- a/actions/usergroups.php +++ b/actions/usergroups.php @@ -52,6 +52,11 @@ class UsergroupsAction extends Action var $page = null; var $profile = null; + function isReadOnly() + { + return true; + } + function title() { if ($this->page == 1) { diff --git a/actions/userrss.php b/actions/userrss.php index c1f2321ee..04855ccca 100644 --- a/actions/userrss.php +++ b/actions/userrss.php @@ -94,5 +94,10 @@ class UserrssAction extends Rss10Action header('X-SUP-ID: '.$url); parent::initRss($limit); } + + function isReadOnly() + { + return true; + } } |