##// END OF EJS Templates
scm: git: unit model latin-1 path encoding test passes on Japanese Windows (#5251)....
scm: git: unit model latin-1 path encoding test passes on Japanese Windows (#5251). Ruby uses ANSI api to fork a process on Windows. Japanese Shift_JIS and Traditional Chinese Big5 have 0x5c(backslash) problem and these are incompatible with ASCII. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5072 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4197:abb83f4c4f08
r4952:b235e3694628
Show More
_form.rhtml
42 lines | 2.0 KiB | text/html+ruby | RhtmlLexer
Eric Davis
Add view_issues_form_details_top hook...
r4051 <%= call_hook(:view_issues_form_details_top, { :issue => @issue, :form => f }) %>
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 <div id="issue_descr_fields" <%= 'style="display:none"' unless @issue.new_record? || @issue.errors.any? %>>
Jean-Philippe Lang
ProjectsController#add_issue moved to IssuesController#new....
r1066 <p><%= f.select :tracker_id, @project.trackers.collect {|t| [t.name, t.id]}, :required => true %></p>
Eric Davis
Refactor: merge IssuesController#update_form into IssuesController#new...
r3897 <%= observe_field :issue_tracker_id, :url => { :action => :new, :project_id => @project, :id => @issue },
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 :update => :attributes,
Jean-Philippe Lang
ProjectsController#add_issue moved to IssuesController#new....
r1066 :with => "Form.serialize('issue-form')" %>
Jean-Philippe Lang
Issue properties below the description textarea....
r1083 <p><%= f.text_field :subject, :size => 80, :required => true %></p>
Jean-Philippe Lang
Adds subtasking (#443) including:...
r3459
Jean-Baptiste Barth
Added ability to create issue directly as a subtask of another one. #5484...
r4197 <% if User.current.allowed_to?(:manage_subtasks, @project) %>
<p id="parent_issue"><%= f.text_field :parent_issue_id, :size => 10 %></p>
Jean-Philippe Lang
Adds subtasking (#443) including:...
r3459 <div id="parent_issue_candidates" class="autocomplete"></div>
Eric Davis
Refactor: move IssuesController#auto_complete to a new controller. #4382...
r3831 <%= javascript_tag "observeParentIssueField('#{auto_complete_issues_path(:id => @issue, :project_id => @project) }')" %>
Jean-Philippe Lang
Adds subtasking (#443) including:...
r3459 <% end %>
Jean-Philippe Lang
Makes issue description a non-required field (#2456)....
r2244 <p><%= f.text_area :description,
Jean-Philippe Lang
Issue properties below the description textarea....
r1083 :cols => 60,
:rows => (@issue.description.blank? ? 10 : [[10, @issue.description.length / 50].max, 100].min),
:accesskey => accesskey(:edit),
:class => 'wiki-edit' %></p>
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 </div>
Jean-Philippe Lang
Issue properties below the description textarea....
r1083
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 <div id="attributes" class="attributes">
Eric Davis
Use the full path to the partials...
r3975 <%= render :partial => 'issues/attributes' %>
Jean-Philippe Lang
Slight visual changes on the issue form....
r2267 </div>
Jean-Philippe Lang
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
r800
<% if @issue.new_record? %>
Eric Davis
Add ids to some sections of the issue form...
r4161 <p id="attachments_form"><%= label_tag('attachments[1][file]', l(:label_attachment_plural))%><%= render :partial => 'attachments/form' %></p>
Jean-Philippe Lang
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
r800 <% end %>
Jean-Philippe Lang
Adds watchers selection on new issue form (#398). Permission 'add issue watchers' required....
r2162 <% if @issue.new_record? && User.current.allowed_to?(:add_issue_watchers, @project) -%>
Eric Davis
Add ids to some sections of the issue form...
r4161 <p id="watchers_form"><label><%= l(:label_issue_watchers) %></label>
Jean-Philippe Lang
Adds watchers selection on new issue form (#398). Permission 'add issue watchers' required....
r2162 <% @issue.project.users.sort.each do |user| -%>
Jean-Philippe Lang
Make use of #watched_by? in issue form....
r3000 <label class="floating"><%= check_box_tag 'issue[watcher_user_ids][]', user.id, @issue.watched_by?(user) %> <%=h user %></label>
Jean-Philippe Lang
Adds watchers selection on new issue form (#398). Permission 'add issue watchers' required....
r2162 <% end -%>
</p>
<% end %>
Jean-Philippe Lang
Merged hooks branch @ r1785 into trunk....
r1785 <%= call_hook(:view_issues_form_details_bottom, { :issue => @issue, :form => f }) %>
Jean-Philippe Lang
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
r800 <%= wikitoolbar_for 'issue_description' %>