Search
Results (18298)
- Open discussion: RE: Is there a way to template Projects? Or create pre-defined sets of Issues which can be added?
- Projects can be copied from the administratio ... what do you want to copy: members, versions, issues... so you could prepare some "template project" to be copied later. Regarding to the issues, you could, once copied the project, perform some bulk edit for changing dates, assignees, etc...
- Help: RE: "Resolution" field for issues
- Thank you, that is exactly what I was looking for!
- Help: RE: "Resolution" field for issues
- You may add an issue custom field (Administration->Custom fields->Issues). The type of the field may be in list form ... r all projects, Used as a filter, Searchable.
- Hi, I would like to add a "Resolution" field to issues in our redmine (see screenshot). How can ... re? Any help would be greatly appreciated.
- Help: RE: Got internal error when request issue list
- Hi, Fixed by modifying database columns.
- Is there any way to "template" a project type ... e a project, it comes with a standard set of issues? We have a number of standard tasks that ... re pre-stubbed out with a pre-defined set of issues. Either that, or we'd like to be able to "bundle" issues up, and mass-add them all to a project in o ... ge of the plugin directory looking for this.)
- I want anonymous users committing issues,but i want to give them some advise but i d ... d on have problem i have changed another one。
- Help: RE: Comments under issues invisible for non-admin users
- it starts to work fine if you apply this patc ... vancedRoadmap::CalendarsControllerPatch) Issue.send(:include, AdvancedRoadmap::IssuePatch) - IssuesController.send(:include, AdvancedRoadmap::IssuesControllerPatch) +# IssuesController.send(:include, AdvancedRoadmap::IssuesControllerPatch) Project.send(:include, ... pre> i simply removed (commented out) the issue controller patch from the plugin init script. looking more closely at the issue controller patch itself, there is nothing essential you can't live without. just mu five cents.
- Hello, After upgrade from 0.9.3 to 1.3.1 ... internal server error when I trying to view issue list. Logs below: Processing IssuesController#index (for 172.25.172.141 at 2012 ... "=>"task", "action"=>"index", "controller"=>"issues"} Rendering template within layouts/base Rendering issues/index ActionView::TemplateError (undefin ... ' for nil:NilClass) on line #28 of app/views/issues/_list.html.erb: 25: </tr> 26: <% ... p = group %> 27: <% end %> 28: <tr id="issue-<%= issue.id %>" class="hascontextmenu <%= cycle('odd', 'even') %> <%= issue.css_classes %> <%= level > 0 ? "idnt idnt-#{ ... hide-when-print"><%= check_box_tag("ids[]", issue.id, false, :id => nil) %></td> 30: <td class="id"><%= link_to ...
- Open discussion: RE: REST API: Filter issues according to date
- hmmm... there are really too many results) ... tion? No, i learned this at random...
- Open discussion: RE: REST API: Filter issues according to date
- Thanks. Do you know where I can find this in ... 't really work: <pre>http://www.redmine.org/issues.xml?created_on=>=2012-03-01&created_on=<=2012-03-01</pre> returns far too many issues. It seems that Redmine uses only the last "created_on" filter and not both.
- Open discussion: RE: REST API: Filter issues according to date
- Yes, it is possible with construction like http://www.redmine.org/issues.xml?tracker_id=1&created_on=>=2012-02-01&created_on=<=2012-02-15
- Hello. I'm trying to use filtering by custom ... r. Request such as http://www.redmine.org/issues.xml?tracker_id=1&cf_2=Fixed&cf_1=1.3.0 perf ... sions 1.3.0 and 1.3.1... Where is trouble?
- I spent this morning creating a basic plugin that allows the user to see branches an issues git commit resides on. It basically calls " ... c resides in the _changesets.erb view in the issues folder. So my plugin folder structure looks ... pre> pluginname: app: views: issues: _changesets.erb ... re is it, because one already exists for the issue. How best do I achieve SOME sort of deco ... to-modify-core-redmine-classes-from-a-plugin/
- I don't have much hope for this but I wanted ... " option expanded if you choose to update an issue?
- I am one of the developers of the Java Redmin ... ouldn't be a configuration nor a credentials issue.
- Open discussion: RE: Redmine is still vulnerable against CSRF
- This issue affects Redmine < 1.3.0 only.
- Open discussion: RE: HTML special characters in issue titles
- <pre> Processing IssuesController#create to xml (for 10.132.21.139 at 2012-03-01 14:27:35) [POST] Parameters: {"issue"=>{"project_id"=>"1", "subject"=>"ééé", "priority_id"=>"6", "description"=>"éàé"}, "controller"=>"issues", "action"=>"create", "format"=>"xml"} </pre>
- Open discussion: RE: HTML special characters in issue titles
- It worked just fine for me: !post_issue_example.PNG! !post_issue_result.PNG! Edit: (with trunk version)
- Hi, I am new to redmine and finding it qu ... me straight in the face. When i raise an issue for example to go to my design team or reply to an issue, I would like to be able to break the issue into components that the designer can tick o ... w how I would complete this ? thanks Sean
- Good morning, "Main" Directory: *Project* ... ectory: *Sub1* # Sub-Directory: *Sub2* 3 issues have been created yesterday but in the wron ... ct*" instead of "*Sub1*". To day, these 3 issues have been transferred from *Project* to *Sub1*. Unfortunately the 3 issues are missing. They have disappeared !! Wo ... in advance for your kind support. Olivier
- Hi, is it somehow possible to request all ... via the REST API without fetching the entire issue list and doing the filtering manually afterwards? Thanks!
- Open discussion: RE: HTML special characters in issue titles
- Thanks for the tip, but it didn't work at all ... from the REST API. @safe_attributes@ in the issue model does integrity check, but that's all.
- Open discussion: RE: HTML special characters in issue titles
- I guess that you're sending XML and that you ... ://www.freeformatter.com/string-escaper.html.
- Open discussion: RE: HTML special characters in issue titles
- After a quick look in the bowels of Redmine, I found this : <code> subject = h(issue.subject) </code> So yes, it seems to be a Redmine feature.