##// END OF EJS Templates
Diff style (inline or side by side) automatically saved as a user preference....
Diff style (inline or side by side) automatically saved as a user preference. Fixed a Postgres test failure. git-svn-id: http://redmine.rubyforge.org/svn/trunk@893 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r714:21c97c6a1376
r880:1454a711caf6
Show More
settings.rhtml
16 lines | 557 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_settings)%></h2>
Jean-Philippe Lang
0.3 unstable...
r10
Jean-Philippe Lang
* project settings split in 4 tabs...
r178 <div class="tabs">
<ul>
Jean-Philippe Lang
Added project module concept....
r714 <% project_settings_tabs.each do |tab| %>
<li><%= link_to l(tab[:label]), {}, :id => "tab-#{tab[:name]}", :onclick => "showTab('#{tab[:name]}'); this.blur(); return false;" %></li>
Jean-Philippe Lang
* new report: project activity...
r42 <% end %>
Jean-Philippe Lang
Added project module concept....
r714 </ul>
Jean-Philippe Lang
* project settings split in 4 tabs...
r178 </div>
Jean-Philippe Lang
Added project module concept....
r714 <% project_settings_tabs.each do |tab| %>
<%= content_tag('div', render(:partial => tab[:partial]), :id => "tab-content-#{tab[:name]}", :class => 'tab-content') %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
Per project forums added....
r526
Jean-Philippe Lang
Added project module concept....
r714 <%= tab = params[:tab] ? h(params[:tab]) : project_settings_tabs.first[:name]
javascript_tag "showTab('#{tab}');" %>