]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Trailing whitespace on lines
authorMike Cochrane <mikec@mikenz.geek.nz>
Thu, 10 Jul 2008 05:12:01 +0000 (01:12 -0400)
committerMike Cochrane <mikec@mikenz.geek.nz>
Thu, 10 Jul 2008 05:12:01 +0000 (01:12 -0400)
darcs-hash:20080710051201-533db-2d5fb38710ce1dedcb6e161b08e31611dbaba666.gz

actions/noticesearch.php
actions/noticesearchrss.php
actions/peoplesearch.php
lib/action.php

index d4de61a904653ee0b842f2875781c2c9163862d1..ab383fab436152cdb42f3f37a40275f9b0ede2d3 100644 (file)
@@ -25,18 +25,18 @@ define(NOTICES_PER_PAGE, 20);
 # XXX common parent for people and content search?
 
 class NoticesearchAction extends SearchAction {
-       
+
        function get_instructions() {
                return _('Search for notices on %%site.name%% by their contents. ' .
                                  'Separate search terms by spaces; they must be 3 characters or more.');
        }
-       
+
        function get_title() {
                return _('Text search');
        }
-       
+
        function show_results($q, $page) {
-               
+
                $notice = new Notice();
 
                # lcase it for comparison
@@ -44,7 +44,7 @@ class NoticesearchAction extends SearchAction {
                $notice->whereAdd('MATCH(content) against (\''.addslashes($q).'\')');
 
                # Ask for an extra to see if there's more.
-               
+
                $notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
 
                $cnt = $notice->find();
@@ -64,7 +64,7 @@ class NoticesearchAction extends SearchAction {
                } else {
                        common_element('p', 'error', _('No results'));
                }
-               
+
                common_pagination($page > 1, $cnt > NOTICES_PER_PAGE,
                                                  $page, 'noticesearch', array('q' => $q));
        }
@@ -81,9 +81,9 @@ class NoticesearchAction extends SearchAction {
                                                                                 'title' => _('Search Stream Feed')));
                }
        }
-       
+
        # XXX: refactor and combine with StreamAction::show_notice()
-       
+
        function show_notice($notice, $terms) {
                $profile = $notice->getProfile();
                # XXX: RDFa
@@ -127,7 +127,7 @@ class NoticesearchAction extends SearchAction {
                                                   _('in reply to...'));
                        common_text(')');
                }
-               common_element_start('a', 
+               common_element_start('a',
                                                         array('href' => common_local_url('newnotice',
                                                                                                                          array('replyto' => $profile->nickname)),
                                                                   'onclick' => 'doreply("'.$profile->nickname.'"); return false',
index 482fe6db9f85995ceaad7bb5347a23c9708a09dd..4e206c9a2549ab7b6caab7b29cb5ac747f1ddb89 100644 (file)
@@ -28,35 +28,35 @@ class NoticesearchrssAction extends Rss10Action {
        function init() {
                return true;
        }
-       
+
        function get_notices($limit=0) {
 
                $q = $this->trimmed('q');
                $notices = array();
-               
+
                $notice = new Notice();
 
                # lcase it for comparison
                $q = strtolower($q);
-               
+
                $notice->whereAdd('MATCH(content) against (\''.addslashes($q).'\')');
                $notice->orderBy('created DESC');
-               
+
                # Ask for an extra to see if there's more.
-               
+
                if ($limit != 0) {
                        $notice->limit(0, $limit);
                }
 
                $notice->find();
-               
+
                while ($notice->fetch()) {
                        $notices[] = clone($notice);
                }
-               
+
                return $notices;
        }
-       
+
        function get_channel() {
                global $config;
                $q = $this->trimmed('q');
@@ -66,7 +66,7 @@ class NoticesearchrssAction extends Rss10Action {
                                   'description' => sprintf(_('All updates matching search term "%s"'), $q));
                return $c;
        }
-       
+
        function get_image() {
                return NULL;
        }
index 308832429a63d4e35bfe7428e0f3ffe40700e419..323065d7a9520b35136be10801aa0d4b62dd1e6d 100644 (file)
@@ -23,7 +23,7 @@ require_once(INSTALLDIR.'/lib/searchaction.php');
 define(PROFILES_PER_PAGE, 10);
 
 class PeoplesearchAction extends SearchAction {
-       
+
        function get_instructions() {
                return _('Search for people on %%site.name%% by their name, location, or interests. ' .
                                  'Separate the terms by spaces; they must be 3 characters or more.');
@@ -32,18 +32,18 @@ class PeoplesearchAction extends SearchAction {
        function get_title() {
                return _('People search');
        }
-       
+
        function show_results($q, $page) {
-               
+
                $profile = new Profile();
 
                # lcase it for comparison
                $q = strtolower($q);
-               $profile->whereAdd('MATCH(nickname, fullname, location, bio, homepage) ' . 
+               $profile->whereAdd('MATCH(nickname, fullname, location, bio, homepage) ' .
                                                   'against (\''.addslashes($q).'\')');
 
                # Ask for an extra to see if there's more.
-               
+
                $profile->limit((($page-1)*PROFILES_PER_PAGE), PROFILES_PER_PAGE + 1);
 
                $cnt = $profile->find();
@@ -63,11 +63,11 @@ class PeoplesearchAction extends SearchAction {
                } else {
                        common_element('p', 'error', _('No results'));
                }
-               
+
                common_pagination($page > 1, $cnt > PROFILES_PER_PAGE,
                                                  $page, 'peoplesearch', array('q' => $q));
        }
-       
+
        function show_profile($profile, $terms) {
                common_element_start('li', array('class' => 'profile_single',
                                                                                 'id' => 'profile-' . $profile->id));
index d4b6743d0697d4f2a4965f6f9733860d42a9b9ee..5f452616618db48453cb009ac514469e007dfad9 100644 (file)
@@ -75,7 +75,7 @@ class Action { // lawsuit
                unset($args['action']);
                return common_local_url($action, $args);
        }
-       
+
        function nav_menu($menu) {
         $action = $this->trimmed('action');
         common_element_start('ul', array('id' => 'nav_views'));