##// END OF EJS Templates
Fixed mailer (error when no assignee)...
Fixed mailer (error when no assignee) git-svn-id: http://redmine.rubyforge.org/svn/trunk@592 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r542:f12315075fc5
r589:7363428703e4
Show More
edit.rhtml
40 lines | 1.7 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <div class="contextual">
<%= link_to(l(:label_page_index), {:action => 'special', :page => 'Page_index'}, :class => 'icon icon-index') %>
</div>
<h2><%= @page.pretty_title %></h2>
<% form_for :content, @content, :url => {:action => 'edit', :page => @page.title}, :html => {:id => 'wiki_form'} do |f| %>
Jean-Philippe Lang
Optimistic locking added for wiki edits....
r542 <%= f.hidden_field :version %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= error_messages_for 'content' %>
<div class="contextual">
<%= l(:setting_text_formatting) %>:
<%= link_to l(:label_help), {:controller => 'help', :ctrl => 'wiki', :page => 'syntax' },
:onclick => "window.open('#{ url_for :controller => 'help', :ctrl => 'wiki', :page => 'syntax' }', '', 'resizable=yes, location=no, width=300, height=500, menubar=no, status=no, scrollbars=yes'); return false;" %>
</div>
<p><%= f.text_area :text, :cols => 100, :rows => 25, :class => 'wiki-edit' %></p>
Jean-Philippe Lang
Fixed: 10342 Creation of Schema in Oracle...
r476 <p><label><%= l(:field_comments) %></label><br /><%= f.text_field :comments, :size => 120 %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p><%= submit_tag l(:button_save) %>
<%= link_to_remote l(:label_preview),
Jean-Philippe Lang
Fixed 9793 Preview fail for first wiki page of a project...
r408 { :url => { :controller => 'wiki', :action => 'preview', :id => @project, :page => @page.title },
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 :method => 'get',
:update => 'preview',
Jean-Philippe Lang
Added an ajax indicator for all ajax calls. Also removed highlight effects on my page layout edition....
r482 :with => "Form.serialize('wiki_form')"
} %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<% end %>
<% if Setting.text_formatting == 'textile' %>
<%= javascript_include_tag 'jstoolbar' %>
<script type="text/javascript">
//<![CDATA[
if (document.getElementById) {
if (document.getElementById('content_text')) {
var commentTb = new jsToolBar(document.getElementById('content_text'));
commentTb.draw();
}
}
//]]>
</script>
<% end %>
Jean-Philippe Lang
wiki branch merged into trunk...
r320 <div id="preview" class="wiki"></div>