forgot to remove old setup

This commit is contained in:
Jake Potrebic 2020-09-16 12:56:13 -07:00
parent 5bf2d594c7
commit 007dc2fec0
No known key found for this signature in database
GPG Key ID: 7C58557EC9C421F8
5 changed files with 0 additions and 224 deletions

View File

@ -1,56 +0,0 @@
$(function() {
var rowTemplate = "<tr id='version-%val%' class='version-add success'></tr>";
var versionTemplate = "<td>%val%<input type='hidden' value='%val%' name='versions'></td>";
var removeTemplate = "<button class='btn btn-danger remove-version' data-version='%val%'><span class='glyphicon glyphicon-remove'></span></button>";
$(".add-version").on('click', function(event) {
event.preventDefault();
var input = $("#" + CSS.escape($(event.currentTarget).data("input")));
var value = input.val();
if (value === '') {
return;
}
var table = $("#" + CSS.escape($(event.currentTarget).data("table")));
var existing = table.find('#version-' + CSS.escape(input.val()));
if (existing.length !== 0) {
existing.css('display', '');
input.val('');
return;
}
var row = $(rowTemplate.replace(/%val%/g, value));
row.append($(versionTemplate.replace(/%val%/g, value)));
var removeBtn = $(removeTemplate.replace(/%val%/g, value));
$("<td class='table-shrink'></td>").appendTo(row).append(removeBtn);
table.append(row);
removeBtn.on('click', onRemoveClick);
input.val('');
$(this).prop('disabled', true);
$(this).closest('form').find('.version-submit').prop('disabled', false);
});
$(".version-input").on('input', function(event) {
var btn = $("#" + CSS.escape($(this).data("button")));
if (typeof event.target.value === 'undefined' || event.target.value.trim() === '') {
btn.prop('disabled', true);
} else {
btn.prop('disabled', false);
}
});
$('.remove-version').on('click', onRemoveClick);
function onRemoveClick(event) {
event.preventDefault();
$("<input type='hidden' name='removedVersions' value='" + $(this).data('version') + "'>").appendTo(this);
var submitBtn = $(this).closest('form').find('.version-submit');
if ($(this).closest('tr').hasClass('version-add')) {
$(this).closest('tr').remove();
if ($(this).closest('table').find('version-add').length === 0) {
submitBtn.prop('disabled', true);
}
} else {
submitBtn.prop('disabled', false);
$(this).closest('tr').css('display', 'none');
}
}
});

View File

@ -1,20 +0,0 @@
Copyright Mathias Bynens <https://mathiasbynens.be/>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -1,106 +0,0 @@
/*! https://mths.be/cssescape v1.5.1 by @mathias | MIT license */
;(function(root, factory) {
// https://github.com/umdjs/umd/blob/master/returnExports.js
if (typeof exports == 'object') {
// For Node.js.
module.exports = factory(root);
} else if (typeof define == 'function' && define.amd) {
// For AMD. Register as an anonymous module.
define([], factory.bind(root, root));
} else {
// For browser globals (not exposing the function separately).
factory(root);
}
}(typeof global != 'undefined' ? global : this, function(root) {
if (root.CSS && root.CSS.escape) {
return root.CSS.escape;
}
// https://drafts.csswg.org/cssom/#serialize-an-identifier
var cssEscape = function(value) {
if (arguments.length == 0) {
throw new TypeError('`CSS.escape` requires an argument.');
}
var string = String(value);
var length = string.length;
var index = -1;
var codeUnit;
var result = '';
var firstCodeUnit = string.charCodeAt(0);
while (++index < length) {
codeUnit = string.charCodeAt(index);
// Note: theres no need to special-case astral symbols, surrogate
// pairs, or lone surrogates.
// If the character is NULL (U+0000), then the REPLACEMENT CHARACTER
// (U+FFFD).
if (codeUnit == 0x0000) {
result += '\uFFFD';
continue;
}
if (
// If the character is in the range [\1-\1F] (U+0001 to U+001F) or is
// U+007F, […]
(codeUnit >= 0x0001 && codeUnit <= 0x001F) || codeUnit == 0x007F ||
// If the character is the first character and is in the range [0-9]
// (U+0030 to U+0039), […]
(index == 0 && codeUnit >= 0x0030 && codeUnit <= 0x0039) ||
// If the character is the second character and is in the range [0-9]
// (U+0030 to U+0039) and the first character is a `-` (U+002D), […]
(
index == 1 &&
codeUnit >= 0x0030 && codeUnit <= 0x0039 &&
firstCodeUnit == 0x002D
)
) {
// https://drafts.csswg.org/cssom/#escape-a-character-as-code-point
result += '\\' + codeUnit.toString(16) + ' ';
continue;
}
if (
// If the character is the first character and is a `-` (U+002D), and
// there is no second character, […]
index == 0 &&
length == 1 &&
codeUnit == 0x002D
) {
result += '\\' + string.charAt(index);
continue;
}
// If the character is not handled by one of the above rules and is
// greater than or equal to U+0080, is `-` (U+002D) or `_` (U+005F), or
// is in one of the ranges [0-9] (U+0030 to U+0039), [A-Z] (U+0041 to
// U+005A), or [a-z] (U+0061 to U+007A), […]
if (
codeUnit >= 0x0080 ||
codeUnit == 0x002D ||
codeUnit == 0x005F ||
codeUnit >= 0x0030 && codeUnit <= 0x0039 ||
codeUnit >= 0x0041 && codeUnit <= 0x005A ||
codeUnit >= 0x0061 && codeUnit <= 0x007A
) {
// the character itself
result += string.charAt(index);
continue;
}
// Otherwise, the escaped character.
// https://drafts.csswg.org/cssom/#escape-a-character
result += '\\' + string.charAt(index);
}
return result;
};
if (!root.CSS) {
root.CSS = {};
}
root.CSS.escape = cssEscape;
return cssEscape;
}));

View File

@ -27,7 +27,6 @@ showFooter: Boolean = true, noContainer: Boolean = false, additionalMeta: Html =
<link rel="prefetch" href="<@hangar.url "build/font-awesome.css" />">
<link rel="prefetch" href="<@hangar.url "manifest/manifest.json" />">
<link rel="prefetch" href="<@hangar.url "lib/jquery/dist/jquery.min.js" />">
<link rel="prefetch" href="<@hangar.url "CSSescape/css.escape.js" />">
<title>${title} | Hangar</title>

View File

@ -6,8 +6,6 @@
<#assign scriptsVar>
<link rel="stylesheet" href="<@hangar.url "build/platform-version-table.css" />">
<script type="text/javascript" src="<@hangar.url "javascripts/platformVersions.js" />"></script>
<script type="text/javascript" src="<@hangar.url "CSSescape/css.escape.js" />"></script>
<script>
PLATFORMS = ${platformVersions}
</script>
@ -17,43 +15,4 @@
<#assign message><@spring.message "admin.platformVersions.title" /></#assign>
<@base.base title="${message}" additionalScripts=scriptsVar>
<div id="platform-version-table"></div>
<#--<#assign Platform=@helper["io.papermc.hangar.model.Platform"] />
&lt;#&ndash; @ftlvariable name="Platform" type="io.papermc.hangar.model.Platform" &ndash;&gt;
<#list platformVersions as platform, versions>
<@form.form action="${Routes.UPDATE_PLATFORM_VERSIONS.getRouteUrl(platform.ordinal()?string)}" method="POST" id="${platform.getName()?lower_case}-form" class="form-inline">
<@csrf.formField />
<h3>${platform.getName()}</h3>
<table class="table table-super-condensed table-striped table-bordered table-platform-versions" id="${platform.getName()?lower_case}-table">
<#list versions as v>
<tr id="version-${v}">
<td>
${v}
</td>
<td class="table-shrink">
<button class='btn btn-danger remove-version' data-version="${v}">
<span class='glyphicon glyphicon-remove'></span>
</button>
</td>
</tr>
<#else>
<i>No versions</i>
</#list>
</table>
<div class="form-group">
<label for="${platform.getName()?lower_case}-input" class="sr-only">Add Version</label>
<div class="input-group">
<div class="input-group-addon">Version</div>
<input type="text" class="form-control version-input" id="${platform.getName()?lower_case}-input" data-button="${platform.getName()?lower_case}-button">
</div>
</div>
<button class="btn btn-primary add-version" type="button" id="${platform.getName()?lower_case}-button" data-table="${platform.getName()?lower_case}-table" data-input="${platform.getName()?lower_case}-input" disabled>
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
</button>
<button class="btn btn-success version-submit" type="submit" disabled>
<span class="glyphicon glyphicon-floppy-disk"></span>
Save
</button>
<div style="width: 80%; border-top: #555555 solid 1px; margin-top: 10px;"></div>
</@form.form>
</#list>-->
</@base.base>