~azzar1/unity/add-show-desktop-key

170 by mattgiuca
browser: Added CSS and JS files (not much in them).
1
/* IVLE - Informatics Virtual Learning Environment
2
 * Copyright (C) 2007-2008 The University of Melbourne
3
 *
4
 * This program is free software; you can redistribute it and/or modify
5
 * it under the terms of the GNU General Public License as published by
6
 * the Free Software Foundation; either version 2 of the License, or
7
 * (at your option) any later version.
8
 *
9
 * This program is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 * GNU General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU General Public License
15
 * along with this program; if not, write to the Free Software
16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
 *
18
 * Module: File Browser (client)
19
 * Author: Matt Giuca
20
 * Date: 11/1/2008
21
 */
22
188 by mattgiuca
browser.js: Can now (shakily) handle directory listings. (lots of code!)
23
/* Url names for apps */
24
this_app = "files";
208 by mattgiuca
dispatch.html, ivle.css: "apptabs" is now an ID, not a class.
25
edit_app = "edit";
188 by mattgiuca
browser.js: Can now (shakily) handle directory listings. (lots of code!)
26
service_app = "fileservice";
205 by mattgiuca
browser.js: Added appropriate handlers for error, text, and binary data.
27
serve_app = "serve";
28
download_app = "download";
188 by mattgiuca
browser.js: Can now (shakily) handle directory listings. (lots of code!)
29
183 by mattgiuca
browser: Added top level of response handling. Now determines handler type and
30
/* Mapping MIME types onto handlers.
31
 * "text" : When navigating to a text file, the text editor is opened.
32
 * "image" : When navigating to an image, the image is displayed (rather than
33
 *              going to the text editor).
34
 * "audio" : When navigating to an audio file, a "play" button is presented.
35
 * "binary" : When navigating to a binary file, offer it as a download through
36
 *              "serve".
37
 *
38
 * If a file is not on the list, its default action is determined by the first
39
 * part of its content type, where "text/*", "image/*" and "audio/*" are
40
 * treated as above, and other types are simply treated as binary.
41
 */
42
type_handlers = {
43
    "application/x-javascript" : "text",
44
    "application/javascript" : "text",
45
    "application/json" : "text",
489 by agdimech
browser.js, editor.js: Fixed the syntax error which was resulting due to a trailing comma.
46
    "application/xml" : "text"
183 by mattgiuca
browser: Added top level of response handling. Now determines handler type and
47
};
48
190 by mattgiuca
util: Added function dom_make_img, creates <img> elements.
49
/* Mapping MIME types to icons, just the file's basename */
50
type_icons = {
51
    "text/directory": "dir.png",
489 by agdimech
browser.js, editor.js: Fixed the syntax error which was resulting due to a trailing comma.
52
    "text/x-python": "py.png"
190 by mattgiuca
util: Added function dom_make_img, creates <img> elements.
53
};
54
55
default_type_icon = "txt.png";
56
57
/* Relative to IVLE root */
58
type_icons_path = "media/images/mime";
59
type_icons_path_large = "media/images/mime/large";
60
61
/* Mapping SVN status to icons, just the file's basename */
62
svn_icons = {
230 by mattgiuca
Removed "unversioned" icon from subversion status. Now unversioned files do
63
    "unversioned": null,
190 by mattgiuca
util: Added function dom_make_img, creates <img> elements.
64
    "normal": "normal.png",
213 by mattgiuca
Fileservice / Files (Python and JS files):
65
    "added": "added.png",
66
    "missing": "missing.png",
67
    "deleted": "deleted.png",
578 by dcoles
fileservice: Added code to allow browing of past revisons in the File Browser
68
    "modified": "modified.png",
918 by wagrant
browser: Expose svn update functionality. This brings a need for an
69
    "conflicted": "conflicted.png",
578 by dcoles
fileservice: Added code to allow browing of past revisons in the File Browser
70
    "revision": "revision.png"
190 by mattgiuca
util: Added function dom_make_img, creates <img> elements.
71
};
72
213 by mattgiuca
Fileservice / Files (Python and JS files):
73
/* Mapping SVN status to "nice" strings */
74
svn_nice = {
75
    "unversioned": "Temporary file",
76
    "normal": "Permanent file",
77
    "added": "Temporary file (scheduled to be added)",
78
    "missing": "Permanent file (missing)",
79
    "deleted": "Permanent file (scheduled for deletion)",
80
    "replaced": "Permanent file (replaced)",
81
    "modified": "Permanent file (modified)",
82
    "merged": "Permanent file (merged)",
578 by dcoles
fileservice: Added code to allow browing of past revisons in the File Browser
83
    "conflicted": "Permanent file (conflicted)",
84
    "revision": "Past Permanent file (revision)"
213 by mattgiuca
Fileservice / Files (Python and JS files):
85
};
86
230 by mattgiuca
Removed "unversioned" icon from subversion status. Now unversioned files do
87
default_svn_icon = null;
213 by mattgiuca
Fileservice / Files (Python and JS files):
88
default_svn_nice = "Unknown status";
190 by mattgiuca
util: Added function dom_make_img, creates <img> elements.
89
90
svn_icons_path = "media/images/svn";
91
269 by mattgiuca
browser: Added publish functionality to JavaScript client side.
92
published_icon = "media/images/interface/published.png";
93
183 by mattgiuca
browser: Added top level of response handling. Now determines handler type and
94
/* List of MIME types considered "executable" by the system.
95
 * Executable files offer a "run" link, implying that the "serve"
96
 * application can interpret them.
97
 */
98
types_exec = [
489 by agdimech
browser.js, editor.js: Fixed the syntax error which was resulting due to a trailing comma.
99
    "text/x-python"
183 by mattgiuca
browser: Added top level of response handling. Now determines handler type and
100
];
101
211 by mattgiuca
fileservice/listing: Slight change to date format.
102
103
/* Global variables */
104
602 by mattgiuca
util.js: Added shallow_copy_object function.
105
/** The listing object returned by the server as JSON */
106
file_listing = null;
107
current_file = null;
910 by wagrant
filebrowser_lib: Send the current revision along with the listing if we
108
current_revision = null;
211 by mattgiuca
fileservice/listing: Slight change to date format.
109
current_path = "";
110
597 by mattgiuca
Major refactor of actions in File browser.
111
/** Filenames of all files selected
112
 * (Only used by dir listings, but still needs to be [] for files, so that
113
 * update_actions knows that nothing is selected).
114
 */
115
selected_files = [];
116
622 by mattgiuca
browser.js: Reinstated upload_callback (previously removed from listing.js).
117
upload_callback_count = 0;      /* See upload_callback */
118
181 by mattgiuca
browser.js: Added functions do_action, navigate, handle_response (stubs).
119
/** Calls the server using Ajax, performing an action on the server side.
120
 * Receives the response from the server and performs a refresh of the page
121
 * contents, updating it to display the returned data (such as a directory
122
 * listing, file preview, or editor pane).
123
 * Always makes a POST request.
124
 * No return value.
125
 *
126
 * \param action String. Name of the action to perform, as defined in the
127
 *     fileservice API.
128
 * \param path URL path to make the request to, within the application.
129
 * \param args Argument object, as described in util.parse_url and friends.
130
 *      This should contain the arguments to the action, but NOT the action
131
 *      itself. (Also a minor side-effect; the "args" object will be mutated
132
 *      to include the action attribute).
133
 * \param content_type String, optional.
134
 *      May be "application/x-www-form-urlencoded" or "multipart/form-data".
135
 *      Defaults to "application/x-www-form-urlencoded".
136
 *      "multipart/form-data" is recommended for large uploads.
137
 */
385 by mattgiuca
browser/editor: Clicking "Save" in the editor does not cause a page refresh
138
function do_action(action, path, args, content_type, ignore_response)
181 by mattgiuca
browser.js: Added functions do_action, navigate, handle_response (stubs).
139
{
140
    args.action = action;
559 by mattgiuca
Major JavaScript refactor: util.ajax_call is now asynchronous, not
141
    /* Callback action, when the server returns */
142
    var callback = function(response)
143
        {
144
            /* Check for action errors reported by the server, and report them
145
             * to the user */
146
            var error = response.getResponseHeader("X-IVLE-Action-Error");
147
            if (error != null)
785 by mattgiuca
fileservice_lib/__init__.py: X-IVLE-Action-Error HTTP response header is now
148
                /* Note: This header (in particular) comes URI-encoded, to
149
                 * allow multi-line error messages. Decode */
150
                alert("Error: " + decodeURIComponent(error.toString()) + ".");
559 by mattgiuca
Major JavaScript refactor: util.ajax_call is now asynchronous, not
151
            /* Now read the response and set up the page accordingly */
152
            if (ignore_response != true)
789 by mattgiuca
browser.js: Replaced the old "The server returned an invalid directory
153
                handle_response(path, response, true);
559 by mattgiuca
Major JavaScript refactor: util.ajax_call is now asynchronous, not
154
        }
181 by mattgiuca
browser.js: Added functions do_action, navigate, handle_response (stubs).
155
    /* Call the server and perform the action. This mutates the server. */
559 by mattgiuca
Major JavaScript refactor: util.ajax_call is now asynchronous, not
156
    ajax_call(callback, service_app, path, args, "POST", content_type);
181 by mattgiuca
browser.js: Added functions do_action, navigate, handle_response (stubs).
157
}
158
159
/** Calls the server using Ajax, requesting a directory listing. This should
160
 * not modify the server in any way. Receives the response from the server and
161
 * performs a refresh of the page contents, updating it to display the
162
 * returned data (such as a directory listing, file preview, or editor pane).
163
 * Called "navigate", can also be used for a simple refresh.
164
 * Always makes a GET request.
165
 * No return value.
166
 */
603 by mattgiuca
Console now starts up in the user's home directory.
167
function navigate(path)
181 by mattgiuca
browser.js: Added functions do_action, navigate, handle_response (stubs).
168
{
559 by mattgiuca
Major JavaScript refactor: util.ajax_call is now asynchronous, not
169
    callback = function(response)
170
        {
171
            /* Read the response and set up the page accordingly */
789 by mattgiuca
browser.js: Replaced the old "The server returned an invalid directory
172
            handle_response(path, response, false, url.args);
559 by mattgiuca
Major JavaScript refactor: util.ajax_call is now asynchronous, not
173
        }
578 by dcoles
fileservice: Added code to allow browing of past revisons in the File Browser
174
    /* Get any query strings */
175
    url = parse_url(window.location.href);
176
    
602 by mattgiuca
util.js: Added shallow_copy_object function.
177
    /* Call the server and request the listing. */
578 by dcoles
fileservice: Added code to allow browing of past revisons in the File Browser
178
    ajax_call(callback, service_app, path, url.args, "GET");
181 by mattgiuca
browser.js: Added functions do_action, navigate, handle_response (stubs).
179
}
180
597 by mattgiuca
Major refactor of actions in File browser.
181
/* Refreshes the current view.
182
 * Calls navigate on the current path.
183
 */
184
function refresh()
185
{
865 by wagrant
browser: Warn users before running, serving and refreshing if the file
186
    if (maybe_save('All changes since the last save will be lost!'))
187
        navigate(current_path);
597 by mattgiuca
Major refactor of actions in File browser.
188
}
189
211 by mattgiuca
fileservice/listing: Slight change to date format.
190
/** Determines the "handler type" from a MIME type.
191
 * The handler type is a string, either "text", "image", "audio" or "binary".
192
 */
193
function get_handler_type(content_type)
194
{
195
    if (!content_type)
196
        return null;
197
    if (content_type in type_handlers)
198
        return type_handlers[content_type];
199
    else
200
    {   /* Based on the first part of the MIME type */
201
        var handler_type = content_type.split('/')[0];
202
        if (handler_type != "text" && handler_type != "image" &&
203
            handler_type != "audio")
204
            handler_type = "binary";
205
        return handler_type;
206
    }
207
}
208
181 by mattgiuca
browser.js: Added functions do_action, navigate, handle_response (stubs).
209
/** Given an HTTP response object, cleans up and rebuilds the contents of the
210
 * page using the response data. This does not navigate away from the page, it
211
 * merely rebuilds most of the data.
212
 * Note that depending on the type of data returned, this could result in a
213
 * directory listing, an image preview, an editor pane, etc.
214
 * Figures out the type and calls the appropriate function.
215
 * \param path URL path which the request was made for. This can (among other
216
 * things) be used to update the URL in the location bar.
217
 * \param response XMLHttpRequest object returned by the server. Should
218
 * contain all the response data.
789 by mattgiuca
browser.js: Replaced the old "The server returned an invalid directory
219
 * \param is_action Boolean. True if this is the response to an action, false
220
 * if this is the response to a simple listing. This is used in handling the
221
 * error.
602 by mattgiuca
util.js: Added shallow_copy_object function.
222
 * \param url_args Arguments dict, for the arguments passed to the URL
223
 * in the browser's address bar (will be forwarded along).
181 by mattgiuca
browser.js: Added functions do_action, navigate, handle_response (stubs).
224
 */
789 by mattgiuca
browser.js: Replaced the old "The server returned an invalid directory
225
function handle_response(path, response, is_action, url_args)
181 by mattgiuca
browser.js: Added functions do_action, navigate, handle_response (stubs).
226
{
183 by mattgiuca
browser: Added top level of response handling. Now determines handler type and
227
    /* TODO: Set location bar to "path" */
211 by mattgiuca
fileservice/listing: Slight change to date format.
228
    current_path = path;
189 by mattgiuca
browser.js: Top-level handler now presents the path nav panel, not dir
229
230
    /* Clear away the existing page contents */
231
    clearpage();
232
183 by mattgiuca
browser: Added top level of response handling. Now determines handler type and
233
    /* Check the status, and if not 200, read the error and handle this as an
234
     * error. */
235
    if (response.status != 200)
236
    {
237
        var error = response.getResponseHeader("X-IVLE-Return-Error");
238
        if (error == null)
239
            error = response.statusText;
240
        handle_error(error);
241
        return;
242
    }
243
602 by mattgiuca
util.js: Added shallow_copy_object function.
244
    /* This will always return a listing, whether it is a dir or a file.
245
     */
246
    var listing = response.responseText;
247
    /* The listing SHOULD be valid JSON text. Parse it into an object. */
248
    try
249
    {
250
        listing = JSON.parse(listing);
251
        file_listing = listing.listing;     /* Global */
252
    }
253
    catch (e)
254
    {
789 by mattgiuca
browser.js: Replaced the old "The server returned an invalid directory
255
        if (is_action)
256
        {
257
            var err = document.createElement("div");
258
            var p = dom_make_text_elem("p", "Error: "
259
                    + "There was an unexpected server error processing "
260
                    + "the selected command.");
261
            err.appendChild(p);
262
            p = dom_make_text_elem("p", "If the problem persists, please "
263
                    + "contact the system administrator.")
264
            err.appendChild(p);
265
            p = document.createElement("p");
266
            var refresh = document.createElement("input");
267
            refresh.setAttribute("type", "button");
268
            refresh.setAttribute("value", "Back to file view");
269
            refresh.setAttribute("onclick", "refresh()");
270
            p.appendChild(refresh);
271
            err.appendChild(p);
272
            handle_error(err);
273
        }
274
        else
275
        {
276
            var err = document.createElement("div");
277
            var p = dom_make_text_elem("p", "Error: "
278
                    + "There was an unexpected server error retrieving "
279
                    + "the requested file or directory.");
280
            err.appendChild(p);
281
            p = dom_make_text_elem("p", "If the problem persists, please "
282
                    + "contact the system administrator.")
283
            err.appendChild(p);
284
            handle_error(err);
285
        }
602 by mattgiuca
util.js: Added shallow_copy_object function.
286
        return;
287
    }
288
    /* Get "." out, it's special */
289
    current_file = file_listing["."];     /* Global */
290
    delete file_listing["."];
291
910 by wagrant
filebrowser_lib: Send the current revision along with the listing if we
292
    if ('revision' in listing)
293
    {
294
        current_revision = listing.revision;
295
    }
296
183 by mattgiuca
browser: Added top level of response handling. Now determines handler type and
297
    /* Check if this is a directory listing or file contents */
222 by mattgiuca
browser.js:
298
    var isdir = response.getResponseHeader("X-IVLE-Return") == "Dir";
602 by mattgiuca
util.js: Added shallow_copy_object function.
299
    if (isdir)
183 by mattgiuca
browser: Added top level of response handling. Now determines handler type and
300
    {
301
        handle_dir_listing(path, listing);
302
    }
303
    else
304
    {
602 by mattgiuca
util.js: Added shallow_copy_object function.
305
        /* Need to make a 2nd ajax call, this time get the actual file
306
         * contents */
307
        callback = function(response)
308
            {
309
                /* Read the response and set up the page accordingly */
310
                handle_contents_response(path, response);
311
            }
312
        /* Call the server and request the listing. */
313
        if (url_args)
314
            args = shallow_clone_object(url_args);
315
        else
316
            args = {};
317
        /* This time, get the contents of the file, not its metadata */
318
        args['return'] = "contents";
319
        ajax_call(callback, service_app, path, args, "GET");
183 by mattgiuca
browser: Added top level of response handling. Now determines handler type and
320
    }
597 by mattgiuca
Major refactor of actions in File browser.
321
    update_actions(isdir);
183 by mattgiuca
browser: Added top level of response handling. Now determines handler type and
322
}
323
602 by mattgiuca
util.js: Added shallow_copy_object function.
324
function handle_contents_response(path, response)
325
{
326
    /* Treat this as an ordinary file. Get the file type. */
327
    var content_type = response.getResponseHeader("Content-Type");
328
    var handler_type = get_handler_type(content_type);
329
    would_be_handler_type = handler_type;
330
    /* handler_type should now be set to either
331
     * "text", "image", "audio" or "binary". */
332
    switch (handler_type)
333
    {
334
    case "text":
335
        handle_text(path, response.responseText,
336
            would_be_handler_type);
337
        break;
338
    case "image":
339
        /* TODO: Custom image handler */
340
        handle_binary(path, response.responseText);
341
        break;
342
    case "audio":
343
        /* TODO: Custom audio handler */
344
        handle_binary(path, response.responseText);
345
        break;
346
    case "binary":
347
        handle_binary(path);
348
        break;
349
    }
350
}
351
622 by mattgiuca
browser.js: Reinstated upload_callback (previously removed from listing.js).
352
/* Called when a form upload comes back (from an iframe).
353
 * Refreshes the page.
354
 */
355
function upload_callback()
356
{
357
    /* This has a pretty nasty hack, which happens to work.
358
     * upload_callback is set as the "onload" callback for the iframe which
359
     * receives the response from the server for uploading a file.
360
     * This means it gets called twice. Once when initialising the iframe, and
361
     * a second time when the actual response comes back.
362
     * All we want to do is call navigate to refresh the page. But we CAN'T do
363
     * that on the first load or it will just go into an infinite cycle of
364
     * refreshing. We need to refresh the page ONLY on the second refresh.
365
     * upload_callback_count is reset to 0 just before the iframe is created.
366
     */
367
    upload_callback_count++;
368
    if (upload_callback_count >= 2)
838 by wagrant
browser.js: Clear the file upload path when an upload finishes.
369
    {
370
        document.getElementsByName('data')[0].value = '';
622 by mattgiuca
browser.js: Reinstated upload_callback (previously removed from listing.js).
371
        refresh();
838 by wagrant
browser.js: Clear the file upload path when an upload finishes.
372
    }
622 by mattgiuca
browser.js: Reinstated upload_callback (previously removed from listing.js).
373
}
374
188 by mattgiuca
browser.js: Can now (shakily) handle directory listings. (lots of code!)
375
/** Deletes all "dynamic" content on the page.
376
 * This returns the page back to the state it is in when the HTML arrives to
377
 * the browser, ready for another handler to populate it.
378
 */
379
function clearpage()
380
{
203 by mattgiuca
browser: Removed all directory-listing specific HTML from the Python-generated
381
    dom_removechildren(document.getElementById("filesbody"));
382
}
383
865 by wagrant
browser: Warn users before running, serving and refreshing if the file
384
/* Checks if a file needs to be saved. If it does, the user will be asked
385
 * if they want to continue anyway. The caller must specify a warning
386
 * sentence which indicates the consequences of continuing.
387
 * Returns true if we should continue, and false if we should not.
388
 */
389
function maybe_save(warning)
390
{
391
    if (warning == null) warning = '';
392
    if (current_file.isdir) return true;
393
    if (document.getElementById("save_button").disabled) return true;
394
    return confirm("This file has unsaved changes. " + warning +
395
                   "\nAre you sure you wish to continue?");
396
}
397
203 by mattgiuca
browser: Removed all directory-listing specific HTML from the Python-generated
398
/** Deletes all "dynamic" content on the page necessary to navigate from
399
 * one directory listing to another (does not clear as much as clearpage
400
 * does).
401
 * This is the equivalent of calling clearpage() then
402
 * setup_for_dir_listing(), assuming the page is already on a dir listing.
403
 */
404
function clearpage_dir()
405
{
188 by mattgiuca
browser.js: Can now (shakily) handle directory listings. (lots of code!)
406
    dom_removechildren(document.getElementById("path"));
407
    dom_removechildren(document.getElementById("files"));
408
    dom_removechildren(document.getElementById("sidepanel"));
409
}
410
183 by mattgiuca
browser: Added top level of response handling. Now determines handler type and
411
/*** HANDLERS for different types of responses (such as dir listing, file,
412
 * etc). */
413
789 by mattgiuca
browser.js: Replaced the old "The server returned an invalid directory
414
/* handle_error.
415
 * message may either be a string, or a DOM node, which will be placed inside
416
 * a div.
417
 */
183 by mattgiuca
browser: Added top level of response handling. Now determines handler type and
418
function handle_error(message)
419
{
205 by mattgiuca
browser.js: Added appropriate handlers for error, text, and binary data.
420
    var files = document.getElementById("filesbody");
789 by mattgiuca
browser.js: Replaced the old "The server returned an invalid directory
421
    var txt_elem;
422
    if (typeof(message) == "string")
423
    {
424
        txt_elem = dom_make_text_elem("div", "Error: "
425
                   + message.toString() + ".")
426
    }
427
    else
428
    {
429
        /* Assume message is a DOM node */
430
        txt_elem = document.createElement("div");
431
        txt_elem.appendChild(message);
432
    }
205 by mattgiuca
browser.js: Added appropriate handlers for error, text, and binary data.
433
    txt_elem.setAttribute("class", "padding error");
434
    files.appendChild(txt_elem);
188 by mattgiuca
browser.js: Can now (shakily) handle directory listings. (lots of code!)
435
}
436
910 by wagrant
filebrowser_lib: Send the current revision along with the listing if we
437
/** Given a path, filename and optional revision, returns a URL to open that
438
 *  revision of that file.
439
 */
440
function build_revision_url(path, filename, revision)
441
{
442
    bits = {'path': app_path(this_app, path, filename)};
443
    if (current_revision)
444
    {
445
        bits['query_string'] = 'r=' + revision;
446
    }
447
    return build_url(bits);
448
}
449
190 by mattgiuca
util: Added function dom_make_img, creates <img> elements.
450
/** Given a mime type, returns the path to the icon.
451
 * \param type String, Mime type.
452
 * \param sizelarge Boolean, optional.
453
 * \return Path to the icon. Has applied make_path, so it is relative to site
454
 * root.
455
 */
456
function mime_type_to_icon(type, sizelarge)
457
{
458
    var filename;
459
    if (type in type_icons)
460
        filename = type_icons[type];
461
    else
462
        filename = default_type_icon;
463
    if (sizelarge)
464
        return make_path(path_join(type_icons_path_large, filename));
465
    else
466
        return make_path(path_join(type_icons_path, filename));
467
}
468
469
/** Given an svnstatus, returns the path to the icon.
470
 * \param type String, svn status.
471
 * \return Path to the icon. Has applied make_path, so it is relative to site
230 by mattgiuca
Removed "unversioned" icon from subversion status. Now unversioned files do
472
 * root. May return null to indicate no SVN icon.
190 by mattgiuca
util: Added function dom_make_img, creates <img> elements.
473
 */
474
function svnstatus_to_icon(svnstatus)
475
{
476
    var filename;
477
    if (svnstatus in svn_icons)
478
        filename = svn_icons[svnstatus];
479
    else
480
        filename = default_svn_icon;
230 by mattgiuca
Removed "unversioned" icon from subversion status. Now unversioned files do
481
    if (filename == null) return null;
190 by mattgiuca
util: Added function dom_make_img, creates <img> elements.
482
    return make_path(path_join(svn_icons_path, filename));
483
}
484
213 by mattgiuca
Fileservice / Files (Python and JS files):
485
/** Given an svnstatus, returns the "nice" string.
486
 */
487
function svnstatus_to_string(svnstatus)
488
{
489
    if (svnstatus in svn_nice)
490
        return svn_nice[svnstatus];
491
    else
492
        return default_svn_nice;
493
}
494
183 by mattgiuca
browser: Added top level of response handling. Now determines handler type and
495
/** Displays a download link to the binary file.
496
 */
497
function handle_binary(path)
498
{
205 by mattgiuca
browser.js: Added appropriate handlers for error, text, and binary data.
499
    var files = document.getElementById("filesbody");
500
    var div = document.createElement("div");
501
    files.appendChild(div);
502
    div.setAttribute("class", "padding");
224 by mattgiuca
util.js: Removed urlencoding support from "encoded_app_path" (now called
503
    var download_link = app_path(download_app, path);
205 by mattgiuca
browser.js: Added appropriate handlers for error, text, and binary data.
504
    var par1 = dom_make_text_elem("p",
505
        "The file " + path + " is a binary file. To download this file, " +
506
        "click the following link:");
507
    var par2 = dom_make_link_elem("p",
508
        "Download " + path, "Download " + path, download_link);
509
    div.appendChild(par1);
510
    div.appendChild(par2);
181 by mattgiuca
browser.js: Added functions do_action, navigate, handle_response (stubs).
511
}
512
863 by wagrant
browser: Let set_action_state take an Array of names as well. We now
513
/* Enable or disable actions1 moreactions actions. Takes either a single
514
 * name, or an array of them.*/
908 by wagrant
browser: Link breadcrumbs to the current revision.
515
function set_action_state(names, which, allow_on_revision)
862 by wagrant
browser: Refactor the client-side actions1 processing! Kill off 100 lines
516
{
863 by wagrant
browser: Let set_action_state take an Array of names as well. We now
517
    if (!(names instanceof Array)) names = Array(names);
518
519
    for (var i=0; i < names.length; i++)
520
    {
521
        element = document.getElementById('act_' + names[i]);
908 by wagrant
browser: Link breadcrumbs to the current revision.
522
        if (which &&
523
            !(current_file.svnstatus == 'revision' && !allow_on_revision))
863 by wagrant
browser: Let set_action_state take an Array of names as well. We now
524
        {
525
            /* Enabling */
526
            element.setAttribute("class", "choice");
527
            element.removeAttribute("disabled");
528
        }
529
        else
530
        {
531
            /* Disabling */
532
            element.setAttribute("class", "disabled");
533
            element.setAttribute("disabled", "disabled");
534
        }
862 by wagrant
browser: Refactor the client-side actions1 processing! Kill off 100 lines
535
    }
536
}
537
597 by mattgiuca
Major refactor of actions in File browser.
538
function update_actions()
539
{
540
    var file;
541
    var numsel = selected_files.length;
542
    if (numsel <= 1)
543
    {
544
        if (numsel == 0)
545
        {
546
            /* Display information about the current directory instead */
547
            filename = path_basename(current_path);
602 by mattgiuca
util.js: Added shallow_copy_object function.
548
            file = current_file;
597 by mattgiuca
Major refactor of actions in File browser.
549
        }
550
        else if (numsel == 1)
551
        {
552
            filename = selected_files[0];
553
            file = file_listing[filename];
554
        }
555
556
        /* Update each action node in the topbar.
557
         * This includes enabling/disabling actions as appropriate, and
558
         * setting href/onclick attributes. */
559
    }
560
561
    /* Open */
562
    /* Available if exactly one file is selected */
563
    var open = document.getElementById("act_open");
564
    if (numsel == 1)
565
    {
566
        open.setAttribute("class", "choice");
567
        if (file.isdir)
568
            open.setAttribute("title",
569
                "Navigate to this directory in the file browser");
570
        else
571
            open.setAttribute("title",
572
                "Edit or view this file");
910 by wagrant
filebrowser_lib: Send the current revision along with the listing if we
573
        open.setAttribute("href", build_revision_url(current_path, filename,
574
                                                     current_revision));
597 by mattgiuca
Major refactor of actions in File browser.
575
    }
576
    else
577
    {
578
        open.setAttribute("class", "disabled");
579
        open.removeAttribute("title");
580
        open.removeAttribute("href");
581
    }
582
583
    /* Serve */
775 by mattgiuca
browser.js: Updated logic to decide when to enable/disable certain actions.
584
    /* Available if zero or one files are selected,
597 by mattgiuca
Major refactor of actions in File browser.
585
     * and only if this is a file, not a directory */
586
    var serve = document.getElementById("act_serve");
908 by wagrant
browser: Link breadcrumbs to the current revision.
587
    if (numsel <= 1 && !file.isdir && current_file.svnstatus != 'revision')
597 by mattgiuca
Major refactor of actions in File browser.
588
    {
589
        serve.setAttribute("class", "choice");
865 by wagrant
browser: Warn users before running, serving and refreshing if the file
590
        serve.setAttribute("onclick",
591
              "return maybe_save('The last saved version will be served.')");
775 by mattgiuca
browser.js: Updated logic to decide when to enable/disable certain actions.
592
        if (numsel == 0)
593
            serve.setAttribute("href",
594
                app_path(serve_app, current_path));
595
        else
596
            serve.setAttribute("href",
597
                app_path(serve_app, current_path, filename));
597 by mattgiuca
Major refactor of actions in File browser.
598
    }
599
    else
600
    {
601
        serve.setAttribute("class", "disabled");
602
        serve.removeAttribute("href");
865 by wagrant
browser: Warn users before running, serving and refreshing if the file
603
        serve.removeAttribute("onclick");
597 by mattgiuca
Major refactor of actions in File browser.
604
    }
605
606
    /* Run */
607
    /* Available if exactly one file is selected,
608
     * and it is a Python file.
609
     */
713 by dcoles
browser: Added console and run button to allow Python files to be executed in
610
    var run = document.getElementById("act_run");
611
     
908 by wagrant
browser: Link breadcrumbs to the current revision.
612
    if (!file.isdir && file.type == "text/x-python" && numsel <= 1
613
        && current_file.svnstatus != 'revision')
873 by dcoles
Filebrowser: Clean up the javascript code a bit.
614
    {
615
        if (numsel == 0)
616
        {
617
            // In the edit window
618
            var localpath = path_join('/home', current_path);
619
        }
620
        else
621
        {
622
            // In the browser window
623
            var localpath = path_join('/home', current_path, filename);
624
        }
625
        run.setAttribute("class", "choice");
713 by dcoles
browser: Added console and run button to allow Python files to be executed in
626
        run.setAttribute("onclick", "runfile('" + localpath + "')");
627
    }
628
    else
629
    {
630
        run.setAttribute("class", "disabled");
631
        run.removeAttribute("onclick");
632
    }
597 by mattgiuca
Major refactor of actions in File browser.
633
634
    /* Download */
908 by wagrant
browser: Link breadcrumbs to the current revision.
635
    /* Always available for current files.
597 by mattgiuca
Major refactor of actions in File browser.
636
     * If 0 files selected, download the current file or directory as a ZIP.
637
     * If 1 directory selected, download it as a ZIP.
638
     * If 1 non-directory selected, download it.
639
     * If >1 files selected, download them all as a ZIP.
640
     */
641
    var download = document.getElementById("act_download");
908 by wagrant
browser: Link breadcrumbs to the current revision.
642
    if (current_file.svnstatus == 'revision')
643
    {
644
        download.setAttribute("class", "disabled");
645
        download.removeAttribute("onclick");
646
    }
647
    else if (numsel <= 1)
648
    {
649
        download.setAttribute("class", "choice")
597 by mattgiuca
Major refactor of actions in File browser.
650
        if (numsel == 0)
651
        {
652
            download.setAttribute("href",
653
                app_path(download_app, current_path));
654
            if (file.isdir)
655
                download.setAttribute("title",
656
                    "Download the current directory as a ZIP file");
657
            else
658
                download.setAttribute("title",
659
                    "Download the current file");
660
        }
661
        else
662
        {
663
            download.setAttribute("href",
664
                app_path(download_app, current_path, filename));
665
            if (file.isdir)
666
                download.setAttribute("title",
667
                    "Download the selected directory as a ZIP file");
668
            else
669
                download.setAttribute("title",
670
                    "Download the selected file");
671
        }
672
    }
673
    else
674
    {
675
        /* Make a query string with all the files to download */
676
        var dlpath = urlencode_path(app_path(download_app, current_path)) + "?";
677
        for (var i=0; i<numsel; i++)
678
            dlpath += "path=" + encodeURIComponent(selected_files[i]) + "&";
679
        dlpath = dlpath.substr(0, dlpath.length-1);
908 by wagrant
browser: Link breadcrumbs to the current revision.
680
        download.setAttribute("class", "choice")
597 by mattgiuca
Major refactor of actions in File browser.
681
        download.setAttribute("href", dlpath);
682
        download.setAttribute("title",
683
            "Download the selected files as a ZIP file");
684
    }
685
686
    /* Refresh - No changes required */
687
688
    /* Publish and Submit */
689
    /* If this directory is under subversion and selected/unselected file is a
690
     * directory. */
691
    var publish = document.getElementById("act_publish");
692
    var submit = document.getElementById("act_submit");
862 by wagrant
browser: Refactor the client-side actions1 processing! Kill off 100 lines
693
    var pubcond = numsel <= 1 && file.isdir;
694
    if (pubcond)
597 by mattgiuca
Major refactor of actions in File browser.
695
    {
696
        /* TODO: Work out of file is svn'd */
727 by dcoles
Browser: Added UI code to let you publish and unpublish folders
697
        /* If this dir is already published, call it "Unpublish" */
698
        if (file.published)
699
        {
700
            publish.setAttribute("value", "unpublish");
701
            publish.setAttribute("title" ,"Make it so this directory "
702
                + "can not be seen by anyone on the web");
703
            publish.textContent = "Unpublish";
704
        } else {
705
            publish.setAttribute("value", "publish");
706
            publish.setAttribute("title","Make it so this directory "
707
                + "can be seen by anyone on the web");
708
            publish.textContent = "Publish";
709
        }
862 by wagrant
browser: Refactor the client-side actions1 processing! Kill off 100 lines
710
    }
863 by wagrant
browser: Let set_action_state take an Array of names as well. We now
711
    set_action_state(["publish", "submit"], pubcond);
597 by mattgiuca
Major refactor of actions in File browser.
712
713
    /* Share */
862 by wagrant
browser: Refactor the client-side actions1 processing! Kill off 100 lines
714
    /* If exactly 1 non-directory file is selected, and its parent
597 by mattgiuca
Major refactor of actions in File browser.
715
     * directory is published.
716
     */
862 by wagrant
browser: Refactor the client-side actions1 processing! Kill off 100 lines
717
    set_action_state("share", numsel == 1 && !file.isdir &&
718
                     current_file.published);
597 by mattgiuca
Major refactor of actions in File browser.
719
720
    /* Rename */
721
    /* If exactly 1 file is selected */
862 by wagrant
browser: Refactor the client-side actions1 processing! Kill off 100 lines
722
    set_action_state("rename", numsel == 1);
597 by mattgiuca
Major refactor of actions in File browser.
723
724
    /* Delete, cut, copy */
725
    /* If >= 1 file is selected */
863 by wagrant
browser: Let set_action_state take an Array of names as well. We now
726
    set_action_state(["delete", "cut", "copy"], numsel >= 1);
597 by mattgiuca
Major refactor of actions in File browser.
727
728
    /* Paste, new file, new directory, upload */
775 by mattgiuca
browser.js: Updated logic to decide when to enable/disable certain actions.
729
    /* Disable if the current file is not a directory */
863 by wagrant
browser: Let set_action_state take an Array of names as well. We now
730
    set_action_state(["paste", "newfile", "mkdir", "upload"], current_file.isdir);
597 by mattgiuca
Major refactor of actions in File browser.
731
732
    /* Subversion actions */
829 by wagrant
Add an svndiff action, and give it an option in the action listbox.
733
    /* These are only useful if we are in a versioned directory and have some
734
     * files selected. */
921 by wagrant
fileservice_lib, browser: Rename the old remove action to delete, to
735
    set_action_state(["svnadd", "svnremove", "svnrevert", "svncommit"], numsel >= 1 && current_file.svnstatus);
829 by wagrant
Add an svndiff action, and give it an option in the action listbox.
736
918 by wagrant
browser: Expose svn update functionality. This brings a need for an
737
    /* Diff, log and update only support one path at the moment, so we must
738
     * have 0 or 1 versioned files selected. If 0, the directory must be
739
     * versioned. */
881 by wagrant
browser.js: Support svndiff and svnlog for versioned directories. Also
740
    single_versioned_path = (
741
         (
742
          (numsel == 1 && (svnst = file_listing[selected_files[0]].svnstatus)) ||
743
          (numsel == 0 && (svnst = current_file.svnstatus))
744
         ) && svnst != "unversioned");
918 by wagrant
browser: Expose svn update functionality. This brings a need for an
745
    set_action_state(["svndiff", "svnupdate"], single_versioned_path);
908 by wagrant
browser: Link breadcrumbs to the current revision.
746
919 by wagrant
fileservice_lib: Implement "svn resolved".
747
    /* We can resolve if we have a file selected and it is conflicted. */
748
    set_action_state("svnresolved", single_versioned_path && numsel == 1 && svnst == "conflicted");
749
908 by wagrant
browser: Link breadcrumbs to the current revision.
750
    /* Log should be available for revisions as well. */
751
    set_action_state("svnlog", single_versioned_path, true);
862 by wagrant
browser: Refactor the client-side actions1 processing! Kill off 100 lines
752
679 by mattgiuca
Browser: Added new action "Subversion Re-Checkout" which checks out fresh
753
    /* current_path == username: We are at the top level */
862 by wagrant
browser: Refactor the client-side actions1 processing! Kill off 100 lines
754
    set_action_state("svncheckout", current_path == username);
597 by mattgiuca
Major refactor of actions in File browser.
755
777 by mattgiuca
browser: Now hides the "More actions" box altogether if the current file is
756
    /* There is currently nothing on the More Actions menu of use
757
     * when the current file is not a directory. Hence, just remove
758
     * it entirely.
759
     * (This makes some of the above decisions somewhat redundant).
834 by wagrant
Let the client decide whether to show file or directory actions2, as
760
     * We also take this opportunity to show the appropriate actions2
761
     * bar for this path. It should either be a save or upload widget.
777 by mattgiuca
browser: Now hides the "More actions" box altogether if the current file is
762
     */
834 by wagrant
Let the client decide whether to show file or directory actions2, as
763
    if (current_file.isdir)
764
    {
765
        var actions2_directory = document.getElementById("actions2_directory");
766
        actions2_directory.setAttribute("style", "display: inline;");
911 by wagrant
browser: Hide 'More Actions' by default. It will be shown by JS when
767
        var moreactions = document.getElementById("moreactions_area");
768
        moreactions.setAttribute("style", "display: inline;");
834 by wagrant
Let the client decide whether to show file or directory actions2, as
769
    }
770
    else
771
    {
772
        var actions2_file = document.getElementById("actions2_file");
773
        actions2_file.setAttribute("style", "display: inline;");
777 by mattgiuca
browser: Now hides the "More actions" box altogether if the current file is
774
    }
775
597 by mattgiuca
Major refactor of actions in File browser.
776
    return;
777
}
778
779
/** Event handler for when an item of the "More actions..." dropdown box is
780
 * selected. Performs the selected action. */
781
function handle_moreactions()
782
{
783
    var moreactions = document.getElementById("moreactions");
784
    if (moreactions.value == "top")
785
        return;
786
    var selectedaction = moreactions.value;
787
    /* Reset to "More actions..." */
788
    moreactions.selectedIndex = 0;
789
607 by mattgiuca
browser/browser.js: All the actions in "more actions" now actually take
790
    /* If 0 files selected, filename is the name of the current dir.
791
     * If 1 file selected, filename is that file.
792
     */
793
    if (selected_files.length == 0)
794
        filename = path_basename(current_path);
795
    else if (selected_files.length == 1)
796
        filename = selected_files[0];
797
    else
798
        filename = null;
799
597 by mattgiuca
Major refactor of actions in File browser.
800
    /* Now handle the selected action */
607 by mattgiuca
browser/browser.js: All the actions in "more actions" now actually take
801
    switch(selectedaction)
802
    {
803
    case "publish":
804
        action_publish(selected_files);
805
        break;
806
    case "unpublish":
807
        action_unpublish(selected_files);
808
        break;
809
    case "share":
728 by dcoles
Browser: Added support for the 'Share this file' button. At the moment it opens
810
        //alert("Not yet implemented: Sharing files");
811
        window.open(public_app_path(serve_app, current_path, filename), 'share')
607 by mattgiuca
browser/browser.js: All the actions in "more actions" now actually take
812
        break;
813
    case "submit":
814
        // TODO
815
        alert("Not yet implemented: Submit");
816
        break;
817
    case "rename":
818
        action_rename(filename);
819
        break;
820
    case "delete":
921 by wagrant
fileservice_lib, browser: Rename the old remove action to delete, to
821
        action_delete(selected_files);
607 by mattgiuca
browser/browser.js: All the actions in "more actions" now actually take
822
        break;
823
    case "copy":
824
        action_copy(selected_files);
825
        break;
826
    case "cut":
827
        action_cut(selected_files);
828
        break;
829
    case "paste":
830
        action_paste();
831
        break;
832
    case "newfile":
611 by mattgiuca
"New File" now works. (This is a MUCH better replacement for having to go to
833
        action_newfile();
607 by mattgiuca
browser/browser.js: All the actions in "more actions" now actually take
834
        break;
835
    case "mkdir":
836
        action_mkdir();
837
        break;
838
    case "upload":
839
        show_uploadpanel(true);
840
        break;
841
    case "svnadd":
842
        action_add(selected_files);
843
        break;
921 by wagrant
fileservice_lib, browser: Rename the old remove action to delete, to
844
    case "svnremove":
845
        action_remove(selected_files);
846
        break;
607 by mattgiuca
browser/browser.js: All the actions in "more actions" now actually take
847
    case "svnrevert":
848
        action_revert(selected_files);
849
        break;
829 by wagrant
Add an svndiff action, and give it an option in the action listbox.
850
    case "svndiff":
881 by wagrant
browser.js: Support svndiff and svnlog for versioned directories. Also
851
        window.location = path_join(app_path('diff'), current_path, selected_files[0] || '');
829 by wagrant
Add an svndiff action, and give it an option in the action listbox.
852
        break;
918 by wagrant
browser: Expose svn update functionality. This brings a need for an
853
    case "svnupdate":
854
        action_update(selected_files);
855
        break;
919 by wagrant
fileservice_lib: Implement "svn resolved".
856
    case "svnresolved":
857
        action_resolved(selected_files);
858
        break;
607 by mattgiuca
browser/browser.js: All the actions in "more actions" now actually take
859
    case "svncommit":
860
        action_commit(selected_files);
861
        break;
832 by wagrant
Add svnlog to the file actions dropdown.
862
    case "svnlog":
881 by wagrant
browser.js: Support svndiff and svnlog for versioned directories. Also
863
        window.location = path_join(app_path('svnlog'), current_path, selected_files[0] || '');
832 by wagrant
Add svnlog to the file actions dropdown.
864
        break;
679 by mattgiuca
Browser: Added new action "Subversion Re-Checkout" which checks out fresh
865
    case "svncheckout":
866
        action_checkout();
867
        break;
607 by mattgiuca
browser/browser.js: All the actions in "more actions" now actually take
868
    }
597 by mattgiuca
Major refactor of actions in File browser.
869
}
870
713 by dcoles
browser: Added console and run button to allow Python files to be executed in
871
/** User clicks "Run" button.
872
 * Do an Ajax call and print the test output.
873
 */
874
function runfile(localpath)
875
{
865 by wagrant
browser: Warn users before running, serving and refreshing if the file
876
    if (!maybe_save('The last saved version will be run.')) return false;
877
713 by dcoles
browser: Added console and run button to allow Python files to be executed in
878
    /* Dump the entire file to the console */
879
    var callback = function()
880
    {
881
        console_enter_line("execfile('" + localpath + "')", "block");
882
    }
883
    start_server(callback)
884
    return;
885
}
886
170 by mattgiuca
browser: Added CSS and JS files (not much in them).
887
/** Called when the page loads initially.
888
 */
849 by dcoles
Browser: Ported Browser to the new scripts_init framework. Started to decouple
889
function browser_init()
170 by mattgiuca
browser: Added CSS and JS files (not much in them).
890
{
188 by mattgiuca
browser.js: Can now (shakily) handle directory listings. (lots of code!)
891
    /* Navigate (internally) to the path in the URL bar.
892
     * This causes the page to be populated with whatever is at that address,
893
     * whether it be a directory or a file.
894
     */
895
    var path = parse_url(window.location.href).path;
896
    /* Strip out root_dir + "/files" from the front of the path */
208 by mattgiuca
dispatch.html, ivle.css: "apptabs" is now an ID, not a class.
897
    var strip = make_path(this_app);
898
    if (path.substr(0, strip.length) == strip)
899
        path = path.substr(strip.length+1);
900
    else
901
    {
902
        /* See if this is an edit path */
903
        strip = make_path(edit_app);
904
        if (path.substr(0, strip.length) == strip)
905
        {
906
            path = path.substr(strip.length+1);
907
        }
908
    }
188 by mattgiuca
browser.js: Can now (shakily) handle directory listings. (lots of code!)
909
200 by mattgiuca
fileservice.listing: Now returns a nicer date format for mtime_nice.
910
    if (path.length == 0)
911
    {
912
        /* Navigate to the user's home directory by default */
913
        /* TEMP? */
914
        path = username;
915
    }
916
603 by mattgiuca
Console now starts up in the user's home directory.
917
    navigate(path);
170 by mattgiuca
browser: Added CSS and JS files (not much in them).
918
}