躺在沙滩上的小猪

快乐的每一天

#

A story about FreeMarker and Velocity

http://blog.hibernate.org/cgi-bin/blosxom.cgi/2006/02/03#a_story_about_freemarker_and_velocity

posted @ 2006-02-13 09:38 martin xus| 编辑 收藏

FireBug - Firefox Extension

FireBug is a new tool that aids with debugging Javascript, DHTML, and Ajax. It is like a combination of the Javascript Console, DOM Inspector, and a command line Javascript interpreter.

https://addons.mozilla.org/extensions/moreinfo.php?application=firefox&id=1843

posted @ 2006-02-12 20:49 martin xus| 编辑 收藏

【trac】Web Admin Plugin

通过命令行运行trac-admin总是感觉不爽 web admin plugin 提供了trac-admin基本所有得功能

         http://projects.edgewall.com/trac/wiki/WebAdmin

其他plugin:
         http://projects.edgewall.com/trac/wiki/PluginList

posted @ 2006-02-11 21:04 martin xus| 编辑 收藏

为trac增加用户

当前环境:
trac 0.9.3
apache 2.0.55
mod_python 3.2.5b

建立用户

htpasswd -bcm D:\workspace\projects\trac\.htaccess martin 1234

为该用户赋项目的权限

python trac-admin D:\workspace\projects\trac
Trac [D:\workspace\projects\trac]
>permission add martin TRAC_ADMIN

修改apache的httd.conf (具体可见这里:http://projects.edgewall.com/trac/wiki/TracModPython)

添加:
LoadModule python_module modules/mod_python.so

<Location /xpost>
   SetHandler mod_python
   PythonHandler trac.web.modpython_frontend 
   PythonOption TracEnv D:
/workspace/projects/trac
</Location>

<Location "/xpost/login">
  AuthType Basic
  AuthName 
"XPost Login"
  AuthUserFile D:
/workspace/projects/trac/.htaccess
  Require valid
-user
</Location>

ok,重起apache就可以了

posted @ 2006-02-11 20:56 martin xus| 编辑 收藏

为trac增加用户

当前环境:
trac 0.9.3
apache 2.0.55
mod_python 3.2.5b

建立用户

htpasswd -bcm D:\workspace\projects\trac\.htaccess martin 1234

为该用户赋项目的权限

python trac-admin D:\workspace\projects\trac
Trac [D:\workspace\projects\trac]
>permission add martin TRAC_ADMIN

修改apache的httd.conf (具体可见这里:http://projects.edgewall.com/trac/wiki/TracModPython)

添加:
LoadModule python_module modules/mod_python.so

<Location /xpost>
   SetHandler mod_python
   PythonHandler trac.web.modpython_frontend 
   PythonOption TracEnv D:
/workspace/projects/trac
</Location>

<Location "/xpost/login">
  AuthType Basic
  AuthName 
"XPost Login"
  AuthUserFile D:
/workspace/projects/trac/.htaccess
  Require valid
-user
</Location>

ok,重起apache就可以了

posted @ 2006-02-11 20:54 martin xus| 编辑 收藏

仅列出标题
共28页: First 上一页 6 7 8 9 10 11 12 13 14 下一页 Last