46
39
"application/xml" : "text",
49
/* Mapping MIME types to icons, just the file's basename */
51
"text/directory": "dir.png",
52
"text/x-python": "py.png",
55
default_type_icon = "txt.png";
57
/* Relative to IVLE root */
58
type_icons_path = "media/images/mime";
59
type_icons_path_large = "media/images/mime/large";
61
/* Mapping SVN status to icons, just the file's basename */
64
"normal": "normal.png",
66
"missing": "missing.png",
67
"deleted": "deleted.png",
68
"modified": "modified.png",
71
/* Mapping SVN status to "nice" strings */
73
"unversioned": "Temporary file",
74
"normal": "Permanent file",
75
"added": "Temporary file (scheduled to be added)",
76
"missing": "Permanent file (missing)",
77
"deleted": "Permanent file (scheduled for deletion)",
78
"replaced": "Permanent file (replaced)",
79
"modified": "Permanent file (modified)",
80
"merged": "Permanent file (merged)",
81
"conflicted": "Permanent file (conflicted)",
84
default_svn_icon = null;
85
default_svn_nice = "Unknown status";
87
svn_icons_path = "media/images/svn";
89
published_icon = "media/images/interface/published.png";
91
42
/* List of MIME types considered "executable" by the system.
92
43
* Executable files offer a "run" link, implying that the "serve"
93
44
* application can interpret them.
141
87
* Called "navigate", can also be used for a simple refresh.
142
88
* Always makes a GET request.
143
89
* No return value.
144
* \param editmode Optional boolean. If true, then the user navigated here
145
* with an "edit" URL so we should favour using the editor.
147
function navigate(path, editmode)
91
function navigate(path)
149
93
/* Call the server and request the listing. This mutates the server. */
150
response = ajax_call(service_app, path, null, "GET");
94
response = ajax_call("fileservice", path, null, "GET");
151
95
/* Now read the response and set up the page accordingly */
152
handle_response(path, response, editmode);
155
/** Determines the "handler type" from a MIME type.
156
* The handler type is a string, either "text", "image", "audio" or "binary".
158
function get_handler_type(content_type)
162
if (content_type in type_handlers)
163
return type_handlers[content_type];
165
{ /* Based on the first part of the MIME type */
166
var handler_type = content_type.split('/')[0];
167
if (handler_type != "text" && handler_type != "image" &&
168
handler_type != "audio")
169
handler_type = "binary";
96
handle_response(path, response);
174
99
/** Given an HTTP response object, cleans up and rebuilds the contents of the
264
/** Deletes all "dynamic" content on the page.
265
* This returns the page back to the state it is in when the HTML arrives to
266
* the browser, ready for another handler to populate it.
270
dom_removechildren(document.getElementById("path"));
271
dom_removechildren(document.getElementById("filesbody"));
274
/** Deletes all "dynamic" content on the page necessary to navigate from
275
* one directory listing to another (does not clear as much as clearpage
277
* This is the equivalent of calling clearpage() then
278
* setup_for_dir_listing(), assuming the page is already on a dir listing.
280
function clearpage_dir()
282
dom_removechildren(document.getElementById("path"));
283
dom_removechildren(document.getElementById("files"));
284
dom_removechildren(document.getElementById("sidepanel"));
287
/** Sets the mode to either "file browser" or "text editor" mode.
288
* This modifies the window icon, and selected tab.
289
* \param editmode If True, editor mode. Else, file browser mode.
291
function setmode(editmode)
293
/* Find the DOM elements for the file browser and editor tabs */
294
var tabs = document.getElementById("apptabs");
295
var tab_files = null;
299
for (var i=0; i<tabs.childNodes.length; i++)
301
/* Find the href of the link within */
302
if (!tabs.childNodes[i].getElementsByTagName) continue;
303
a = tabs.childNodes[i].getElementsByTagName("a");
304
if (a.length == 0) continue;
305
href = a[0].getAttribute("href");
306
if (href == null) continue;
307
if (endswith(href, this_app))
308
tab_files = tabs.childNodes[i];
309
else if (endswith(href, edit_app))
310
tab_edit = tabs.childNodes[i];
315
tab_files.removeAttribute("class");
316
tab_edit.setAttribute("class", "thisapp");
320
tab_edit.removeAttribute("class");
321
tab_files.setAttribute("class", "thisapp");
325
176
/*** HANDLERS for different types of responses (such as dir listing, file,
328
179
function handle_error(message)
331
var files = document.getElementById("filesbody");
332
var txt_elem = dom_make_text_elem("div", "Error: "
333
+ message.toString() + ".")
334
txt_elem.setAttribute("class", "padding error");
335
files.appendChild(txt_elem);
338
/** Presents a path list (address bar inside the page) for clicking.
340
function presentpath(path)
342
var dom_path = document.getElementById("path");
343
var href_path = make_path(this_app);
347
/* Also set the document title */
348
document.title = path_basename(path) + " - IVLE";
349
/* Create all of the paths */
350
var pathlist = path.split("/");
351
for (var i=0; i<pathlist.length; i++)
354
if (dir == "") continue;
355
/* Make an 'a' element */
356
href_path = path_join(href_path, dir);
357
nav_path = path_join(nav_path, dir);
358
var link = dom_make_link_elem("a", dir, "Navigate to " + nav_path,
359
href_path/*, "navigate(" + repr(href_path) + ")"*/);
360
dom_path.appendChild(link);
361
dom_path.appendChild(document.createTextNode("/"));
363
dom_path.removeChild(dom_path.lastChild);
366
/** Given a mime type, returns the path to the icon.
367
* \param type String, Mime type.
368
* \param sizelarge Boolean, optional.
369
* \return Path to the icon. Has applied make_path, so it is relative to site
372
function mime_type_to_icon(type, sizelarge)
375
if (type in type_icons)
376
filename = type_icons[type];
378
filename = default_type_icon;
380
return make_path(path_join(type_icons_path_large, filename));
382
return make_path(path_join(type_icons_path, filename));
385
/** Given an svnstatus, returns the path to the icon.
386
* \param type String, svn status.
387
* \return Path to the icon. Has applied make_path, so it is relative to site
388
* root. May return null to indicate no SVN icon.
390
function svnstatus_to_icon(svnstatus)
393
if (svnstatus in svn_icons)
394
filename = svn_icons[svnstatus];
396
filename = default_svn_icon;
397
if (filename == null) return null;
398
return make_path(path_join(svn_icons_path, filename));
401
/** Given an svnstatus, returns the "nice" string.
403
function svnstatus_to_string(svnstatus)
405
if (svnstatus in svn_nice)
406
return svn_nice[svnstatus];
408
return default_svn_nice;
181
/* TODO: Rather than alert, rebuild the page into a page showing an error
183
alert("Error: " + message.toString() + ".");
186
/** Presents the directory listing.
188
function handle_dir_listing(path, listing)
194
/** Presents the text editor.
196
function handle_text(path, text)
411
202
/** Displays a download link to the binary file.
413
204
function handle_binary(path)
416
var files = document.getElementById("filesbody");
417
var div = document.createElement("div");
418
files.appendChild(div);
419
div.setAttribute("class", "padding");
420
var download_link = app_path(download_app, path);
421
var par1 = dom_make_text_elem("p",
422
"The file " + path + " is a binary file. To download this file, " +
423
"click the following link:");
424
var par2 = dom_make_link_elem("p",
425
"Download " + path, "Download " + path, download_link);
426
div.appendChild(par1);
427
div.appendChild(par2);
430
210
/** Called when the page loads initially.
432
212
window.onload = function()
434
/* Navigate (internally) to the path in the URL bar.
435
* This causes the page to be populated with whatever is at that address,
436
* whether it be a directory or a file.
438
var path = parse_url(window.location.href).path;
439
/* Strip out root_dir + "/files" from the front of the path */
440
var strip = make_path(this_app);
441
var editmode = false;
442
if (path.substr(0, strip.length) == strip)
443
path = path.substr(strip.length+1);
446
/* See if this is an edit path */
447
strip = make_path(edit_app);
448
if (path.substr(0, strip.length) == strip)
450
path = path.substr(strip.length+1);
455
if (path.length == 0)
457
/* Navigate to the user's home directory by default */
462
navigate(path, editmode);