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

« back to all changes in this revision

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

  • Committer: dcoles
  • Date: 2008-02-13 04:10:55 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:443
Added Forum application along with unmodifed version of phpBB3 "Olympus" 3.0.0

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";
66
66
    "missing": "missing.png",
67
67
    "deleted": "deleted.png",
68
68
    "modified": "modified.png",
69
 
    "revision": "revision.png"
70
69
};
71
70
 
72
71
/* Mapping SVN status to "nice" strings */
80
79
    "modified": "Permanent file (modified)",
81
80
    "merged": "Permanent file (merged)",
82
81
    "conflicted": "Permanent file (conflicted)",
83
 
    "revision": "Past Permanent file (revision)"
84
82
};
85
83
 
86
84
default_svn_icon = null;
95
93
 * application can interpret them.
96
94
 */
97
95
types_exec = [
98
 
    "text/x-python"
 
96
    "text/x-python",
99
97
];
100
98
 
101
99
 
102
100
/* Global variables */
103
101
 
104
 
/** The listing object returned by the server as JSON */
105
 
file_listing = null;
106
 
current_file = null;
107
102
current_path = "";
108
103
 
109
 
/** Filenames of all files selected
110
 
 * (Only used by dir listings, but still needs to be [] for files, so that
111
 
 * update_actions knows that nothing is selected).
112
 
 */
113
 
selected_files = [];
114
 
 
115
 
upload_callback_count = 0;      /* See upload_callback */
116
 
 
117
104
/** Calls the server using Ajax, performing an action on the server side.
118
105
 * Receives the response from the server and performs a refresh of the page
119
106
 * contents, updating it to display the returned data (such as a directory
136
123
function do_action(action, path, args, content_type, ignore_response)
137
124
{
138
125
    args.action = action;
139
 
    /* Callback action, when the server returns */
140
 
    var callback = function(response)
141
 
        {
142
 
            /* Check for action errors reported by the server, and report them
143
 
             * to the user */
144
 
            var error = response.getResponseHeader("X-IVLE-Action-Error");
145
 
            if (error != null)
146
 
                /* Note: This header (in particular) comes URI-encoded, to
147
 
                 * allow multi-line error messages. Decode */
148
 
                alert("Error: " + decodeURIComponent(error.toString()) + ".");
149
 
            /* Now read the response and set up the page accordingly */
150
 
            if (ignore_response != true)
151
 
                handle_response(path, response, true);
152
 
        }
153
126
    /* Call the server and perform the action. This mutates the server. */
154
 
    ajax_call(callback, 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);
155
136
}
156
137
 
157
138
/** Calls the server using Ajax, requesting a directory listing. This should
161
142
 * Called "navigate", can also be used for a simple refresh.
162
143
 * Always makes a GET request.
163
144
 * No return value.
164
 
 */
165
 
function navigate(path)
166
 
{
167
 
    callback = function(response)
168
 
        {
169
 
            /* Read the response and set up the page accordingly */
170
 
            handle_response(path, response, false, url.args);
171
 
        }
172
 
    /* Get any query strings */
173
 
    url = parse_url(window.location.href);
174
 
    
175
 
    /* Call the server and request the listing. */
176
 
    ajax_call(callback, service_app, path, url.args, "GET");
177
 
}
178
 
 
179
 
/* Refreshes the current view.
180
 
 * Calls navigate on the current path.
181
 
 */
182
 
function refresh()
183
 
{
184
 
    if (maybe_save('All changes since the last save will be lost!'))
185
 
        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);
186
154
}
187
155
 
188
156
/** Determines the "handler type" from a MIME type.
214
182
 * things) be used to update the URL in the location bar.
215
183
 * \param response XMLHttpRequest object returned by the server. Should
216
184
 * contain all the response data.
217
 
 * \param is_action Boolean. True if this is the response to an action, false
218
 
 * if this is the response to a simple listing. This is used in handling the
219
 
 * error.
220
 
 * \param url_args Arguments dict, for the arguments passed to the URL
221
 
 * 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.
222
187
 */
223
 
function handle_response(path, response, is_action, url_args)
 
188
function handle_response(path, response, editmode)
224
189
{
225
190
    /* TODO: Set location bar to "path" */
226
191
    current_path = path;
227
192
 
228
193
    /* Clear away the existing page contents */
229
194
    clearpage();
 
195
    /* Display the path at the top, for navigation */
 
196
    presentpath(path);
230
197
 
231
198
    /* Check the status, and if not 200, read the error and handle this as an
232
199
     * error. */
239
206
        return;
240
207
    }
241
208
 
242
 
    /* This will always return a listing, whether it is a dir or a file.
243
 
     */
244
 
    var listing = response.responseText;
245
 
    /* The listing SHOULD be valid JSON text. Parse it into an object. */
246
 
    try
247
 
    {
248
 
        listing = JSON.parse(listing);
249
 
        file_listing = listing.listing;     /* Global */
250
 
    }
251
 
    catch (e)
252
 
    {
253
 
        if (is_action)
254
 
        {
255
 
            var err = document.createElement("div");
256
 
            var p = dom_make_text_elem("p", "Error: "
257
 
                    + "There was an unexpected server error processing "
258
 
                    + "the selected command.");
259
 
            err.appendChild(p);
260
 
            p = dom_make_text_elem("p", "If the problem persists, please "
261
 
                    + "contact the system administrator.")
262
 
            err.appendChild(p);
263
 
            p = document.createElement("p");
264
 
            var refresh = document.createElement("input");
265
 
            refresh.setAttribute("type", "button");
266
 
            refresh.setAttribute("value", "Back to file view");
267
 
            refresh.setAttribute("onclick", "refresh()");
268
 
            p.appendChild(refresh);
269
 
            err.appendChild(p);
270
 
            handle_error(err);
271
 
        }
272
 
        else
273
 
        {
274
 
            var err = document.createElement("div");
275
 
            var p = dom_make_text_elem("p", "Error: "
276
 
                    + "There was an unexpected server error retrieving "
277
 
                    + "the requested file or directory.");
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
 
            handle_error(err);
283
 
        }
284
 
        return;
285
 
    }
286
 
    /* Get "." out, it's special */
287
 
    current_file = file_listing["."];     /* Global */
288
 
    delete file_listing["."];
289
 
 
290
209
    /* Check if this is a directory listing or file contents */
291
210
    var isdir = response.getResponseHeader("X-IVLE-Return") == "Dir";
292
 
    if (isdir)
 
211
    if (!editmode && isdir)
293
212
    {
 
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
        }
294
224
        handle_dir_listing(path, listing);
295
225
    }
296
226
    else
297
227
    {
298
 
        /* Need to make a 2nd ajax call, this time get the actual file
299
 
         * contents */
300
 
        callback = function(response)
301
 
            {
302
 
                /* Read the response and set up the page accordingly */
303
 
                handle_contents_response(path, response);
304
 
            }
305
 
        /* Call the server and request the listing. */
306
 
        if (url_args)
307
 
            args = shallow_clone_object(url_args);
308
 
        else
309
 
            args = {};
310
 
        /* This time, get the contents of the file, not its metadata */
311
 
        args['return'] = "contents";
312
 
        ajax_call(callback, service_app, path, args, "GET");
313
 
    }
314
 
    update_actions(isdir);
315
 
}
316
 
 
317
 
function handle_contents_response(path, response)
318
 
{
319
 
    /* Treat this as an ordinary file. Get the file type. */
320
 
    var content_type = response.getResponseHeader("Content-Type");
321
 
    var handler_type = get_handler_type(content_type);
322
 
    would_be_handler_type = handler_type;
323
 
    /* handler_type should now be set to either
324
 
     * "text", "image", "audio" or "binary". */
325
 
    switch (handler_type)
326
 
    {
327
 
    case "text":
328
 
        handle_text(path, response.responseText,
329
 
            would_be_handler_type);
330
 
        break;
331
 
    case "image":
332
 
        /* TODO: Custom image handler */
333
 
        handle_binary(path, response.responseText);
334
 
        break;
335
 
    case "audio":
336
 
        /* TODO: Custom audio handler */
337
 
        handle_binary(path, response.responseText);
338
 
        break;
339
 
    case "binary":
340
 
        handle_binary(path);
341
 
        break;
342
 
    }
343
 
}
344
 
 
345
 
/* Called when a form upload comes back (from an iframe).
346
 
 * Refreshes the page.
347
 
 */
348
 
function upload_callback()
349
 
{
350
 
    /* This has a pretty nasty hack, which happens to work.
351
 
     * upload_callback is set as the "onload" callback for the iframe which
352
 
     * receives the response from the server for uploading a file.
353
 
     * This means it gets called twice. Once when initialising the iframe, and
354
 
     * a second time when the actual response comes back.
355
 
     * All we want to do is call navigate to refresh the page. But we CAN'T do
356
 
     * that on the first load or it will just go into an infinite cycle of
357
 
     * refreshing. We need to refresh the page ONLY on the second refresh.
358
 
     * upload_callback_count is reset to 0 just before the iframe is created.
359
 
     */
360
 
    upload_callback_count++;
361
 
    if (upload_callback_count >= 2)
362
 
    {
363
 
        document.getElementsByName('data')[0].value = '';
364
 
        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
        }
365
262
    }
366
263
}
367
264
 
371
268
 */
372
269
function clearpage()
373
270
{
 
271
    dom_removechildren(document.getElementById("path"));
374
272
    dom_removechildren(document.getElementById("filesbody"));
375
273
}
376
274
 
377
 
/* Checks if a file needs to be saved. If it does, the user will be asked
378
 
 * if they want to continue anyway. The caller must specify a warning
379
 
 * sentence which indicates the consequences of continuing.
380
 
 * Returns true if we should continue, and false if we should not.
381
 
 */
382
 
function maybe_save(warning)
383
 
{
384
 
    if (warning == null) warning = '';
385
 
    if (current_file.isdir) return true;
386
 
    if (document.getElementById("save_button").disabled) return true;
387
 
    return confirm("This file has unsaved changes. " + warning +
388
 
                   "\nAre you sure you wish to continue?");
389
 
}
390
 
 
391
275
/** Deletes all "dynamic" content on the page necessary to navigate from
392
276
 * one directory listing to another (does not clear as much as clearpage
393
277
 * does).
401
285
    dom_removechildren(document.getElementById("sidepanel"));
402
286
}
403
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
 
404
326
/*** HANDLERS for different types of responses (such as dir listing, file,
405
327
 * etc). */
406
328
 
407
 
/* handle_error.
408
 
 * message may either be a string, or a DOM node, which will be placed inside
409
 
 * a div.
410
 
 */
411
329
function handle_error(message)
412
330
{
 
331
    setmode(false);
413
332
    var files = document.getElementById("filesbody");
414
 
    var txt_elem;
415
 
    if (typeof(message) == "string")
416
 
    {
417
 
        txt_elem = dom_make_text_elem("div", "Error: "
418
 
                   + message.toString() + ".")
419
 
    }
420
 
    else
421
 
    {
422
 
        /* Assume message is a DOM node */
423
 
        txt_elem = document.createElement("div");
424
 
        txt_elem.appendChild(message);
425
 
    }
 
333
    var txt_elem = dom_make_text_elem("div", "Error: "
 
334
        + message.toString() + ".")
426
335
    txt_elem.setAttribute("class", "padding error");
427
336
    files.appendChild(txt_elem);
428
337
}
429
338
 
 
339
/** Presents a path list (address bar inside the page) for clicking.
 
340
 */
 
341
function presentpath(path)
 
342
{
 
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++)
 
353
    {
 
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("/"));
 
363
    }
 
364
    dom_path.removeChild(dom_path.lastChild);
 
365
}
 
366
 
430
367
/** Given a mime type, returns the path to the icon.
431
368
 * \param type String, Mime type.
432
369
 * \param sizelarge Boolean, optional.
476
413
 */
477
414
function handle_binary(path)
478
415
{
 
416
    setmode(false);
479
417
    var files = document.getElementById("filesbody");
480
418
    var div = document.createElement("div");
481
419
    files.appendChild(div);
490
428
    div.appendChild(par2);
491
429
}
492
430
 
493
 
/* Enable or disable actions1 moreactions actions. Takes either a single
494
 
 * name, or an array of them.*/
495
 
function set_action_state(names, which)
496
 
{
497
 
    if (!(names instanceof Array)) names = Array(names);
498
 
 
499
 
    for (var i=0; i < names.length; i++)
500
 
    {
501
 
        element = document.getElementById('act_' + names[i]);
502
 
        if (which)
503
 
        {
504
 
            /* Enabling */
505
 
            element.setAttribute("class", "choice");
506
 
            element.removeAttribute("disabled");
507
 
        }
508
 
        else
509
 
        {
510
 
            /* Disabling */
511
 
            element.setAttribute("class", "disabled");
512
 
            element.setAttribute("disabled", "disabled");
513
 
        }
514
 
    }
515
 
}
516
 
 
517
 
function update_actions()
518
 
{
519
 
    var file;
520
 
    var numsel = selected_files.length;
521
 
    if (numsel <= 1)
522
 
    {
523
 
        if (numsel == 0)
524
 
        {
525
 
            /* Display information about the current directory instead */
526
 
            filename = path_basename(current_path);
527
 
            file = current_file;
528
 
        }
529
 
        else if (numsel == 1)
530
 
        {
531
 
            filename = selected_files[0];
532
 
            file = file_listing[filename];
533
 
        }
534
 
 
535
 
        /* Update each action node in the topbar.
536
 
         * This includes enabling/disabling actions as appropriate, and
537
 
         * setting href/onclick attributes. */
538
 
    }
539
 
 
540
 
    /* Open */
541
 
    /* Available if exactly one file is selected */
542
 
    var open = document.getElementById("act_open");
543
 
    if (numsel == 1)
544
 
    {
545
 
        open.setAttribute("class", "choice");
546
 
        if (file.isdir)
547
 
            open.setAttribute("title",
548
 
                "Navigate to this directory in the file browser");
549
 
        else
550
 
            open.setAttribute("title",
551
 
                "Edit or view this file");
552
 
        open.setAttribute("href", app_path(this_app, current_path, filename));
553
 
    }
554
 
    else
555
 
    {
556
 
        open.setAttribute("class", "disabled");
557
 
        open.removeAttribute("title");
558
 
        open.removeAttribute("href");
559
 
    }
560
 
 
561
 
    /* Serve */
562
 
    /* Available if zero or one files are selected,
563
 
     * and only if this is a file, not a directory */
564
 
    var serve = document.getElementById("act_serve");
565
 
    if (numsel <= 1 && !file.isdir)
566
 
    {
567
 
        serve.setAttribute("class", "choice");
568
 
        serve.setAttribute("onclick",
569
 
              "return maybe_save('The last saved version will be served.')");
570
 
        if (numsel == 0)
571
 
            serve.setAttribute("href",
572
 
                app_path(serve_app, current_path));
573
 
        else
574
 
            serve.setAttribute("href",
575
 
                app_path(serve_app, current_path, filename));
576
 
    }
577
 
    else
578
 
    {
579
 
        serve.setAttribute("class", "disabled");
580
 
        serve.removeAttribute("href");
581
 
        serve.removeAttribute("onclick");
582
 
    }
583
 
 
584
 
    /* Run */
585
 
    /* Available if exactly one file is selected,
586
 
     * and it is a Python file.
587
 
     */
588
 
    var run = document.getElementById("act_run");
589
 
     
590
 
    if (!file.isdir && file.type == "text/x-python" && numsel <= 1)
591
 
    {
592
 
        if (numsel == 0)
593
 
        {
594
 
            // In the edit window
595
 
            var localpath = path_join('/home', current_path);
596
 
        }
597
 
        else
598
 
        {
599
 
            // In the browser window
600
 
            var localpath = path_join('/home', current_path, filename);
601
 
        }
602
 
        run.setAttribute("class", "choice");
603
 
        run.setAttribute("onclick", "runfile('" + localpath + "')");
604
 
    }
605
 
    else
606
 
    {
607
 
        run.setAttribute("class", "disabled");
608
 
        run.removeAttribute("onclick");
609
 
    }
610
 
 
611
 
    /* Download */
612
 
    /* Always available.
613
 
     * If 0 files selected, download the current file or directory as a ZIP.
614
 
     * If 1 directory selected, download it as a ZIP.
615
 
     * If 1 non-directory selected, download it.
616
 
     * If >1 files selected, download them all as a ZIP.
617
 
     */
618
 
    var download = document.getElementById("act_download");
619
 
    if (numsel <= 1)
620
 
    {
621
 
        if (numsel == 0)
622
 
        {
623
 
            download.setAttribute("href",
624
 
                app_path(download_app, current_path));
625
 
            if (file.isdir)
626
 
                download.setAttribute("title",
627
 
                    "Download the current directory as a ZIP file");
628
 
            else
629
 
                download.setAttribute("title",
630
 
                    "Download the current file");
631
 
        }
632
 
        else
633
 
        {
634
 
            download.setAttribute("href",
635
 
                app_path(download_app, current_path, filename));
636
 
            if (file.isdir)
637
 
                download.setAttribute("title",
638
 
                    "Download the selected directory as a ZIP file");
639
 
            else
640
 
                download.setAttribute("title",
641
 
                    "Download the selected file");
642
 
        }
643
 
    }
644
 
    else
645
 
    {
646
 
        /* Make a query string with all the files to download */
647
 
        var dlpath = urlencode_path(app_path(download_app, current_path)) + "?";
648
 
        for (var i=0; i<numsel; i++)
649
 
            dlpath += "path=" + encodeURIComponent(selected_files[i]) + "&";
650
 
        dlpath = dlpath.substr(0, dlpath.length-1);
651
 
        download.setAttribute("href", dlpath);
652
 
        download.setAttribute("title",
653
 
            "Download the selected files as a ZIP file");
654
 
    }
655
 
 
656
 
    /* Refresh - No changes required */
657
 
 
658
 
    /* Publish and Submit */
659
 
    /* If this directory is under subversion and selected/unselected file is a
660
 
     * directory. */
661
 
    var publish = document.getElementById("act_publish");
662
 
    var submit = document.getElementById("act_submit");
663
 
    var pubcond = numsel <= 1 && file.isdir;
664
 
    if (pubcond)
665
 
    {
666
 
        /* TODO: Work out of file is svn'd */
667
 
        /* If this dir is already published, call it "Unpublish" */
668
 
        if (file.published)
669
 
        {
670
 
            publish.setAttribute("value", "unpublish");
671
 
            publish.setAttribute("title" ,"Make it so this directory "
672
 
                + "can not be seen by anyone on the web");
673
 
            publish.textContent = "Unpublish";
674
 
        } else {
675
 
            publish.setAttribute("value", "publish");
676
 
            publish.setAttribute("title","Make it so this directory "
677
 
                + "can be seen by anyone on the web");
678
 
            publish.textContent = "Publish";
679
 
        }
680
 
    }
681
 
    set_action_state(["publish", "submit"], pubcond);
682
 
 
683
 
    /* Share */
684
 
    /* If exactly 1 non-directory file is selected, and its parent
685
 
     * directory is published.
686
 
     */
687
 
    set_action_state("share", numsel == 1 && !file.isdir &&
688
 
                     current_file.published);
689
 
 
690
 
    /* Rename */
691
 
    /* If exactly 1 file is selected */
692
 
    set_action_state("rename", numsel == 1);
693
 
 
694
 
    /* Delete, cut, copy */
695
 
    /* If >= 1 file is selected */
696
 
    set_action_state(["delete", "cut", "copy"], numsel >= 1);
697
 
 
698
 
    /* Paste, new file, new directory, upload */
699
 
    /* Disable if the current file is not a directory */
700
 
    set_action_state(["paste", "newfile", "mkdir", "upload"], current_file.isdir);
701
 
 
702
 
    /* Subversion actions */
703
 
    /* These are only useful if we are in a versioned directory and have some
704
 
     * files selected. */
705
 
    set_action_state(["svnadd", "svnrevert", "svncommit"], numsel >= 1 && current_file.svnstatus);
706
 
 
707
 
    /* Diff and log only support one path at the moment. */
708
 
    single_versioned_path = (numsel == 1 &&
709
 
                             (svnst = file_listing[selected_files[0]].svnstatus) &&
710
 
                             svnst != "unversioned");
711
 
    set_action_state("svnlog", single_versioned_path);
712
 
    set_action_state("svndiff", single_versioned_path && svnst != "normal");
713
 
 
714
 
    /* current_path == username: We are at the top level */
715
 
    set_action_state("svncheckout", current_path == username);
716
 
 
717
 
    /* There is currently nothing on the More Actions menu of use
718
 
     * when the current file is not a directory. Hence, just remove
719
 
     * it entirely.
720
 
     * (This makes some of the above decisions somewhat redundant).
721
 
     * We also take this opportunity to show the appropriate actions2
722
 
     * bar for this path. It should either be a save or upload widget.
723
 
     */
724
 
    if (current_file.isdir)
725
 
    {
726
 
        var actions2_directory = document.getElementById("actions2_directory");
727
 
        actions2_directory.setAttribute("style", "display: inline;");
728
 
    }
729
 
    else
730
 
    {
731
 
        var actions2_file = document.getElementById("actions2_file");
732
 
        actions2_file.setAttribute("style", "display: inline;");
733
 
        var moreactions = document.getElementById("moreactions_area");
734
 
        moreactions.setAttribute("style", "display: none;");
735
 
    }
736
 
 
737
 
    return;
738
 
}
739
 
 
740
 
/** Event handler for when an item of the "More actions..." dropdown box is
741
 
 * selected. Performs the selected action. */
742
 
function handle_moreactions()
743
 
{
744
 
    var moreactions = document.getElementById("moreactions");
745
 
    if (moreactions.value == "top")
746
 
        return;
747
 
    var selectedaction = moreactions.value;
748
 
    /* Reset to "More actions..." */
749
 
    moreactions.selectedIndex = 0;
750
 
 
751
 
    /* If 0 files selected, filename is the name of the current dir.
752
 
     * If 1 file selected, filename is that file.
753
 
     */
754
 
    if (selected_files.length == 0)
755
 
        filename = path_basename(current_path);
756
 
    else if (selected_files.length == 1)
757
 
        filename = selected_files[0];
758
 
    else
759
 
        filename = null;
760
 
 
761
 
    /* Now handle the selected action */
762
 
    switch(selectedaction)
763
 
    {
764
 
    case "publish":
765
 
        action_publish(selected_files);
766
 
        break;
767
 
    case "unpublish":
768
 
        action_unpublish(selected_files);
769
 
        break;
770
 
    case "share":
771
 
        //alert("Not yet implemented: Sharing files");
772
 
        window.open(public_app_path(serve_app, current_path, filename), 'share')
773
 
        break;
774
 
    case "submit":
775
 
        // TODO
776
 
        alert("Not yet implemented: Submit");
777
 
        break;
778
 
    case "rename":
779
 
        action_rename(filename);
780
 
        break;
781
 
    case "delete":
782
 
        action_remove(selected_files);
783
 
        break;
784
 
    case "copy":
785
 
        action_copy(selected_files);
786
 
        break;
787
 
    case "cut":
788
 
        action_cut(selected_files);
789
 
        break;
790
 
    case "paste":
791
 
        action_paste();
792
 
        break;
793
 
    case "newfile":
794
 
        action_newfile();
795
 
        break;
796
 
    case "mkdir":
797
 
        action_mkdir();
798
 
        break;
799
 
    case "upload":
800
 
        show_uploadpanel(true);
801
 
        break;
802
 
    case "svnadd":
803
 
        action_add(selected_files);
804
 
        break;
805
 
    case "svnrevert":
806
 
        action_revert(selected_files);
807
 
        break;
808
 
    case "svndiff":
809
 
        window.location = path_join(app_path('diff'), current_path, selected_files[0]);
810
 
        break;
811
 
    case "svncommit":
812
 
        action_commit(selected_files);
813
 
        break;
814
 
    case "svnlog":
815
 
        window.location = path_join(app_path('svnlog'), current_path, selected_files[0]);
816
 
        break;
817
 
    case "svncheckout":
818
 
        action_checkout();
819
 
        break;
820
 
    }
821
 
}
822
 
 
823
 
/** User clicks "Run" button.
824
 
 * Do an Ajax call and print the test output.
825
 
 */
826
 
function runfile(localpath)
827
 
{
828
 
    if (!maybe_save('The last saved version will be run.')) return false;
829
 
 
830
 
    /* Dump the entire file to the console */
831
 
    var callback = function()
832
 
    {
833
 
        console_enter_line("execfile('" + localpath + "')", "block");
834
 
    }
835
 
    start_server(callback)
836
 
    return;
837
 
}
838
 
 
839
431
/** Called when the page loads initially.
840
432
 */
841
 
function browser_init()
 
433
window.onload = function()
842
434
{
843
435
    /* Navigate (internally) to the path in the URL bar.
844
436
     * This causes the page to be populated with whatever is at that address,
847
439
    var path = parse_url(window.location.href).path;
848
440
    /* Strip out root_dir + "/files" from the front of the path */
849
441
    var strip = make_path(this_app);
 
442
    var editmode = false;
850
443
    if (path.substr(0, strip.length) == strip)
851
444
        path = path.substr(strip.length+1);
852
445
    else
856
449
        if (path.substr(0, strip.length) == strip)
857
450
        {
858
451
            path = path.substr(strip.length+1);
 
452
            editmode = true;
859
453
        }
860
454
    }
861
455
 
866
460
        path = username;
867
461
    }
868
462
 
869
 
    navigate(path);
 
463
    navigate(path, editmode);
870
464
}