Edgewall Software

Changes between Initial Version and Version 5 of Ticket #9208


Ignore:
Timestamp:
Jun 4, 2015, 9:11:41 PM (9 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9208

    • Property Keywords needfixup added
    • Property Milestoneunscheduled
  • Ticket #9208 – Description

    initial v5  
    33At the time I was using Trac 0.11.x (not sure of the revision, and I no longer operate that system).
    44
    5 The problem is due to SubversionRepository _init_'s not handling the UNC slashes properly. When the path is fixed by converting the '\'\' to '\' the UNC slashes were being transformed to just '\' instead of staying '\'\'. I corrected this by adding splitunc() call before the replace and only performing the replace on the non-UNC portion of the path.
     5The problem is due to SubversionRepository `__init__` not handling the UNC slashes properly. When the path is fixed by converting the '\'\' to '\' the UNC slashes were being transformed to just '\' instead of staying '\'\'. I corrected this by adding splitunc() call before the replace and only performing the replace on the non-UNC portion of the path.
    66
    77I've attached a diff patch making the similar change to the latest version from the 0.12 trunk, as well as the original modified version from my 0.11 installation.