Add MPL 2.0 short header to core code files

This commit is contained in:
Starbeamrainbowlabs 2020-09-23 23:22:39 +01:00
parent 73f909141d
commit cfd087d919
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
65 changed files with 270 additions and 16 deletions

View File

@ -1,4 +1,7 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
// This is the Pepperminty Wiki build environment // This is the Pepperminty Wiki build environment
define("PEPPERMINTY_WIKI_BUILD", true); define("PEPPERMINTY_WIKI_BUILD", true);

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
/** The Pepperminty Wiki core */ /** The Pepperminty Wiki core */
$start_time = microtime(true); $start_time = microtime(true);
mb_internal_encoding("UTF-8"); mb_internal_encoding("UTF-8");

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
/* /*
* Pepperminty Wiki * Pepperminty Wiki
* ================ * ================

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
/** The version of Pepperminty Wiki currently running. */ /** The version of Pepperminty Wiki currently running. */
$version = "{version}"; $version = "{version}";

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
/** /**
* Get the actual absolute origin of the request sent by the user. * Get the actual absolute origin of the request sent by the user.

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
// If the extra data directory: // If the extra data directory:
// - doesn't exist already // - doesn't exist already

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
if(!is_cli()) session_start(); if(!is_cli()) session_start();
// Make sure that the login cookie lasts beyond the end of the user's session // Make sure that the login cookie lasts beyond the end of the user's session

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
// Execute each module's code // Execute each module's code

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
//////////////////// ////////////////////

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
/* /*
* Sort out the pageindex. Create it if it doesn't exist, and load + parse it * Sort out the pageindex. Create it if it doesn't exist, and load + parse it

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
////////////////////////// //////////////////////////
///// Page id system ///// ///// Page id system /////

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
////////////////////// Security and Consistency Measures ////////////////////// ////////////////////// Security and Consistency Measures //////////////////////
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
/** /**
* Renders the HTML page that is sent to the client. * Renders the HTML page that is sent to the client.

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
/// Finish setting up the environment object /// /// Finish setting up the environment object ///
$env->page = $_GET["page"]; $env->page = $_GET["page"];

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
////////////////////////////////////// //////////////////////////////////////

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
/* /*

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
$parsers = [ $parsers = [

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////

View File

@ -1,6 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at https://mozilla.org/MPL/2.0/. -->
<meta charset="utf-8" /> <meta charset="utf-8" />
<title>Pepperminty Wiki Download</title> <title>Pepperminty Wiki Download</title>

View File

@ -1,4 +1,7 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
require_once("JsonStorageBox.php"); require_once("JsonStorageBox.php");

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
/** /**
* Resolves a relative path against a given base directory. * Resolves a relative path against a given base directory.
* @apiVersion 0.20.0 * @apiVersion 0.20.0

View File

@ -1,4 +1,7 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
require("BkTree.php"); require("BkTree.php");

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Password hashing action", "name" => "Password hashing action",
"version" => "0.7", "version" => "0.7",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Page protection", "name" => "Page protection",
"version" => "0.2.1", "version" => "0.2.1",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Random Page", "name" => "Random Page",
"version" => "0.3", "version" => "0.3",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Raw page source", "name" => "Raw page source",
"version" => "0.8", "version" => "0.8",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "API status", "name" => "API status",
"version" => "0.1", "version" => "0.1",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Sidebar", "name" => "Sidebar",
"version" => "0.3.2", "version" => "0.3.2",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Command-line interface", "name" => "Command-line interface",
"version" => "0.1.1", "version" => "0.1.1",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Page Comments", "name" => "Page Comments",
"version" => "0.3.3", "version" => "0.3.3",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "First run wizard", "name" => "First run wizard",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Settings GUI", "name" => "Settings GUI",
"version" => "0.1.7", "version" => "0.1.7",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Page History", "name" => "Page History",
"version" => "0.4.2", "version" => "0.4.2",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Interwiki links", "name" => "Interwiki links",
"version" => "0.1.1", "version" => "0.1.1",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Reading time estimator", "name" => "Reading time estimator",
"version" => "0.2", "version" => "0.2",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Recent Changes", "name" => "Recent Changes",
"version" => "0.5", "version" => "0.5",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Redirect pages", "name" => "Redirect pages",
"version" => "0.3.2", "version" => "0.3.2",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Did you mean? support", "name" => "Did you mean? support",
"version" => "0.1.1", "version" => "0.1.1",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Search", "name" => "Search",
"version" => "0.13.2", "version" => "0.13.2",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Similar Pages", "name" => "Similar Pages",
"version" => "0.1", "version" => "0.1",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Statistics", "name" => "Statistics",
"version" => "0.4.3", "version" => "0.4.3",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Theme Gallery", "name" => "Theme Gallery",
"version" => "0.4.1", "version" => "0.4.1",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Uploader", "name" => "Uploader",
"version" => "0.7", "version" => "0.7",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "User Preferences", "name" => "User Preferences",
"version" => "0.4.1", "version" => "0.4.1",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "User Organiser", "name" => "User Organiser",
"version" => "0.1.1", "version" => "0.1.1",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "User watchlists", "name" => "User watchlists",
"version" => "0.1.3", "version" => "0.1.3",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Library: Search engine", "name" => "Library: Search engine",
"version" => "0.13.2", "version" => "0.13.2",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Library: Storage box", "name" => "Library: Storage box",
"version" => "0.13", "version" => "0.13",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Credits", "name" => "Credits",
"version" => "0.7.12", "version" => "0.7.12",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Debug Information", "name" => "Debug Information",
"version" => "0.4", "version" => "0.4",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Page deleter", "name" => "Page deleter",
"version" => "0.10.2", "version" => "0.10.2",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Page editor", "name" => "Page editor",
"version" => "0.17.9", "version" => "0.17.9",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Export", "name" => "Export",
"version" => "0.5.1", "version" => "0.5.1",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Help page", "name" => "Help page",
"version" => "0.10.1", "version" => "0.10.1",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Page list", "name" => "Page list",
"version" => "0.11.4", "version" => "0.11.4",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Login", "name" => "Login",
"version" => "0.9.6", "version" => "0.9.6",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Logout", "name" => "Logout",
"version" => "0.6.1", "version" => "0.6.1",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Page mover", "name" => "Page mover",
"version" => "0.9.5", "version" => "0.9.5",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Update", "name" => "Update",
"version" => "0.6.2", "version" => "0.6.2",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "User list", "name" => "User list",
"version" => "0.1", "version" => "0.1",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Page viewer", "name" => "Page viewer",
"version" => "0.16.10", "version" => "0.16.10",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Old Default Parser", "name" => "Old Default Parser",
"version" => "0.10.1", "version" => "0.10.1",

View File

@ -1,4 +1,8 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
register_module([ register_module([
"name" => "Parsedown", "name" => "Parsedown",
"version" => "0.11.3", "version" => "0.11.3",

View File

@ -1,4 +1,7 @@
<?php <?php
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
// If this script is called directly, it must be because of the downloader. // If this script is called directly, it must be because of the downloader.
// If this script is to be called directly, it MUST have been called previously // If this script is to be called directly, it MUST have been called previously

View File

@ -1,6 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at https://mozilla.org/MPL/2.0/. -->
<meta charset='utf-8' /> <meta charset='utf-8' />
<title>peppermint.json configuration guide - Pepperminty Wiki</title> <title>peppermint.json configuration guide - Pepperminty Wiki</title>
</head> </head>