~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-07-18 02:40:58 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:912
Makeuser: Makeuser will now chown all files in a users home directory to the
unixid provided by the database. This means remakeallusers.py can be used to
update everyones unixids after a database change. The makeuser script will also 
no longer generate a random unixid when one is not given on the command line.

Database: Change to database so that a sequence is used by default. The allowed  
range is 1000-29999 (let's start at 5000, because 1000+ is used by adduser.  
Reference: http://www.debian.org/doc/debian-policy/ch-opersys.html)
See SF Bug '[ 2012190 ] Student UID generation'
Migration script will reallocate all users a new unixid from the sequence.

Usermgt-Server: Now no longer generates a random unixid. Rely on the database 
to come up with a new sequence number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
    "missing": "missing.png",
67
67
    "deleted": "deleted.png",
68
68
    "modified": "modified.png",
69
 
    "conflicted": "conflicted.png",
70
69
    "revision": "revision.png"
71
70
};
72
71
 
732
731
    /* Subversion actions */
733
732
    /* These are only useful if we are in a versioned directory and have some
734
733
     * files selected. */
735
 
    set_action_state(["svnadd", "svnremove", "svnrevert", "svncommit"], numsel >= 1 && current_file.svnstatus);
 
734
    set_action_state(["svnadd", "svnrevert", "svncommit"], numsel >= 1 && current_file.svnstatus);
736
735
 
737
 
    /* Diff, log and update only support one path at the moment, so we must
738
 
     * have 0 or 1 versioned files selected. If 0, the directory must be
739
 
     * versioned. */
 
736
    /* Diff and log only support one path at the moment, so we must have 0 or 1
 
737
     * versioned files selected. If 0, the directory must be versioned. */
740
738
    single_versioned_path = (
741
739
         (
742
740
          (numsel == 1 && (svnst = file_listing[selected_files[0]].svnstatus)) ||
743
741
          (numsel == 0 && (svnst = current_file.svnstatus))
744
742
         ) && svnst != "unversioned");
745
 
    set_action_state(["svndiff", "svnupdate"], single_versioned_path);
746
 
 
747
 
    /* We can resolve if we have a file selected and it is conflicted. */
748
 
    set_action_state("svnresolved", single_versioned_path && numsel == 1 && svnst == "conflicted");
 
743
    set_action_state("svndiff", single_versioned_path);
749
744
 
750
745
    /* Log should be available for revisions as well. */
751
746
    set_action_state("svnlog", single_versioned_path, true);
818
813
        action_rename(filename);
819
814
        break;
820
815
    case "delete":
821
 
        action_delete(selected_files);
 
816
        action_remove(selected_files);
822
817
        break;
823
818
    case "copy":
824
819
        action_copy(selected_files);
841
836
    case "svnadd":
842
837
        action_add(selected_files);
843
838
        break;
844
 
    case "svnremove":
845
 
        action_remove(selected_files);
846
 
        break;
847
839
    case "svnrevert":
848
840
        action_revert(selected_files);
849
841
        break;
850
842
    case "svndiff":
851
843
        window.location = path_join(app_path('diff'), current_path, selected_files[0] || '');
852
844
        break;
853
 
    case "svnupdate":
854
 
        action_update(selected_files);
855
 
        break;
856
 
    case "svnresolved":
857
 
        action_resolved(selected_files);
858
 
        break;
859
845
    case "svncommit":
860
846
        action_commit(selected_files);
861
847
        break;