Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.1, 2.1.1, and 2.1.2

sync: list svn+https scheme when storing auth for a svn+https url

Changeset e07940b1be60

Parent f9de4b45574d

by Steve Borho

Changes to one file · Browse files at e07940b1be60 Showing diff from parent f9de4b45574d Diff from another changeset...

 
1126
1127
1128
 
 
 
 
1129
1130
1131
 
1262
1263
1264
 
1265
1266
1267
 
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
 
1266
1267
1268
1269
1270
1271
1272
@@ -1126,6 +1126,10 @@
  self.alias, auth = host, {}   self.repo = repo   self.host = host + if cleanurl.startswith('svn+https://'): + self.schemes = 'svn+https' + else: + self.schemes = None     self.setLayout(QVBoxLayout())   self.layout().addWidget(QLabel(_('<b>Host:</b> %s') % uhost)) @@ -1262,6 +1266,7 @@
  setorclear('auth', self.alias+'.password', password)   setorclear('auth', self.alias+'.key', key)   setorclear('auth', self.alias+'.cert', chain) + setorclear('auth', self.alias+'.schemes', self.schemes)     self.repo.incrementBusyCount()   try: