##// END OF EJS Templates
send a 404 when trying to access an unexisting repository...
send a 404 when trying to access an unexisting repository git-svn-id: http://redmine.rubyforge.org/svn/trunk@328 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r164:0b4d4db13130
r325:fc3ee67b1f3e
Show More
edit.rhtml
55 lines | 2.1 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
xss in issue subject on issues/edit...
r104 <h2><%= @issue.tracker.name %> #<%= @issue.id %> - <%=h @issue.subject %></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
tables and forms redesign,...
r19 <% labelled_tabular_form_for :issue, @issue, :url => {:action => 'edit'} do |f| %>
<%= error_messages_for 'issue' %>
Jean-Philippe Lang
0.3 unstable...
r10 <div class="box">
Jean-Philippe Lang
tables and forms redesign,...
r19 <!--[form:issue]-->
Jean-Philippe Lang
* new report: project activity...
r42 <div class="splitcontentleft">
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label><%=l(:field_status)%></label> <%= @issue.status.name %></p>
<p><%= f.select :priority_id, (@priorities.collect {|p| [p.name, p.id]}), :required => true %></p>
<p><%= f.select :assigned_to_id, (@issue.project.members.collect {|m| [m.name, m.user_id]}), :include_blank => true %></p>
<p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}) %></p>
Jean-Philippe Lang
* new report: project activity...
r42 </div>
<div class="splitcontentright">
<p><%= f.text_field :start_date, :size => 10 %><%= calendar_for('issue_start_date') %></p>
<p><%= f.text_field :due_date, :size => 10 %><%= calendar_for('issue_due_date') %></p>
<p><%= f.select :done_ratio, ((0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %></p>
</div>
<div class="clear">
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.text_field :subject, :size => 80, :required => true %></p>
Jean-Philippe Lang
improved issues change history...
r52 <p><%= f.text_area :description, :cols => 60, :rows => [[10, @issue.description.length / 50].max, 100].min, :required => true %></p>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12
Jean-Philippe Lang
custom field tags...
r18 <% for @custom_value in @custom_values %>
<p><%= custom_field_tag_with_label @custom_value %></p>
Jean-Philippe Lang
tables and forms redesign,...
r19 <% end %>
Jean-Philippe Lang
0.3 unstable...
r10
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.select :fixed_version_id, (@project.versions.collect {|v| [v.name, v.id]}), { :include_blank => true } %>
</select></p>
Jean-Philippe Lang
* new report: project activity...
r42 </div>
Jean-Philippe Lang
tables and forms redesign,...
r19 <!--[eoform:issue]-->
Jean-Philippe Lang
0.3 unstable...
r10 </div>
Jean-Philippe Lang
data locking for issues...
r21 <%= f.hidden_field :lock_version %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <%= submit_tag l(:button_save) %>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@38 e93f8b46-1217-0410-a6f0-8f06a7374b81
r36 <% end %>
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 <% if Setting.text_formatting == 'textile' %>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@38 e93f8b46-1217-0410-a6f0-8f06a7374b81
r36 <%= javascript_include_tag 'jstoolbar' %>
<script type="text/javascript">
//<![CDATA[
if (document.getElementById) {
if (document.getElementById('issue_description')) {
var commentTb = new jsToolBar(document.getElementById('issue_description'));
commentTb.draw();
}
}
//]]>
Jean-Philippe Lang
* new report: project activity...
r42 </script>
Jean-Philippe Lang
calendar javascripts and stylesheets removed from base layout. they're now only added to html header when needed....
r148 <% end %>
<% content_for :header_tags do %>
<%= javascript_include_tag 'calendar/calendar' %>
<%= javascript_include_tag "calendar/lang/calendar-#{current_language}.js" %>
<%= javascript_include_tag 'calendar/calendar-setup' %>
<%= stylesheet_link_tag 'calendar' %>
Jean-Philippe Lang
* new report: project activity...
r42 <% end %>