~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http/_urllib2_wrappers.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-02-23 17:00:36 UTC
  • mfrom: (4032.1.4 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090223170036-3q1v68ewdt8i0to5
(Marius Kruger) Remove all trailing whitespace and add tests to
        enforce this.

Show diffs side-by-side

added added

removed removed

Lines of Context:
257
257
        # Preserve our preciousss
258
258
        sock = self.sock
259
259
        self.sock = None
260
 
        # Let httplib.HTTPConnection do its housekeeping 
 
260
        # Let httplib.HTTPConnection do its housekeeping
261
261
        self.close()
262
262
        # Restore our preciousss
263
263
        self.sock = sock
371
371
 
372
372
    def __init__(self, request):
373
373
        """Constructor
374
 
        
 
374
 
375
375
        :param request: the first request sent to the proxied host, already
376
376
            processed by the opener (i.e. proxied_host is already set).
377
377
        """
698
698
                        connect.proxied_host, self.host))
699
699
            # Housekeeping
700
700
            connection.cleanup_pipe()
701
 
            # Establish the connection encryption 
 
701
            # Establish the connection encryption
702
702
            connection.connect_to_origin()
703
703
            # Propagate the connection to the original request
704
704
            request.connection = connection
1069
1069
        (digest's nonce is an example, digest's nonce_count is a
1070
1070
        *counter-example*). Such parameters must be updated by
1071
1071
        using the update_auth() method.
1072
 
        
 
1072
 
1073
1073
        :param header: The authentication header sent by the server.
1074
1074
        :param auth: The auth parameters already known. They may be
1075
1075
             updated.
1152
1152
class NegotiateAuthHandler(AbstractAuthHandler):
1153
1153
    """A authentication handler that handles WWW-Authenticate: Negotiate.
1154
1154
 
1155
 
    At the moment this handler supports just Kerberos. In the future, 
 
1155
    At the moment this handler supports just Kerberos. In the future,
1156
1156
    NTLM support may also be added.
1157
1157
    """
1158
1158
 
1192
1192
        # If the auth scheme is known, it means a previous
1193
1193
        # authentication was successful, all information is
1194
1194
        # available, no further checks are needed.
1195
 
        return (auth.get('scheme', None) == 'negotiate' and 
 
1195
        return (auth.get('scheme', None) == 'negotiate' and
1196
1196
                auth.get('negotiate_response', None) is not None)
1197
1197
 
1198
1198