41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
Icon="NerdPack.png"
|
|
Menu="NetworkServices"
|
|
Title="Nerd Pack"
|
|
---
|
|
<?php
|
|
include("/usr/local/emhttp/plugins/NerdPack/include/DownloadHelpers.php");
|
|
|
|
$pkg_repo = "https://api.github.com/repos/eschultz/unraid6-nerdpack/contents/packages";
|
|
$repo_file= "/boot/config/plugins/NerdPack/packages.json";
|
|
|
|
get_content_from_github($pkg_repo, $repo_file);
|
|
?>
|
|
|
|
<link type="text/css" rel="stylesheet" href="/webGui/styles/jquery.switchbutton.css">
|
|
|
|
<span class="status" style="display: inline-block; margin-right: 110px;margin-top: -45px;"><input id="removepkg" type="checkbox"></span>
|
|
<span class="status" style="display: inline-block;margin-top: -45px;"><input id="deletepkg" type="checkbox"></span>
|
|
<form markdown="1" id="package_form" name="package_settings" method="POST" action="/update.php" target="progressFrame">
|
|
<input type="hidden" name="#file" value="NerdPack/NerdPack.cfg" />
|
|
<table style="margin-top:-22px;" class="tablesorter" id="tblPackages">
|
|
<thead>
|
|
<tr>
|
|
<th> Name </th>
|
|
<th> Version </th>
|
|
<th> Size (kB) </th>
|
|
<th> Downloaded </th>
|
|
<th> Installed </th>
|
|
<th><input id="checkall" type="checkbox"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
: <input id="btnApply" type="button" value="Apply"><input type="button" value="Done" onClick="done()">
|
|
</form>
|
|
|
|
<script type="text/javascript" src="/plugins/NerdPack/javascript/jquery.NerdPack.js"></script>
|
|
<script type="text/javascript" src="/webGui/javascript/jquery.switchbutton.js"></script>
|