2008-05-28 19:27:07 +01:00
|
|
|
<?php
|
2009-01-20 20:29:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Documentation action.
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* @category Action
|
|
|
|
* @package Laconica
|
|
|
|
* @author Evan Prodromou <evan@controlyourself.ca>
|
|
|
|
* @author Robin Millette <millette@controlyourself.ca>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
|
|
|
* @link http://laconi.ca/
|
|
|
|
*
|
2008-05-28 19:27:07 +01:00
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, 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/>.
|
|
|
|
*/
|
|
|
|
|
2009-01-20 20:29:31 +00:00
|
|
|
if (!defined('LACONICA')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Documentation class.
|
|
|
|
*
|
|
|
|
* @category Action
|
|
|
|
* @package Laconica
|
|
|
|
* @author Evan Prodromou <evan@controlyourself.ca>
|
|
|
|
* @author Robin Millette <millette@controlyourself.ca>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
|
|
|
* @link http://laconi.ca/
|
|
|
|
|
2008-05-28 19:27:07 +01:00
|
|
|
|
2009-01-20 20:29:31 +00:00
|
|
|
*/
|
2008-12-23 19:49:23 +00:00
|
|
|
class DocAction extends Action
|
|
|
|
{
|
2009-01-20 20:29:31 +00:00
|
|
|
var $filename;
|
|
|
|
var $title;
|
2008-05-28 19:27:07 +01:00
|
|
|
|
2009-01-20 20:29:31 +00:00
|
|
|
/**
|
|
|
|
* Class handler.
|
|
|
|
*
|
|
|
|
* @param array $args array of arguments
|
|
|
|
*
|
|
|
|
* @return nothing
|
|
|
|
*/
|
2008-12-23 19:33:23 +00:00
|
|
|
function handle($args)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
parent::handle($args);
|
2009-01-20 20:29:31 +00:00
|
|
|
$this->title = $this->trimmed('title');
|
|
|
|
$this->filename = INSTALLDIR.'/doc/'.$this->title;
|
|
|
|
if (!file_exists($this->filename)) {
|
2009-01-15 23:03:38 +00:00
|
|
|
$this->clientError(_('No such document.'));
|
2008-12-23 19:19:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-01-20 20:29:31 +00:00
|
|
|
$this->showPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display content.
|
|
|
|
*
|
|
|
|
* @return nothing
|
|
|
|
*/
|
|
|
|
function showContent()
|
|
|
|
{
|
|
|
|
$c = file_get_contents($this->filename);
|
2008-12-23 19:19:07 +00:00
|
|
|
$output = common_markup_to_html($c);
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->raw($output);
|
2009-01-20 20:29:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Page title.
|
|
|
|
*
|
|
|
|
* @return page title
|
|
|
|
*/
|
|
|
|
function title()
|
|
|
|
{
|
|
|
|
return ucfirst($this->title);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-06-30 18:03:42 +01:00
|
|
|
}
|
2009-01-20 20:29:31 +00:00
|
|
|
|