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

« back to all changes in this revision

Viewing changes to lib/fileservice_lib/action.py

  • Committer: mattgiuca
  • Date: 2008-06-23 09:13:10 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:784
fileservice_lib/action.py: Comments that svnpublish and svnunpublish are
    currently unused.

Show diffs side-by-side

added added

removed removed

Lines of Context:
147
147
# Make a Subversion client object
148
148
svnclient = pysvn.Client()
149
149
svnclient.callback_get_login = get_login
 
150
svnclient.exception_style = 1               # Detailed exceptions
150
151
 
151
152
DEFAULT_LOGMESSAGE = "No log message supplied."
152
153
 
559
560
    anyway).
560
561
 
561
562
    Reads fields: 'path'
 
563
 
 
564
    XXX Currently unused by the client (calls action_publish instead, which
 
565
    has a completely different publishing model).
562
566
    """
563
567
    paths = fields.getlist('path')
564
568
    if len(paths):
577
581
    """Deletes svn property "ivle:published" on each file specified.
578
582
 
579
583
    Reads fields: 'path'
 
584
 
 
585
    XXX Currently unused by the client (calls action_unpublish instead, which
 
586
    has a completely different publishing model).
580
587
    """
581
588
    paths = fields.getlist('path')
582
589
    paths = map(lambda path: actionpath_to_local(req, path), paths)