mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 16:33:00 +00:00
Bugfix get_subpages() and add subpage list to bottom of page
This commit is contained in:
parent
3fa1905070
commit
ce43496df3
7 changed files with 71 additions and 53 deletions
10
core.php
10
core.php
|
@ -77,20 +77,19 @@ function get_subpages($pageindex, $pagename)
|
||||||
$result = new stdClass();
|
$result = new stdClass();
|
||||||
|
|
||||||
$stem = "$pagename/";
|
$stem = "$pagename/";
|
||||||
$stem_length = stelen($stem);
|
$stem_length = strlen($stem);
|
||||||
foreach($pagenames as $entry)
|
foreach($pagenames as $entry => $value)
|
||||||
{
|
{
|
||||||
if(substr($entry, 0, $stem_length) == $stem)
|
if(substr($entry, 0, $stem_length) == $stem)
|
||||||
{
|
{
|
||||||
// We found a subpage
|
// We found a subpage
|
||||||
|
|
||||||
// Extract the subpage's key relative to the page that we are searching for
|
// Extract the subpage's key relative to the page that we are searching for
|
||||||
$subpage_relative_key = substr($item, $stem_length, -3);
|
$subpage_relative_key = substr($entry, $stem_length, -3);
|
||||||
// Calculate how many times removed the current subpage is from the current page. 0 = direct descendant.
|
// Calculate how many times removed the current subpage is from the current page. 0 = direct descendant.
|
||||||
$times_removed = substr_count($subpage_relative_key, "/");
|
$times_removed = substr_count($subpage_relative_key, "/");
|
||||||
$subpage_full_key = substr($item, 0, -3);
|
|
||||||
// Store the name of the subpage we found
|
// Store the name of the subpage we found
|
||||||
$result->$subpage_full_key = $times_removed;
|
$result->$entry = $times_removed;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -282,6 +281,7 @@ class page_renderer
|
||||||
public static $main_content_template = "{navigation-bar}
|
public static $main_content_template = "{navigation-bar}
|
||||||
<h1 class='sitename'>{sitename}</h1>
|
<h1 class='sitename'>{sitename}</h1>
|
||||||
{content}
|
{content}
|
||||||
|
<hr />
|
||||||
<footer>
|
<footer>
|
||||||
<p>Powered by Pepperminty Wiki, which was built by <a href='//starbeamrainbowlabs.com/'>Starbeamrainbowlabs</a>. Send bugs to 'bugs at starbeamrainbowlabs dot com' or open an issue <a href='//github.com/sbrl/Pepperminty-Wiki'>on github</a>.</p>
|
<p>Powered by Pepperminty Wiki, which was built by <a href='//starbeamrainbowlabs.com/'>Starbeamrainbowlabs</a>. Send bugs to 'bugs at starbeamrainbowlabs dot com' or open an issue <a href='//github.com/sbrl/Pepperminty-Wiki'>on github</a>.</p>
|
||||||
<p>Your local friendly administrators are {admins-name-list}.
|
<p>Your local friendly administrators are {admins-name-list}.
|
||||||
|
|
42
index.php
42
index.php
|
@ -54,6 +54,13 @@ $settings->defaultpage = "Main Page";
|
||||||
// automatically views the default page (see above).
|
// automatically views the default page (see above).
|
||||||
$settings->defaultaction = "view";
|
$settings->defaultaction = "view";
|
||||||
|
|
||||||
|
// Whether to show a list of subpages at the bottom of the page.
|
||||||
|
$settings->show_subpages = true;
|
||||||
|
|
||||||
|
// The depth to which we should display when listing subpages at the bottom of
|
||||||
|
// the page.
|
||||||
|
$settings->subpages_display_depth = 3;
|
||||||
|
|
||||||
// An array of usernames and passwords - passwords should be hashed with
|
// An array of usernames and passwords - passwords should be hashed with
|
||||||
// sha256. Put one user / password on each line, remembering the comma at the
|
// sha256. Put one user / password on each line, remembering the comma at the
|
||||||
// end. The last user in the list doesn't need a comma after their details though.
|
// end. The last user in the list doesn't need a comma after their details though.
|
||||||
|
@ -232,20 +239,19 @@ function get_subpages($pageindex, $pagename)
|
||||||
$result = new stdClass();
|
$result = new stdClass();
|
||||||
|
|
||||||
$stem = "$pagename/";
|
$stem = "$pagename/";
|
||||||
$stem_length = stelen($stem);
|
$stem_length = strlen($stem);
|
||||||
foreach($pagenames as $entry)
|
foreach($pagenames as $entry => $value)
|
||||||
{
|
{
|
||||||
if(substr($entry, 0, $stem_length) == $stem)
|
if(substr($entry, 0, $stem_length) == $stem)
|
||||||
{
|
{
|
||||||
// We found a subpage
|
// We found a subpage
|
||||||
|
|
||||||
// Extract the subpage's key relative to the page that we are searching for
|
// Extract the subpage's key relative to the page that we are searching for
|
||||||
$subpage_relative_key = substr($item, $stem_length, -3);
|
$subpage_relative_key = substr($entry, $stem_length, -3);
|
||||||
// Calculate how many times removed the current subpage is from the current page. 0 = direct descendant.
|
// Calculate how many times removed the current subpage is from the current page. 0 = direct descendant.
|
||||||
$times_removed = substr_count($subpage_relative_key, "/");
|
$times_removed = substr_count($subpage_relative_key, "/");
|
||||||
$subpage_full_key = substr($item, 0, -3);
|
|
||||||
// Store the name of the subpage we found
|
// Store the name of the subpage we found
|
||||||
$result->$subpage_full_key = $times_removed;
|
$result->$entry = $times_removed;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -437,6 +443,7 @@ class page_renderer
|
||||||
public static $main_content_template = "{navigation-bar}
|
public static $main_content_template = "{navigation-bar}
|
||||||
<h1 class='sitename'>{sitename}</h1>
|
<h1 class='sitename'>{sitename}</h1>
|
||||||
{content}
|
{content}
|
||||||
|
<hr />
|
||||||
<footer>
|
<footer>
|
||||||
<p>Powered by Pepperminty Wiki, which was built by <a href='//starbeamrainbowlabs.com/'>Starbeamrainbowlabs</a>. Send bugs to 'bugs at starbeamrainbowlabs dot com' or open an issue <a href='//github.com/sbrl/Pepperminty-Wiki'>on github</a>.</p>
|
<p>Powered by Pepperminty Wiki, which was built by <a href='//starbeamrainbowlabs.com/'>Starbeamrainbowlabs</a>. Send bugs to 'bugs at starbeamrainbowlabs dot com' or open an issue <a href='//github.com/sbrl/Pepperminty-Wiki'>on github</a>.</p>
|
||||||
<p>Your local friendly administrators are {admins-name-list}.
|
<p>Your local friendly administrators are {admins-name-list}.
|
||||||
|
@ -694,7 +701,6 @@ register_module([
|
||||||
add_action("credits", function() {
|
add_action("credits", function() {
|
||||||
global $settings, $version, $pageindex, $modules;
|
global $settings, $version, $pageindex, $modules;
|
||||||
|
|
||||||
|
|
||||||
$credits = [
|
$credits = [
|
||||||
"Code" => [
|
"Code" => [
|
||||||
"author" => "Starbeamrainbowlabs",
|
"author" => "Starbeamrainbowlabs",
|
||||||
|
@ -1269,7 +1275,7 @@ register_module([
|
||||||
|
|
||||||
register_module([
|
register_module([
|
||||||
"name" => "Page viewer",
|
"name" => "Page viewer",
|
||||||
"version" => "0.7",
|
"version" => "0.8",
|
||||||
"author" => "Starbeamrainbowlabs",
|
"author" => "Starbeamrainbowlabs",
|
||||||
"description" => "Allows you to view pages. You should include this one.",
|
"description" => "Allows you to view pages. You should include this one.",
|
||||||
"id" => "page-view",
|
"id" => "page-view",
|
||||||
|
@ -1284,7 +1290,7 @@ register_module([
|
||||||
if($settings->editing)
|
if($settings->editing)
|
||||||
{
|
{
|
||||||
//editing is enabled, redirect to the editing page
|
//editing is enabled, redirect to the editing page
|
||||||
http_response_code(307); //temporary redirect
|
http_response_code(307); // Temporary redirect
|
||||||
header("location: index.php?action=edit&newpage=yes&page=" . rawurlencode($page));
|
header("location: index.php?action=edit&newpage=yes&page=" . rawurlencode($page));
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
@ -1302,6 +1308,26 @@ register_module([
|
||||||
|
|
||||||
$content .= $parse_page_source(file_get_contents("$page.md"));
|
$content .= $parse_page_source(file_get_contents("$page.md"));
|
||||||
|
|
||||||
|
if($settings->show_subpages)
|
||||||
|
{
|
||||||
|
$subpages = get_object_vars(get_subpages($pageindex, $page));
|
||||||
|
|
||||||
|
if(count($subpages) > 0)
|
||||||
|
{
|
||||||
|
$content .= "<hr />";
|
||||||
|
$content .= "Subpages: ";
|
||||||
|
foreach($subpages as $subpage => $times_removed)
|
||||||
|
{
|
||||||
|
if($times_removed <= $settings->subpages_display_depth)
|
||||||
|
{
|
||||||
|
$content .= "<a href='?action=view&page=" . rawurlencode($subpage) . "'>$subpage</a>, ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Remove the last comma from the content
|
||||||
|
$content = substr($content, 0, -2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$content .= "\n\t\t<!-- Took " . (microtime(true) - $parsing_start) . " seconds to parse page source -->\n";
|
$content .= "\n\t\t<!-- Took " . (microtime(true) - $parsing_start) . " seconds to parse page source -->\n";
|
||||||
|
|
||||||
if(isset($_GET["printable"]) and $_GET["printable"] === "yes")
|
if(isset($_GET["printable"]) and $_GET["printable"] === "yes")
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"author": "Starbeamrainbowlabs",
|
"author": "Starbeamrainbowlabs",
|
||||||
"description": "Adds the credits page. You *must* have this module :D",
|
"description": "Adds the credits page. You *must* have this module :D",
|
||||||
"id": "page-credits",
|
"id": "page-credits",
|
||||||
"lastupdate": 1436886691
|
"lastupdate": 1436886734
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Page deleter",
|
"name": "Page deleter",
|
||||||
|
@ -81,11 +81,11 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Page viewer",
|
"name": "Page viewer",
|
||||||
"version": "0.7",
|
"version": "0.8",
|
||||||
"author": "Starbeamrainbowlabs",
|
"author": "Starbeamrainbowlabs",
|
||||||
"description": "Allows you to view pages. You should include this one.",
|
"description": "Allows you to view pages. You should include this one.",
|
||||||
"id": "page-view",
|
"id": "page-view",
|
||||||
"lastupdate": 1432719098
|
"lastupdate": 1436889549
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Default Parser",
|
"name": "Default Parser",
|
||||||
|
|
|
@ -9,7 +9,6 @@ register_module([
|
||||||
add_action("credits", function() {
|
add_action("credits", function() {
|
||||||
global $settings, $version, $pageindex, $modules;
|
global $settings, $version, $pageindex, $modules;
|
||||||
|
|
||||||
|
|
||||||
$credits = [
|
$credits = [
|
||||||
"Code" => [
|
"Code" => [
|
||||||
"author" => "Starbeamrainbowlabs",
|
"author" => "Starbeamrainbowlabs",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
register_module([
|
register_module([
|
||||||
"name" => "Page viewer",
|
"name" => "Page viewer",
|
||||||
"version" => "0.7",
|
"version" => "0.8",
|
||||||
"author" => "Starbeamrainbowlabs",
|
"author" => "Starbeamrainbowlabs",
|
||||||
"description" => "Allows you to view pages. You should include this one.",
|
"description" => "Allows you to view pages. You should include this one.",
|
||||||
"id" => "page-view",
|
"id" => "page-view",
|
||||||
|
@ -16,7 +16,7 @@ register_module([
|
||||||
if($settings->editing)
|
if($settings->editing)
|
||||||
{
|
{
|
||||||
//editing is enabled, redirect to the editing page
|
//editing is enabled, redirect to the editing page
|
||||||
http_response_code(307); //temporary redirect
|
http_response_code(307); // Temporary redirect
|
||||||
header("location: index.php?action=edit&newpage=yes&page=" . rawurlencode($page));
|
header("location: index.php?action=edit&newpage=yes&page=" . rawurlencode($page));
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
@ -34,6 +34,26 @@ register_module([
|
||||||
|
|
||||||
$content .= $parse_page_source(file_get_contents("$page.md"));
|
$content .= $parse_page_source(file_get_contents("$page.md"));
|
||||||
|
|
||||||
|
if($settings->show_subpages)
|
||||||
|
{
|
||||||
|
$subpages = get_object_vars(get_subpages($pageindex, $page));
|
||||||
|
|
||||||
|
if(count($subpages) > 0)
|
||||||
|
{
|
||||||
|
$content .= "<hr />";
|
||||||
|
$content .= "Subpages: ";
|
||||||
|
foreach($subpages as $subpage => $times_removed)
|
||||||
|
{
|
||||||
|
if($times_removed <= $settings->subpages_display_depth)
|
||||||
|
{
|
||||||
|
$content .= "<a href='?action=view&page=" . rawurlencode($subpage) . "'>$subpage</a>, ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Remove the last comma from the content
|
||||||
|
$content = substr($content, 0, -2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$content .= "\n\t\t<!-- Took " . (microtime(true) - $parsing_start) . " seconds to parse page source -->\n";
|
$content .= "\n\t\t<!-- Took " . (microtime(true) - $parsing_start) . " seconds to parse page source -->\n";
|
||||||
|
|
||||||
if(isset($_GET["printable"]) and $_GET["printable"] === "yes")
|
if(isset($_GET["printable"]) and $_GET["printable"] === "yes")
|
||||||
|
|
|
@ -51,6 +51,13 @@ $settings->defaultpage = "Main Page";
|
||||||
// automatically views the default page (see above).
|
// automatically views the default page (see above).
|
||||||
$settings->defaultaction = "view";
|
$settings->defaultaction = "view";
|
||||||
|
|
||||||
|
// Whether to show a list of subpages at the bottom of the page.
|
||||||
|
$settings->show_subpages = true;
|
||||||
|
|
||||||
|
// The depth to which we should display when listing subpages at the bottom of
|
||||||
|
// the page.
|
||||||
|
$settings->subpages_display_depth = 3;
|
||||||
|
|
||||||
// An array of usernames and passwords - passwords should be hashed with
|
// An array of usernames and passwords - passwords should be hashed with
|
||||||
// sha256. Put one user / password on each line, remembering the comma at the
|
// sha256. Put one user / password on each line, remembering the comma at the
|
||||||
// end. The last user in the list doesn't need a comma after their details though.
|
// end. The last user in the list doesn't need a comma after their details though.
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
<?php
|
|
||||||
$pageindex = json_decode(file_get_contents("./pageindex.json"));
|
|
||||||
|
|
||||||
function check_subpage_parents($pagename)
|
|
||||||
{
|
|
||||||
global $pageindex;
|
|
||||||
echo("pagename: $pagename\n");
|
|
||||||
// Save the new pageindex and return if there aren't any more parent pages to check
|
|
||||||
if(strpos($pagename, "/") === false)
|
|
||||||
{
|
|
||||||
file_put_contents("./pageindex.json", json_encode($pageindex, JSON_PRETTY_PRINT));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
$parent_pagename = substr($pagename, 0, strrpos($pagename, "/"));
|
|
||||||
$parent_page_filename = "$parent_pagename.md";
|
|
||||||
echo("parent page name: $parent_pagename, filename: $parent_page_filename\n");
|
|
||||||
if(!file_exists($parent_page_filename))
|
|
||||||
{
|
|
||||||
// This parent page doesn't exist! Create it and add it to the page index.
|
|
||||||
touch($parent_page_filename, 0);
|
|
||||||
|
|
||||||
$newentry = new stdClass();
|
|
||||||
$newentry->filename = $parent_page_filename;
|
|
||||||
$newentry->size = 0;
|
|
||||||
$newentry->lastmodified = 0;
|
|
||||||
$newentry->lasteditor = "none";
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
check_subpage_parents($parent_pagename);
|
|
||||||
}
|
|
||||||
|
|
||||||
check_subpage_parents("New Test\/New");
|
|
Loading…
Reference in a new issue