blob: 69557632c924455a20e63d7c3b4a0cd8e01edf9d [file] [log] [blame]
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title><%= (ENV['EPFWIKI_APP_NAME'] + " - ") if !@site || !@site.id %><% if @site && @site.id %><%= @site.title + ' - ' %><% end %><%= @heading %></title>
<%= stylesheet_link_tag 'default' %>
<%= stylesheet_link_tag 'wiki' %>
<%= javascript_include_tag "prototype" %>
<%= javascript_include_tag "contentpage" %>
<%= javascript_include_tag "steps" %>
<%= javascript_include_tag :defaults %>
<script type="text/javascript" language="JavaScript">
backPath = './../../';
</script>
<% unless @tinymce.blank? %>
<%= javascript_include_tag 'tiny_mce/tiny_mce.js' %>
<script language="javascript" type="text/javascript">
tinyMCE.init({
gecko_spellcheck : true,
mode : "textareas",
theme : "<%= @tinymce %>",
theme_advanced_statusbar_location: "bottom",
theme_advanced_resizing : true,
content_css : "../../stylesheets/default.css"
});
</script>
<% end %>
</head>
<body onload="createSectionLinks('div', 'sectionHeading', './../../images/');">
<% unless params[:action] == 'login' %>
<% case params[:controller] + '/' + params[:action]
when 'sites/list' then params[:action] = 'Sites'
when 'users/list' then params[:action] = 'Users'
when 'users/account' then params[:action] = "Account"
when 'other/about' then params[:action] = 'About'
end
%>
<div id="epfwiki_header">
<div id="toolbar">
<ol id="toc">
<%= menulink_to 'Sites', :controller => 'sites', :action => 'list' %>
<%= menulink_to 'Users', :controller => 'users', :action => 'list' %>
<% if admin? %>
<%= menulink_to 'About', :controller => 'other', :action => 'about' %>
<% end %>
<% if session['user'] %>
<li class="simple"><%= link_to '<span>Logout</span>', :controller => 'login', :action => 'logout' %></li>
<% else %>
<li class="simple"><%= link_to '<span>Login</span>', :controller => 'login', :action => 'login' %></li>
<% end %>
<li class="simple"><a href="/" target="_parent"><span>Home</span></a></li>
<% if session['user'] %>
<li class="simple"><%= link_to "<span>#{session['user'].email}</span>", :controller => 'users', :action => 'account' %></li>
<% end %>
</ol>
</div>
</div>
<div id="spacer"></div>
<% end %>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td valign="top">
<a name="Top" id="Top"></a>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="pageTitle">
<%= @heading %>
</td>
</tr>
</table>
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="pageTitleSeparator">
<%= image_tag 'shim.gif',:height => 1 %></td>
</tr>
</table>
<div class="overview">
<table cellpadding="0" cellspacing="0" border="0"
width="97%">
<tr>
<td width="50">
<%= image_tag('site_logo.jpg') %>
</td>
<td>
<table cellpadding="0" cellspacing="0" border="0"
class="overviewTable">
<tr>
<td valign="top">
<%= @overview %>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<!-- start of what should be a partial because it is also in layout wiki.rhtml -->
<% if flash.size > 0 %>
<div class="sectionContent">
<table cellpadding="0" cellspacing="0" border="0" class="sectionTable">
<tr>
<td class="sectionTableCell">
<table>
<% ['error', 'warning', 'notice', 'success'].each do |flash_type| %>
<% if flash[flash_type] %>
<tr>
<th valign="top" width="100"><%= image_tag(flash_type + '.png') %></th>
<td><%= flash[flash_type] %></td>
</tr>
<% end %>
<% end %>
</table>
</td>
</tr>
</table>
</div>
<br>
<% end %>
<!-- end of partial -->
<%= @content_for_layout %>
</td>
</tr>
</table>
<br>
<br>
<br>
<% if RAILS_ENV == "development2" %>
<div class="sectionHeading">Debug</div>
<div class="sectionContent">
<table cellpadding="0" cellspacing="0" border="0" class="sectionTable">
<tr>
<td class="sectionTableCell">
<table>
<tr valign="top">
<th scope="row" class="sectionTableHeading">Session</th>
<td align="left" class="sectionTableCell"><%= debug(session) %></td>
</tr>
<tr valign="top">
<th scope="row" class="sectionTableHeading">Params</th>
<td align="left" class="sectionTableCell"><%= debug(params) %></td>
</tr>
<!--<tr valign="top">
<th scope="row" class="sectionTableHeading">Response</th>
<td align="left" class="sectionTableCell"> debug(response) </td>
</tr> -->
<tr valign="top">
<th scope="row" class="sectionTableHeading">Request Environment</th>
<td align="left" class="sectionTableCell"><%= debug(request.env) %></td>
</tr>
<% if @site %>
<tr valign="top">
<th scope="row" class="sectionTableHeading">Site</th>
<td align="left" class="sectionTableCell"><!-- TODOdebug(@site) --></td>
</tr>
<% end %>
<% if @page %>
<tr valign="top">
<th scope="row" class="sectionTableHeading">Page</th>
<td align="left" class="sectionTableCell"><%= debug(@page) %></td>
</tr>
<% end %>
<% if @version %>
<tr valign="top">
<th scope="row" class="sectionTableHeading">Version</th>
<td align="left" class="sectionTableCell"><%= debug(@version) %></td>
</tr>
<% end %>
</table>
</td>
</tr>
</table>
</div>
<% end %>
<div id="footer">
<p>
<%= link_to 'Site Help and Feedback', :controller => 'help' %>
</p>
</div>
</body>
</html>