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

« back to all changes in this revision

Viewing changes to ivle/webapp/filesystem/browser/media/browser.js

  • Committer: David Coles
  • Date: 2010-07-28 10:45:53 UTC
  • mfrom: (1829 trunk)
  • mto: This revision was merged to the branch mainline in revision 1830.
  • Revision ID: coles.david@gmail.com-20100728104553-5z3nxt0l6kyfqfh5
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
924
924
    /* Subversion actions */
925
925
    /* These are only useful if we are in a versioned directory and have some
926
926
     * files selected. */
 
927
    set_action_state(["svnrename"], numsel == 1 && current_file.svnstatus);
927
928
    set_action_state(["svnadd"], numsel >= 1 && current_file.svnstatus);
928
929
    /* And these are only useful is ALL the selected files are versioned */
929
930
    set_action_state(["svnremove", "svnrevert", "svncopy", "svncut"],
1062
1063
        action_add(selected_files);
1063
1064
        break;
1064
1065
    case "svnremove":
1065
 
        action_remove(selected_files);
 
1066
        action_svnremove(selected_files);
 
1067
        break;
 
1068
    case "svnrename":
 
1069
        action_svnrename(selected_files);
1066
1070
        break;
1067
1071
    case "svnrevert":
1068
1072
        action_revert(selected_files);