diff options
author | Andrew Manning <andrewmanning@grid.reticu.li> | 2017-08-25 11:32:18 +0000 |
---|---|---|
committer | Andrew Manning <andrewmanning@grid.reticu.li> | 2017-08-25 11:32:18 +0000 |
commit | 75f3e9202e191486b8c9079b08cc6de4e1251b8d (patch) | |
tree | 6cb75e7683e9309dab509395d8168fd56aecc35f | |
parent | 90ec3340e44a3d3c69779f0db33ee49e864f326d (diff) | |
download | volse-hubzilla-75f3e9202e191486b8c9079b08cc6de4e1251b8d.tar.gz volse-hubzilla-75f3e9202e191486b8c9079b08cc6de4e1251b8d.tar.bz2 volse-hubzilla-75f3e9202e191486b8c9079b08cc6de4e1251b8d.zip |
Removed duplicated table of contents (TOC) in Help pages by breaking hierarchical TOC loading.
-rw-r--r-- | Zotlabs/Widget/Helpindex.php | 2 | ||||
-rw-r--r-- | include/help.php | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/Zotlabs/Widget/Helpindex.php b/Zotlabs/Widget/Helpindex.php index 8299cf16a..6c8748194 100644 --- a/Zotlabs/Widget/Helpindex.php +++ b/Zotlabs/Widget/Helpindex.php @@ -25,6 +25,7 @@ class Helpindex { // TODO: Implement support for translations in hierarchical table of content files + /* if(argc() > 2) { $path = ''; for($x = 1; $x < argc(); $x ++) { @@ -36,6 +37,7 @@ class Helpindex { $levels[] = preg_replace('/\<ul(.*?)\>/','<ul class="nav nav-pills flex-column">',$y); } } + */ if($level_0) $o .= $level_0; diff --git a/include/help.php b/include/help.php index ef6b77e12..02c3cb8e4 100644 --- a/include/help.php +++ b/include/help.php @@ -28,16 +28,22 @@ function get_help_content($tocpath = false) { } if($path) { + $title = basename($path); if(! $tocpath) \App::$page['title'] = t('Help:') . ' ' . ucwords(str_replace('-',' ',notags($title))); + // Check that there is a "toc" or "sitetoc" located at the specified path. + // If there is not, then there was not a translation of the table of contents + // available and so default back to the English TOC at /doc/toc.{html,bb,md} + // TODO: This is incompatible with the hierarchical TOC construction + // defined in /Zotlabs/Widget/Helpindex.php. if($tocpath !== false && load_doc_file('doc/' . $path . '.md') === '' && load_doc_file('doc/' . $path . '.bb') === '' && load_doc_file('doc/' . $path . '.html') === '' ) { - $path = 'toc'; + $path = $title; } $text = load_doc_file('doc/' . $path . '.md'); |