223 """ |
223 """ |
224 Public slot to start the svn info command. |
224 Public slot to start the svn info command. |
225 |
225 |
226 @param url the repository URL to browser (string) |
226 @param url the repository URL to browser (string) |
227 """ |
227 """ |
|
228 self.repoTree.clear() |
|
229 |
228 self.url = "" |
230 self.url = "" |
229 |
231 |
230 self.urlCombo.addItem(self.__normalizeUrl(url)) |
232 url = self.__normalizeUrl(url) |
|
233 if self.urlCombo.findText(url) == -1: |
|
234 self.urlCombo.addItem(url) |
231 |
235 |
232 @pyqtSlot(str) |
236 @pyqtSlot(str) |
233 def on_urlCombo_currentIndexChanged(self, text): |
237 def on_urlCombo_currentIndexChanged(self, text): |
234 """ |
238 """ |
235 Private slot called, when a new repository URL is entered or selected. |
239 Private slot called, when a new repository URL is entered or selected. |