diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-05-28 14:11:36 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-05-28 14:11:36 -0400 |
commit | 819683a073f85b05807d6c936a2b746296fc8de4 (patch) | |
tree | df35304b771fd14bfa1ee25e58264b501415bf35 | |
parent | 7393dccde816bafca2e3efe534fae56339e2c536 (diff) | |
download | volse-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.
-rw-r--r-- | Zotlabs/Module/Wiki.php | 12 | ||||
-rw-r--r-- | view/tpl/wiki.tpl | 14 |
2 files changed, 18 insertions, 8 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:'), '', '') )); diff --git a/view/tpl/wiki.tpl b/view/tpl/wiki.tpl index 26258e7c2..9610eea63 100644 --- a/view/tpl/wiki.tpl +++ b/view/tpl/wiki.tpl @@ -49,8 +49,9 @@ <div id="wiki-content-container" class="section-content-wrapper" {{if $hideEditor}}style="display: none;"{{/if}}> <ul class="nav nav-tabs" id="wiki-nav-tabs"> - <li class="active"><a data-toggle="tab" href="#edit-pane">Edit</a></li> - <li><a data-toggle="tab" href="#preview-pane" id="wiki-get-preview">Preview</a></li> + <li><a data-toggle="tab" href="#edit-pane">Edit</a></li> + <li class="active"><a data-toggle="tab" href="#preview-pane" id="wiki-get-preview">Preview</a></li> + {{if $showPageControls}} <li class="dropdown"> <a data-toggle="dropdown" class="dropdown-toggle" href="#">Page <b class="caret"></b></a> <ul class="dropdown-menu"> @@ -58,15 +59,16 @@ <li><a data-toggle="tab" href="#delete">Delete</a></li> </ul> </li> + {{/if}} </ul> <div class="tab-content" id="myTabContent"> - <div id="edit-pane" class="tab-pane fade in active"> + <div id="edit-pane" class="tab-pane fade"> <div id="ace-editor"></div> </div> - <div id="preview-pane" class="tab-pane fade"> + <div id="preview-pane" class="tab-pane fade in active"> <div id="wiki-preview" class="section-content-wrapper"> - + {{$renderedContent}} </div> </div> @@ -80,7 +82,7 @@ $(document).ready(function () { wiki_refresh_page_list(); // Show Edit tab first. Otherwise the Ace editor does not load. - $("#wiki-nav-tabs li:eq(0) a").tab('show'); + $("#wiki-nav-tabs li:eq(1) a").tab('show'); }); var editor = ace.edit("ace-editor"); |