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

« back to all changes in this revision

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

  • Committer: me at id
  • Date: 2009-01-15 01:29:07 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:branches%2Fstorm:1147
ivle.makeuser: Don't create a local.auth. It wasn't used anywhere, and seems
    to have only been there for historical reasons.
setup.configure: Remove svn_auth_local from the config.py boilerplate; it was
    used solely by ivle.makeuser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
69
    "conflicted": "conflicted.png",
72
70
    "revision": "revision.png"
75
73
/* Mapping SVN status to "nice" strings */
76
74
svn_nice = {
77
75
    "unversioned": "Temporary file",
78
 
    "ignored": "Temporary file (ignored)",
79
76
    "normal": "Permanent file",
80
77
    "added": "Temporary file (scheduled to be added)",
81
78
    "missing": "Permanent file (missing)",
90
87
default_svn_icon = null;
91
88
default_svn_nice = "Unknown status";
92
89
 
93
 
svn_icons_path = "+media/ivle.webapp.core/images/svn";
 
90
svn_icons_path = "media/images/svn";
94
91
 
95
 
published_icon = "+media/ivle.webapp.core/images/interface/published.png";
 
92
published_icon = "media/images/interface/published.png";
96
93
 
97
94
/* List of MIME types considered "executable" by the system.
98
95
 * Executable files offer a "run" link, implying that the "serve"
137
134
 *      May be "application/x-www-form-urlencoded" or "multipart/form-data".
138
135
 *      Defaults to "application/x-www-form-urlencoded".
139
136
 *      "multipart/form-data" is recommended for large uploads.
140
 
 * \param callback, optional.
141
 
 *      A callback function for after the action has been handled.
142
137
 */
143
 
function do_action(action, path, args, content_type, callback)
 
138
function do_action(action, path, args, content_type, ignore_response)
144
139
{
145
140
    args.action = action;
146
141
    /* Callback action, when the server returns */
147
 
    var callback_inner = function(response)
 
142
    var callback = function(response)
148
143
        {
149
144
            /* Check for action errors reported by the server, and report them
150
145
             * to the user */
151
146
            var error = response.getResponseHeader("X-IVLE-Action-Error");
152
 
            if (error != null && error != "")
 
147
            if (error != null)
153
148
                /* Note: This header (in particular) comes URI-encoded, to
154
149
                 * allow multi-line error messages. Decode */
155
150
                alert("Error: " + decodeURIComponent(error.toString()) + ".");
156
151
            /* Now read the response and set up the page accordingly */
157
 
            if (callback != null)
158
 
                callback(path, response);
 
152
            if (ignore_response != true)
 
153
                handle_response(path, response, true);
159
154
        }
160
155
    /* Call the server and perform the action. This mutates the server. */
161
 
    ajax_call(callback_inner, service_app, path, args, "POST", content_type);
 
156
    ajax_call(callback, service_app, path, args, "POST", content_type);
162
157
}
163
158
 
164
159
/** Calls the server using Ajax, requesting a directory listing. This should
247
242
    }
248
243
 
249
244
    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
245
    var top_level_dir = path==username;
254
246
    if (top_level_dir)
255
247
    {
316
308
    if (isdir)
317
309
    {
318
310
        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
 
        }
 
311
        home_listing(listing, subjects, path);
329
312
    }
330
313
    else
331
314
    {
394
377
    upload_callback_count++;
395
378
    if (upload_callback_count >= 2)
396
379
    {
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
 
        var pre = myFrame.firstChild.getElementsByTagName(
402
 
            'body')[0].firstChild;
403
 
        var data = pre.innerText || pre.textContent;
404
 
        data = JSON.parse(data);
405
 
        if ('Error' in data)
406
 
            alert("Error: " + decodeURIComponent(data['Error']));
407
380
        document.getElementsByName('data')[0].value = '';
408
381
        refresh();
409
382
    }
426
399
function maybe_save(warning)
427
400
{
428
401
    if (warning == null) warning = '';
429
 
    if (current_file == null || current_file.isdir) return true;
 
402
    if (current_file.isdir) return true;
430
403
    if (document.getElementById("save_button").disabled) return true;
431
404
    return confirm("This file has unsaved changes. " + warning +
432
405
                   "\nAre you sure you wish to continue?");
529
502
        return default_svn_nice;
530
503
}
531
504
 
532
 
/** Returns true if a file is versioned (not unversioned or ignored).
533
 
 */
534
 
function svnstatus_versioned(svnstatus)
535
 
{
536
 
    return svnstatus != "unversioned" && svnstatus != "ignored";
537
 
}
538
 
 
539
505
/** Displays a download link to the binary file.
540
506
 */
541
507
function handle_binary(path)
544
510
    var div = document.createElement("div");
545
511
    files.appendChild(div);
546
512
    div.setAttribute("class", "padding");
547
 
    var download_link = app_url(download_app, path);
 
513
    var download_link = app_path(download_app, path);
548
514
    var par1 = dom_make_text_elem("p",
549
515
        "The file " + path + " is a binary file. To download this file, " +
550
516
        "click the following link:");
579
545
    }
580
546
}
581
547
 
582
 
/* Updates the list of available actions based on files selected */
583
548
function update_actions()
584
549
{
585
550
    var file;
586
551
    var numsel = selected_files.length;
587
 
    var svn_selection = false;
588
 
    
589
 
    if (numsel > 0)
590
 
    {
591
 
        svn_selection = true;
592
 
        for (var i = 0; i < selected_files.length; i++){
593
 
            if (!svnstatus_versioned(file_listing[selected_files[i]].svnstatus))
594
 
            {
595
 
                svn_selection = false;
596
 
            }
597
 
        }
598
 
    }
599
 
    
600
552
    if (numsel <= 1)
601
553
    {
602
554
        if (numsel == 0)
649
601
              "return maybe_save('The last saved version will be served.')");
650
602
        if (numsel == 0)
651
603
            serve.setAttribute("href",
652
 
                app_url(serve_app, current_path));
 
604
                app_path(serve_app, current_path));
653
605
        else
654
606
            serve.setAttribute("href",
655
 
                app_url(serve_app, current_path, filename));
 
607
                app_path(serve_app, current_path, filename));
656
608
    }
657
609
    else
658
610
    {
667
619
     */
668
620
    var run = document.getElementById("act_run");
669
621
     
670
 
    if (numsel <= 1 && !file.isdir && file.type == "text/x-python" 
671
 
            && current_file.svnstatus != 'revision')
 
622
    if (!file.isdir && file.type == "text/x-python" && numsel <= 1
 
623
        && current_file.svnstatus != 'revision')
672
624
    {
673
625
        if (numsel == 0)
674
626
        {
708
660
        if (numsel == 0)
709
661
        {
710
662
            download.setAttribute("href",
711
 
                app_url(download_app, current_path));
 
663
                app_path(download_app, current_path));
712
664
            if (file.isdir)
713
665
                download.setAttribute("title",
714
666
                    "Download the current directory as a ZIP file");
719
671
        else
720
672
        {
721
673
            download.setAttribute("href",
722
 
                app_url(download_app, current_path, filename));
 
674
                app_path(download_app, current_path, filename));
723
675
            if (file.isdir)
724
676
                download.setAttribute("title",
725
677
                    "Download the selected directory as a ZIP file");
731
683
    else
732
684
    {
733
685
        /* Make a query string with all the files to download */
734
 
        var dlpath = app_url(download_app, current_path) + "?";
 
686
        var dlpath = urlencode_path(app_path(download_app, current_path)) + "?";
735
687
        for (var i=0; i<numsel; i++)
736
688
            dlpath += "path=" + encodeURIComponent(selected_files[i]) + "&";
737
689
        dlpath = dlpath.substr(0, dlpath.length-1);
751
703
    var pubcond = numsel <= 1 && file.isdir;
752
704
    if (pubcond)
753
705
    {
 
706
        /* TODO: Work out of file is svn'd */
754
707
        /* If this dir is already published, call it "Unpublish" */
755
708
        if (file.published)
756
709
        {
757
710
            publish.setAttribute("value", "unpublish");
758
711
            publish.setAttribute("title" ,"Make it so this directory "
759
712
                + "can not be seen by anyone on the web");
760
 
            publish.firstChild.nodeValue = "Unpublish";
 
713
            publish.textContent = "Unpublish";
761
714
        } else {
762
715
            publish.setAttribute("value", "publish");
763
716
            publish.setAttribute("title","Make it so this directory "
764
717
                + "can be seen by anyone on the web");
765
 
            publish.firstChild.nodeValue = "Publish";
 
718
            publish.textContent = "Publish";
766
719
        }
767
720
    }
768
721
    set_action_state(["publish", "submit"], pubcond);
789
742
    /* Subversion actions */
790
743
    /* These are only useful if we are in a versioned directory and have some
791
744
     * files selected. */
792
 
    set_action_state(["svnrename"], numsel == 1 && current_file.svnstatus);
793
 
    set_action_state(["svnadd"], numsel >= 1 && current_file.svnstatus);
794
 
    /* And these are only useful is ALL the selected files are versioned */
795
 
    set_action_state(["svnremove", "svnrevert", "svncopy", "svncut"],
796
 
            numsel >= 1 && current_file.svnstatus && svn_selection);
797
 
    /* Commit is useful if ALL selected files are versioned, or the current
798
 
     * directory is versioned */
799
 
    set_action_state(["svncommit"], current_file.svnstatus &&
800
 
            (numsel >= 1 && svn_selection || numsel == 0));
 
745
    set_action_state(["svnadd", "svnremove", "svnrevert", "svncommit"], numsel >= 1 && current_file.svnstatus);
801
746
 
802
747
    /* Diff, log and update only support one path at the moment, so we must
803
748
     * have 0 or 1 versioned files selected. If 0, the directory must be
806
751
         (
807
752
          (numsel == 1 && (svnst = file_listing[selected_files[0]].svnstatus)) ||
808
753
          (numsel == 0 && (svnst = current_file.svnstatus))
809
 
         ) && svnstatus_versioned(svnst));
 
754
         ) && svnst != "unversioned");
810
755
    set_action_state(["svndiff", "svnupdate"], single_versioned_path);
811
756
 
812
757
    /* We can resolve if we have a file selected and it is conflicted. */
815
760
    /* Log should be available for revisions as well. */
816
761
    set_action_state("svnlog", single_versioned_path, true);
817
762
 
818
 
    /* Cleanup should be available for revisions as well. */
819
 
    set_action_state("svncleanup", single_versioned_path, true);
820
 
 
821
 
    single_ivle_versioned_path = (
822
 
         (
823
 
          (numsel == 1 && (stat = file_listing[selected_files[0]])) ||
824
 
          (numsel == 0 && (stat = current_file))
825
 
         ) && svnstatus_versioned(stat.svnstatus)
826
 
           && stat.svnurl
827
 
           && stat.svnurl.substr(0, svn_base.length) == svn_base);
828
 
    set_action_state(["submit"], single_ivle_versioned_path);
829
 
 
830
763
    /* There is currently nothing on the More Actions menu of use
831
764
     * when the current file is not a directory. Hence, just remove
832
765
     * it entirely.
881
814
        action_unpublish(selected_files);
882
815
        break;
883
816
    case "share":
884
 
        window.open(public_app_url("~" + current_path, filename), 'share')
 
817
        //alert("Not yet implemented: Sharing files");
 
818
        window.open(public_app_path(serve_app, current_path, filename), 'share')
885
819
        break;
886
820
    case "submit":
887
 
        if (selected_files.length == 1)
888
 
            stat = file_listing[selected_files[0]];
889
 
        else
890
 
            stat = current_file;
891
 
        url = stat.svnurl.substr(svn_base.length);      // URL-encoded
892
 
        path = decodeURIComponent(url);
893
 
 
894
 
        /* The working copy might not have an up-to-date version of the
895
 
         * directory. While submitting like this could yield unexpected
896
 
         * results, we should really submit the latest revision to minimise
897
 
         * terrible mistakes - so we run off and ask fileservice for the
898
 
         * latest revision.*/
899
 
        $.post(app_path(service_app, current_path),
900
 
            {"action": "svnrepostat", "path": path},
901
 
            function(result)
902
 
            {
903
 
                window.location = path_join(app_path('+submit'), url) + '?revision=' + result.svnrevision;
904
 
            },
905
 
            "json");
906
 
 
 
821
        // TODO
 
822
        alert("Not yet implemented: Submit");
907
823
        break;
908
824
    case "rename":
909
825
        action_rename(filename);
933
849
        action_add(selected_files);
934
850
        break;
935
851
    case "svnremove":
936
 
        action_svnremove(selected_files);
937
 
        break;
938
 
    case "svnrename":
939
 
        action_svnrename(selected_files);
 
852
        action_remove(selected_files);
940
853
        break;
941
854
    case "svnrevert":
942
855
        action_revert(selected_files);
943
856
        break;
944
857
    case "svndiff":
945
 
        window.location = path_join(app_url('diff'), current_path, selected_files[0] || '');
 
858
        window.location = path_join(app_path('diff'), current_path, selected_files[0] || '');
946
859
        break;
947
860
    case "svnupdate":
948
861
        action_update(selected_files);
954
867
        action_commit(selected_files);
955
868
        break;
956
869
    case "svnlog":
957
 
        window.location = path_join(app_url('svnlog'), current_path, selected_files[0] || '');
958
 
        break;
959
 
    case "svncopy":
960
 
        action_svncopy(selected_files);
961
 
        break;
962
 
    case "svncut":
963
 
        action_svncut(selected_files);
964
 
        break;
965
 
    case "svncleanup":
966
 
        action_svncleanup(".");
 
870
        window.location = path_join(app_path('svnlog'), current_path, selected_files[0] || '');
967
871
        break;
968
872
    }
969
873
}
992
896
     * This causes the page to be populated with whatever is at that address,
993
897
     * whether it be a directory or a file.
994
898
     */
995
 
    var path = get_path();
996
 
    navigate(path);
997
 
}
998
 
 
999
 
/** Gets the current path of the window */
1000
 
function get_path() {
1001
899
    var path = parse_url(window.location.href).path;
1002
900
    /* Strip out root_dir + "/files" from the front of the path */
1003
901
    var strip = make_path(this_app);
1020
918
        path = username;
1021
919
    }
1022
920
 
1023
 
    return path;
 
921
    navigate(path);
1024
922
}