TOW (Trac On Windows) Blog

January 9, 2008

사용자별 권한 설정을 하려면…

Filed under: 사용자 가이드 — Tags: , , , , , , , , — yeoupooh @ 7:44 am

사용자별 권한 설정을 하려면 trac-admin 스크립트를 사용해도 되지만, 써줄게 많지요. 그래서 0.2.2 부터는 간편한 스크립트를 제공합니다.

전체 사용자 권한 보기

C:\TOW>list-perm <프로젝트명>

사용자 권한 보기

C:\TOW>list-perm <프로젝트명> <사용자ID>

사용자 권한 추가

C:\TOW>add-perm <프로젝트명> <사용자ID> <권한들(공백으로 구분)>

사용자 권한 삭제

C:\TOW>remove-perm <프로젝트명> <사용자ID> <권한들(공백으로 구분)>

*(와일드 카드)를 사용하면 여러개의 권한을 한꺼번에 처리할 수 있습니다.

권한들에 대한 자세한 설명은 TracPermissions 를 참고하세요.

January 7, 2008

How to fix “Cannot load … mod_python.so into server:” in startup?

Filed under: Trouble Shooting — Tags: , , , — yeoupooh @ 4:49 am

If you have a problem like below in starting TOW, there isn’t a msvcr71.dll file at C:\Windows\System32.


[TOW] TOW Launched.
[TOW] Now, you can test Trac in http://localhost:8080/projects/HelloTOW
[TOW] And you can test Subversion in http://localhost:8080/svn/HelloTOW
httpd: Syntax error on line 493 of C:/TOW/Apache/conf/httpd.conf: Cannot load C:/TOW/Apache/modules/mod_python.so into server: blah blah.

You can find that file from web searching or another PCs.

Thanks for reporting Park YoungSeob.

실행시 Cannot load … mod_python.so into server: 에러 발생하는 경우 해결 방안

Filed under: 문제 해결 — Tags: , , , , , , , — yeoupooh @ 4:34 am

박영섭(sk_kk)님께서 리포트해주셨는데요.

TOW 실행 후 아래와 같은 메시지가 뜨고, 실행이 되지 않으면…


[TOW] TOW Launched.
[TOW] Now, you can test Trac in http://localhost:8080/projects/HelloTOW
[TOW] And you can test Subversion in http://localhost:8080/svn/HelloTOW
httpd: Syntax error on line 493 of C:/TOW/Apache/conf/httpd.conf: Cannot load C:/TOW/Apache/modules/mod_python.so into server: \xc1\xf6\xc1\xa4\xb5\xc8 \xb8\xf0\xb5\xe2\xc0\xbb \xc3\xa3\xc0\xbb \xbc\xf6 \xbe\xf8\xbd\xc0\xb4\xcf\xb4\xd9.

C:\Windows\System32 폴더에 msvcr71.dll 파일이 없는 경우입니다.

msvcr71.dll 파일은 Microsoft® C Runtime Library 파일로 웹 검색이나 주변PC로부터 찾아서 설치하시면 되겠습니다.

January 4, 2008

TOW (TracOnWindows) 0.2.2 표준 패키지에 버그가 있네요.

Filed under: 버그 수정 — Tags: , , , , — yeoupooh @ 10:23 am

add-project를 이용해서 새 프로젝트를 만들고 나면, 프로젝트명이 ‘HelloTOW’, SVN 저장소 경로가 ‘C:\\TOW\\SvnRepo\\Projects\\HelloTOW’로 자동 설정됩니다. 따라서 이 부분을 수정하려면 아래와 같이 하시면 됩니다.

예제로 MyProject 라는 프로젝트를 새로 만들었다고 하면…



[project]
name = MyProject

[trac]
repository_dir = C:\\TOW\\SvnRepo\\Projects\\MyProject

수정 후에는 SVN 저장소와 Trac을 다시 싱크해주어야 합니다.


C:\TOW>trac-admin MyProject resync

Oops, TOW 0.2.2 Standard package(includes for Korean) has a bug in Adding New Project.

Filed under: Hot Fix — Tags: , , — yeoupooh @ 9:36 am

This bug is that new project name be set to ‘HelloTOW’ and svn repository be set to ‘C:\\TOW\\SvnRepo\\Projects\\HelloTOW’.

So, to fix this bug, after adding new project, you must edit trac.ini like above.

ex) MyProject


...
[project]
name = MyProject
...
[trac]
repository_dir = C:\\TOW\\SvnRepo\\Projects\\MyProject
...

And, resync your svn repository.


C:\TOW>trac-admin MyProject resync

January 2, 2008

TOW (TracOnWindows) 0.2.2 한글판 릴리즈

Filed under: 릴리즈 — Tags: , , , , , , , — yeoupooh @ 11:47 am

릴리즈 노트

TOW 0.2.2 기본 패키지 내용물은…

TOW 0.2.2 표준 패키지 내용물은…

변경사항

  • Python for Windows Extensions를 추가했습니다.
  • 일부 플러그인들을 업그레이드했습니다.
  • trac.ini 에 플러그인 설정이 잘못되었던 부분도 수정했습니다.
  • 계정의 권한 설정을 위해서 list-perm.bat, add-perm.bat, remove-perm.bat 스크립트를 추가했습니다.
  • 프로젝트를 한번에 추가하기 쉽도록 add-project.bat 를 추가했습니다.

SourceForge.net 에서 다운 받으시면 됩니다.

잘 쓰시고, 새해 복 많이 받으십시오.

December 28, 2007

TOW (TracOnWindows) 0.2.2 is released.

Filed under: Release — Tags: , , , , , — yeoupooh @ 8:45 am

Release Note

TOW 0.2.2 Base package includes…

TOW 0.2.2 Standard package includes…

Changelogs

  • Added Python for Windows Extensions.
  • Upgraded bundled plugins.
  • Fixed plugin settings in trac.ini.
  • Added list-perm.bat, add-perm.bat, remove-perm.bat scripts for User Permission Administration.
  • Added add-project.bat script for Project Initializing.

You can download it from SourceForge.net.

Subversion 저장소 접근 주소는 ….

Filed under: 사용자 가이드 — Tags: , , , — yeoupooh @ 8:22 am

README에도 언급을 안했군요. 다음과 같습니다.


http://<TOW호스트>/svn/<프로젝트명>

관리자(admin) 계정의 기본 비밀번호(towadmin)를 바꾸려면…

Filed under: 사용자 가이드 — Tags: , , , , , — yeoupooh @ 8:17 am

다음과 같이 add-user를 사용하면 바꿀 수 있습니다.


C:\TOW>add-user admin <새 비밀번호>

How to change Admin account’s password?

Filed under: User Guide — Tags: , , , , , — yeoupooh @ 8:06 am

If you want to change admin account’s password(default:towadmin), use add-user script.


C:\TOW>add-user admin <NewPassword>

« Newer PostsOlder Posts »

Blog at WordPress.com.