##// END OF EJS Templates
Merged IssuesController change_status and add_note actions....
Merged IssuesController change_status and add_note actions. The 'Change status' specific form removed and now accessible from issue/show view with no additional request (click on 'Update' to show the form). The 'Change issue status' permission is removed. To change the status, the user just needs to have either 'Edit' or 'Add note' permissions and some workflow transitions allowed. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1043 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1017:97f0da0b1a6f
r1030:976a31e941e6
Show More
base.rhtml
79 lines | 3.5 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' %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= javascript_include_tag :defaults %>
<%= stylesheet_link_tag 'jstoolbar' %>
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
added svn:eol-style native property on /app files...
r330 <!-- page specific tags --><%= yield :header_tags %>
</head>
<body>
Jean-Philippe Lang
Application layout refactored....
r736 <div id="top-menu">
<div id="account">
<% if User.current.logged? %>
<%=l(:label_logged_as)%> <%= User.current.login %> -
Jean-Philippe Lang
Themes:...
r909 <%= link_to l(:label_my_account), { :controller => 'my', :action => 'account' }, :class => 'myaccount' %>
Jean-Philippe Lang
Moved login and logout links to ApplicationHelper methods for easier customization....
r1017 <%= link_to_signout %>
Jean-Philippe Lang
Application layout refactored....
r736 <% else %>
Jean-Philippe Lang
Moved login and logout links to ApplicationHelper methods for easier customization....
r1017 <%= link_to_signin %>
Jean-Philippe Lang
Themes:...
r909 <%= link_to(l(:label_register), { :controller => 'account',:action => 'register' }, :class => 'register') if Setting.self_registration? %>
Jean-Philippe Lang
Application layout refactored....
r736 <% end %>
Jean-Philippe Lang
Added a quick search form in page header. Search functionality moved to a dedicated controller....
r486 </div>
Jean-Philippe Lang
Themes:...
r909 <%= link_to l(:label_home), home_url, :class => 'home' %>
<%= link_to l(:label_my_page), { :controller => 'my', :action => 'page'}, :class => 'mypage' if User.current.logged? %>
<%= link_to l(:label_project_plural), { :controller => 'projects' }, :class => 'projects' %>
<%= link_to l(:label_administration), { :controller => 'admin' }, :class => 'admin' if User.current.admin? %>
<%= link_to l(:label_help), Redmine::Info.help_url, :class => 'help' %>
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
<h1><%= h(@project ? @project.name : Setting.app_title) %></h1>
<div id="main-menu">
<ul>
Jean-Philippe Lang
Added project module concept....
r714 <% Redmine::MenuManager.allowed_items(:project_menu, User.current, @project).each do |item| %>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% unless item.condition && !item.condition.call(@project) %>
<li><%= link_to l(item.name), {item.param => @project}.merge(item.url) %></li>
<% end %>
Jean-Philippe Lang
Application layout refactored....
r736 <% end if @project && !@project.new_record? %>
</ul>
</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
Set doctype to transitional. Fixed a few non matching tags in views....
r1009 Powered by <%= link_to Redmine::Info.app_name, Redmine::Info.url %> <%= Redmine::VERSION %> &copy; 2006-2007 Jean-Philippe Lang
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </div>
</body>
Jean-Philippe Lang
Applied the flash notices patch by Matt Jones (slightly edited)....
r597 </html>