Project

General

Profile

Search

Results (18298)

Open discussion: add these code to your classic theme's css file issue backgroup will change color when you change its priority!
Just add these code under your redmine\publi ... ile ,color will change follow the setting of issue priority ! @/* Issues Grid Styles By Priorities*/ table.list tr.issue a { color: #3c3c3c; } /* P5 */ tr.odd.pr ... ty-1 td { border-color: #add7f3; } /* END Issues Grid Styles By Priorities*/@ 2010-09-14 15:31
Help: "Stay logged in" not working
Hi again, We are having a few problems with the auto-login but before posting any issues on that, I'd rather check if I understood i ... e 1.0.1.stable. Any ideas? Cheers, Jan 2010-09-14 15:15
Help: RE: How can i add a filer to filt issues committed by anonymous user
You can at least add a feature request for th ... have a look if there isn't one already first. 2010-09-14 15:03
Help: RE: How can i add a filer to filt issues committed by anonymous user
thanks Felix Schäfer maybe we could add this ... release,and sorry for my multiple committing 2010-09-14 14:49
Help: RE: Error viewing issues after upgrading from 0.9.3 to 1.0.1
Thankyou so much for the suggestion! The rout ... I'll upgrade the production server. Bye A. 2010-09-14 11:45
Help: RE: Automatically notifying several people regarding a new issue?
I don't think there's an existing solution to what you are looking for, but the [[Plugin_List#New-Issue-Alerts-plugin|new issue alerts plugin]] might be a start. 2010-09-14 11:19
Help: RE: Error viewing issues after upgrading from 0.9.3 to 1.0.1
Please give the complete stack of the error, ... hat you didn't restart your redmine properly. 2010-09-14 11:17
Help: RE: How can i add a filer to filt issues committed by anonymous user
I don't think you currently can, what you cou ... r other than a user is a ticket by anonymous. 2010-09-14 11:14
Open discussion: RE: How can i add a filer to filt issues committed by anonymous user
Don't multipost. Closing here in favor of "the other thread":/boards/2/topics/17308. 2010-09-14 11:13
Open discussion: How can i add a filer to filt issues committed by anonymous user
we can't control anonymous users' behavior but we still want them to commit issues to our projects so i want to create a filter to control anonymous' issues ,but i found that their's no anonymous user ... w.redmine.org/attachments/4468/anonymous.JPG! 2010-09-14 10:51
Help: How can i add a filer to filt issues committed by anonymous user
we can't control anonymous users' behavior but we still want them to commit issues to our projects so i want to create a filter to control anonymous' issues ,but i found that their's no anonymous user ... ield just like image below: !anonymous.JPG! 2010-09-14 10:20
Help: Error viewing issues after upgrading from 0.9.3 to 1.0.1
After an upgrade using svn checkout from 0.9. ... teError (undefined local variable or method `issues_context_menu_path' for #<ActionView::Base:0xb6d438c8>) on line #84 of app/views/issues/index.rhtml: 81: <%= auto_discovery_li ... > 82: <% end %> 83: 84: <%= context_menu issues_context_menu_path %> app/views/issues/index.rhtml:84:in `_run_rhtml_app47views47issues47index46rhtml' app/controllers/issues_controller.rb:83:in `index' app/controllers/issues_controller.rb:82:in `index' Rendering /v ... during upgrade process) Any idea? Tks 2010-09-14 08:49
Help: Automatically notifying several people regarding a new issue?
How do I set up an issue category to automatically notify several people when an issue is added? Either as a simple email or by aut ... cater for a situation where a high-priority issue is raised and the default assignee cannot se ... nditions: * The helpdesk person raising the issue does not know who should be added as watcher ... but Redmine doesn't seem to cater for that. 2010-09-14 05:13
Open discussion: RE: add "missing" link between a commit and an issue
You could write a plugin that would completel ... sier than implementing a plugin from scratch. 2010-09-13 16:54
Open discussion: RE: add "missing" link between a commit and an issue
is it technically feasible to implement a plu ... atible with the creation of plugin to do so ? 2010-09-13 16:51
Plugins: time_tracker - 401 Unauthorized @ redmine-1.0.1
Hi, I've already posted the issue at http://github.com/delaitre/redmine_time_tracker/issues#issue/24. Since I have no response... and I ne ... are not logged in ? This is the original issue post: <pre> TimeTrackersController#rende ... ....../time_trackers/render_menu] </pre> 2010-09-13 16:46
Open discussion: RE: add "missing" link between a commit and an issue
No. 2010-09-13 16:42
Help: Notice of object missing from database
Just before the demise of Emerald I bought a ... d the creator who had never had this type of issue reported to her but sent me a new pair of bo ... gain and I still get the popup. Not a major issue folks but it's really annoying! Help! 2010-09-13 16:03
Open discussion: add "missing" link between a commit and an issue
Hi All, from what I understood, the "link" between issues and commits are done based upon the parsing ... mitted to precise it or refered to the wrong issue) without modifying "dirtily" directly the database (without the redmine interface) ? thanks 2010-09-13 15:28
Help: RE: Creating issues in a script
You will need at least @File.read("/path/to/f ... tiate one by just googling around real quick. 2010-09-13 13:30
Plugins: RE: Redmine Messenger problems
Terence Mill wrote: > Although the "RedmineM ... ://github.com/mszczytowski/redmine_messenger/issues#issue/13 seems to be working, i get some alarming ... production: <<: *development </pre> 2010-09-13 12:40
Plugins: Redmine Messenger problems
Although the "RedmineMessenger":http://github ... ://github.com/mszczytowski/redmine_messenger/issues#issue/13 seems to be working, i get some alarming ... -2.2.14/bin/passenger-spawn-server:61 </pre> 2010-09-13 12:38
Help: RE: Creating issues in a script
Thanks for the help :). I'll try out the runn ... attachment = Attachment.create(:container => issue, :file => "/var/log/nightbuild.log", :author ... ss should I use for @file@? How to create it? 2010-09-13 12:02
Help: RE: Creating issues in a script
You might prefer to use: <pre>#!/path/to/r ... but as I said: not a supported way to enter issues. 2010-09-13 10:11
Help: RE: Creating issues in a script
I found the solution. <pre> script/consol ... kers.find_by_name("Bug") category = project.issue_categories.find_by_name("some") priority = IssuePriority.find_by_name("Urgent") status = IssueStatus.find_by_name("New") issue = Issue.new( :author => user, :project => proj ... ity => priority, :assigned_to => user ) issue.subject = "Night build has failed" issue.description = "Issue body" issue.save </pre> 2010-09-13 01:40
(13501-13525/18298)