101 |
101 |
102 @return a dictionary containing the data entered |
102 @return a dictionary containing the data entered |
103 """ |
103 """ |
104 scheme = self.protocolCombo.currentText() |
104 scheme = self.protocolCombo.currentText() |
105 url = self.vcsUrlEdit.text() |
105 url = self.vcsUrlEdit.text() |
106 if scheme == "file://" and url[0] not in ["\\", "/"]: |
|
107 url = "/{0}".format(url) |
|
108 vcsdatadict = { |
106 vcsdatadict = { |
109 "url": '{0}{1}'.format(scheme, url), |
107 "url": '{0}{1}'.format(scheme, url), |
110 "message": self.vcsLogEdit.text(), |
108 "message": self.vcsLogEdit.text(), |
111 "standardLayout": self.layoutCheckBox.isChecked(), |
109 "standardLayout": self.layoutCheckBox.isChecked(), |
112 } |
110 } |