trac

Is it possible to generate a changelog automatically from Trac?

我的未来我决定 提交于 2019-12-11 04:04:26
问题 Does Trac provide a way to automate generation of change logs from a group of tickets? I'm interesting in giving a list of completed tickets to someone with access to Trac, preferably in a human readable format, something like a word doc or plaintext. If Trac doesn't provide this functionality directly is there an external tool I can use? Note that I am aware of the question How to generate changelog from Trac and it doesn't help me. 回答1: As you must have already noticed by now is, there's no

git receive-pack stops with 0000

ぐ巨炮叔叔 提交于 2019-12-11 01:59:01
问题 I'm very new to git and currently trie to setup an environment with gitolite and trac on opensuse. I managed to migrate an old svn repository with the scripts from http://john.albin.net/git/git-svn-migrate. Now I'm stuck with the trac/git-integration since the git-receive-pack command doesn't behave as expected. When performing the below command, it hangs after printing 0000 and I got to press CTRL+C to return. $ git-receive-pack . 0072c0b863c86da4bb75caa8cb5b6cd46604096b84e9 refs/heads

Any nice way to generate a timeline view of commits from subversion?

♀尐吖头ヾ 提交于 2019-12-11 00:28:34
问题 Just starting out with subversion, have set up repos for 3 current projects and all seems good. Subclipse is nice isn't it! Anyway, what I'd like to have is a nice timeline showing the commits with comments for these repos. They are all hosted on the same server as the websites that they contain. I've tried trac, which does what I want, but seems a huge overkill as I don't really want the tickets/wiki/etc, just the timeline. Any ideas? 回答1: subclipse plugin for eclipse can create a timeline

Trac Logo issue

一曲冷凌霜 提交于 2019-12-10 18:49:27
问题 I installed trac (v 0.11.7) on my debian box. Everything runs fine except I couldn't get logo to display. I used mod-wsgi and deployed the project to a folder named 'deploy'. Inside deploy folder, I have a htdocs folder that has two subfolders: common and site. I changed the [header_logo] of trac.ini so it read src=site/logo.jpg width=200 height=100 It won't display while logo.jpg was stored under site folder. When I changed the src to common/trac_logo_mini.png, it did show up. I then moved

How to download an svn archive from a trac tree?

♀尐吖头ヾ 提交于 2019-12-10 14:59:23
问题 There is a project which had an svn server that is down now, but the trac-browser is still available. Is there a simple way to acces that tree as if it was an svn server? Preferably I'd just donwload the whole repo via git-svn , but a wget solution for the current revision would also be great (the trouble with the latter is that simply crawling will download including trac's wrapped around html). 回答1: Depending on the Trac server configuration, you may find a "zip" link at the bottom of the

How to show due date column in the trac reports?

百般思念 提交于 2019-12-10 11:27:37
问题 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

Post Commit Hook with Trac and SVN

风格不统一 提交于 2019-12-10 10:57:00
问题 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

Creating Trac Tickets From Website

不问归期 提交于 2019-12-09 21:18:12
问题 is it possible for my website visitors to create Trac tickets from my website rather than being logged into the Trac system? For example: I have a feedback form on my website that sends the form information to an e-mail address. What I would like to do is have that form communicate with Trac and dynamically create a ticket with each form submission, instead of sending an e-mail. I've taken a look at the page source of the "New Ticket" page on Trac. It looks like the form has a hidden input

What headaches should I expect from using Trac?

寵の児 提交于 2019-12-09 08:58:43
问题 No tool is perfect, and I'm about to start several long-term projects using Trac, and wanted a heads up of the kinds of problems I may or may not experience with it. In other words, Trac meets my needs in the short term, and I've already made the decision to use it , but I want to know what to expect down the road. I am not looking for: "Use product X instead of Trac because..." answers. "Trac is great because..." answers. A comparison to any other specific system. "Trac doesn't support

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

馋奶兔 提交于 2019-12-08 18:20:29
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? 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 revision-control. Furthermore, if you instead give developers the freedom to create as many branches as they