Project

General

Profile

Search

Results (31864)

Defect #2590 (Closed): Moved tickets and project permissions
Okay, here's the case. User Alice creates a t ... l and good, but on /my/page in the _Reported issues_ block, she sees her ticket with a link (th ... s mean it shouldn't display elsewhere to her? 2009-01-26 19:04
Help: RE: Installation Issues on Dreamhost
It looks like you have to login to your Dream ... have fastcgi enabled for the domain as well. 2009-01-26 19:00
Defect #2589 (Closed): Cross project issue relations and user permissions
I have an odd use-case here. Administrator Alice enables cross-project issue relations, creates a private project and creates issue 1 (an issue User Bob can't see). Bob, who belongs to a public project, creates issue 2. Being the sneaky user that he is, he want ... at tickets private trackers have. He adds an issue relation to issue 1 and sees the ticket subject. Oh noes! Basically, cross-project issue relations aren't respecting user permissions to see the ticket (or its subject). The issue relation could be kept, for sure, just not d ... ser. I gather the fix is to restrict what issue relations show according the the viewing user's permissions, yeah? 2009-01-26 18:55
Feature #2587 (Closed): Improvement of built-in issue reports in roadmap page
Hi, When I click on a specific roadmap i'm ... n. On the right side, there is a report "Issues by...". If I click on "Assigned to", it wil ... (e.g. None). You can apply this pattern for "Issues by Cateroy" report as well. Regards. 2009-01-26 15:17
Open discussion: RE: Add a highly visible notice to top of 'new issue' page...
We have the very same need - though we use th ... this message on +one+ of our Project's *@New Issue@* tab. Can this be done? If not, how can ... nfo. Thanks for any help/feedback on this! 2009-01-26 12:13
Open discussion: RE: Hiding overview and activity
I've just added http://www.redmine.org/issues/show/2585 I meantime would also be inter ... karound on this... anyone have some pointers? 2009-01-26 12:06
Feature #2585 (New): Add Modules to hide/display Overview, Activity, Roadmap
When opening Projects to clients, in some cas ... to its requirements (confidentiality, etc..). 2009-01-26 12:05
Open discussion: RE: Hiding overview and activity
Yes - I feel this could/should even be includ ... isplay or not. I propose to add a Feature Issue on this. 2009-01-26 11:56
Defect #2584 (Closed): NameError
When using @IssuesController.send(:include, ...)@ from a self- ... module Redmine module Export </pre> 2009-01-26 10:31
Patch #2582 (Closed): Linking to Lotus Notes documents
Hi, in our company we commonly link from Redmine issues to documents on our Lotus Notes servers. T ... ux] * rails 2.1.2 * redmine revision 2316 2009-01-26 07:43
Open discussion: Add sub category to category
We use Redmine where I work and had a need to add subcategories to categories for issue reporting. We used 0.7.3 and I'm working on ... feature to include in Redmine for the future? 2009-01-26 01:31
Feature #2580 (Closed): Remote git repositories
I'm sure this one has been asked before, but ... o ease the barrier to entry with the product. 2009-01-25 16:36
Feature #2579 (Closed): Configure SSL schema for "private" actions.
Right now I have my entire Redmine installati ... later that I realized it was for email links. 2009-01-25 16:25
Defect #2575 (Closed): PHP Syntax Highlighting Not Working
<code class="php"> echo "Hello World"; ... ors in the Log files. Any ideas what the issue could be, or how I could gather more debug information? 2009-01-24 15:37
Feature #2574 (Closed): Validate member to assingned
Validate if member to assigned the issue have another issue at same moment 2009-01-24 13:53
Defect #2573 (Closed): Latest projects list: no space after lists in project description
I have successfully installe redmine on my home server. Issue: When adding list items in project descript ... PS. Redmine 0.7.4, CentOS 5.2, Ruby 1.8.5 2009-01-24 13:23
Help: RE: Mandatory check for Red Mine issue # during checkin in svn
This is slightly improved UNIX version of the ... end if (commit_log =~ /^(refs|references|IssueID|fixes|closes)\s*#(\d+)/i) issue_number = $2 sql = "SELECT COUNT(*) AS result FROM issues I INNER JOIN issue_statuses S ON S.id = I.status_id WHERE S.is_closed = 0 AND I.id = #{issue_number};" redmine_issue_open = `#{mysql} --database=redmine --user=r ... --skip-column-names`.strip() if (redmine_issue_open.eql?("0")) STDERR.puts("Redmine issue #{issue_number} is not in an open state.") exit ... STDERR.puts("You didn't specify a Redmine issue number on the first line, e.g.: Refs #1 ... sage goes here...") exit(1) end </pre> 2009-01-24 06:29
Plugins: Bulk Time Entry plugin - v0.2.0 released
"Version 0.2.0":https://projects.littlestream ... ests for the next release. Just open a "new issue":https://projects.littlestreamsoftware.com/projects/redmine-bte/issues/new or send me a pull request on "GitHub":h ... bulk_time_entry_plugin/tree/master. Eric 2009-01-24 05:04
Help: RE: Issue editing
As far as I understand your question you have to go to the issue > click the regular update-button > then, wh ... ich makes it possible to "edit" the original issue description and content. Please let me kn ... mean something different... ;wink; Mischa. 2009-01-24 03:23
Help: RE: Issue editing
Except that, as I said above, the user id I am using has the edit issue right and no edit link appears. 2009-01-24 03:09
Help: RE: Issue editing
See http://www.redmine.org/wiki/redmine/RedmineIssues#Editing-an-existing-issue. I guess that will do... :-) 2009-01-24 01:51
Feature #2570 (Closed): Filter on assigned to role
Currently, filters on _Assigned to_ are restr ... lve tickets that are in the _Assigned_ state. 2009-01-23 23:08
Help: Issue editing
I seem unable to find how one edits, as opposed to updates, an issue. I have enabled issue editing for the manager role and I have logg ... I can see no link to an edit feature on the Issues page. 2009-01-23 22:13
Defect #2569 (Closed): Git: Fetching changesets gives: fatal: Invalid revision range
I decided I wanted to have the commits be ret ... this message, or if it doesn't run it at all. 2009-01-23 21:50
Help: RE: Mandatory check for Red Mine issue # during checkin in svn
Hello, I have adapted this script into rub ... pty.") exit(1) end if (commit_log =~ /Issue\s*#(\d+)\s*/) issue_number = $1 redmine_issue_open = `#{mysql} --database=redmine --user=y ... _password -e "SELECT COUNT(*) AS result FROM issues I INNER JOIN issue_statuses S ON S.id = I.status_id WHERE S.is_closed = 0 AND I.id = #{issue_number};" --skip-column-names`.strip() if (redmine_issue_open.eql?("0")) STDERR.puts("Redmine issue #{issue_number} is not in an open state.") exit ... STDERR.puts("You didn't specify a Redmine issue number on the first line, e.g.: Issue #1234 message...") exit(1) end </pre> I guess this would help. Fabrice. 2009-01-23 16:10
(29451-29475/31864)