##// END OF EJS Templates
remove trailing white-spaces from app/views/wiki/show.rhtml....
remove trailing white-spaces from app/views/wiki/show.rhtml. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6417 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r5323:ffd0a9c72c24
r6297:9e3da3fffb0c
Show More
new.rhtml
27 lines | 1.2 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Issue properties below the description textarea....
r1083 <h2><%=l(:label_issue_new)%></h2>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Eric Davis
Refactor: Split IssuesController#new to #new and #create to match REST pattern....
r3574 <% labelled_tabular_form_for :issue, @issue, :url => {:controller => 'issues', :action => 'create', :project_id => @project},
Jean-Baptiste Barth
Added ability to create issue directly as a subtask of another one. #5484...
r4197 :html => {:multipart => true, :id => 'issue-form', :class => 'tabular new-issue-form'} do |f| %>
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 <%= error_messages_for 'issue' %>
<div class="box">
Jean-Philippe Lang
Added the hability to copy an issue....
r860 <%= render :partial => 'issues/form', :locals => {:f => f} %>
Jean-Philippe Lang
Merged IssuesController #edit and #update into a single actions....
r1115 </div>
Jean-Philippe Lang
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
r800 <%= submit_tag l(:button_create) %>
Jean-Philippe Lang
Adds a 'Create and continue' button on the new issue form, that will create the issue and display the form again (#2523)....
r2263 <%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
Jean-Philippe Lang
Added preview on add/edit issue form....
r801 <%= link_to_remote l(:label_preview),
Eric Davis
Refactor: move IssuesController#preview to a new controller....
r3832 { :url => preview_issue_path(:project_id => @project),
Jean-Philippe Lang
Added preview on add/edit issue form....
r801 :method => 'post',
:update => 'preview',
:with => "Form.serialize('issue-form')",
Jean-Philippe Lang
Replaced window.hash= by Element.scrollTo()...
r1122 :complete => "Element.scrollTo('preview')"
Jean-Philippe Lang
Added preview on add/edit issue form....
r801 }, :accesskey => accesskey(:preview) %>
Jean-Philippe Lang
Makes subject field get focus on 'New issue' form (#2522)....
r2264
<%= javascript_tag "Form.Element.focus('issue_subject');" %>
Jean-Philippe Lang
* new report: project activity...
r42 <% end %>
Jean-Philippe Lang
Added preview on add/edit issue form....
r801
<div id="preview" class="wiki"></div>
Jean-Philippe Lang
Fixed: syntax highlight doesn't appear in new ticket preview (#1976)....
r2220
<% content_for :header_tags do %>
<%= stylesheet_link_tag 'scm' %>
Jean-Philippe Lang
Adds noindex,noarchive robots meta tag on form pages (#7582)....
r5323 <%= robot_exclusion_tag %>
Jean-Philippe Lang
Fixed: syntax highlight doesn't appear in new ticket preview (#1976)....
r2220 <% end %>