~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: 2009-12-01 05:04:26 UTC
  • mfrom: (1318.1.2 svn-fixes)
  • Revision ID: coles.david@gmail.com-20091201050426-h4d6321tc1fixaho
Add in SVN Cleanup interface for locked workspaces

Show diffs side-by-side

added added

removed removed

Lines of Context:
781
781
    /* Log should be available for revisions as well. */
782
782
    set_action_state("svnlog", single_versioned_path, true);
783
783
 
 
784
    /* Cleanup should be available for revisions as well. */
 
785
    set_action_state("svncleanup", single_versioned_path, true);
 
786
 
784
787
    single_ivle_versioned_path = (
785
788
         (
786
789
          (numsel == 1 && (stat = file_listing[selected_files[0]])) ||
921
924
    case "svncut":
922
925
        action_svncut(selected_files);
923
926
        break;
 
927
    case "svncleanup":
 
928
        action_svncleanup(".");
 
929
        break;
924
930
    }
925
931
}
926
932