##// END OF EJS Templates
Fixed: improper 0x5c char handling in PDF output (Go Maeda)....
Fixed: improper 0x5c char handling in PDF output (Go Maeda). git-svn-id: http://redmine.rubyforge.org/svn/trunk@813 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r714:21c97c6a1376
r802:bb724e75c0a9
Show More
_form.rhtml
36 lines | 1.6 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Initial commit...
r2 <%= error_messages_for 'project' %>
Jean-Philippe Lang
svn browser merged in trunk...
r103
Jean-Philippe Lang
0.3 unstable...
r10 <div class="box">
Jean-Philippe Lang
Initial commit...
r2 <!--[form:project]-->
Jean-Philippe Lang
Added some attributes length validations....
r397 <p><%= f.text_field :name, :required => true %><br /><em><%= l(:text_caracters_maximum, 30) %></em></p>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% if User.current.admin? and !@root_projects.empty? %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.select :parent_id, (@root_projects.collect {|p| [p.name, p.id]}), { :include_blank => true } %></p>
Jean-Philippe Lang
v0.2.0...
r5 <% end %>
Jean-Philippe Lang
Textilized project descriptions on project list and home page....
r645 <p><%= f.text_area :description, :required => true, :cols => 60, :rows => 5 %><em><%= l(:text_caracters_maximum, 255) %></em></p>
Jean-Philippe Lang
Added some attributes length validations....
r397 <p><%= f.text_field :identifier, :required => true, :size => 15, :disabled => @project.identifier_frozen? %><br /><em><%= l(:text_length_between, 3, 12) %> <%= l(:text_project_identifier_info) unless @project.identifier_frozen? %></em></p>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.text_field :homepage, :size => 40 %></p>
<p><%= f.check_box :is_public %></p>
Jean-Philippe Lang
Textilized project descriptions on project list and home page....
r645 <%= wikitoolbar_for 'project_description' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
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
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
* new report: project activity...
r42
<% unless @custom_fields.empty? %>
<p><label><%=l(:label_custom_field_plural)%></label>
Jean-Philippe Lang
tables and forms redesign,...
r19 <% for custom_field in @custom_fields %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= check_box_tag "custom_field_ids[]", custom_field.id, ((@project.custom_fields.include? custom_field) or custom_field.is_for_all?), (custom_field.is_for_all? ? {:disabled => "disabled"} : {}) %>
<%= custom_field.name %>
Jean-Philippe Lang
* new report: project activity...
r42 <% end %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
svn browser merged in trunk...
r103 <!--[eoform:project]-->
</div>
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
Added basic support for CVS and Mercurial SCMs....
r556 <% end %>