##// END OF EJS Templates
UPGRADING updated...
UPGRADING updated git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2105 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1953:a3b9a5aa5fe3
r2103:e93d02d228ea
Show More
base.rhtml
67 lines | 2.6 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Set doctype to transitional. Fixed a few non matching tags in views....
r1009 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
Jean-Philippe Lang
Removed @html_title assignments in controllers....
r704 <title><%=h html_title %></title>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
Jean-Philippe Lang
Added Redmine::Info to store various information about the application....
r671 <meta name="description" content="<%= Redmine::Info.app_name %>" />
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <meta name="keywords" content="issue,bug,tracker" />
Jean-Philippe Lang
Moved media print specific styles to application.css (print.css removed)....
r775 <%= stylesheet_link_tag 'application', :media => 'all' %>
Eric Davis
Reverting commit r1748 again. r1786 pulled in in again...
r1793 <%= javascript_include_tag :defaults %>
Jean-Philippe Lang
Makes wiki text formatter pluggable....
r1953 <%= heads_for_wiki_formatter %>
Jean-Philippe Lang
Application layout refactored....
r736 <!--[if IE]>
<style type="text/css">
* html body{ width: expression( document.documentElement.clientWidth < 900 ? '900px' : '100%' ); }
body {behavior: url(<%= stylesheet_path "csshover.htc" %>);}
</style>
<![endif]-->
Jean-Philippe Lang
Merged hooks branch @ r1785 into trunk....
r1785 <%= call_hook :view_layouts_base_html_head %>
<!-- page specific tags -->
<%= yield :header_tags -%>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </head>
<body>
Jean-Philippe Lang
wrapper div added to the layout....
r1031 <div id="wrapper">
Jean-Philippe Lang
Application layout refactored....
r736 <div id="top-menu">
<div id="account">
Jean-Philippe Lang
The following menus can now be extended by plugins: top_menu, account_menu, application_menu (empty by default)....
r1123 <%= render_menu :account_menu -%>
Jean-Philippe Lang
Added a quick search form in page header. Search functionality moved to a dedicated controller....
r486 </div>
Jean-Philippe Lang
The following menus can now be extended by plugins: top_menu, account_menu, application_menu (empty by default)....
r1123 <%= content_tag('div', "#{l(:label_logged_as)} #{User.current.login}", :id => 'loggedas') if User.current.logged? %>
<%= render_menu :top_menu -%>
Jean-Philippe Lang
Application layout refactored....
r736 </div>
<div id="header">
<div id="quick-search">
<% form_tag({:controller => 'search', :action => 'index', :id => @project}, :method => :get ) do %>
Jean-Philippe Lang
Added some accesskeys:...
r793 <%= link_to l(:label_search), {:controller => 'search', :action => 'index', :id => @project}, :accesskey => accesskey(:search) %>:
<%= text_field_tag 'q', @question, :size => 20, :class => 'small', :accesskey => accesskey(:quick_search) %>
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
<%= render :partial => 'layouts/project_selector' if User.current.memberships.any? %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Jean-Philippe Lang
Application layout refactored....
r736
Jean-Philippe Lang
Fixed: page has no title when adding a project (#1436)....
r1512 <h1><%= h(@project && !@project.new_record? ? @project.name : Setting.app_title) %></h1>
Jean-Philippe Lang
Application layout refactored....
r736
<div id="main-menu">
Jean-Philippe Lang
Highlight the current item of the main menu....
r1062 <%= render_main_menu(@project) %>
Jean-Philippe Lang
Application layout refactored....
r736 </div>
</div>
Jean-Philippe Lang
Added an ajax indicator for all ajax calls. Also removed highlight effects on my page layout edition....
r482
Jean-Philippe Lang
Application layout refactored....
r736 <%= tag('div', {:id => 'main', :class => (has_content?(:sidebar) ? '' : 'nosidebar')}, true) %>
<div id="sidebar">
<%= yield :sidebar %>
</div>
<div id="content">
Jean-Philippe Lang
Fixed flashes style for IE6....
r846 <%= content_tag('div', flash[:error], :class => 'flash error') if flash[:error] %>
<%= content_tag('div', flash[:notice], :class => 'flash notice') if flash[:notice] %>
Jean-Philippe Lang
Application layout refactored....
r736 <%= yield %>
</div>
</div>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Application layout refactored....
r736 <div id="ajax-indicator" style="display:none;"><span><%= l(:label_loading) %></span></div>
<div id="footer">
Jean-Philippe Lang
Removes the Redmine version from the footer (closes #794). It can still be viewed on admin -> info....
r1211 Powered by <%= link_to Redmine::Info.app_name, Redmine::Info.url %> &copy; 2006-2008 Jean-Philippe Lang
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
Jean-Philippe Lang
wrapper div added to the layout....
r1031 </div>
Eric Davis
Adds :view_layouts_base_body_bottom hook...
r1919 <%= call_hook :view_layouts_base_body_bottom %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </body>
Jean-Philippe Lang
Applied the flash notices patch by Matt Jones (slightly edited)....
r597 </html>