1 <% if STATUS == :database_offline or STATUS == :api_offline %>
2 <p><%= t 'layouts.osm_offline' %>
4 <% elsif STATUS == :database_readonly or STATUS == :api_readonly %>
5 <p><%= t 'layouts.osm_read_only' %>
7 <% elsif !@user.data_public? %>
8 <p><%= t 'site.edit.not_public' %></p>
9 <p><%= raw t 'site.edit.not_public_description', :user_page => (link_to t('site.edit.user_page_link'), {:controller => 'user', :action => 'account', :display_name => @user.display_name, :anchor => 'public'}) %></p>
10 <p><%= raw t 'site.edit.anon_edits', :link => link_to(t('site.edit.anon_edits_link_text'), t('site.edit.anon_edits_link')) %></p>
12 <% content_for :greeting do %>
13 <% if @user and !@user.home_lon.nil? and !@user.home_lat.nil? %>
14 <%= link_to t("layouts.home"), "#", :class => "set_position", :data => { :lat => @user.home_lat, :lon => @user.home_lon, :zoom => 15 }, :title => t("layouts.home_tooltip") %> |
18 <%= render :partial => 'sidebar', :locals => { :onopen => "resizeMap();", :onclose => "resizeMap();" } %>
19 <%= render :partial => 'search' %>
20 <%= render :partial => 'resize' %>
22 <%= render :partial => preferred_editor %>
24 <script type="text/javascript">
25 function maximiseMap() {
27 $("#greeting").hide();
30 $("#content").css("top", "10px");
31 <% if t('html.dir') == "ltr" -%>
32 $("#content").css("left", "10px");
34 $("#content").css("right", "10px");
40 function minimiseMap() {
42 $("#greeting").show();
45 $("#content").css("top", "35px");
46 <% if t('html.dir') == "ltr" -%>
47 $("#content").css("left", "192px");
49 $("#content").css("right", "192px");
55 $(document).ready(handleResize);
56 $(window).resize(handleResize);