mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-21 04:03:00 +00:00
Add MPL 2.0 short header to core code files
This commit is contained in:
parent
73f909141d
commit
cfd087d919
65 changed files with 270 additions and 16 deletions
|
@ -1,4 +1,7 @@
|
|||
<?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
|
||||
define("PEPPERMINTY_WIKI_BUILD", true);
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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 */
|
||||
$start_time = microtime(true);
|
||||
mb_internal_encoding("UTF-8");
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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
|
||||
* ================
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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. */
|
||||
$version = "{version}";
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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.
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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:
|
||||
// - doesn't exist already
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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();
|
||||
// Make sure that the login cookie lasts beyond the end of the user's session
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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/. */
|
||||
|
||||
|
||||
|
||||
////////////////////
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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 /////
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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 //////////////////////
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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.
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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 ///
|
||||
$env->page = $_GET["page"];
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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/. */
|
||||
|
||||
|
||||
|
||||
//////////////////////////////////////
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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/. */
|
||||
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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 = [
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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/. */
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////
|
||||
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<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" />
|
||||
<title>Pepperminty Wiki Download</title>
|
||||
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
<?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");
|
||||
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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.
|
||||
* @apiVersion 0.20.0
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
<?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");
|
||||
|
||||
|
|
|
@ -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([
|
||||
"name" => "Password hashing action",
|
||||
"version" => "0.7",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Page protection",
|
||||
"version" => "0.2.1",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Random Page",
|
||||
"version" => "0.3",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Raw page source",
|
||||
"version" => "0.8",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "API status",
|
||||
"version" => "0.1",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Sidebar",
|
||||
"version" => "0.3.2",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Command-line interface",
|
||||
"version" => "0.1.1",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Page Comments",
|
||||
"version" => "0.3.3",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "First run wizard",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Settings GUI",
|
||||
"version" => "0.1.7",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Page History",
|
||||
"version" => "0.4.2",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Interwiki links",
|
||||
"version" => "0.1.1",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Reading time estimator",
|
||||
"version" => "0.2",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Recent Changes",
|
||||
"version" => "0.5",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Redirect pages",
|
||||
"version" => "0.3.2",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Did you mean? support",
|
||||
"version" => "0.1.1",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Search",
|
||||
"version" => "0.13.2",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Similar Pages",
|
||||
"version" => "0.1",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Statistics",
|
||||
"version" => "0.4.3",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Theme Gallery",
|
||||
"version" => "0.4.1",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Uploader",
|
||||
"version" => "0.7",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "User Preferences",
|
||||
"version" => "0.4.1",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "User Organiser",
|
||||
"version" => "0.1.1",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "User watchlists",
|
||||
"version" => "0.1.3",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Library: Search engine",
|
||||
"version" => "0.13.2",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Library: Storage box",
|
||||
"version" => "0.13",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Credits",
|
||||
"version" => "0.7.12",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Debug Information",
|
||||
"version" => "0.4",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Page deleter",
|
||||
"version" => "0.10.2",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Page editor",
|
||||
"version" => "0.17.9",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Export",
|
||||
"version" => "0.5.1",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Help page",
|
||||
"version" => "0.10.1",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Page list",
|
||||
"version" => "0.11.4",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Login",
|
||||
"version" => "0.9.6",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Logout",
|
||||
"version" => "0.6.1",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Page mover",
|
||||
"version" => "0.9.5",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Update",
|
||||
"version" => "0.6.2",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "User list",
|
||||
"version" => "0.1",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Page viewer",
|
||||
"version" => "0.16.10",
|
||||
|
|
|
@ -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([
|
||||
"name" => "Old Default Parser",
|
||||
"version" => "0.10.1",
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
<?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([
|
||||
"name" => "Parsedown",
|
||||
"version" => "0.11.3",
|
||||
|
|
3
pack.php
3
pack.php
|
@ -1,4 +1,7 @@
|
|||
<?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 to be called directly, it MUST have been called previously
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<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' />
|
||||
<title>peppermint.json configuration guide - Pepperminty Wiki</title>
|
||||
</head>
|
||||
|
|
Loading…
Reference in a new issue