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

« back to all changes in this revision

Viewing changes to www/apps/browser/__init__.py

  • Committer: chadnickbok
  • Date: 2009-01-19 22:56:46 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1170
This commit fixes issue #10 and part of issue #9

There are now two options for moving files with their
svn history intact; svn move and svn copy. These
use the svn commands to move the files, allowing students
to move and rename files without their histories being
lost.

This commit also shows the svn status of a dir, if it is
the 'head' of an svn repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
174
174
        ('upload',  ['Upload File',      'Upload a file to the current directory'])
175
175
      ]),
176
176
      ('Subversion', True, [
177
 
        ('svnadd',      ['Add',          'Schedule the selected temporary files to be added permanently']),
178
 
        ('svnremove',   ['Remove',       'Schedule the selected permanent files to be removed']),
179
 
        ('svndiff',     ['Diff',         'View any changes to the selected file since its last committed state']),
180
 
        ('svnrevert',   ['Revert',       'Restore the selected files back to their last committed state']),
181
 
        ('svnupdate',   ['Update',       'Update your files with changes from the permanent repository']),
182
 
        ('svncommit',   ['Commit',       'Commit any changes to the permanent repository']),
183
 
        ('svnresolved', ['Mark Resolved','Mark a conflicted file as being resolved']),
184
 
        ('svnlog',      ['View Log',     'View the log of commits of the selected file']),
 
177
        ('svncut',      ['Svn Cut',      'Prepare to move the selected files to another directory, maintaining history']),
 
178
        ('svncopy',     ['Svn Copy',     'Prepare to copy the selected files to another directory, maintaining history']),
 
179
        ('svnadd',      ['Add',            'Schedule the selected temporary files to be added permanently']),
 
180
        ('svnremove',   ['Remove',         'Schedule the selected permanent files to be removed']),
 
181
        ('svndiff',     ['Diff',           'View any changes to the selected file since its last committed state']),
 
182
        ('svnrevert',   ['Revert',         'Restore the selected files back to their last committed state']),
 
183
        ('svnupdate',   ['Update',         'Update your files with changes from the permanent repository']),
 
184
        ('svncommit',   ['Commit',         'Commit any changes to the permanent repository']),
 
185
        ('svnresolved', ['Mark Resolved',  'Mark a conflicted file as being resolved']),
 
186
        ('svnlog',      ['View Log',       'View the log of commits of the selected file']),
185
187
      ])
186
188
    ]
187
189