随笔分类 -  Trac

摘要:插件GanttCalendarPlugin安装完以后,有一个问题,就是在选择起始与结束时间的时候,为了方便有datepicker功能,如图需要用到插件DateFieldPlugin,官网链接http://trac-hacks.org/wiki/DateFieldPlugin 阅读全文
posted @ 2014-04-29 16:59 Ada zheng 阅读(355) 评论(0) 推荐(0)
摘要:http://trac-hacks.org/wiki/GanttCalendarPlugin官网上的说明很清楚,处理做几点提示,以做记录。1.我的Trac版本是1.0.1我使用了'B' Method: for Trac 0.12 (Multilingual)easy_install "http://... 阅读全文
posted @ 2014-04-29 15:59 Ada zheng 阅读(426) 评论(0) 推荐(0)
摘要:http://trac.edgewall.org/wiki/TracNotification官网上提供的方法。个人觉得不是清楚,不过还是有参考价值的。以下写下自己的添加过程,以作记录。1.the[trac] base_urloption must be set intrac.ini.base_url... 阅读全文
posted @ 2014-04-29 15:32 Ada zheng 阅读(333) 评论(0) 推荐(0)
摘要:1,下载地址 http://trac.edgewall.org/ 2.安装 apache,python, mysql3,安装trac (我的是0.12)tar -zxvf 你下载的安装包cd trac安装目录python setup.py install3.出现python错误 ImportErro... 阅读全文
posted @ 2014-04-26 21:39 Ada zheng 阅读(434) 评论(0) 推荐(0)
摘要:在python运行过程中出现如下错误:python错误:ImportError: No module named setuptools这句错误提示的表面意思是:没有setuptools的模块,说明python缺少这个模块,那我们只要安装这个模块即可解决此问题,下面我们来安装一下:在命令行下:下载se... 阅读全文
posted @ 2014-04-26 16:50 Ada zheng 阅读(10879) 评论(0) 推荐(0)
摘要:在Trac中,添加、删除、配置用户账户以及身份验证的过程依赖于运行Trac的方式,也就是使用哪种方式、在哪种Web服务器上运行Trac。下面介绍使用Tracd时如何管理用户帐号以及进行身份验证。在以前的讲解中,我们建立了一个Angel项目的Trac环境,用以下的命令:C:\Python24\Scripts>..\python tracd -p 8001 C:\SCM\Angel\Angel_Trac来运行Trac环境。虽然使用浏览器访问该项目时,页面上方也有一个“Login”连接,但是是无法使用的,点击了会报错,提示:“Authentication information not ava 阅读全文
posted @ 2013-09-11 10:10 Ada zheng 阅读(1483) 评论(0) 推荐(0)
摘要:1概要以 Windows 平台为例,讲述一下有关 Trac 的基本配置与使用,同时分享一下有关 Trac 的项目管理经验。2安装 Trac 前的准备工作2.1准备工作安装 Python 2.7;安装setuptools-0.6c11.win32-py2.7安装Genshi,可以用下面的命令用 Setupfile 来安装。easy_install Genshi安装时,注意版本的问题。如setuptools-0.6c11.win32-py2.7就是用于windows 32位,python2.7的。3安装 Trac用 easy_install 来安装 Trac,详细的说明可以看官方文档,或者在这一步 阅读全文
posted @ 2013-09-10 10:27 Ada zheng 阅读(10053) 评论(0) 推荐(0)