36
43
"application/x-javascript" : "text",
37
44
"application/javascript" : "text",
38
45
"application/json" : "text",
39
"application/xml" : "text",
46
"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";
42
91
/* List of MIME types considered "executable" by the system.
43
92
* Executable files offer a "run" link, implying that the "serve"
44
93
* application can interpret them.
100
/* Global variables */
50
104
/** Calls the server using Ajax, performing an action on the server side.
51
105
* Receives the response from the server and performs a refresh of the page
52
106
* contents, updating it to display the returned data (such as a directory
66
120
* Defaults to "application/x-www-form-urlencoded".
67
121
* "multipart/form-data" is recommended for large uploads.
69
function do_action(action, path, args, content_type)
123
function do_action(action, path, args, content_type, ignore_response)
71
125
args.action = action;
72
126
/* Call the server and perform the action. This mutates the server. */
73
response = ajax_call("fileservice", path, args, "POST", content_type);
127
response = ajax_call(service_app, path, args, "POST", content_type);
74
128
/* Check for action errors reported by the server, and report them to the
76
130
error = response.getResponseHeader("X-IVLE-Action-Error");
77
131
if (error != null)
78
132
alert("Error: " + error.toString() + ".");
79
133
/* Now read the response and set up the page accordingly */
80
handle_response(path, response);
134
if (ignore_response != true)
135
handle_response(path, response);
83
138
/** Calls the server using Ajax, requesting a directory listing. This should
87
142
* Called "navigate", can also be used for a simple refresh.
88
143
* Always makes a GET request.
89
144
* No return value.
145
* \param editmode Optional boolean. If true, then the user navigated here
146
* with an "edit" URL so we should favour using the editor.
91
function navigate(path)
148
function navigate(path, editmode)
93
150
/* Call the server and request the listing. This mutates the server. */
94
response = ajax_call("fileservice", path, null, "GET");
151
response = ajax_call(service_app, path, null, "GET");
95
152
/* Now read the response and set up the page accordingly */
96
handle_response(path, response);
153
handle_response(path, response, editmode);
156
/** Determines the "handler type" from a MIME type.
157
* The handler type is a string, either "text", "image", "audio" or "binary".
159
function get_handler_type(content_type)
163
if (content_type in type_handlers)
164
return type_handlers[content_type];
166
{ /* Based on the first part of the MIME type */
167
var handler_type = content_type.split('/')[0];
168
if (handler_type != "text" && handler_type != "image" &&
169
handler_type != "audio")
170
handler_type = "binary";
99
175
/** Given an HTTP response object, cleans up and rebuilds the contents of the
265
/** Deletes all "dynamic" content on the page.
266
* This returns the page back to the state it is in when the HTML arrives to
267
* the browser, ready for another handler to populate it.
271
dom_removechildren(document.getElementById("path"));
272
dom_removechildren(document.getElementById("filesbody"));
275
/** Deletes all "dynamic" content on the page necessary to navigate from
276
* one directory listing to another (does not clear as much as clearpage
278
* This is the equivalent of calling clearpage() then
279
* setup_for_dir_listing(), assuming the page is already on a dir listing.
281
function clearpage_dir()
283
dom_removechildren(document.getElementById("path"));
284
dom_removechildren(document.getElementById("files"));
285
dom_removechildren(document.getElementById("sidepanel"));
288
/** Sets the mode to either "file browser" or "text editor" mode.
289
* This modifies the window icon, and selected tab.
290
* \param editmode If True, editor mode. Else, file browser mode.
292
function setmode(editmode)
294
/* Find the DOM elements for the file browser and editor tabs */
295
var tabs = document.getElementById("apptabs");
296
var tab_files = null;
300
for (var i=0; i<tabs.childNodes.length; i++)
302
/* Find the href of the link within */
303
if (!tabs.childNodes[i].getElementsByTagName) continue;
304
a = tabs.childNodes[i].getElementsByTagName("a");
305
if (a.length == 0) continue;
306
href = a[0].getAttribute("href");
307
if (href == null) continue;
308
if (endswith(href, this_app))
309
tab_files = tabs.childNodes[i];
310
else if (endswith(href, edit_app))
311
tab_edit = tabs.childNodes[i];
316
tab_files.removeAttribute("class");
317
tab_edit.setAttribute("class", "thisapp");
321
tab_edit.removeAttribute("class");
322
tab_files.setAttribute("class", "thisapp");
176
326
/*** HANDLERS for different types of responses (such as dir listing, file,
179
329
function handle_error(message)
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)
332
var files = document.getElementById("filesbody");
333
var txt_elem = dom_make_text_elem("div", "Error: "
334
+ message.toString() + ".")
335
txt_elem.setAttribute("class", "padding error");
336
files.appendChild(txt_elem);
339
/** Presents a path list (address bar inside the page) for clicking.
341
function presentpath(path)
343
var dom_path = document.getElementById("path");
344
var href_path = make_path(this_app);
348
/* Also set the document title */
349
document.title = path_basename(path) + " - IVLE";
350
/* Create all of the paths */
351
var pathlist = path.split("/");
352
for (var i=0; i<pathlist.length; i++)
355
if (dir == "") continue;
356
/* Make an 'a' element */
357
href_path = path_join(href_path, dir);
358
nav_path = path_join(nav_path, dir);
359
var link = dom_make_link_elem("a", dir, "Navigate to " + nav_path,
360
href_path/*, "navigate(" + repr(href_path) + ")"*/);
361
dom_path.appendChild(link);
362
dom_path.appendChild(document.createTextNode("/"));
364
dom_path.removeChild(dom_path.lastChild);
367
/** Given a mime type, returns the path to the icon.
368
* \param type String, Mime type.
369
* \param sizelarge Boolean, optional.
370
* \return Path to the icon. Has applied make_path, so it is relative to site
373
function mime_type_to_icon(type, sizelarge)
376
if (type in type_icons)
377
filename = type_icons[type];
379
filename = default_type_icon;
381
return make_path(path_join(type_icons_path_large, filename));
383
return make_path(path_join(type_icons_path, filename));
386
/** Given an svnstatus, returns the path to the icon.
387
* \param type String, svn status.
388
* \return Path to the icon. Has applied make_path, so it is relative to site
389
* root. May return null to indicate no SVN icon.
391
function svnstatus_to_icon(svnstatus)
394
if (svnstatus in svn_icons)
395
filename = svn_icons[svnstatus];
397
filename = default_svn_icon;
398
if (filename == null) return null;
399
return make_path(path_join(svn_icons_path, filename));
402
/** Given an svnstatus, returns the "nice" string.
404
function svnstatus_to_string(svnstatus)
406
if (svnstatus in svn_nice)
407
return svn_nice[svnstatus];
409
return default_svn_nice;
202
412
/** Displays a download link to the binary file.
204
414
function handle_binary(path)
417
var files = document.getElementById("filesbody");
418
var div = document.createElement("div");
419
files.appendChild(div);
420
div.setAttribute("class", "padding");
421
var download_link = app_path(download_app, path);
422
var par1 = dom_make_text_elem("p",
423
"The file " + path + " is a binary file. To download this file, " +
424
"click the following link:");
425
var par2 = dom_make_link_elem("p",
426
"Download " + path, "Download " + path, download_link);
427
div.appendChild(par1);
428
div.appendChild(par2);
210
431
/** Called when the page loads initially.
212
433
window.onload = function()
435
/* Navigate (internally) to the path in the URL bar.
436
* This causes the page to be populated with whatever is at that address,
437
* whether it be a directory or a file.
439
var path = parse_url(window.location.href).path;
440
/* Strip out root_dir + "/files" from the front of the path */
441
var strip = make_path(this_app);
442
var editmode = false;
443
if (path.substr(0, strip.length) == strip)
444
path = path.substr(strip.length+1);
447
/* See if this is an edit path */
448
strip = make_path(edit_app);
449
if (path.substr(0, strip.length) == strip)
451
path = path.substr(strip.length+1);
456
if (path.length == 0)
458
/* Navigate to the user's home directory by default */
463
navigate(path, editmode);