]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
ConversationRepliesAction removed, Conversation is enough
authorMikael Nordfeldth <mmn@hethane.se>
Sun, 11 May 2014 19:05:25 +0000 (21:05 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Sun, 11 May 2014 19:05:25 +0000 (21:05 +0200)
actions/conversationreplies.php [deleted file]
lib/router.php
lib/threadednoticelist.php

diff --git a/actions/conversationreplies.php b/actions/conversationreplies.php
deleted file mode 100644 (file)
index 49c806f..0000000
+++ /dev/null
@@ -1,86 +0,0 @@
-<?php
-/**
- * Display a conversation in the browser
- *
- * PHP version 5
- *
- * @category Action
- * @package  StatusNet
- * @author   Evan Prodromou <evan@status.net>
- * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
- * @link     http://status.net/
- *
- * StatusNet - the distributed open-source microblogging tool
- * Copyright (C) 2009, StatusNet, Inc.
- *
- * 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/>.
- */
-
-if (!defined('STATUSNET') && !defined('LACONICA')) {
-    exit(1);
-}
-
-// XXX: not sure how to do paging yet,
-// so set a 60-notice limit
-
-require_once INSTALLDIR.'/lib/noticelist.php';
-
-/**
- * Conversation tree in the browser
- *
- * @category Action
- * @package  StatusNet
- * @author   Evan Prodromou <evan@status.net>
- * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
- * @link     http://status.net/
- */
-class ConversationRepliesAction extends ConversationAction
-{
-    function handle($args)
-    {
-        if ($this->boolean('ajax')) {
-            $this->showAjax();
-        } else {
-            parent::handle($args);
-        }
-    }
-
-    /**
-     * Show content.
-     *
-     * Display a hierarchical unordered list in the content area.
-     * Uses ConversationTree to do most of the heavy lifting.
-     *
-     * @return void
-     */
-    function showContent()
-    {
-        $ct = new FullThreadedNoticeList($this->notices, $this, $this->userProfile);
-
-        $cnt = $ct->show();
-    }
-
-    function showAjax()
-    {
-        $this->startHTML('text/xml;charset=utf-8');
-        $this->elementStart('head');
-        // TRANS: Title for conversation page.
-        $this->element('title', null, _m('TITLE','Notice'));
-        $this->elementEnd('head');
-        $this->elementStart('body');
-        $this->showContent();
-        $this->elementEnd('body');
-        $this->endHTML();
-    }
-}
index d04a37d69731de6346fd72104d74e2a6a02d35ce..32012bc729456394bda1e137bbf17ad262505caf 100644 (file)
@@ -252,9 +252,6 @@ class Router
             $m->connect('conversation/:id',
                         array('action' => 'conversation'),
                         array('id' => '[0-9]+'));
-            $m->connect('conversation/:id/replies',
-                        array('action' => 'conversationreplies'),
-                        array('id' => '[0-9]+'));
 
             $m->connect('message/new', array('action' => 'newmessage'));
             $m->connect('message/new?to=:to', array('action' => 'newmessage'), array('to' => Nickname::DISPLAY_FMT));
index 6d8570fbee6a5c422eeb186fae31e5ed755cec17..e8abeb74fc2048ae0d28abf10f0375e5e87e7b5b 100644 (file)
@@ -361,7 +361,7 @@ class ThreadedNoticeListMoreItem extends NoticeListItem
     function showMiniForm()
     {
         $id = $this->notice->conversation;
-        $url = common_local_url('conversationreplies', array('id' => $id));
+        $url = common_local_url('conversation', array('id' => $id));
 
         $n = Conversation::noticeCount($id) - 1;