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

clone: https urls are not allowed for clone destination

Changeset 32fb226fea81

Parent 99fa95ad0a44

by Steve Borho

Changes to one file · Browse files at 32fb226fea81 Showing diff from parent 99fa95ad0a44 Diff from another changeset...

 
133
134
135
136
 
137
138
139
 
185
186
187
188
189
190
191
 
268
269
270
271
272
 
273
274
275
 
426
427
428
429
430
 
431
432
433
 
133
134
135
 
136
137
138
139
 
185
186
187
 
188
189
190
 
267
268
269
 
 
270
271
272
273
 
424
425
426
 
 
427
428
429
430
@@ -133,7 +133,7 @@
  self.proxy_chk.setEnabled(useproxy)   self.proxy_chk.setChecked(useproxy)   - self.insecure_chk = QCheckBox(_('Do not check certificates')) + self.insecure_chk = QCheckBox(_('Do not verify host certificate'))   optbox.addWidget(self.insecure_chk)   self.insecure_chk.setEnabled(False)   @@ -185,7 +185,6 @@
  self.src_combo.editTextChanged.connect(self.composeCommand)   self.src_combo.editTextChanged.connect(self.onUrlHttps)   self.dest_combo.editTextChanged.connect(self.composeCommand) - self.dest_combo.editTextChanged.connect(self.onUrlHttps)   self.rev_chk.toggled.connect(self.composeCommand)   self.rev_text.textChanged.connect(self.composeCommand)   self.noupdate_chk.toggled.connect(self.composeCommand) @@ -268,8 +267,7 @@
  cmdline.append('--verbose')   src = self.getSrc()   dest = self.getDest() - if (self.insecure_chk.isChecked() - and (src.startswith('https://') or dest.startswith('https://'))): + if self.insecure_chk.isChecked() and src.startswith('https://'):   cmdline.append('--insecure')   cmdline.append(src)   if dest: @@ -426,8 +424,7 @@
  self.reject()     def onUrlHttps(self): - self.insecure_chk.setEnabled(self.getSrc().startswith('https://') - or self.getDest().startswith('https://')) + self.insecure_chk.setEnabled(self.getSrc().startswith('https://'))   self.composeCommand()     def command_canceling(self):