/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/urlutils.py

  • Committer: John Arbash Meinel
  • Date: 2006-10-06 05:53:44 UTC
  • mfrom: (2063 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2071.
  • Revision ID: john@arbash-meinel.com-20061006055344-e73b97b7c6ca6e72
[merge] bzr.dev 2063

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
        if m:
136
136
            # Absolute URL
137
137
            scheme = m.group('scheme')
 
138
            # this skips .. normalisation, making http://host/../../..
 
139
            # be rather strange.
138
140
            path = m.group('path').split('/')
139
141
        else:
140
142
            for chunk in arg.split('/'):