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

« back to all changes in this revision

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

  • Committer: stevenbird
  • Date: 2008-02-14 00:18:01 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:447
graphic for user database schema

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