2015-09-19 09:19:56 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>Pepperminty Wiki Download</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2017-07-04 17:30:44 +00:00
|
|
|
<h1><img src="https://starbeamrainbowlabs.com/images/logos/peppermint.png" class="logo" /> Pepperminty Wiki Downloader</h1>
|
2015-09-19 09:19:56 +00:00
|
|
|
|
|
|
|
<!-------------->
|
|
|
|
<h2>Module selector</h2>
|
2017-07-04 17:30:44 +00:00
|
|
|
<p>Choose the modules that you want to include in your installation of Pepperminty Wiki <?php echo(trim(file_get_contents("version"))); ?>.</p>
|
2015-09-19 09:19:56 +00:00
|
|
|
|
|
|
|
<p>
|
|
|
|
<button onclick="select(true);">Select All</button>
|
|
|
|
<button onclick="select(false);">Select None</button>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th></th>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Description</th>
|
|
|
|
<th>Author</th>
|
|
|
|
<th>Version</th>
|
|
|
|
<th style="width: 9rem;">Last Updated</th>
|
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
$module_index = json_decode(file_get_contents("module_index.json"));
|
|
|
|
foreach($module_index as $module)
|
|
|
|
{
|
2016-03-26 14:07:06 +00:00
|
|
|
$checkedText = (isset($module->optional) && $module->optional === true) ? "" : " checked";
|
2015-09-19 09:19:56 +00:00
|
|
|
echo("<tr>
|
2016-03-26 14:07:06 +00:00
|
|
|
<td><input type='checkbox' id='$module->id'$checkedText /></td>
|
2015-09-19 09:19:56 +00:00
|
|
|
<td><label for='$module->id'>$module->name</label></td>
|
|
|
|
<td>$module->description</td>
|
|
|
|
<td>$module->author</td>
|
|
|
|
<td>$module->version</td>
|
|
|
|
<td>" . date("D jS M Y", $module->lastupdate) . "</td>
|
|
|
|
</tr>");
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<button onclick="download()" class="largebutton">Download</button>
|
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
|
|
|
<p>
|
2017-07-04 17:30:44 +00:00
|
|
|
Pepperminty Wiki was built by <a href="https://starbeamrainbowlabs.com/"><img src="https://starbeamrainbowlabs.com/images/sbrl/SBRL-Small-64.png" class="logo" /> Starbeamrainbowlabs</a>. The code is available on <a href="//github.com/sbrl/pepperminty-wiki">GitHub</a>.
|
2015-09-19 09:19:56 +00:00
|
|
|
</p>
|
|
|
|
<p>
|
2017-07-04 17:30:44 +00:00
|
|
|
Other contributors: <a href="https://github.com/ikisler"><img src="https://avatars2.githubusercontent.com/u/12506147?v=3&s=32" class="logo" /> @ikisler</a>
|
2015-09-19 09:19:56 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<!------------------->
|
|
|
|
<link rel="stylesheet" href="//starbeamrainbowlabs.com/theme/basic.css" />
|
|
|
|
<style>
|
|
|
|
body { padding: 1rem; color: #442772; background-colour: #eee8f2; } /* syntaxtic gets confused sometimes */
|
2017-07-04 17:30:44 +00:00
|
|
|
a { color: #9e7eb4; }
|
2015-09-19 09:19:56 +00:00
|
|
|
.largebutton { font-size: 2rem; }
|
2017-07-04 17:30:44 +00:00
|
|
|
|
|
|
|
.logo { max-width: 1.25em; vertical-align: middle; }
|
2015-09-19 09:19:56 +00:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function select(state)
|
|
|
|
{
|
|
|
|
var checkboxes = document.querySelectorAll("input[type=checkbox]");
|
|
|
|
for(var i = 0; i < checkboxes.length; i++)
|
|
|
|
{
|
|
|
|
checkboxes[i].checked = state;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function download()
|
|
|
|
{
|
2015-09-20 11:37:21 +00:00
|
|
|
var url = "pack.php?web=true&modules=",
|
2015-09-19 09:19:56 +00:00
|
|
|
checkboxes = document.querySelectorAll("input[type=checkbox]");
|
|
|
|
for(var i = 0; i < checkboxes.length; i++)
|
|
|
|
{
|
|
|
|
url += encodeURIComponent(checkboxes[i].id) + ",";
|
|
|
|
}
|
|
|
|
location.href = url;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
2016-03-26 14:07:06 +00:00
|
|
|
</html>
|