Changeset - ae5b07e75ffd
[Not reviewed]
beta
0 3 0
Marcin Kuzminski - 15 years ago 2011-04-27 01:27:39
marcin@python-works.com
fixed issue #181, and small fix in gitmiddleware
3 files changed with 6 insertions and 6 deletions:
0 comments (0 inline, 0 general)
docs/changelog.rst
Show inline comments
 
@@ -53,7 +53,7 @@ fixes
 
- fixed #126 Deleting repository on Windows, rename used incompatible chars. 
 
- #150 fixes for errors on repositories mapped in db but corrupted in 
 
  filesystem
 
  
 
- fixed problem with ascendant characters in realm #181
 

	
 
1.1.8 (**2011-04-12**)
 
======================
rhodecode/lib/middleware/simplegit.py
Show inline comments
 
@@ -98,7 +98,7 @@ class SimpleGit(object):
 
        #authenticate this git request using
 
        self.authenticate = AuthBasicAuthenticator('', authfunc)
 
        self.ipaddr = '0.0.0.0'
 
        self.repository = None
 
        self.repo_name = None
 
        self.username = None
 
        self.action = None
 

	
 
@@ -147,8 +147,8 @@ class SimpleGit(object):
 
                #==============================================================
 

	
 
                if not REMOTE_USER(environ):
 
                    self.authenticate.realm = str(
 
                                                self.config['rhodecode_realm'])
 
                    self.authenticate.realm = self.config['rhodecode_realm'].\
 
                        encode('utf8', 'replace')
 
                    result = self.authenticate(environ)
 
                    if isinstance(result, str):
 
                        AUTH_TYPE.update(environ, 'basic')
rhodecode/lib/middleware/simplehg.py
Show inline comments
 
@@ -112,8 +112,8 @@ class SimpleHg(object):
 
                #==============================================================
 

	
 
                if not REMOTE_USER(environ):
 
                    self.authenticate.realm = str(
 
                                                self.config['rhodecode_realm'])
 
                    self.authenticate.realm = self.config['rhodecode_realm'].\
 
                        encode('utf8', 'replace')
 
                    result = self.authenticate(environ)
 
                    if isinstance(result, str):
 
                        AUTH_TYPE.update(environ, 'basic')
0 comments (0 inline, 0 general)