Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.3, 2.0, and 2.0.1

stable sync: disable security dialog for http URLs

Let's pretend we don't support HTTP authentication, since it's such a horrid
idea.

Changeset cbe38c87792d

Parent 8817871af06b

by Steve Borho

Changes to one file · Browse files at cbe38c87792d Showing diff from parent 8817871af06b Diff from another changeset...

 
333
334
335
336
 
337
338
339
 
333
334
335
 
336
337
338
339
@@ -333,7 +333,7 @@
  schemeIndex = self.schemecombo.currentIndex()   self.hostentry.setEnabled(schemeIndex != 0)   self.portentry.setEnabled(schemeIndex != 0) - self.securebutton.setEnabled(schemeIndex > 1) + self.securebutton.setEnabled(schemeIndex == 3)     def currentUrl(self, hidepw):   scheme = _schemes[self.schemecombo.currentIndex()]