From be9c822e17a361ec80e529216d098537ec2eb78a Mon Sep 17 00:00:00 2001 From: Paul Bryan-Smith Date: Wed, 28 Oct 2015 08:43:59 +0000 Subject: [PATCH] Bugfix: warning when editing page that doesn't have any tags --- build/index.php | 1348 ++++++++++++++++++++--------------------- module_index.json | 40 +- modules/page-edit.php | 2 +- start-server.bat | 2 +- 4 files changed, 696 insertions(+), 696 deletions(-) diff --git a/build/index.php b/build/index.php index 34427dc..069fa64 100644 --- a/build/index.php +++ b/build/index.php @@ -1,315 +1,315 @@ - * #8 - Rogue tag - nibreh - */ -// Initialises a new object to store your wiki's settings in. Please don't touch this. -$settings = new stdClass(); - -// The site's name. Used all over the place. -// Note that by default the session cookie is perfixed with a variant of the -// sitename so changing this will log everyone out! -$settings->sitename = "Pepperminty Wiki"; - -// A url that points to the site's logo. Leave blank to disable. When enabled -// the logo will be inserted next to the site name on every page. -$settings->logo_url = "//starbeamrainbowlabs.com/images/logos/peppermint.png"; - -// The side of the site name at which the logo should be placed. May be set to -// either "left" or "right". Only has an effect if the above is not set to an -// empty string. -$settings->logo_position = "left"; - -// The url from which to fetch updates. Defaults to the master (development) -// branch If there is sufficient demand, a separate stable branch will be -// created. Note that if you use the automatic updater currently it won't save -// your module choices. -// MAKE SURE THAT THIS POINTS TO A *HTTPS* URL, OTHERWISE SOMEONE COULD INJECT A VIRUS INTO YOUR WIKI -$settings->updateurl = "https://raw.githubusercontent.com/sbrl/pepperminty-wiki/master/index.php"; - -// The secret key used to perform 'dangerous' actions, like updating the wiki, -// and deleting pages. It is strongly advised that you change this! -$settings->sitesecret = "ed420502615bac9037f8f12abd4c9f02"; - -// Determined whether edit is enabled. Set to false to disable disting for all -// users (anonymous or otherwise). -$settings->editing = true; - -// The maximum number of characters allowed in a single page. The default is -// 135,000 characters, which is about 50 pages. -$settings->maxpagesize = 135000; - -// Whether page sources should be cleaned of HTML before rendering. If set to -// true any raw HTML will be escaped before rendering. Note that this shouldn't -// affect code blocks - they should alwys be escaped. It is STRONGLY -// recommended that you keep this option turned on, *ESPECIALLY* if you allow -// anonymous edits as no sanitizing what so ever is performed on the HTML. -// Also note that some parsers may override this setting and escape HTML -// sequences anyway. -$settings->clean_raw_html = true; - -// Determined whether users who aren't logged in are allowed to edit your wiki. -// Set to true to allow anonymous users to log in. -$settings->anonedits = false; - -// The name of the page that will act as the home page for the wiki. This page -// will be served if the user didn't specify a page. -$settings->defaultpage = "Main Page"; - -// The default action. This action will be performed if no other action is -// specified. It is recommended you set this to "view" - that way the user -// automatically views the default page (see above). -$settings->defaultaction = "view"; - -// The parser to use when rendering pages. Defaults to 'default', which is a -// modified version of slimdown, originally written by -// Johnny Broadway . -$settings->parser = "default"; - -// 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 -// 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. -$settings->users = [ - "admin" => "5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8", //password - "user" => "873ac9ffea4dd04fa719e8920cd6938f0c23cd678af330939cff53c3d2855f34" //cheese -]; - -// Whether to use the new sha3 hashing algorithm that was standardised on the -// 8th August 2015. Only works if you have strawbrary's sha3 extension -// installed. Get it here: https://github.com/strawbrary/php-sha3 -// Note: If you change this settings, make sure to update the password hashes -// above! Note that the hash action is aware of this option and will hash -// passwords appropriately based on this setting. -$settings->use_sha3 = false; - -// An array of usernames that are administrators. Administrators can delete and -// move pages. -$settings->admins = [ "admin" ]; - -// The string that is prepended before an admin's name on the nav bar. Defaults -// to a diamond shape (◆). -$settings->admindisplaychar = "◆"; - -// The string that is prepended a page's name in the page title if it is -// protected. Defaults to a lock symbol. -$settings->protectedpagechar = "🔒"; - -// Contact details for the site administrator. Since users can only be added by -// editing this file, people will need a contact address to use to ask for an -// account. Displayed at the bottom of the page, and will be appropriately -// obfusticated to deter spammers. -$settings->admindetails = [ - "name" => "Administrator", - "email" => "admin@localhost" -]; - -// Whether to only allow adminstrators to export the your wiki as a zip using -// the page-export module. -$settings->export_allow_only_admins = false; - -// Array of links and display text to display at the top of the site. -// Format: -// [ "Display Text", "Link" ] -// You can also use strings here and they will be printed as-is, except the -// following special strings: -// user-status Expands to the user's login information -// e.g. "Logged in as {name}. | Logout". -// e.g. "Browsing as Anonymous. | Login". -// -// search Expands to a search box. -// -// divider Expands to a divider to separate stuff. -// -// more Expands to the "More..." submenu. -$settings->nav_links = [ - "user-status", - [ "Home", "index.php" ], -// [ "Login", "index.php?action=login" ], - "search", - [ "Read", "index.php?page={page}" ], - [ "Edit", "index.php?action=edit&page={page}" ], - [ "Printable", "index.php?action=view&printable=yes&page={page}" ], - //"divider", - [ "All Pages", "index.php?action=list" ], - "menu" -]; -// An array of additional links in the above format that will be shown under -// "More" subsection. -$settings->nav_links_extra = [ - [ "Upload", "index.php?action=upload" ], - [ $settings->admindisplaychar . "Delete", "index.php?action=delete&page={page}" ], - [ $settings->admindisplaychar . "Move", "index.php?action=move&page={page}" ], - [ $settings->admindisplaychar . "Toggle Protection", "index.php?action=protect&page={page}" ] -]; - -// An array of links in the above format that will be shown at the bottom of -// the page. -$settings->nav_links_bottom = [ - [ "Credits", "index.php?action=credits" ], - [ "Help", "index.php?action=help" ] -]; - -// A message that will appear at the bottom of every page. May contain HTML. -$settings->footer_message = "All content is under this license. Please make sure that you read and understand the license, especially if you are thinking about copying some (or all) of this site's content, as it may restrict you from doing so."; - -// A message that will appear just before the submit button on the editing -// page. May contain HTML. -$settings->editing_message = "By submitting your edit, you are agreeing to release your changes under this license. Also note that if you don't want your work to be edited by other users of this site, please don't submit it here!"; - -// Whether to allow image uploads to the server. Currently disabled temporarily -// for security reasons while I finish writing the file uploader. -$settings->upload_enabled = true; - -// An array of mime types that are allowed to be uploaded. -$settings->upload_allowed_file_types = [ - "image/jpeg", - "image/png", - "image/gif", - "image/webp" -]; - -// The default file type for previews. Defaults to image/png. Also supports -// image/jpeg and image/webp. image/webp is a new image format that reduces -// image sizez by ~20%, but PHP still has some issues with invalid webp images. -$settings->preview_file_type = "image/png"; - -// The default size of preview images. -$settings->default_preview_size = 640; - -// The location of a file that maps mime types onto file extensions and vice -// versa. Used to generate the file extension for an uploaded file. Set to the -// default location of the mime.types file on Linux. If you aren't using linux, -// download this pastebin and point this setting at it instead: -// http://pastebin.com/mjM3zKjz -$settings->mime_extension_mappings_location = "/etc/mime.types"; - -// The minimum and maximum sizes of generated preview images in pixels. -$settings->min_preview_size = 1; -$settings->max_preview_size = 2048; - -// A string of css to include. Will be included in the of every page -// inside a