Search
Results (18267)
- Help: RE: Finished Projects
- The project and its children will just get ma ... the project, that will delete all associated issues, wiki, forums, etc. including attached files.
- Open discussion: RE: All issue statuses shown when creating status filter
- See if you can find it on the issues tracker, if not, please file a bug. If it's ... there somewhere, we'll mark it as duplicate.
- Help: RE: Accessing New Status
- [[FAQ#Ive-created-a-new-issue-status-but-I-cant-use-it-it-doesnt-show-up-in-the-status-drop-down-list]]
- Help: RE: Accessing New Status
- http://stackoverflow.com/questions/2372403/redmine-cant-see-new-issue-status
- Hello, As an administrator I create three new statuses but users cannot access them. Users list issues and when they right-click on a particular issue, the list appears containing the new issue but the newly added issues are grayed out. How do I enable the new ones? Thanks, Evan
- Hi, I'm working on a plugin which offers a ... Redmine's controller - especially queries of issues and theirs editing. Is there any way to dir ... I have not found any. Best regards Staon
- Using 0.9.3 I define a project to use only an issue tracker without the usual "new, assigned, ..." issue statuses. However when I create a filter on the issue status field I'm still presented with a list ... nks for a great project! Best regards, Bo
- 1.Administration>settings>issue tracking:Default columns displayed on the issue list 2. Administration>settings>Email notif ... s 0.8.7 have the option. there is a bug?
- Help: RE: Receiving E-mails via cron
- You have to specify the tracker _exactly_ as ... stallation, i.e. capitalization might be the issue.
- Help: RE: Receiving E-mails via cron
- Thanks, Felix. That actually didn't work for ... so the tracker=triage bit does not work. New issues are not assigned to any particular category ... lease let me know. Thanks again, Mike
- Open discussion: RE: Hiding Issue Start days from the calendar
- Nevermind. Found what I was looking for ;) ... d the appending of @@starting_events_by_days@
- Help: RE: Retrieving issues data from external tool.
- I suppose you meant "tokens" ;) Thanks for the help, i will study! Bonfo
- Help: RE: [linked issue] How behave linked issues
- Thanks About the first point, I mean that ... ortunately, I only know the framework WinDev.
- Help: RE: [linked issue] How behave linked issues
- I suppose you are talking about the GANTT cha ... nnounced with graphical links between linked issues and even I think the possibility the change ... dates by dragging the ends of the GANTT bars.
- Help: RE: [linked issue] How behave linked issues
- Thanksa a lot. I will open new threads if ... there a plug-in showing the link between the issues.
- Help: RE: [linked issue] How behave linked issues
- Just lazily linking issues?
- Help: RE: [linked issue] How behave linked issues
- So, what is it useful for ?
- Help: RE: Retrieving issues data from external tool.
- Have a look at the tokes table.
- Help: RE: Retrieving issues data from external tool.
- Ok. But then, how Redmine matches the key with the user?
- Help: RE: [linked issue] How behave linked issues
- Again: _Related to_ does *nothing* to any parts of the workflow the affected issues.
- Hello, I have successfully installed Redmi ... everything properly. Also I read the forums, issues and did almost everything which is suggeste ... PLEASE HELP. Thanks in advance. Deebika.
- Open discussion: RE: New Feature : More options to the wiki-edit
- +1 Trying to make CKEditor fully working right now. Have a look at this http://www.redmine.org/issues/617 There's a first attempt to include the ... file to Redmine as an attachments via script.
- Help: RE: [linked issue] How behave linked issues - Summary
- Behavours : * duplicates If issue B is the duplicate of A - closing B w ... of B will be +2 too. * blocks If issue B blocks A, A can't be closed unless ... ding date of A * related to ???
- Plugins: RE: Plugin Architecture Help
- Oh, I've also got another section in our wiki ... del represents a data object; an example is "Issue". The model file describes things like "each issue has 0 or more comments," "each issue belongs to exactly one project," "an issue has a Description property," "the Title prop ... code. For example, the directory 'app/views/issues/' contains many .rhtml files. The files tha ... ample, the index.rhtml file renders the main issues list; the gantt.rhtml file renders the Gant ... h the view can then access. For example, the issues_controller.rb in 'app/controllers' defines a method called "index" which finds all issues for the current query, exposes data structures like @query, @issue_count, @issue_pages, @issue...
- Plugins: RE: Plugin Architecture Help
- OK - here's the documentation I just wrote fo ... find this code fragment: <pre> unless Issue.included_modules.include? RedmineVersionFields::IssuePatch Issue.send(:include, RedmineVersionFields::IssuePatch) end unless Version.included_modu ... spatcher to send an "include" message to the Issue, Version, and Query models; this is a request for them to include the IssuePatch , VersionPatch , and QueryPatch modules ... atch file syntax This is the shell of the issue_patch.rb file, with some of the code removed ... <pre> module RedmineVersionFields module IssuePatch def self.included(base) # :nodoc ... apping end #InstanceMethods end #IssuePatch end #RedmineVersionFields </pre> ... rform our modifications. So when we tell the Issue...