Search
Results (18301)
- Open discussion: RE: issues tree dont work well
- thanks for your reply,:)
- Open discussion: RE: issues tree dont work well
- [[HowTo_TreeQuery]] is probably what you are looking for.
- Help: RE: [Need Help]Redmine Email notification Issue---In One Project with 204 users
- Just an idea: check the constraints on your s ... amming. I came across problems when updating issues e.g. using sync smtp (update in GUI was del ... as a "feature" of our smtp. cheers Alex
- Open discussion: RE: improve the readably and clarity of the Issue Page
- Thank you very much, that helped me a lot
- Plugins: RE: How to create history with update issues by plugin redmine import task
- Hi Mischa. Thank you very much. I do it.!!!!
- first, I create a issue A, and then create another issue B and set issue A as its parent,but issube B doesn't display as a sub node of issue A. if I set issue A as other issues's parent , display wrong either. how to resolve?
- Plugins: RE: How to create history with update issues by plugin redmine import task
- I edit: <pre> issue = Issue.find(row_content[0]) #issue.update_attribute(:subject,row_content[settings_conf['task_column'].to_i]) issue.subject=row_content[settings_conf['task_column'].to_i] issue.tracker_id=settings_conf['save_task_as'].to_i #Bug/Feature/Support issue.status_id=1 #New issue.description=row_content[settings_conf['task_description_column'].to_i] issue.estimated_hours=row_content[settings_conf['average_hour_column'].to_i] issue.custom_field_values={"1"=>row_content[settin ... age_hour_column'].to_i].to_i} issue.custom_field_values={"2"=>row_content[settings_conf['asignee_name_column'].to_i]} ...
- Plugins: RE: How to create history with update issues by plugin redmine import task
- You probably need to call @Issue#init_journal@. Example taken from #18237#note-2 and modified for the case: <pre> issue = Issue.new attributes issue.save # no journal created issue = Issue.new attributes issue.init_journal(some_user) issue.save # journal created </pre> I can't he ... ?) exporting/importing and now even updating.
- Help: RE: configure freebsd+redmine+subversion
- Роман Лебедев wrote: > Thank you very much. ... with_ *BSD familiarity to help you with your issue: try to rephrase to a single, clear question ... ted successfully or not. Ref.: message#667
- Plugins: RE: How to create history with update issues by plugin redmine import task
- This is controller of plugin import issue
- Plugins: RE: How to create history with update issues by plugin redmine import task
- No. I update issue not create. Are you understand???issue = Issue.find(row_content[0]) In redmine I have issue ID=93. In file excel I have a row with column[A]=93. I import file excel. Issue id 93 in redmine was update with params form file excel. But History of issue in redmine not update. OK?
- Plugins: RE: How to create history with update issues by plugin redmine import task
- By default, Redmine does not create a new journal when a new issue is added. Only later issue attribute changes, issue relations changes and new notes generate jou ... sage#15134 about topics suitable for forum#4.
- Development: RE: How to export issues into excel fog redrmine 2.5.1
- Hi Martin. Can you give me skype or facebook of you. Thank you very much!!
- Hello every body, I am newbile develope plugin for redmine. I want to update issues by import file excel. I override plugin red ... this. Code in plugin: <pre> issue = Issue.find(row_content[0]) #issue.update_attribute(:subject,row_content[settings_conf['task_column'].to_i]) issue.subject=row_content[settings_conf['task_column'].to_i] issue.tracker_id=settings_conf['save_task_as'].to_i #Bug/Feature/Support issue.status_id=1 #New issue.description=row_content[settings_conf['task_description_column'].to_i] issue.estimated_hours=row_content[settings_conf['average_hour_column'].to_i] issue.custom_field_values={"1"=>row_content[settin ... age_hour_column'].to_i].to_i} ...
- Development: RE: How to export issues into excel fog redrmine 2.5.1
- OK. thank you very much!!!!
- Help: RE: configure freebsd+redmine+subversion
- According to the screenshot, it looks like a path issue. You need to find out the full path to where ... he path using a command like @whereis svn@.
- Right now due date is only included in the em ... ight now to include it in the summary of the issue in the e-mail? (or any other filed for that matter?)
- Help: RE: No permission to acces issue, created by the same person
- In your case the project @New-Tickets@ is most-likely not public. The issues are being created (because non-member role has @:add_issues@ permission) and because you use @no_permis ... ) non-public project. In Redmine version#81 issue #17976 is implemented, which seems to be able (haven't tested this personally yet) to solve your issue if you add the build-in non-member group wit ... arting with Redmine version#60, which solved issue #13340. With that available you could place ... as a project member of project @New-Tickets@.
- Help: RE: How to disable attaching files in issues ?
- Sébastien Pochiero wrote: > thanks, > > i ... Upload Files > > edit the file \app\views\issues\new.html.erb by adding this test : > [...] > > edit the file \app\views\issues\_edit.html.erb by adding this test : > [.. ... I rewrite this lines to create/manage an " *Issue Delete Attachment Permission* " ? Is it possible? Thanks :)
- Development: RE: How to export issues into excel fog redrmine 2.5.1
- Hello Anhkoa, In issue listing, at the bottom right of the page you ... asked but I hope it will help. Cheers,
- Help: RE: No permission to acces issue, created by the same person
- !
- Help: RE: No permission to acces issue, created by the same person
- I solved the problem. Somehow the "Non Membe ... is doesnt work, if the user isn't in a group.
- Open discussion: RE: Disable copy button
- Dominique Deschenes wrote: > Is there a way ... ll, effectively you need to revoke the @:add_issues@ permission from user roles to remove it án ... ut line five of source:/tags/2.5.2/app/views/issues/_action_menu.html.erb@13591#L5.
- Open discussion: RE: improve the readably and clarity of the Issue Page
- Moritz Koehler wrote: > Does any one has an idea how I can structure the issue page better? Since I have a lot of custom f ... tricky. If you look at the html source of issues/show (meta-code) you can see that the related parts are like[1]: <pre> <div#content> <div.issue.details...more.attributes...> <table.at ... stom.field.rows... </pre> As you see the issues attributes are wrapped in a table where eac ... like: <pre><code class="css"> #content div.issue.details table th.cf_3 { border: 1px solid black; } #content div.issue.details table td.cf_3 { border: 1px solid ... like: <pre><code class="css"> #content div.issue.details table th.cf_3 { border-top: 1px; ... ; border-color: black; } #content div.issue.details table td.cf_3 { border-top: 1px; ... using <pre><code class="css"> #content div....
- Help: RE: Help: Why is mailer.rb in app/models
- Hi Martin, Thanks for offering a help. Eve ... clipboard_image_paste 1.8 latest_issues 0.0.1 </pre> Any clue? Thanks.