mirror of
https://github.com/9001/copyparty.git
synced 2026-06-21 21:52:25 -06:00
revert load order change
This commit is contained in:
parent
40e6f09512
commit
26d2c68d47
|
|
@ -51,7 +51,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="wrap">
|
<div id="wrap">
|
||||||
|
|
||||||
<div id="pathBar">
|
<div id="pathBar">
|
||||||
<h2 id="wfp" class="shifted"></h2>
|
<h2 id="wfp" class="shifted"></h2>
|
||||||
|
|
@ -65,7 +65,7 @@
|
||||||
<div id="ops"></div>
|
<div id="ops"></div>
|
||||||
|
|
||||||
<div id="srchfolder_div">
|
<div id="srchfolder_div">
|
||||||
<input id="folder_search" type="text"/>
|
<input id="folder_search" type="text" />
|
||||||
<span id="srch_quickopts" class="popup under">
|
<span id="srch_quickopts" class="popup under">
|
||||||
<input type="checkbox" id="srch_recursivec" checked="true">
|
<input type="checkbox" id="srch_recursivec" checked="true">
|
||||||
<label for="srch_recursivec" id="srch_recursivelbl" tabindex="0"></label>
|
<label for="srch_recursivec" id="srch_recursivelbl" tabindex="0"></label>
|
||||||
|
|
@ -167,21 +167,18 @@
|
||||||
<defs>
|
<defs>
|
||||||
<symbol id="folder-icon" viewBox="0 0 24 24">
|
<symbol id="folder-icon" viewBox="0 0 24 24">
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 7C3 5.89543 3.89543 5 5 5L8.67157 5C9.20201 5 9.71071 5.21071 10.0858 5.58579L10.9142 6.41421C11.2893 6.78929 11.798 7 12.3284 7H19C20.1046 7 21 7.89543 21 9V17C21 18.1046 20.1046 19 19 19H5C3.89543 19 3 18.1046 3 17V7Z"
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M3 7C3 5.89543 3.89543 5 5 5L8.67157 5C9.20201 5 9.71071 5.21071 10.0858 5.58579L10.9142 6.41421C11.2893 6.78929 11.798 7 12.3284 7H19C20.1046 7 21 7.89543 21 9V17C21 18.1046 20.1046 19 19 19H5C3.89543 19 3 18.1046 3 17V7Z"
|
||||||
style="fill:#07c; fill:var(--a);"/>
|
style="fill:#07c; fill:var(--a);" />
|
||||||
</symbol>
|
</symbol>
|
||||||
<symbol id="file-icon" viewBox="0 0 48 48">
|
<symbol id="file-icon" viewBox="0 0 48 48">
|
||||||
<path
|
<path fill="currentColor"
|
||||||
fill="currentColor"
|
|
||||||
opacity=".7"
|
opacity=".7"
|
||||||
d="m 28.22643,4.6905246 0.0063,9.1096644 a 1.6331061,1.6331061 43.698111 0 0 1.649296,1.632007 l 9.339558,-0.09259 z"/>
|
d="m 28.22643,4.6905246 0.0063,9.1096644 a 1.6331061,1.6331061 43.698111 0 0 1.649296,1.632007 l 9.339558,-0.09259 z" />
|
||||||
<path
|
<path class="a"
|
||||||
class="a"
|
|
||||||
d="M39.5,15.5h-9a2,2,0,0,1-2-2v-9h-18a2,2,0,0,0-2,2v35a2,2,0,0,0,2,2h27a2,2,0,0,0,2-2Z"
|
d="M39.5,15.5h-9a2,2,0,0,1-2-2v-9h-18a2,2,0,0,0-2,2v35a2,2,0,0,0,2,2h27a2,2,0,0,0,2-2Z"
|
||||||
id="path1"
|
id="path1"
|
||||||
style="stroke:#07c; stroke:var(--a);"
|
style="stroke:#07c; stroke:var(--a);"
|
||||||
stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round" />
|
stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round" />
|
||||||
<line
|
<line class="a"
|
||||||
class="a"
|
|
||||||
x1="28.5"
|
x1="28.5"
|
||||||
y1="4.5"
|
y1="4.5"
|
||||||
x2="39.5"
|
x2="39.5"
|
||||||
|
|
@ -210,14 +207,21 @@
|
||||||
<th name="ts"><span>Date</span></th>
|
<th name="ts"><span>Date</span></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
||||||
{%- for f in files %}
|
{%- for f in files %}
|
||||||
<tr><td>{{ f.lead }}</td><td><a href="{{ f.href }}">{{ f.name|e }}</a></td><td>{{ f.sz }}</td>
|
<tr>
|
||||||
{%- if f.tags is defined %}
|
<td>{{ f.lead }}</td>
|
||||||
{%- for k in taglist %}<td>{{ f.tags[k]|e }}</td>{%- endfor %}
|
<td><a href="{{ f.href }}">{{ f.name|e }}</a></td>
|
||||||
{%- endif %}<td>{{ f.ext }}</td><td>{{ f.dt }}</td></tr>
|
<td>{{ f.sz }}</td>
|
||||||
{%- endfor %}
|
{%- if f.tags is defined %}
|
||||||
|
{%- for k in taglist %}
|
||||||
|
<td>{{ f.tags[k]|e }}</td>{%- endfor %}
|
||||||
|
{%- endif %}
|
||||||
|
<td>{{ f.ext }}</td>
|
||||||
|
<td>{{ f.dt }}</td>
|
||||||
|
</tr>
|
||||||
|
{%- endfor %}
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
@ -226,7 +230,7 @@
|
||||||
|
|
||||||
<a href="#" id="repl">π</a>
|
<a href="#" id="repl">π</a>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="srv_info" style="display: none;"><span>{{ srv_info }}</span></div>
|
<div id="srv_info" style="display: none;"><span>{{ srv_info }}</span></div>
|
||||||
|
|
||||||
|
|
@ -254,6 +258,7 @@
|
||||||
{%- if lang != "eng" %}
|
{%- if lang != "eng" %}
|
||||||
<script src="{{ r }}/.cpr/w/tl/{{ lang }}.js?_={{ ts }}"></script>
|
<script src="{{ r }}/.cpr/w/tl/{{ lang }}.js?_={{ ts }}"></script>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
<script src="{{ r }}/.cpr/w/baguettebox.js?_={{ ts }}"></script>
|
||||||
<script src="{{ r }}/.cpr/w/browser.js?_={{ ts }}"></script>
|
<script src="{{ r }}/.cpr/w/browser.js?_={{ ts }}"></script>
|
||||||
<script src="{{ r }}/.cpr/w/baguettebox.js?_={{ ts }}"></script>
|
<script src="{{ r }}/.cpr/w/baguettebox.js?_={{ ts }}"></script>
|
||||||
<script src="{{ r }}/.cpr/w/up2k.js?_={{ ts }}"></script>
|
<script src="{{ r }}/.cpr/w/up2k.js?_={{ ts }}"></script>
|
||||||
|
|
@ -261,11 +266,11 @@
|
||||||
<script src="{{ js }}_={{ ts }}"></script>
|
<script src="{{ js }}_={{ ts }}"></script>
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
<script>
|
<script>
|
||||||
Date.now();function jsldp(a,b){2!=window[a]&&alert("FATAL ERROR: cannot load "+b+".js due to unreliable network or broken reverse-proxy; try CTRL-SHIFT-R")}
|
Date.now(); function jsldp(a, b) { 2 != window[a] && alert("FATAL ERROR: cannot load " + b + ".js due to unreliable network or broken reverse-proxy; try CTRL-SHIFT-R") }
|
||||||
jsldp("J_UTL","util");
|
jsldp("J_UTL", "util");
|
||||||
jsldp("J_BBX","baguettebox");
|
jsldp("J_BBX", "baguettebox");
|
||||||
jsldp("J_BRW","browser");
|
jsldp("J_BRW", "browser");
|
||||||
jsldp("J_U2K","up2k");
|
jsldp("J_U2K", "up2k");
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue