##// END OF EJS Templates
Reverting commit r1748. Some environments are not allowing the cached file to...
Reverting commit r1748. Some environments are not allowing the cached file to write to public, causing all JavaScript to fail. Javascripts are now cached into a single file for downloads in production mode. #1186 git-svn-id: http://redmine.rubyforge.org/svn/trunk@1771 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r838:0006c5f3b0dc
r1770:8f3a04ce6906
Show More
_form.rhtml
15 lines | 649 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Initial commit...
r2 <%= error_messages_for 'document' %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <div class="box">
Jean-Philippe Lang
Initial commit...
r2 <!--[form:document]-->
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <p><label for="document_category_id"><%=l(:field_category)%></label>
Jean-Philippe Lang
New document form can be accessed from the document list with no additional request....
r838 <%= select('document', 'category_id', Enumeration.get_values('DCAT').collect {|c| [c.name, c.id]}) %></p>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label for="document_title"><%=l(:field_title)%> <span class="required">*</span></label>
Jean-Philippe Lang
Initial commit...
r2 <%= text_field 'document', 'title', :size => 60 %></p>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><label for="document_description"><%=l(:field_description)%></label>
Jean-Philippe Lang
width of all wiki content textareas set to 99.5%...
r326 <%= text_area 'document', 'description', :cols => 60, :rows => 15, :class => 'wiki-edit' %></p>
Jean-Philippe Lang
Initial commit...
r2 <!--[eoform:document]-->
Jean-Philippe Lang
documents views modified...
r58 </div>
Jean-Philippe Lang
Slight views refactoring...
r545 <%= wikitoolbar_for 'document_description' %>