1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
'''
====================================================================
Copyright (c) 2003-2006 Barry A Scott. All rights reserved.
This software is licensed as described in the file LICENSE.txt,
which you should have received as part of this distribution.
====================================================================
wb_subversion_utils.py
'''
import pysvn
import time
import wx
import wb_exceptions
def fmtDateTime( val ):
return time.strftime( '%d-%b-%Y %H:%M:%S', time.localtime( val ) )
wc_status_kind_map = {
pysvn.wc_status_kind.missing: '?',
pysvn.wc_status_kind.added: 'A',
pysvn.wc_status_kind.conflicted: 'C',
pysvn.wc_status_kind.deleted: 'D',
pysvn.wc_status_kind.external: 'X',
pysvn.wc_status_kind.ignored: 'I',
pysvn.wc_status_kind.incomplete: '!',
pysvn.wc_status_kind.missing: '!',
pysvn.wc_status_kind.merged: 'G',
pysvn.wc_status_kind.modified: 'M',
pysvn.wc_status_kind.none: ' ',
pysvn.wc_status_kind.normal: ' ',
pysvn.wc_status_kind.obstructed: '~',
pysvn.wc_status_kind.replaced: 'R',
pysvn.wc_status_kind.unversioned: '?',
}
# lookup the status and see if it means the file will be checked in
wc_status_checkin_map = {
pysvn.wc_status_kind.missing: False,
pysvn.wc_status_kind.added: True,
pysvn.wc_status_kind.conflicted: True, # allow user to see the conflicted file
pysvn.wc_status_kind.deleted: True,
pysvn.wc_status_kind.external: False,
pysvn.wc_status_kind.ignored: False,
pysvn.wc_status_kind.incomplete: False,
pysvn.wc_status_kind.missing: False,
pysvn.wc_status_kind.merged: True,
pysvn.wc_status_kind.modified: True,
pysvn.wc_status_kind.none: False,
pysvn.wc_status_kind.normal: False,
pysvn.wc_status_kind.obstructed: False,
pysvn.wc_status_kind.replaced: False,
pysvn.wc_status_kind.unversioned: False,
}
# return a value used to sort by status
# 1-10 - text status
# 11-20 - prop status
# 21-30 - other status
wc_status_kind_text_sort_map = {
# need use to update
pysvn.wc_status_kind.missing: 1,
pysvn.wc_status_kind.incomplete: 1,
pysvn.wc_status_kind.obstructed: 1,
# user needs to sort this one out
pysvn.wc_status_kind.conflicted: 2,
# need user to checkin
pysvn.wc_status_kind.deleted: 3,
pysvn.wc_status_kind.added: 4,
pysvn.wc_status_kind.modified: 4,
# other controlled files
pysvn.wc_status_kind.normal: -21,
pysvn.wc_status_kind.external: -21,
# uncontrolled but interesting files
pysvn.wc_status_kind.unversioned: -22,
# uncontrolled but uninteresting files
pysvn.wc_status_kind.ignored: -23,
# svn will not return these as the status of a file only of a change in a file
pysvn.wc_status_kind.replaced: 0,
pysvn.wc_status_kind.none: 0,
pysvn.wc_status_kind.merged: 0,
}
prop_sort_offset = 10
wc_notify_action_map = {
pysvn.wc_notify_action.add: 'A',
pysvn.wc_notify_action.commit_added: 'A',
pysvn.wc_notify_action.commit_deleted: 'D',
pysvn.wc_notify_action.commit_modified: 'M',
pysvn.wc_notify_action.commit_postfix_txdelta: None,
pysvn.wc_notify_action.commit_replaced: 'R',
pysvn.wc_notify_action.copy: 'c',
pysvn.wc_notify_action.delete: 'D',
pysvn.wc_notify_action.failed_revert: 'F',
pysvn.wc_notify_action.resolved: 'R',
pysvn.wc_notify_action.restore: 'R',
pysvn.wc_notify_action.revert: 'R',
pysvn.wc_notify_action.skip: '?',
pysvn.wc_notify_action.status_completed: None,
pysvn.wc_notify_action.status_external: 'E',
pysvn.wc_notify_action.update_add: 'A',
pysvn.wc_notify_action.update_completed: None,
pysvn.wc_notify_action.update_delete: 'D',
pysvn.wc_notify_action.update_external: 'E',
pysvn.wc_notify_action.update_update: 'U',
pysvn.wc_notify_action.annotate_revision: 'a',
}
if hasattr( pysvn.wc_notify_action, 'failed_lock' ):
wc_notify_action_map[ pysvn.wc_notify_action.failed_lock ] = 'lock failed'
wc_notify_action_map[ pysvn.wc_notify_action.failed_unlock ] = 'unlock failed'
wc_notify_action_map[ pysvn.wc_notify_action.locked ] = 'Locked'
wc_notify_action_map[ pysvn.wc_notify_action.unlocked ] = 'Unlocked'
wc_notify_type_map = {
pysvn.wc_notify_action.add: 'A',
pysvn.wc_notify_action.commit_added: 'C',
pysvn.wc_notify_action.commit_deleted: 'C',
pysvn.wc_notify_action.commit_modified: 'C',
pysvn.wc_notify_action.commit_postfix_txdelta: None,
pysvn.wc_notify_action.commit_replaced: 'C',
pysvn.wc_notify_action.copy: 'A',
pysvn.wc_notify_action.delete: 'A',
pysvn.wc_notify_action.failed_revert: 'A',
pysvn.wc_notify_action.resolved: 'A',
pysvn.wc_notify_action.restore: 'A',
pysvn.wc_notify_action.revert: 'A',
pysvn.wc_notify_action.skip: '?',
pysvn.wc_notify_action.status_completed: None,
pysvn.wc_notify_action.status_external: 'A',
pysvn.wc_notify_action.update_add: 'U',
pysvn.wc_notify_action.update_completed: None,
pysvn.wc_notify_action.update_delete: 'U',
pysvn.wc_notify_action.update_external: 'U',
pysvn.wc_notify_action.update_update: 'U',
pysvn.wc_notify_action.annotate_revision: 'A',
}
if hasattr( pysvn.wc_notify_action, 'failed_lock' ):
wc_notify_type_map[ pysvn.wc_notify_action.failed_lock ] = 'lock failed'
wc_notify_type_map[ pysvn.wc_notify_action.failed_unlock ] = 'unlock failed'
wc_notify_type_map[ pysvn.wc_notify_action.locked ] = 'Locked'
wc_notify_type_map[ pysvn.wc_notify_action.unlocked ] = 'Unlocked'
#
# format the concise status from file
#
def _status_format( file ):
if file.entry is None:
return ''
text_code = wc_status_kind_map[ file.text_status ]
prop_code = wc_status_kind_map[ file.prop_status ]
if text_code == ' ' and prop_code != ' ':
text_code = '_'
if (file.is_locked or file.is_copied or file.is_switched) and prop_code == ' ':
prop_code = '_'
lock_state = ' '
if file.entry is not None and hasattr( file.entry, 'lock_token' ):
if file.entry.lock_token is not None:
lock_state = 'K'
state = '%s%s%s%s%s%s' % (text_code, prop_code,
' L'[ file.is_locked ],
' +'[ file.is_copied ],
' S'[ file.is_switched ],
lock_state)
return state.strip()
def populateMenu( menu, contents ):
for details in contents:
if len(details) == 3:
type, id, name = details
cond = True
else:
type, id, name, cond = details
if type == '-':
if cond:
menu.AppendSeparator()
elif type == 'x':
menu.AppendCheckItem( id, name )
menu.Enable( id, cond )
elif type == 'o':
menu.AppendRadioItem( id, name )
menu.Enable( id, cond )
elif type == '':
menu.Append( id, name )
menu.Enable( id, cond )
elif type == '>':
# sub menu in the list in id
menu.AppendMenu( id, name, populateMenu( wx.Menu(), cond ) )
else:
raise wb_exceptions.InternalError(
'Unknown populateMenu contents (%s,%s,%s,%s)' %
(repr(type),repr(id),repr(name),repr(cond)) )
return menu
def by_path( a, b ):
return cmp( a.path, b.path )
|