aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Wiki.php
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-05-28 14:11:36 -0400
committerAndrew Manning <tamanning@zoho.com>2016-05-28 14:11:36 -0400
commit819683a073f85b05807d6c936a2b746296fc8de4 (patch)
treedf35304b771fd14bfa1ee25e58264b501415bf35 /Zotlabs/Module/Wiki.php
parent7393dccde816bafca2e3efe534fae56339e2c536 (diff)
downloadvolse-hubzilla-819683a073f85b05807d6c936a2b746296fc8de4.tar.gz
volse-hubzilla-819683a073f85b05807d6c936a2b746296fc8de4.tar.bz2
volse-hubzilla-819683a073f85b05807d6c936a2b746296fc8de4.zip
Show page content by default. Hide page controls where appropriate. Fix sandbox text format.
Diffstat (limited to 'Zotlabs/Module/Wiki.php')
-rw-r--r--Zotlabs/Module/Wiki.php12
1 files changed, 10 insertions, 2 deletions
diff --git a/Zotlabs/Module/Wiki.php b/Zotlabs/Module/Wiki.php
index 76c07f2bc..a53cb3f6a 100644
--- a/Zotlabs/Module/Wiki.php
+++ b/Zotlabs/Module/Wiki.php
@@ -63,12 +63,14 @@ class Wiki extends \Zotlabs\Web\Controller {
}
if(argc()<3) {
$wikiheader = t('Wiki Sandbox');
- $content = '# Wiki Sandbox\nContent you **edit** and **preview** here *will not be saved*.';
+ $content = '"# Wiki Sandbox\n\nContent you **edit** and **preview** here *will not be saved*."';
$hide_editor = false;
+ $showPageControls = false;
} elseif (argc()<4) {
$wikiheader = rawurldecode(argv(2)); // show wiki name
$content = '';
- $hide_editor = true;
+ $hide_editor = true;
+ $showPageControls = true;
} elseif (argc()<5) {
$wikiheader = rawurldecode(argv(2)) . ': ' . rawurldecode(argv(3)); // show wiki name and page
$p = wiki_get_page_content(array('wiki_resource_id' => $resource_id, 'page' => argv(3)));
@@ -78,17 +80,23 @@ class Wiki extends \Zotlabs\Web\Controller {
}
$content = $p['content'];
$hide_editor = false;
+ $showPageControls = true;
}
+ $parsedown = new Parsedown();
+ $renderedContent = $parsedown->text(json_decode($content));
+
$o .= replace_macros(get_markup_template('wiki.tpl'),array(
'$wikiheader' => $wikiheader,
'$hideEditor' => $hide_editor,
+ '$showPageControls' => $showPageControls,
'$channel' => $channel['channel_address'],
'$resource_id' => $resource_id,
'$lockstate' => $x['lockstate'],
'$acl' => $x['acl'],
'$bang' => $x['bang'],
'$content' => $content,
+ '$renderedContent' => $renderedContent,
'$wikiName' => array('wikiName', t('Enter the name of your new wiki:'), '', ''),
'$pageName' => array('pageName', t('Enter the name of the new page:'), '', '')
));