trac

Internal bug tracking tickets - Redmine, Trac, or JIRA

微笑、不失礼 提交于 2020-01-02 02:48:12
问题 I've been looking at setting up Redmine, Trac, or JIRA to track issues. I want to be able to have my development team create internal tickets that are never seen by clients, while clients can create/edit tickets that are seen by the internal team. From the Trac documentation, you can set permissions to create or view tickets, but it doesn't seem to allow for viewing only certain tickets. It may be possible with Trac Fine Grained Permissions, but doesn't appear so. The Redmine documentation

Trac, how to organize pages hierarchically?

拥有回忆 提交于 2019-12-30 07:13:04
问题 I use trac to manage my projects and I'd like to organize wiki pages the same way trac project does, i.e. by category, subcategory, etc. TitleIndex page on trac site gives a good explanation of the result I want to obtain. How do I achieve this? 回答1: First of all, you can create hierarchically wiki pages, just by modifying the url, and press enter. It is also possible to create a wikilink first, and then press the red link. For example, when your trac home page is http://trac.server.local

Commit without whitespace changes on github

拟墨画扇 提交于 2019-12-30 03:42:05
问题 Is there a way to display a commit on github.com without showing whitespace changes? Is there a way to display that from console? i.e. clone and then look at commit (tree) locally ignoring all white space changes? I use Trac extensively; I'm looking for something similar to Ignore White space changes (which can be found on the changeset view). 回答1: Append ?w=1 to the URL on any github.com page that is showing a diff and it will ignore whitespace. See this blog post. 回答2: There is a trio of

Commit without whitespace changes on github

吃可爱长大的小学妹 提交于 2019-12-30 03:42:05
问题 Is there a way to display a commit on github.com without showing whitespace changes? Is there a way to display that from console? i.e. clone and then look at commit (tree) locally ignoring all white space changes? I use Trac extensively; I'm looking for something similar to Ignore White space changes (which can be found on the changeset view). 回答1: Append ?w=1 to the URL on any github.com page that is showing a diff and it will ignore whitespace. See this blog post. 回答2: There is a trio of

Trac vs. Redmine [closed]

只愿长相守 提交于 2019-12-29 10:13:29
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I'm working in research and my bioinformatics work group needs a project management software for keeping track of multiple projects

Trac - How do I access Custom Ticket Fields in ITicketChangeListener?

亡梦爱人 提交于 2019-12-25 06:51:08
问题 I'm trying to write my own Trac plugin to notify an external system of changes to tickets matching a certain criteria. From my research so far, I've figured out that implementing the ITicketChangeListener interface is the way to go. The method definitions are all very straight forward, but what's not straight forward for me is the Ticket object and accessing its custom fields. I've learned that you can access default ticket fields as simply as: # t is a Ticket object theStatus = t['status'] I

Reading and processing an uploaded file for a Trac plugin

徘徊边缘 提交于 2019-12-25 02:59:43
问题 I'm trying to write a plugin for trac but I'm missing sthg. after reading all the tutorials made by the site trac. So I'm trying to upload a file to the sever using the POST method this a simplified example : <form id="MyForm" name="input" action="" method="post"> <label for="attachment">URL :</label> <input type="file" name="GanttFile" value=""/> </form> Now I'm trying to process the uploaded file ,read it and do some modifications than save it or ask the user to choose where he wants to

Group revisions together with Trac?

穿精又带淫゛_ 提交于 2019-12-25 00:13:59
问题 How does one "group a bunch of revisions you've already committed to svn together" (see Jim T's answer) in Trac? 回答1: The very basic idea is simply to put a bug number into the revision log when you commit. If it's the first thing, then when you look down the logs you'll be able to see the bug numbers easily. I know Redmine has an additional feature that checks for these bug numbers in the commit logs and attaches the revision to the bug, so you can see from the bug all the revisions that

Join table with composite key twice

扶醉桌前 提交于 2019-12-24 20:18:42
问题 Given the table ticket with the primary key id and the table ticket_custom with the composite key ticket,name how can I join for id = ticket and name=X and id = ticket and name=Y . The table ticket_custom allows the ticket table to be extended , it has the fields ticket,name,value . I can do a single join: SELECT id, summary, owner, ticket_custom.value FROM ticket INNER JOIN ticket_custom ON id=ticket_custom.ticket AND ticket_custom.name='X' I need something like: SELECT id, summary, owner,

Getting wiki output from TinyMCE/CKEditor (for Trac plugin)

二次信任 提交于 2019-12-24 10:35:46
问题 I'm working for a company that uses Trac. Problem is, no one likes Trac's wiki-editor, and the wysiwyg plugin isn't as good as we'd like. To solve this, we've decided to create our own Trac wysiwyg plugin (hopefully, I'll be allowed to Opensource it.) The plan right now is to use either TinyMCE or CKEditor as they wysiwyg editor. Problem is, their output is html. Ideally, we'd like their output to be native trac-wiki code. My question: Is there any way of getting TinyMCE or CKEditor to output