74 |
74 |
75 @return dictionary with indicator as key and a tuple with the vcs name |
75 @return dictionary with indicator as key and a tuple with the vcs name |
76 (string) and vcs display string (string) |
76 (string) and vcs display string (string) |
77 """ |
77 """ |
78 global pluginTypename |
78 global pluginTypename |
79 data = {} |
79 return { |
80 data[".svn"] = (pluginTypename, displayString()) |
80 ".svn": (pluginTypename, displayString()), |
81 data["_svn"] = (pluginTypename, displayString()) |
81 "_svn": (pluginTypename, displayString()), |
82 return data |
82 } |
83 |
83 |
84 |
84 |
85 def displayString(): |
85 def displayString(): |
86 """ |
86 """ |
87 Public function to get the display string. |
87 Public function to get the display string. |