trac

How do I point at our new SVN repository with an SVN Client like TortoiseSVN?

拈花ヽ惹草 提交于 2019-12-08 12:18:06
问题 We are migrating from an older Bitnami Trac Stack on a Linux server in a Virtual Box VM to a new Windows native Bitnami Trac Stack on the same server. I've got both our repositories hotcopied, synched, upgraded and configured, etc. on the new server instance. By that I mean I can view both SVN source and Trac tickets migrated from the old instance on the new in a browser. However, I can't view the repositories from a client like TortoiseSVN because I don't know how to reference it. I'm using

How to generate changelog from Trac

廉价感情. 提交于 2019-12-08 08:32:30
I need to generate changelog from Trac for a specific version as XML and then process it with a custom XSL. It seems one of the default reports is the case (All Tickets By Milestone (Including closed)). However, if i request it as XML (by adding format=rss to the url) the output XML does not contain Status, Resolution, Milestone fields. How do i configure it to contain all the fields? How do you generate your changelogs from Trac to include it in release notes? 1) Please provide a copy of the Query (Click on SQL Query link at the bottom of the page) What I find strange is that normally you get

How to generate changelog from Trac

血红的双手。 提交于 2019-12-08 07:35:56
问题 I need to generate changelog from Trac for a specific version as XML and then process it with a custom XSL. It seems one of the default reports is the case (All Tickets By Milestone (Including closed)). However, if i request it as XML (by adding format=rss to the url) the output XML does not contain Status, Resolution, Milestone fields. How do i configure it to contain all the fields? How do you generate your changelogs from Trac to include it in release notes? 回答1: 1) Please provide a copy

How do I restrict specific trac/svn users to access specific folders/trunk of SVN?

Deadly 提交于 2019-12-08 04:32:00
问题 I have trac installed with svn. I have different trunks of projects. I want to limit few users, so that they can only access one specific trunk whichever I define. How do I do that? 回答1: You can password-protect specific directories using the authz file of the svn server like this: [proj:/branches/davesbranch] dave = rw There are other means for accessing through Apache. See the book. My question would be "why?" If you're afraid they'll mess something up, that kinda goes against the idea of

Open and close trac tickets with a single commit

谁说胖子不能爱 提交于 2019-12-07 22:44:49
问题 I am looking for a way to add a post-commit or pre-commit hook to my VCS that will allow me to both create and close a trac ticket in one go. The use-case is for when a bug has been found, and corrected, but a single developer who wants to make sure the project manager can see the fix has been done, when it was done and what milestone the fix has been done in. We have a default milestone in trac when creating a ticket, so reflecting that information would be good too. 回答1: I recommend

How can I create new project in Trac?

给你一囗甜甜゛ 提交于 2019-12-07 12:03:21
问题 I have installed Bitnami Trac for windows. (bitnami-trac-0.12.2-5-windows-installer) During installation, it asked me for creating project and username and password. I successfully created project and set up a user for me(admin). At the moment, there is written only one available project that I created during installation. I am new to it, that is why I am asking it from you, Please help me how can I create new project? Also, how can I create other users? 回答1: Bitnami installer asks for

How to link to html file in Trac

妖精的绣舞 提交于 2019-12-07 08:35:41
问题 I want to link from my project Trac page to my javadoc index.html file, which is located inside the source repository. However I don't know how to link in such a way that the file will be rendered as a usual page. I tried [source:.../index.html] and [http://.../index.html] both just displays its content, as any other source file. From Trac version 0.11 an onwards, the [export:.../index.html] (as answered by Gregory Pakosz) seems to be exactly what I need, however we currently work with 10.3

“DLL load failed” when using mercurial on trac

旧城冷巷雨未停 提交于 2019-12-07 05:02:31
问题 My mercurial repository works correctly in trac when I use the tracd server. However, when I use apache , I get the following warning at the top of all trac pages: Warning: Can't synchronize with repository "(default)" (Unsupported version control system "hg": DLL load failed: The specified module could not be found.). Look in the Trac log for more information. The trac log doesn't have anything useful except a warning about mercurial being compiled with Python 2.6.2 and the actual version of

Post Commit Hook with Trac and SVN

戏子无情 提交于 2019-12-06 07:17:13
So I am having a few problems with settings this up. Let me explain. I have three files in my d:\svn\hooks file (D:\ is not windows drive) post-commit.bat trac-post-commit-hook.cmd trac-post-commit-hook I have setup the post-commit.bat file in d:\svn\hooks file with the following %~dp0\trac-post-commit-hook.cmd %1 %2 In my trac-post-commit-hook.cmd - I have @ECHO OFF :: :: Trac post-commit-hook script for Windows :: :: Contributed by markus, modified by cboos. :: Usage: :: :: 1) Insert the following line in your post-commit.bat script :: :: call %~dp0\trac-post-commit-hook.cmd %1 %2 :: :: 2)

How to show due date column in the trac reports?

眉间皱痕 提交于 2019-12-06 05:36:15
I have trac installed for managing my online projects. I have also installed a date plugin DateFieldPlugin in it. I am unable to show this date filed in the custom reports. The following code generates the normal report. SELECT p.value AS __color__, owner AS __group__, id AS ticket, severity, summary, component, milestone, t.type AS type, time AS created, changetime AS _changetime, description AS _description,reporter AS _reporter FROM ticket t LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority' WHERE status = 'assigned' ORDER BY owner, p.value, t.type, time and I want something