Project

General

Profile

Search

Results (18267)

Plugins: RE: Redmine Issue History Tabs Plugin
Kostya, are you going to keep working on this plugin? 2010-04-09 17:41
Plugins: RE: ezSummary plugin 0.0.1 - Send issue status summary(including all journals) mail to somebody
Sorry... Before : form_tag ezsummary_path(:issue_id => issue), :html => { :method => :post, :id => "create_email_form"} do After : form_tag :issue_id => issue, :action => "create", :html => { :method => :post, :id => "create_email_form"} do -% 2010-04-09 14:46
Plugins: RE: ezSummary plugin 0.0.1 - Send issue status summary(including all journals) mail to somebody
amine lahlou wrote: In the _email_form.html.erb : Before <% form_tag ezsummary_path(:issue_id => issue), :html => { :method => :post, :id => "create_email_form"} do -%> After <% form_tag :issue_id => issue, :action => "create", :html => { :method => ... "create_email_form"} do -%> Cheers 2010-04-09 14:44
Plugins: RE: ezSummary plugin 0.0.1 - Send issue status summary(including all journals) mail to somebody
Before you can send emails with the last vers ... ezsummary_mail") %></legend> <% form_tag :issue_id => issue, :action => "create", :html => { :method => ... ld_tag 'subject', attributes[:subject] || "#{issue.project.name} - #{issue.tracker.name} ##{issue.id}: #{issue.subject}" %> </div> <div c ... pan> </div> <% end -%> </fieldset> 2010-04-09 14:38
Plugins: RE: ezSummary plugin 0.0.1 - Send issue status summary(including all journals) mail to somebody
Malte Schnack wrote: > amine lahlou wrote: ... orrectly configuring the plugin i have a new issue now. > > I face the same problem here, Am ... /redmine_ezsummary which seems to solve this issue. * Download the zouchaoqun's master branc ... </pre> * ... and you should be good to go 2010-04-09 14:25
Plugins: RE: Knowledgebase Plugin
Alex, your plugin looks very promising, an ... file (see below). <pre> @object_types = %w(issues news documents changesets wiki_pages messag ... mine 1.0 release (see http://www.redmine.org/issues/3936). I hope it helps, and congratulations for your nice plugin ! 2010-04-09 14:00
Help: view spent time
Hello, I would like to hide the spent time on issues from a group of users. I found the "view s ... can see that this user has spent x hours on issue #123. It is possible to hide this too? Thank a lot Regards 2010-04-09 13:45
Help: RE: Simultaneous Issue Editing
I've investigated this a little more and filed a bug: #5280 2010-04-09 13:00
Help: RE: Urgent: Subtasks issue
Do you see subtasks in Issue details page? Look at screenshot 2010-04-09 12:59
Plugins: RE: ezSummary plugin 0.0.1 - Send issue status summary(including all journals) mail to somebody
amine lahlou wrote: > But after correctly configuring the plugin i have a new issue now. I face the same problem here, Amine. Did you find a solution? thx malte. 2010-04-09 12:35
Help: Urgent: Subtasks issue
I have upgraded to my redmine 0.9.3 version t ... to use subtasks option after adding the new issue. i have even enabled the manage sub tasks as well, but no lcuk. 2010-04-09 12:18
Help: RE: "Private" ticket
I modified http://www.redmine.org/issues/337. Watchers also have permission to view tasks. 2010-04-09 10:49
Help: RE: JOIN/WHERE SQL for selecting issues viewable by a user
turns out not to be too complicated, the SQL ... pre><code class="python"> SELECT * FROM "issues" LEFT OUTER JOIN "issue_statuses" ON "issue_statuses".id = "issues".status_id LEFT OUTER JOIN "projects" ON "projects".id = "issues".project_id WHERE ( 1 = 0 ... ,6,7 are the projects the user has the 'view_issues' permission. And here is my Python code ... proj_ids = user_projects_with_view_issue_perms(user_id) return q.where(or_( ... return q def user_projects_with_view_issue_perms(user_id): sql = """ sele ... d = :user_id and r.permissions like '%\:view_issues%' """ result = db.sess.execute(sq ... return [row['id'] for row in result] def ... 2010-04-09 06:58
Help: RE: Problem with new Issue field
Fix for patch: s/visible/visible_private/ 2010-04-09 06:34
Help: JOIN/WHERE SQL for selecting issues viewable by a user
Can someone tell me what the JOIN/WHERE SQL would be to select issues that are viewable by a given user id? I have an external application that needs to retrieve issues for a user, but only those they could see i ... logic seems to be: * if admin -> show all issues * show issues if user is part of a project with a role that has view permissions 2010-04-09 05:06
Plugins: RE: Overriding helpers in plugins?
You must redefine the method and implement yo ... f custom_fields_tabs tabs = [{:name => 'IssueCustomField', :partial => 'custom_fields/index', :label => :label_issue_plural}, {:name => 'TimeEntryCu ... tivity::OptionName}, {:name => 'IssuePriorityCustomField', :partial => 'custom_fields/index', :label => IssuePriority::OptionName}, {:name => ... f custom_fields_tabs tabs = [{:name => 'IssueCustomField', :partial => 'custom_fields/index', :label => :label_issue_plural}, {:name => 'TimeEntryCu ... tivity::OptionName}, {:name => 'IssuePriorityCustomField', :partial => 'custom_fields/index', :label => IssuePriority::OptionName}, {:name => ... e patch in lib folder. regards. Rolando 2010-04-08 19:38
Plugins: RE: Object Daddy, plugins and test
Update: I managed to remove the errors by cha ... ) Watcher.send(:include, WatcherPatch) Issue.send(:include, IssuePatch) Journal.send(:include, JournalPatch ... o Watcher.send(:include, WatcherPatch) Issue.send(:include, IssuePatch) Journal.send(:include, JournalPatch ... defined method `generate!'" errors were gone. 2010-04-08 14:44
Plugins: RE: XLS export plugin
> Folder in which plugin should be installe ... ested_set budget_plugin chantra-redmine_newissuealerts classic_pagination coderay-0.7.6.227 ... to get it working? Thanks, sultansofswing. 2010-04-08 12:17
Help: RE: Bazaar repository not visible from redmine
Hi all, please ignore this request. It turned out that it was a Jruby issue. I didn't investigate further but i trashed ... pected. Sorry for bothering you, Gabriele 2010-04-08 12:04
Help: RE: Rescan repository for ticket referencing
Our issue for now is we have 22 projects with reposito ... the day in incremental. Cheers Russell 2010-04-08 11:52
Help: Migrating from sqlite3 to mysql
Given the performance issues we've hit with 0.9.x and sqlite3 as a backe ... ut it looks like it's done a good job for us. 2010-04-08 08:50
Open discussion: RE: How to contribute
I have some questions about Time Tracking fea ... ginally estimated) I really like Redmine issue tracking features. Nice job, guys. But now ... th the requirements definitions for this. 2010-04-07 21:27
Help: Redmine randomly crashes
I am running redmine 0.9 on windows server 20 ... etails log for it. Does any one have similar issues. 2010-04-07 16:25
Help: RE: Different priority levels for different trackers
I am also in need of such a function. Besides ... n be defined on a project basis) solves this issue. 2010-04-07 15:44
Help: RE: Simultaneous Issue Editing
Mentioning the word Concurrent in case that draws more attention :) 2010-04-07 15:38
(14676-14700/18267)