Edgewall Software

Changes between Initial Version and Version 1 of Ticket #11880


Ignore:
Timestamp:
Dec 16, 2014, 10:40:33 AM (9 years ago)
Author:
Jun Omae
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11880

    • Property Keywords reverse order removed
    • Property Version1.0-stable
  • Ticket #11880 – Description

    initial v1  
    11Dear experts,
    22
    3 I´m a begginer in Trac, so I´m sorry if my comment does not procceed.
     3I´m a beginner in Trac, so I´m sorry if my comment does not proceed.
    44
    55When using Ubuntu 12, Trac 1.0.3 (just installed from repository) and SVN 1.8, I´ve found that my svn:externals are never proccessed, as local variable (in svn_prop.py) '''href''' is always empty. I think the order of '''localpath''' and '''url''' variables is reversed.
    66
    77My svn externals, as gotten with svn command in shell, look like:
    8 URL LOCALPATH (e.g. https://server/SVN/Repo REPO_IN_LOCAL_COPY)
     8`URL LOCALPATH` (e.g. `https://server/SVN/Repo REPO_IN_LOCAL_COPY`)
    99
    10 And my trac.ini [svn:externals] section, like:
     10And my trac.ini `[svn:externals]` section, like:
    1111
    12 dummykey = SVNURL TRACURL (e.g. repokey = https://server/SVN http://server/TRAC/browser/$path?rev=$rev)
     12`dummykey = SVNURL TRACURL` (e.g. `repokey = https://server/SVN http://server/TRAC/browser/$path?rev=$rev`)
    1313
    14 I´ve changed '''localpath, rev, url = elments[0],'',elements[-1]''' in svn_prop.py to '''url, rev, localpath = elments[0],'',elements[-1]''' and now it´s working fine.
     14I´ve changed `localpath, rev, url = elments[0],'',elements[-1]` in svn_prop.py to `url, rev, localpath = elments[0],'',elements[-1]` and now it´s working fine.
    1515
    1616