~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/urlutils.py

  • Committer: Robert Collins
  • Date: 2006-09-17 21:03:04 UTC
  • mfrom: (2018 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2019.
  • Revision ID: robertc@robertcollins.net-20060917210304-3a697132f5fb68ac
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
        if m:
130
130
            # Absolute URL
131
131
            scheme = m.group('scheme')
 
132
            # this skips .. normalisation, making http://host/../../..
 
133
            # be rather strange.
132
134
            path = m.group('path').split('/')
133
135
        else:
134
136
            for chunk in arg.split('/'):