TOW (Trac On Windows) Blog

August 28, 2008

Known bugs in TOW 0.3.0 alpha 1

Filed under: Hot Fix, Trouble Shooting, User Guide — Tags: , , , , , , , , , , , , , — yeoupooh @ 5:20 am

So far known bugs in TOW 0.3.0 alpha 1 is listed here.

  • Another Python installation may conflict error. (reported from LEE Munyoung)
    => Solution: Use PYTHONHOME variable instead of PYTHON_HOME.
  • Error in add-perm, list-perm, remove-perm scripts. (reported from kermi)
    => Solution: Edit scripts like below

Fixed add-perm.bat file

@echo off

call set-tow.bat

if “%3″==”” goto usage

call trac-admin %1 permission add %2 %3 %4 %5 %6 %7 %8 %9

goto end

:usage
call lang ADD_REMOVE_PERM_USAGE %0

:end

Fixed list-perm.bat file

@echo off

call set-tow.bat

if “%1″==”” goto usage

call trac-admin %1 permission list %2 %3 %4 %5 %6 %7 %8 %9

goto end

:usage
call lang LIST_PERM_USAGE %0

:end

Fixed remove-perm.bat file

@echo off

call set-tow.bat

if “%3″==”” goto usage

call trac-admin %1 permission remove %2 %3 %4 %5 %6 %7 %8 %9

goto end

:usage
call lang ADD_REMOVE_PERM_USAGE %0

:end

This bugs will be fixed in next release.
Thank you reporters.

Create a free website or blog at WordPress.com.