aboutsummaryrefslogtreecommitdiff
path: root/dists/networking/wwwroot/.files.html
blob: f05c0113f854064c7b69b0f983bcdac0ddc0236f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<html>
	<head>
		<title>ScummVM</title>
		<meta charset="utf-8"/>
		<link rel="stylesheet" type="text/css" href="style.css"/>
	</head>
	<body>
		<div class="container">
			<div class='header'>
				<center><img src="logo.png"/></center>
			</div>
			<div class="controls">
				<table class="buttons"><tr>
					<td><a href="javascript:show('create_directory');">{create_directory_button}</a></td>
					<td><a href="javascript:show('upload_file');">{upload_files_button}</a></td>
				</tr></table>
				<div id="create_directory" class="modal">
					<p>{create_directory_desc}</p>
					<form action="create">
						<input type="hidden" name="path" value="{path}"/>
						<input type="text" name="directory_name" value=""/>
						<input type="submit" value="{create_directory_button}"/>
					</form>
				</div>
				<div id="upload_file" class="modal">
					<p>{upload_file_desc}</p>
					<form action="upload?path={path}" method="post" enctype="multipart/form-data">
						<!-- we don't need "[]" in the name, as our webserver is not using PHP -->
						<!-- "allowdirs" is a proposal, not implemented yet -->
						<input type="file" name="upload_file-f" allowdirs multiple/>
						<br/><br/>
						<p>{or_upload_directory_desc}</p>
						<!-- "directory"/"webkitdirectory" works in Chrome only yet, "multiple" is just in case here -->
						<input type="file" name="upload_file-d" directory webkitdirectory multiple/>
						<input type="submit" value="{upload_file_button}"/>
					</form>
				</div>
			</div>
			<div class="content">
				<table class="files_list">
					<td></td><td><b class="directory_name">{index_of_directory}</b></td><td></td>
					{content}
				</table>
			</div>
		</div>
		<script>
			function show(id) {
				var e = document.getElementById(id);
				var visible = (e.style.display == "block");
				if (visible) id = ""; //hide

				e = document.getElementById("create_directory");
				e.style.display = (e.id == id ? "block" : "none");
				e = document.getElementById("upload_file");
				e.style.display = (e.id == id ? "block" : "none");
			}
		</script>
	</body>
</html>