Sumith wrote:
> On May 30, 2:33 pm, Christian Boos <[EMAIL PROTECTED]> wrote:
>
>> Sumith wrote:
>>
>>> TracError: Unsupported version control system "direct-svn-fs"
>>>
>> Use direct-svnfs, not direct-svn-fs (as "svnfs" was already a valid name).
>>
>>
>
> This suggestion too did not works it said "direct-svnfs" is not
> supported.
>
Strange, it worked for me ;-)
Can anyone else please try the patch, use repository_type = direct-svnfs
and make some change on the fly to the repository_dir?
> ...
> for name, value, wikiflag, htmlclass in chgset.get_properties():
> TypeError: iteration over non-sequence
>
That's a different bug: you need the following fix:
Index: trac/versioncontrol/api.py
===================================================================
--- trac/versioncontrol/api.py (revision 5545)
+++ trac/versioncontrol/api.py (working copy)
@@ -409,6 +409,7 @@
Warning: API will be improved (see #1601 and #2545).
"""
+ return []
def get_changes(self):
"""Generator that produces a tuple for every change in the
changeset
-- Christian
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---