##// END OF EJS Templates
Added cache for application settings (Setting model)....
Added cache for application settings (Setting model). Once the values are cached, only one database query is done at each user request (to check if the cache is still valid). git-svn-id: http://redmine.rubyforge.org/svn/trunk@685 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r643:446889b3f0cb
r674:6bdc13b33d8d
Show More
edit.rhtml
46 lines | 2.2 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>
Jean-Philippe Lang
Added a 'Assignable' boolean on Role model....
r643 <p><%= f.select :assigned_to_id, (@issue.assignable_users.collect {|m| [m.name, m.id]}), :include_blank => true %></p>
Jean-Philippe Lang
Added a link to add a new category when creating or editing an issue....
r642 <p><%= f.select :category_id, (@project.issue_categories.collect {|c| [c.name, c.id]}), :include_blank => true %>
<%= prompt_to_remote(l(:label_issue_category_new),
l(:label_issue_category_new), 'category[name]',
{:controller => 'projects', :action => 'add_issue_category', :id => @project},
:class => 'small') if authorize_for('projects', 'add_issue_category') %></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
width of all wiki content textareas set to 99.5%...
r326 <p><%= f.text_area :description, :required => true, :cols => 60, :rows => [[10, @issue.description.length / 50].max, 100].min, :class => 'wiki-edit' %></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
Fixed: versions not sorted correctly in drop down lists....
r613 <p><%= f.select :fixed_version_id, (@project.versions.sort.collect {|v| [v.name, v.id]}), { :include_blank => true } %></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
Slight views refactoring...
r545 <%= wikitoolbar_for 'issue_description' %>
Jean-Philippe Lang
calendar javascripts and stylesheets removed from base layout. they're now only added to html header when needed....
r148
<% 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 %>