Search
Results (12432)
- Feature #2725 (Closed): Ability to double click on entire rows in tables to select the item.
- Currently, you can only select one HREF item ... ghted is activated once it is double clicked.
- Patch #2724 (Closed): Display attachment names in email notifications
- If a ticket is created with an attachment, no ... not the whole path Index: app/views/mailer/_issue_text_plain.rhtml ========================== ... ===================== --- app/views/mailer/_issue_text_plain.rhtml (revision 2451) +++ app/views/mailer/_issue_text_plain.rhtml (working copy) @@ -7,6 +7,7 @@ <%=l(:field_assigned_to)%>: <%= issue.assigned_to %> <%=l(:field_category)%>: <%= issue.category %> <%=l(:field_fixed_version)%>: <%= issue.fixed_version %> +<% if issue.attachments.size > 0 %><li><%=l(:label_attachment)%>: <%= issue.attachments.join(", ") %></li><% end %> <% issue.custom_values.each do |c| %><%= c.custom_fie ... %> <% end %> Index: app/views/mailer/_issue_text_html.rhtml =========================== ... ===================== --- app/views/mailer/_...
- Defect #2723 (Closed): Host name and path being mangled in mail
- I recently noticed that emails being sent fro ... he ticket location: http://https:/redmine/issues/show/40 I checked my settings and ensure ... "https://". Is anyone else experiencing this?
- Feature #2722 (New): New user notification
- Very nice application - keep up the great wor ... eral) to be notified on user self-activation.
- Defect #2719 (Closed): Increase username length limit from 30 to 60
- We use LDAP authorization and our logins cons ... increase username lenght limit to 60 or more?
- Feature #2718 (Closed): Config option to use https://secure.gravatar.com
- IE no gives an error message when redmine is ... setup. If I have time, I'll create a patch
- Defect #2717 (Closed): Time-log not working when not part of the project (but admin)
- To replicate: * You are admin * You are not part of the project that you have an issue in * Go to the issue * Log time in an udpate (not tested with normal time-log) The log is not saved.
- Feature #2716 (New): User option to automatically add assignee to watchers
- For simple dependencies, instead of creating ... there could be a problem: # Alice opens the issue and assigns it to Bob. # Bob needs information from Carol and reassigns the issue to her. Bob forgets to add himself to the watchers. # Carol replies but forgets to assign the issue back to Bob. Bob is not the originator, the assignee, or a watcher, and is not notified.
- Feature #2715 (Closed): "Magic links" to notes
- This was part of Feature #391, but the issue was closed. e.g. #391.1 -> http://www.redmine.org/issues/show/391#note-1 Edit: The syntax impl ... e short version: <pre> #2715-41 </pre>
- Feature #2714 (New): Point users to "Watched issues"
- The email footer points people to their email ... ferences, but people are notified of watched issues too. This is hard to explain in a footer. If "Watched issues" was on "My page" by default, it would be easier. Maybe below "Reported issues". A link in the "Email notifications" section of "My account" would be helpful too.
- Feature #2709 (Closed): Modify default values
- Is there a way the default values of a new ti ... e default value of the "Assigned to:" field.
- Feature #2708 (Closed): Require Category
- As of now I am using Redmine to monitor corpo ... re a way to make the Category value required?
- Feature #2705 (New): "Jump to a project..." drop-down should list public projects
- Currently the "Jump to a project..." drop-dow ... ion, and they have rights to see (and submit issues on ) 1) their own projects and 2) the publi ... reason for this not to list public projects?
- Defect #2703 (New): Link to Changesets is shown to User without credential
- The link to a changeset, which updated a tick ... or page on accidently clicking on the link.
- Patch #2702 (Closed): mail_handler_update: ad ... ome fields / Import custom fields values for issue updates
- This patch add ability to update these fields ... to import custom fields work when updating a issue, not only when creating a issue.
- Defect #2699 (Closed): db:migrate does not take into account custom table prefix
- I need to have a table prefix for redmine, s ... t writing it here to let you know, that this issue exists.
- Feature #2698 (New): Wiki Auto-Save currently editing page
- It would be nice to have the currently edited ... user's browser goes down, or something...
- Patch #2697 (Closed): Macedonian translation of Redmine
- It's still work in progress. For version 0 ... ly the patch found at http://www.redmine.org/issues/show/61.
- Patch #2696 (New): Add subcategory to category
- This patch contains 2 migrations to add a column to issues and a table called issue_subcategories. This will allow users to hav ... s was diff'd against svn trunk revision 2399.
- Feature #2694 (Closed): Notification on loosing assignment
- When the user assigned to an issue change, old assigned user should receive a n ... end </code></pre> Updated method in @issue.rb@ <pre><code class="ruby"> def recipie ... recipients.compact.uniq end </code></pre>
- Defect #2692 (Closed): The Apache Authentific ... mine.pm should honor login_required parameter
- Redmine: r2363 The Redmine.pm authentifica ... lso available to users who are not logged in.
- Feature #2691 (Closed): Option to disable aut ... ing based on HTTP_ACCEPT_LANGUAGE HTTP-header
- This is a patch to make it possible to disabl ... s default behaviour isn't changed by default.
- Feature #2689 (Closed): email address of the project
- I want to transmit the notice of addition and ... y) @@ -29,6 +29,7 @@ redmine_headers 'Issue-Assignee' => issue.assigned_to.login if issue.assigned_to recipients issue.recipients cc(issue.watcher_recipients - @recipients) + cc << issue.project.email if issue.project.email subject "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] (#{issue.status.name}) #{issue.subject}" body :issue => issue, :issue_url => url_for(:controller => 'issues', :action => 'show', :id => ...
- Feature #2687 (New): different estimated time units hours<>days per tracker type
- For product planning and project management, ... uld equal 8 hours (or configurable amount).
- Patch #2685 (New): Display notice when commenting on closed tickets
- Consider the following scenario. An issue is opened, resolved and closed. An inexperienced user X doesn't have access to reopen the issue. Instead of creating a new issue and relating it to the old issue, user X instead comments on the issue and reassigns it back to experienced user Y. This closed issue is now assigned to user Y, but they never no ... arning if a user comments on a closed ticket.