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

« back to all changes in this revision

Viewing changes to www/media/browser/browser.js

  • Committer: mattgiuca
  • Date: 2008-01-25 06:20:32 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:313
test/test_framework: Updated examples, a bit of better descriptions, sample
    partial solutions, etc.

Added all sample subject material.
This has been copied from test/test_framework and modified slightly.
There is now a subject "sample" with 2 worksheets. The 1st worksheet has 3
exercises. These work in IVLE by default.

setup.py: Added code to install subjects into the designated directory. This
means that installing IVLE will result in the sample subjects being
immediately available.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
    "application/x-javascript" : "text",
44
44
    "application/javascript" : "text",
45
45
    "application/json" : "text",
46
 
    "application/xml" : "text"
 
46
    "application/xml" : "text",
47
47
};
48
48
 
49
49
/* Mapping MIME types to icons, just the file's basename */
50
50
type_icons = {
51
51
    "text/directory": "dir.png",
52
 
    "text/x-python": "py.png"
 
52
    "text/x-python": "py.png",
53
53
};
54
54
 
55
55
default_type_icon = "txt.png";
56
56
 
57
57
/* Relative to IVLE root */
58
 
type_icons_path = "+media/ivle.webapp.core/images/mime";
59
 
type_icons_path_large = "+media/ivle.webapp.core/images/mime/large";
 
58
type_icons_path = "media/images/mime";
 
59
type_icons_path_large = "media/images/mime/large";
60
60
 
61
61
/* Mapping SVN status to icons, just the file's basename */
62
62
svn_icons = {
63
 
    "unversioned": "unversioned.png",
64
 
    "ignored": null,                    /* Supposed to be innocuous */
 
63
    "unversioned": null,
65
64
    "normal": "normal.png",
66
65
    "added": "added.png",
67
66
    "missing": "missing.png",
68
67
    "deleted": "deleted.png",
69
 
    "replaced": "replaced.png",
70
68
    "modified": "modified.png",
71
 
    "conflicted": "conflicted.png",
72
 
    "revision": "revision.png"
73
69
};
74
70
 
75
71
/* Mapping SVN status to "nice" strings */
76
72
svn_nice = {
77
73
    "unversioned": "Temporary file",
78
 
    "ignored": "Temporary file (ignored)",
79
74
    "normal": "Permanent file",
80
75
    "added": "Temporary file (scheduled to be added)",
81
76
    "missing": "Permanent file (missing)",
84
79
    "modified": "Permanent file (modified)",
85
80
    "merged": "Permanent file (merged)",
86
81
    "conflicted": "Permanent file (conflicted)",
87
 
    "revision": "Past Permanent file (revision)"
88
82
};
89
83
 
90
84
default_svn_icon = null;
91
85
default_svn_nice = "Unknown status";
92
86
 
93
 
svn_icons_path = "+media/ivle.webapp.core/images/svn";
 
87
svn_icons_path = "media/images/svn";
94
88
 
95
 
published_icon = "+media/ivle.webapp.core/images/interface/published.png";
 
89
published_icon = "media/images/interface/published.png";
96
90
 
97
91
/* List of MIME types considered "executable" by the system.
98
92
 * Executable files offer a "run" link, implying that the "serve"
99
93
 * application can interpret them.
100
94
 */
101
95
types_exec = [
102
 
    "text/x-python"
 
96
    "text/x-python",
103
97
];
104
98
 
105
99
 
106
100
/* Global variables */
107
101
 
108
 
/** The listing object returned by the server as JSON */
109
 
file_listing = null;
110
 
current_file = null;
111
 
current_revision = null;
112
102
current_path = "";
113
103
 
114
 
/** Filenames of all files selected
115
 
 * (Only used by dir listings, but still needs to be [] for files, so that
116
 
 * update_actions knows that nothing is selected).
117
 
 */
118
 
selected_files = [];
119
 
 
120
 
upload_callback_count = 0;      /* See upload_callback */
121
 
 
122
104
/** Calls the server using Ajax, performing an action on the server side.
123
105
 * Receives the response from the server and performs a refresh of the page
124
106
 * contents, updating it to display the returned data (such as a directory
137
119
 *      May be "application/x-www-form-urlencoded" or "multipart/form-data".
138
120
 *      Defaults to "application/x-www-form-urlencoded".
139
121
 *      "multipart/form-data" is recommended for large uploads.
140
 
 * \param callback, optional.
141
 
 *      A callback function for after the action has been handled.
142
122
 */
143
 
function do_action(action, path, args, content_type, callback)
 
123
function do_action(action, path, args, content_type)
144
124
{
145
125
    args.action = action;
146
 
    /* Callback action, when the server returns */
147
 
    var callback_inner = function(response)
148
 
        {
149
 
            /* Check for action errors reported by the server, and report them
150
 
             * to the user */
151
 
            var error = response.getResponseHeader("X-IVLE-Action-Error");
152
 
            if (error != null && error != "")
153
 
                /* Note: This header (in particular) comes URI-encoded, to
154
 
                 * allow multi-line error messages. Decode */
155
 
                alert("Error: " + decodeURIComponent(error.toString()) + ".");
156
 
            /* Now read the response and set up the page accordingly */
157
 
            if (callback != null)
158
 
                callback(path, response);
159
 
        }
160
126
    /* Call the server and perform the action. This mutates the server. */
161
 
    ajax_call(callback_inner, service_app, path, args, "POST", content_type);
 
127
    response = ajax_call(service_app, path, args, "POST", content_type);
 
128
    /* Check for action errors reported by the server, and report them to the
 
129
     * user */
 
130
    error = response.getResponseHeader("X-IVLE-Action-Error");
 
131
    if (error != null)
 
132
        alert("Error: " + error.toString() + ".");
 
133
    /* Now read the response and set up the page accordingly */
 
134
    handle_response(path, response);
162
135
}
163
136
 
164
137
/** Calls the server using Ajax, requesting a directory listing. This should
168
141
 * Called "navigate", can also be used for a simple refresh.
169
142
 * Always makes a GET request.
170
143
 * No return value.
171
 
 */
172
 
function navigate(path)
173
 
{
174
 
    callback = function(response)
175
 
        {
176
 
            /* Read the response and set up the page accordingly */
177
 
            handle_response(path, response, false, url.args);
178
 
        }
179
 
    /* Get any query strings */
180
 
    url = parse_url(window.location.href);
181
 
    
182
 
    /* Call the server and request the listing. */
183
 
    ajax_call(callback, service_app, path, url.args, "GET");
184
 
}
185
 
 
186
 
/* Refreshes the current view.
187
 
 * Calls navigate on the current path.
188
 
 */
189
 
function refresh()
190
 
{
191
 
    if (maybe_save('All changes since the last save will be lost!'))
192
 
        navigate(current_path);
 
144
 * \param editmode Optional boolean. If true, then the user navigated here
 
145
 * with an "edit" URL so we should favour using the editor.
 
146
 */
 
147
function navigate(path, editmode)
 
148
{
 
149
    /* Call the server and request the listing. This mutates the server. */
 
150
    response = ajax_call(service_app, path, null, "GET");
 
151
    /* Now read the response and set up the page accordingly */
 
152
    handle_response(path, response, editmode);
193
153
}
194
154
 
195
155
/** Determines the "handler type" from a MIME type.
221
181
 * things) be used to update the URL in the location bar.
222
182
 * \param response XMLHttpRequest object returned by the server. Should
223
183
 * contain all the response data.
224
 
 * \param is_action Boolean. True if this is the response to an action, false
225
 
 * if this is the response to a simple listing. This is used in handling the
226
 
 * error.
227
 
 * \param url_args Arguments dict, for the arguments passed to the URL
228
 
 * in the browser's address bar (will be forwarded along).
 
184
 * \param editmode Optional boolean. If true, then the user navigated here
 
185
 * with an "edit" URL so we should favour using the editor.
229
186
 */
230
 
function handle_response(path, response, is_action, url_args)
 
187
function handle_response(path, response, editmode)
231
188
{
232
189
    /* TODO: Set location bar to "path" */
233
190
    current_path = path;
234
191
 
235
192
    /* Clear away the existing page contents */
236
193
    clearpage();
 
194
    /* Display the path at the top, for navigation */
 
195
    presentpath(path);
237
196
 
238
197
    /* Check the status, and if not 200, read the error and handle this as an
239
198
     * error. */
246
205
        return;
247
206
    }
248
207
 
249
 
    var subjects = null;
250
 
    /* Remove trailing slash (or path==username won't compare properly) */
251
 
    if (path[path.length-1] == "/")
252
 
        path = path.substr(0, path.length-1);
253
 
    var top_level_dir = path==username;
254
 
    if (top_level_dir)
255
 
    {
256
 
        var req = ajax_call(null, "userservice", "get_enrolments", null, "GET")
257
 
        subjects = decode_response(req);
258
 
    }
259
 
 
260
 
 
261
 
    /* This will always return a listing, whether it is a dir or a file.
262
 
     */
263
 
    var listing = response.responseText;
264
 
    /* The listing SHOULD be valid JSON text. Parse it into an object. */
265
 
    try
266
 
    {
267
 
        listing = JSON.parse(listing);
268
 
        file_listing = listing.listing;     /* Global */
269
 
    }
270
 
    catch (e)
271
 
    {
272
 
        if (is_action)
273
 
        {
274
 
            var err = document.createElement("div");
275
 
            var p = dom_make_text_elem("p", "Error: "
276
 
                    + "There was an unexpected server error processing "
277
 
                    + "the selected command.");
278
 
            err.appendChild(p);
279
 
            p = dom_make_text_elem("p", "If the problem persists, please "
280
 
                    + "contact the system administrator.")
281
 
            err.appendChild(p);
282
 
            p = document.createElement("p");
283
 
            var refresh = document.createElement("input");
284
 
            refresh.setAttribute("type", "button");
285
 
            refresh.setAttribute("value", "Back to file view");
286
 
            refresh.setAttribute("onclick", "refresh()");
287
 
            p.appendChild(refresh);
288
 
            err.appendChild(p);
289
 
            handle_error(err);
290
 
        }
291
 
        else
292
 
        {
293
 
            var err = document.createElement("div");
294
 
            var p = dom_make_text_elem("p", "Error: "
295
 
                    + "There was an unexpected server error retrieving "
296
 
                    + "the requested file or directory.");
297
 
            err.appendChild(p);
298
 
            p = dom_make_text_elem("p", "If the problem persists, please "
299
 
                    + "contact the system administrator.")
300
 
            err.appendChild(p);
301
 
            handle_error(err);
302
 
        }
303
 
        return;
304
 
    }
305
 
    /* Get "." out, it's special */
306
 
    current_file = file_listing["."];     /* Global */
307
 
    delete file_listing["."];
308
 
 
309
 
    if ('revision' in listing)
310
 
    {
311
 
        current_revision = listing.revision;
312
 
    }
313
 
 
314
208
    /* Check if this is a directory listing or file contents */
315
209
    var isdir = response.getResponseHeader("X-IVLE-Return") == "Dir";
316
 
    if (isdir)
 
210
    if (!editmode && isdir)
317
211
    {
318
 
        setup_for_listing();
319
 
        if (top_level_dir)
320
 
        {
321
 
            /* Top-level dir, with subjects */
322
 
            special_home_listing(listing, subjects, path);
323
 
        }
324
 
        else
325
 
        {
326
 
            /* Not the top-level dir. Do a normal dir listing. */
327
 
            handle_dir_listing(path, listing.listing);
328
 
        }
 
212
        var listing = response.responseText;
 
213
        /* The listing SHOULD be valid JSON text. Parse it into an object. */
 
214
        try
 
215
        {
 
216
            listing = JSON.parse(listing);
 
217
        }
 
218
        catch (e)
 
219
        {
 
220
            handle_error("The server returned an invalid directory listing");
 
221
            return;
 
222
        }
 
223
        handle_dir_listing(path, listing);
329
224
    }
330
225
    else
331
226
    {
332
 
        /* Need to make a 2nd ajax call, this time get the actual file
333
 
         * contents */
334
 
        callback = function(response)
335
 
            {
336
 
                /* Read the response and set up the page accordingly */
337
 
                handle_contents_response(path, response);
338
 
            }
339
 
        /* Call the server and request the listing. */
340
 
        if (url_args)
341
 
            args = shallow_clone_object(url_args);
342
 
        else
343
 
            args = {};
344
 
        /* This time, get the contents of the file, not its metadata */
345
 
        args['return'] = "contents";
346
 
        ajax_call(callback, service_app, path, args, "GET");
347
 
    }
348
 
    update_actions(isdir);
349
 
}
350
 
 
351
 
function handle_contents_response(path, response)
352
 
{
353
 
    /* Treat this as an ordinary file. Get the file type. */
354
 
    var content_type = response.getResponseHeader("Content-Type");
355
 
    var handler_type = get_handler_type(content_type);
356
 
    would_be_handler_type = handler_type;
357
 
    /* handler_type should now be set to either
358
 
     * "text", "image", "audio" or "binary". */
359
 
    switch (handler_type)
360
 
    {
361
 
    case "text":
362
 
        handle_text(path, response.responseText,
363
 
            would_be_handler_type);
364
 
        break;
365
 
    case "image":
366
 
        /* TODO: Custom image handler */
367
 
        handle_binary(path, response.responseText);
368
 
        break;
369
 
    case "audio":
370
 
        /* TODO: Custom audio handler */
371
 
        handle_binary(path, response.responseText);
372
 
        break;
373
 
    case "binary":
374
 
        handle_binary(path);
375
 
        break;
376
 
    }
377
 
}
378
 
 
379
 
/* Called when a form upload comes back (from an iframe).
380
 
 * Refreshes the page.
381
 
 */
382
 
function upload_callback()
383
 
{
384
 
    /* This has a pretty nasty hack, which happens to work.
385
 
     * upload_callback is set as the "onload" callback for the iframe which
386
 
     * receives the response from the server for uploading a file.
387
 
     * This means it gets called twice. Once when initialising the iframe, and
388
 
     * a second time when the actual response comes back.
389
 
     * All we want to do is call navigate to refresh the page. But we CAN'T do
390
 
     * that on the first load or it will just go into an infinite cycle of
391
 
     * refreshing. We need to refresh the page ONLY on the second refresh.
392
 
     * upload_callback_count is reset to 0 just before the iframe is created.
393
 
     */
394
 
    upload_callback_count++;
395
 
    if (upload_callback_count >= 2)
396
 
    {
397
 
        myFrame = frames['upload_iframe'].document;
398
 
        /* Browsers will turn the raw returned JSON into an HTML document. We
399
 
         * need to get the <pre> from inside the <body>, and look at its text.
400
 
         */
401
 
        data = myFrame.firstChild.getElementsByTagName(
402
 
            'body')[0].firstChild.firstChild.nodeValue;
403
 
        data = JSON.parse(data);
404
 
        if ('Error' in data)
405
 
            alert("Error: " + decodeURIComponent(data['Error']));
406
 
        document.getElementsByName('data')[0].value = '';
407
 
        refresh();
 
227
        /* Treat this as an ordinary file. Get the file type. */
 
228
        var content_type = response.getResponseHeader("Content-Type");
 
229
        var handler_type = get_handler_type(content_type);
 
230
        /* If we're in "edit mode", always treat this file as text */
 
231
        would_be_handler_type = handler_type;
 
232
        if (editmode) handler_type = "text";
 
233
        /* handler_type should now be set to either
 
234
         * "text", "image", "audio" or "binary". */
 
235
        switch (handler_type)
 
236
        {
 
237
        case "text":
 
238
            if (isdir)
 
239
            {
 
240
                handle_text(path_join(path, "untitled"), "",
 
241
                    would_be_handler_type);
 
242
            }
 
243
            else
 
244
            {
 
245
                handle_text(path, response.responseText,
 
246
                    would_be_handler_type);
 
247
            }
 
248
            break;
 
249
        case "image":
 
250
            /* TODO: Custom image handler */
 
251
            handle_binary(path, response.responseText);
 
252
            break;
 
253
        case "audio":
 
254
            /* TODO: Custom audio handler */
 
255
            handle_binary(path, response.responseText);
 
256
            break;
 
257
        case "binary":
 
258
            handle_binary(path);
 
259
            break;
 
260
        }
408
261
    }
409
262
}
410
263
 
414
267
 */
415
268
function clearpage()
416
269
{
 
270
    dom_removechildren(document.getElementById("path"));
417
271
    dom_removechildren(document.getElementById("filesbody"));
418
272
}
419
273
 
420
 
/* Checks if a file needs to be saved. If it does, the user will be asked
421
 
 * if they want to continue anyway. The caller must specify a warning
422
 
 * sentence which indicates the consequences of continuing.
423
 
 * Returns true if we should continue, and false if we should not.
424
 
 */
425
 
function maybe_save(warning)
426
 
{
427
 
    if (warning == null) warning = '';
428
 
    if (current_file == null || current_file.isdir) return true;
429
 
    if (document.getElementById("save_button").disabled) return true;
430
 
    return confirm("This file has unsaved changes. " + warning +
431
 
                   "\nAre you sure you wish to continue?");
432
 
}
433
 
 
434
274
/** Deletes all "dynamic" content on the page necessary to navigate from
435
275
 * one directory listing to another (does not clear as much as clearpage
436
276
 * does).
444
284
    dom_removechildren(document.getElementById("sidepanel"));
445
285
}
446
286
 
 
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.
 
290
 */
 
291
function setmode(editmode)
 
292
{
 
293
    /* Find the DOM elements for the file browser and editor tabs */
 
294
    var tabs = document.getElementById("apptabs");
 
295
    var tab_files = null;
 
296
    var tab_edit = null;
 
297
    var a;
 
298
    var href;
 
299
    for (var i=0; i<tabs.childNodes.length; i++)
 
300
    {
 
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];
 
311
    }
 
312
 
 
313
    if (editmode)
 
314
    {
 
315
        tab_files.removeAttribute("class");
 
316
        tab_edit.setAttribute("class", "thisapp");
 
317
    }
 
318
    else
 
319
    {
 
320
        tab_edit.removeAttribute("class");
 
321
        tab_files.setAttribute("class", "thisapp");
 
322
    }
 
323
}
 
324
 
447
325
/*** HANDLERS for different types of responses (such as dir listing, file,
448
326
 * etc). */
449
327
 
450
 
/* handle_error.
451
 
 * message may either be a string, or a DOM node, which will be placed inside
452
 
 * a div.
453
 
 */
454
328
function handle_error(message)
455
329
{
 
330
    setmode(false);
456
331
    var files = document.getElementById("filesbody");
457
 
    var txt_elem;
458
 
    if (typeof(message) == "string")
459
 
    {
460
 
        txt_elem = dom_make_text_elem("div", "Error: "
461
 
                   + message.toString() + ".")
462
 
    }
463
 
    else
464
 
    {
465
 
        /* Assume message is a DOM node */
466
 
        txt_elem = document.createElement("div");
467
 
        txt_elem.appendChild(message);
468
 
    }
 
332
    var txt_elem = dom_make_text_elem("div", "Error: "
 
333
        + message.toString() + ".")
469
334
    txt_elem.setAttribute("class", "padding error");
470
335
    files.appendChild(txt_elem);
471
336
}
472
337
 
473
 
/** Given a path, filename and optional revision, returns a URL to open that
474
 
 *  revision of that file.
 
338
/** Presents a path list (address bar inside the page) for clicking.
475
339
 */
476
 
function build_revision_url(path, filename, revision)
 
340
function presentpath(path)
477
341
{
478
 
    bits = {'path': app_path(this_app, path, filename)};
479
 
    if (current_revision)
 
342
    var dom_path = document.getElementById("path");
 
343
    var href_path = make_path(this_app);
 
344
    var nav_path = "";
 
345
    var dir;
 
346
 
 
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++)
480
352
    {
481
 
        bits['query_string'] = 'r=' + revision;
 
353
        dir = pathlist[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("/"));
482
362
    }
483
 
    return build_url(bits);
 
363
    dom_path.removeChild(dom_path.lastChild);
484
364
}
485
365
 
486
366
/** Given a mime type, returns the path to the icon.
528
408
        return default_svn_nice;
529
409
}
530
410
 
531
 
/** Returns true if a file is versioned (not unversioned or ignored).
532
 
 */
533
 
function svnstatus_versioned(svnstatus)
534
 
{
535
 
    return svnstatus != "unversioned" && svnstatus != "ignored";
536
 
}
537
 
 
538
411
/** Displays a download link to the binary file.
539
412
 */
540
413
function handle_binary(path)
541
414
{
 
415
    setmode(false);
542
416
    var files = document.getElementById("filesbody");
543
417
    var div = document.createElement("div");
544
418
    files.appendChild(div);
545
419
    div.setAttribute("class", "padding");
546
 
    var download_link = app_url(download_app, path);
 
420
    var download_link = app_path(download_app, path);
547
421
    var par1 = dom_make_text_elem("p",
548
422
        "The file " + path + " is a binary file. To download this file, " +
549
423
        "click the following link:");
553
427
    div.appendChild(par2);
554
428
}
555
429
 
556
 
/* Enable or disable actions1 moreactions actions. Takes either a single
557
 
 * name, or an array of them.*/
558
 
function set_action_state(names, which, allow_on_revision)
559
 
{
560
 
    if (!(names instanceof Array)) names = Array(names);
561
 
 
562
 
    for (var i=0; i < names.length; i++)
563
 
    {
564
 
        element = document.getElementById('act_' + names[i]);
565
 
        if (which &&
566
 
            !(current_file.svnstatus == 'revision' && !allow_on_revision))
567
 
        {
568
 
            /* Enabling */
569
 
            element.setAttribute("class", "choice");
570
 
            element.removeAttribute("disabled");
571
 
        }
572
 
        else
573
 
        {
574
 
            /* Disabling */
575
 
            element.setAttribute("class", "disabled");
576
 
            element.setAttribute("disabled", "disabled");
577
 
        }
578
 
    }
579
 
}
580
 
 
581
 
/* Updates the list of available actions based on files selected */
582
 
function update_actions()
583
 
{
584
 
    var file;
585
 
    var numsel = selected_files.length;
586
 
    var svn_selection = false;
587
 
    
588
 
    if (numsel > 0)
589
 
    {
590
 
        svn_selection = true;
591
 
        for (var i = 0; i < selected_files.length; i++){
592
 
            if (!svnstatus_versioned(file_listing[selected_files[i]].svnstatus))
593
 
            {
594
 
                svn_selection = false;
595
 
            }
596
 
        }
597
 
    }
598
 
    
599
 
    if (numsel <= 1)
600
 
    {
601
 
        if (numsel == 0)
602
 
        {
603
 
            /* Display information about the current directory instead */
604
 
            filename = path_basename(current_path);
605
 
            file = current_file;
606
 
        }
607
 
        else if (numsel == 1)
608
 
        {
609
 
            filename = selected_files[0];
610
 
            file = file_listing[filename];
611
 
        }
612
 
 
613
 
        /* Update each action node in the topbar.
614
 
         * This includes enabling/disabling actions as appropriate, and
615
 
         * setting href/onclick attributes. */
616
 
    }
617
 
 
618
 
    /* Open */
619
 
    /* Available if exactly one file is selected */
620
 
    var open = document.getElementById("act_open");
621
 
    if (numsel == 1)
622
 
    {
623
 
        open.setAttribute("class", "choice");
624
 
        if (file.isdir)
625
 
            open.setAttribute("title",
626
 
                "Navigate to this directory in the file browser");
627
 
        else
628
 
            open.setAttribute("title",
629
 
                "Edit or view this file");
630
 
        open.setAttribute("href", build_revision_url(current_path, filename,
631
 
                                                     current_revision));
632
 
    }
633
 
    else
634
 
    {
635
 
        open.setAttribute("class", "disabled");
636
 
        open.removeAttribute("title");
637
 
        open.removeAttribute("href");
638
 
    }
639
 
 
640
 
    /* Serve */
641
 
    /* Available if zero or one files are selected,
642
 
     * and only if this is a file, not a directory */
643
 
    var serve = document.getElementById("act_serve");
644
 
    if (numsel <= 1 && !file.isdir && current_file.svnstatus != 'revision')
645
 
    {
646
 
        serve.setAttribute("class", "choice");
647
 
        serve.setAttribute("onclick",
648
 
              "return maybe_save('The last saved version will be served.')");
649
 
        if (numsel == 0)
650
 
            serve.setAttribute("href",
651
 
                app_url(serve_app, current_path));
652
 
        else
653
 
            serve.setAttribute("href",
654
 
                app_url(serve_app, current_path, filename));
655
 
    }
656
 
    else
657
 
    {
658
 
        serve.setAttribute("class", "disabled");
659
 
        serve.removeAttribute("href");
660
 
        serve.removeAttribute("onclick");
661
 
    }
662
 
 
663
 
    /* Run */
664
 
    /* Available if exactly one file is selected,
665
 
     * and it is a Python file.
666
 
     */
667
 
    var run = document.getElementById("act_run");
668
 
     
669
 
    if (numsel <= 1 && !file.isdir && file.type == "text/x-python" 
670
 
            && current_file.svnstatus != 'revision')
671
 
    {
672
 
        if (numsel == 0)
673
 
        {
674
 
            // In the edit window
675
 
            var localpath = path_join('/home', current_path);
676
 
        }
677
 
        else
678
 
        {
679
 
            // In the browser window
680
 
            var localpath = path_join('/home', current_path, filename);
681
 
        }
682
 
        run.setAttribute("class", "choice");
683
 
        run.setAttribute("onclick", "runfile('" + localpath + "')");
684
 
    }
685
 
    else
686
 
    {
687
 
        run.setAttribute("class", "disabled");
688
 
        run.removeAttribute("onclick");
689
 
    }
690
 
 
691
 
    /* Download */
692
 
    /* Always available for current files.
693
 
     * If 0 files selected, download the current file or directory as a ZIP.
694
 
     * If 1 directory selected, download it as a ZIP.
695
 
     * If 1 non-directory selected, download it.
696
 
     * If >1 files selected, download them all as a ZIP.
697
 
     */
698
 
    var download = document.getElementById("act_download");
699
 
    if (current_file.svnstatus == 'revision')
700
 
    {
701
 
        download.setAttribute("class", "disabled");
702
 
        download.removeAttribute("onclick");
703
 
    }
704
 
    else if (numsel <= 1)
705
 
    {
706
 
        download.setAttribute("class", "choice")
707
 
        if (numsel == 0)
708
 
        {
709
 
            download.setAttribute("href",
710
 
                app_url(download_app, current_path));
711
 
            if (file.isdir)
712
 
                download.setAttribute("title",
713
 
                    "Download the current directory as a ZIP file");
714
 
            else
715
 
                download.setAttribute("title",
716
 
                    "Download the current file");
717
 
        }
718
 
        else
719
 
        {
720
 
            download.setAttribute("href",
721
 
                app_url(download_app, current_path, filename));
722
 
            if (file.isdir)
723
 
                download.setAttribute("title",
724
 
                    "Download the selected directory as a ZIP file");
725
 
            else
726
 
                download.setAttribute("title",
727
 
                    "Download the selected file");
728
 
        }
729
 
    }
730
 
    else
731
 
    {
732
 
        /* Make a query string with all the files to download */
733
 
        var dlpath = app_url(download_app, current_path) + "?";
734
 
        for (var i=0; i<numsel; i++)
735
 
            dlpath += "path=" + encodeURIComponent(selected_files[i]) + "&";
736
 
        dlpath = dlpath.substr(0, dlpath.length-1);
737
 
        download.setAttribute("class", "choice")
738
 
        download.setAttribute("href", dlpath);
739
 
        download.setAttribute("title",
740
 
            "Download the selected files as a ZIP file");
741
 
    }
742
 
 
743
 
    /* Refresh - No changes required */
744
 
 
745
 
    /* Publish and Submit */
746
 
    /* If this directory is under subversion and selected/unselected file is a
747
 
     * directory. */
748
 
    var publish = document.getElementById("act_publish");
749
 
    var submit = document.getElementById("act_submit");
750
 
    var pubcond = numsel <= 1 && file.isdir;
751
 
    if (pubcond)
752
 
    {
753
 
        /* If this dir is already published, call it "Unpublish" */
754
 
        if (file.published)
755
 
        {
756
 
            publish.setAttribute("value", "unpublish");
757
 
            publish.setAttribute("title" ,"Make it so this directory "
758
 
                + "can not be seen by anyone on the web");
759
 
            publish.firstChild.nodeValue = "Unpublish";
760
 
        } else {
761
 
            publish.setAttribute("value", "publish");
762
 
            publish.setAttribute("title","Make it so this directory "
763
 
                + "can be seen by anyone on the web");
764
 
            publish.firstChild.nodeValue = "Publish";
765
 
        }
766
 
    }
767
 
    set_action_state(["publish", "submit"], pubcond);
768
 
 
769
 
    /* Share */
770
 
    /* If exactly 1 non-directory file is selected, and its parent
771
 
     * directory is published.
772
 
     */
773
 
    set_action_state("share", numsel == 1 && !file.isdir &&
774
 
                     current_file.published);
775
 
 
776
 
    /* Rename */
777
 
    /* If exactly 1 file is selected */
778
 
    set_action_state("rename", numsel == 1);
779
 
 
780
 
    /* Delete, cut, copy */
781
 
    /* If >= 1 file is selected */
782
 
    set_action_state(["delete", "cut", "copy"], numsel >= 1);
783
 
 
784
 
    /* Paste, new file, new directory, upload */
785
 
    /* Disable if the current file is not a directory */
786
 
    set_action_state(["paste", "newfile", "mkdir", "upload"], current_file.isdir);
787
 
 
788
 
    /* Subversion actions */
789
 
    /* These are only useful if we are in a versioned directory and have some
790
 
     * files selected. */
791
 
    set_action_state(["svnadd"], numsel >= 1 && current_file.svnstatus);
792
 
    /* And these are only useful is ALL the selected files are versioned */
793
 
    set_action_state(["svnremove", "svnrevert", "svncopy", "svncut"],
794
 
            numsel >= 1 && current_file.svnstatus && svn_selection);
795
 
    /* Commit is useful if ALL selected files are versioned, or the current
796
 
     * directory is versioned */
797
 
    set_action_state(["svncommit"], current_file.svnstatus &&
798
 
            (numsel >= 1 && svn_selection || numsel == 0));
799
 
 
800
 
    /* Diff, log and update only support one path at the moment, so we must
801
 
     * have 0 or 1 versioned files selected. If 0, the directory must be
802
 
     * versioned. */
803
 
    single_versioned_path = (
804
 
         (
805
 
          (numsel == 1 && (svnst = file_listing[selected_files[0]].svnstatus)) ||
806
 
          (numsel == 0 && (svnst = current_file.svnstatus))
807
 
         ) && svnstatus_versioned(svnst));
808
 
    set_action_state(["svndiff", "svnupdate"], single_versioned_path);
809
 
 
810
 
    /* We can resolve if we have a file selected and it is conflicted. */
811
 
    set_action_state("svnresolved", single_versioned_path && numsel == 1 && svnst == "conflicted");
812
 
 
813
 
    /* Log should be available for revisions as well. */
814
 
    set_action_state("svnlog", single_versioned_path, true);
815
 
 
816
 
    /* Cleanup should be available for revisions as well. */
817
 
    set_action_state("svncleanup", single_versioned_path, true);
818
 
 
819
 
    single_ivle_versioned_path = (
820
 
         (
821
 
          (numsel == 1 && (stat = file_listing[selected_files[0]])) ||
822
 
          (numsel == 0 && (stat = current_file))
823
 
         ) && svnstatus_versioned(stat.svnstatus)
824
 
           && stat.svnurl
825
 
           && stat.svnurl.substr(0, svn_base.length) == svn_base);
826
 
    set_action_state(["submit"], single_ivle_versioned_path);
827
 
 
828
 
    /* There is currently nothing on the More Actions menu of use
829
 
     * when the current file is not a directory. Hence, just remove
830
 
     * it entirely.
831
 
     * (This makes some of the above decisions somewhat redundant).
832
 
     * We also take this opportunity to show the appropriate actions2
833
 
     * bar for this path. It should either be a save or upload widget.
834
 
     */
835
 
    if (current_file.isdir)
836
 
    {
837
 
        var actions2_directory = document.getElementById("actions2_directory");
838
 
        actions2_directory.setAttribute("style", "display: inline;");
839
 
        var moreactions = document.getElementById("moreactions_area");
840
 
        moreactions.setAttribute("style", "display: inline;");
841
 
    }
842
 
    else
843
 
    {
844
 
        var actions2_file = document.getElementById("actions2_file");
845
 
        actions2_file.setAttribute("style", "display: inline;");
846
 
    }
847
 
 
848
 
    return;
849
 
}
850
 
 
851
 
/** Event handler for when an item of the "More actions..." dropdown box is
852
 
 * selected. Performs the selected action. */
853
 
function handle_moreactions()
854
 
{
855
 
    var moreactions = document.getElementById("moreactions");
856
 
    if (moreactions.value == "top")
857
 
        return;
858
 
    var selectedaction = moreactions.value;
859
 
    /* Reset to "More actions..." */
860
 
    moreactions.selectedIndex = 0;
861
 
 
862
 
    /* If 0 files selected, filename is the name of the current dir.
863
 
     * If 1 file selected, filename is that file.
864
 
     */
865
 
    if (selected_files.length == 0)
866
 
        filename = path_basename(current_path);
867
 
    else if (selected_files.length == 1)
868
 
        filename = selected_files[0];
869
 
    else
870
 
        filename = null;
871
 
 
872
 
    /* Now handle the selected action */
873
 
    switch(selectedaction)
874
 
    {
875
 
    case "publish":
876
 
        action_publish(selected_files);
877
 
        break;
878
 
    case "unpublish":
879
 
        action_unpublish(selected_files);
880
 
        break;
881
 
    case "share":
882
 
        window.open(public_app_url("~" + current_path, filename), 'share')
883
 
        break;
884
 
    case "submit":
885
 
        if (selected_files.length == 1)
886
 
            stat = file_listing[selected_files[0]];
887
 
        else
888
 
            stat = current_file;
889
 
        url = stat.svnurl.substr(svn_base.length);      // URL-encoded
890
 
        path = decodeURIComponent(url);
891
 
 
892
 
        /* The working copy might not have an up-to-date version of the
893
 
         * directory. While submitting like this could yield unexpected
894
 
         * results, we should really submit the latest revision to minimise
895
 
         * terrible mistakes - so we run off and ask fileservice for the
896
 
         * latest revision.*/
897
 
        $.post(app_path(service_app, current_path),
898
 
            {"action": "svnrepostat", "path": path},
899
 
            function(result)
900
 
            {
901
 
                window.location = path_join(app_path('+submit'), url) + '?revision=' + result.svnrevision;
902
 
            },
903
 
            "json");
904
 
 
905
 
        break;
906
 
    case "rename":
907
 
        action_rename(filename);
908
 
        break;
909
 
    case "delete":
910
 
        action_delete(selected_files);
911
 
        break;
912
 
    case "copy":
913
 
        action_copy(selected_files);
914
 
        break;
915
 
    case "cut":
916
 
        action_cut(selected_files);
917
 
        break;
918
 
    case "paste":
919
 
        action_paste();
920
 
        break;
921
 
    case "newfile":
922
 
        action_newfile();
923
 
        break;
924
 
    case "mkdir":
925
 
        action_mkdir();
926
 
        break;
927
 
    case "upload":
928
 
        show_uploadpanel(true);
929
 
        break;
930
 
    case "svnadd":
931
 
        action_add(selected_files);
932
 
        break;
933
 
    case "svnremove":
934
 
        action_remove(selected_files);
935
 
        break;
936
 
    case "svnrevert":
937
 
        action_revert(selected_files);
938
 
        break;
939
 
    case "svndiff":
940
 
        window.location = path_join(app_url('diff'), current_path, selected_files[0] || '');
941
 
        break;
942
 
    case "svnupdate":
943
 
        action_update(selected_files);
944
 
        break;
945
 
    case "svnresolved":
946
 
        action_resolved(selected_files);
947
 
        break;
948
 
    case "svncommit":
949
 
        action_commit(selected_files);
950
 
        break;
951
 
    case "svnlog":
952
 
        window.location = path_join(app_url('svnlog'), current_path, selected_files[0] || '');
953
 
        break;
954
 
    case "svncopy":
955
 
        action_svncopy(selected_files);
956
 
        break;
957
 
    case "svncut":
958
 
        action_svncut(selected_files);
959
 
        break;
960
 
    case "svncleanup":
961
 
        action_svncleanup(".");
962
 
        break;
963
 
    }
964
 
}
965
 
 
966
 
/** User clicks "Run" button.
967
 
 * Do an Ajax call and print the test output.
968
 
 */
969
 
function runfile(localpath)
970
 
{
971
 
    if (!maybe_save('The last saved version will be run.')) return false;
972
 
 
973
 
    /* Dump the entire file to the console */
974
 
    var callback = function()
975
 
    {
976
 
        console_enter_line("execfile('" + localpath + "')", "block");
977
 
    }
978
 
    start_server(callback)
979
 
    return;
980
 
}
981
 
 
982
430
/** Called when the page loads initially.
983
431
 */
984
 
function browser_init()
 
432
window.onload = function()
985
433
{
986
434
    /* Navigate (internally) to the path in the URL bar.
987
435
     * This causes the page to be populated with whatever is at that address,
988
436
     * whether it be a directory or a file.
989
437
     */
990
 
    var path = get_path();
991
 
    navigate(path);
992
 
}
993
 
 
994
 
/** Gets the current path of the window */
995
 
function get_path() {
996
438
    var path = parse_url(window.location.href).path;
997
439
    /* Strip out root_dir + "/files" from the front of the path */
998
440
    var strip = make_path(this_app);
 
441
    var editmode = false;
999
442
    if (path.substr(0, strip.length) == strip)
1000
443
        path = path.substr(strip.length+1);
1001
444
    else
1005
448
        if (path.substr(0, strip.length) == strip)
1006
449
        {
1007
450
            path = path.substr(strip.length+1);
 
451
            editmode = true;
1008
452
        }
1009
453
    }
1010
454
 
1015
459
        path = username;
1016
460
    }
1017
461
 
1018
 
    return path;
 
462
    navigate(path, editmode);
1019
463
}