
Fix some missing quotes Move util.js and tables.js to css.jsi script files don't require nonce; inline scripts do. Nonce doesn't matter until we turn on the CSP.
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|
pageEncoding="UTF-8"%>
|
|
<%@ page import="java.io.*" %>
|
|
<%@ page import="java.util.*" %>
|
|
<%@ page import="com.muwire.webui.*" %>
|
|
<%@ page import="com.muwire.core.*" %>
|
|
<%@ page import="com.muwire.core.search.*" %>
|
|
<%@ page import="net.i2p.data.*" %>
|
|
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@include file="initcode.jsi"%>
|
|
|
|
<%
|
|
String pagetitle=Util._t("Downloads");
|
|
String helptext = Util._t("This page shows the files you are currently downloading from other MuWire users.");
|
|
%>
|
|
|
|
<html>
|
|
<head>
|
|
<%@include file="css.jsi"%>
|
|
<script src="js/download.js?<%=version%>" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<%@include file="header.jsi"%>
|
|
<aside>
|
|
<%@include file="searchbox.jsi"%>
|
|
<%@include file="sidebar.jsi"%>
|
|
</aside>
|
|
<section class="main foldermain">
|
|
<div id="table-wrapper">
|
|
<div id="downloads"></div>
|
|
</div>
|
|
<center><span id="clearFinished"></span></center>
|
|
<hr/>
|
|
<p><%=Util._t("Download Details")%></p>
|
|
<div id="downloadDetails"><p><%=Util._t("Click on a download to view details")%></p></div>
|
|
</section>
|
|
</body>
|
|
</html>
|