Search
Results (18307)
- Plugins: RE: Make a patch inside plugin
- Where from come the idea to put code in improve_issues.ini? I am just interested . While creatin ... initialization code in init.rb. Why improve_issues.ini? I am actually putting the require o ... he right location of model patch. Good luck.
- Help: RE: bundle install problems
- Mario Luzeiro wrote: > I dont know, I'm usin ... and ruby.. Sorry, I misunderstood you. My issue was specific to Windows installation.
- Help: RE: How do I remove/disable atom rss feed
- | _I don't think the current RSS implementati ... nt by Felix._ I think there is a security issue. If I share confidential information with so ... ration the possibility of disabling the feed.
- this request is marked for the next major rel ... it to version 1.3.0: http://www.redmine.org/issues/7773 guys, please include this to Redmine 1.4.0, it's a very important one!
- Open discussion: RE: Problem with issue updates through Atom feeds on redmine 1.0.1.
- I'll try to explain this a bit more (I'm coll ... ect. So lets say we have an already existing issue and I make a change to it. That means that update date changes, so the issue shoots to the top of the list of issues (provided it has been sorted by "Update Dat ... the feeds for this project, the date on that issue has not changed, and therefore the feed read ... feeds are only good for showing new incoming issues. But there is no way of getting a project feed on issues that have been updated. If this is the ... ng that should be part of Redmine by default.
- Hi, i use this plugin and it work perfect ... hor with rest api i have an xml with some issues. I try to create a scripts that create the issues with rest api I did not found a way to create those issue with different author. Is it possible to ... gin via rest api Thank and Regards Zacky
- Plugins: RE: Redmine Scrumbler plugin
- released version 1.4.3 https://github.com/256MbTeam/Redmine-Scrumbler changelog: * Quick issue creation in backlog * Added rules and permi ... in sprint * Added. Limit sprint by points
- Hi I have problem make subtask with anothe ... . This problem is only on subtask on normal issue is ok. thanks for response
- Hi, we at openwalnut.org are using Redmine ... page recommends Rack 1.1.x: Could that be an issue here? Of course we have installed several ot ... , should I list them? Thanks for your help
- Plugins: RE: Incorporating non-billable hours in weekly timesheet plugin
- Dhanasingh, We may log time in "Non-Billable ... m field) and also "Hours" field for the same issue.I want a solution in this scenario. Regards, Arun
- Open discussion: RE: replying to this forum via email
- As far as I know, it's all based off config i ... verything through the subject (will have the issue # or forum discussion topic #). Should be able to do it as one cron job and one e-mail account.
- Help: RE: Redmine + passenger, creating issue -> 500 error
- Sure you're not being filtered/blocked/droppe ... network level, and/or try on another network.
- Hi, After finishing issue #5638 I have problems installed required gem ... lse encountered such problems? Help please...
- Plugins: RE: Issue Creation Plugin
- After calling `issue.errors.full_messages` , I discovered that I could not save the issue because required custom fields were not set. I added the following code before calling issue.save <pre><code class="Ruby"> issue.custom_values = [ create_custom_value(Cus ... e = value custom_value.customized_type = "Issue" return custom_value end </code></pre>
- fedora 16, redmine + Apache + Passenger Th ... tely many things work well (i can enter, see issues and projects, change settings e.t.c), but when i try to create new issue, server gives me error 500. The server gi ... t to the internet via 3G modem, i can create issue. If i connect to the internet via Ethernet c ... ndleRequest(request_rec*)' (Hooks.cpp:561) @
- Using Atom feeds, when we subscribe to a filter in an existing issues and when that issue changes the status or gets updated, it does ... to work or is it this a bug in redmine 1.0.1.
- Help: RE: How To Update Issue via REST? ADD X-Redmine-API-Key
- Update your function. "beforeSend" method is ... "1.0" encoding="UTF-8"?>'; ticketData += '<issue>'; ticketData += '<id>' + ticketId + '</id ... eStatus + '</status_id>'; ticketData += '</issue>'; jQuery.ajax({ type: "PUT", url: r ... low!!! https://YOUR_URL/workflows/edit
- Plugins: RE: Weekly Timesheet Plugin (wk-time)
- Alfredo, I have put in the code for allowing time entries to projects with no issues. this will be part of next release 0.0.7 ... 0.0.7. you already know this. Dhanasingh
- Hello all, I have a team of collegues, whi ... to be tracked. Additionally we have customer issues/incidents we have to manage. An example fo ... * > * project1A > > * component11 > > > * issues > > * component12 > > > * issues > * project1B > > * component13 > > > * issues > > * component14 > > > * issues *customer2* > * project2A > > > * issues ... We are currently using OTRS for the ... w projects available? * support of creating issues and tasks with the corresponding informatio ... lp me out of the dark? best regards, hans
- Hi everybody, may you can help me with a p ... try> <project name="Test" id="59" /> <issue id="238" /> <user name="tigaroo" id="5" ... ion, but no answer yet) Thanks tigaroo
- Hello, I am currently writing a plugin the creates a new issue via a http post request. I am currently Having issues with creating and saving a new issue. I was hoping that someone would point me in ... you in advance <pre><code class="ruby"> issue = Issue.new issue.tracker = Tracker.find_by_name("Bug") issue.subject = params[:subject] issue.description = params[:description] issue.project = Project.find_by_name(params[:project]) issue.start_date = Time.now.localtime.strftime("%Y-%m-%d") issue.priority = IssuePriority.find_by_name("Normal") issue.author = User.find_by_mail("XXX@gmail.com") issue...
- Plugins: RE: Incorporating non-billable hours in weekly timesheet plugin
- Arun, The way we do non billable hours is by ... "Non Billable" and have all the non billable issues within it. Not sure if this will work for you or not. Dhanasingh
- Help: RE: Mysterious blanket e-mail notifications after upgrading to redmine 1.3
- I believe to have root caused my issue... I had moved the instance to another user ... stray e-mails, but it appears solved for now.
- Plugins: RE: Weekly Timesheet Plugin (wk-time)
- yeah, I know :-) it might be easier to just repeat the same project/issue/activity/day entries rather than summing up. ... user on this item. I will what can be done.
- Make a patch inside plugin I want make I pat ... ou help me ? This is the code: improve_issues.ini <pre> require 'redmine' require 'b ... ispatcher' Dispatcher.to_prepare :improve_issues do # Patches to the Redmine core. Query ... gin default_columns = Setting.issue_list_default_columns.map(&:to_sym) ... This Is to try to add default columns in the issue list, programmed in the role. These lines ... pre> Adding column status.