]> git.openstreetmap.org Git - rails.git/blob - app/views/site/edit.html.erb
Use jquery.cookie
[rails.git] / app / views / site / edit.html.erb
1 <% if STATUS == :database_offline or STATUS == :api_offline %>
2 <p><%= t 'layouts.osm_offline' %>
3 </p>
4 <% elsif STATUS == :database_readonly or STATUS == :api_readonly %>
5 <p><%= t 'layouts.osm_read_only' %>
6 </p>
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>
11 <% else %>
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") %> |
15 <% end %>
16 <% end %>
17
18 <%= render :partial => 'sidebar' %>
19 <%= render :partial => 'search' %>
20
21 <%= render :partial => preferred_editor %>
22
23 <script type="text/javascript">
24   function maximiseMap() {
25     $("#left").hide();
26     $("#greeting").hide();
27     $("#tabnav").hide();
28
29     $("#content").css("top", "0px");
30     <% if t('html.dir') == "ltr" -%>
31     $("#content").css("left", "0px");
32     <% else -%>
33     $("#content").css("right", "0px");
34     <% end -%>
35
36     handleResize();
37   }
38   
39   function minimiseMap() {
40     $("#left").show();
41     $("#greeting").show();
42     $("#tabnav").show();
43
44     $("#content").css("top", "30px");
45     <% if t('html.dir') == "ltr" -%>
46     $("#content").css("left", "185px");
47     <% else -%>
48     $("#content").css("right", "185px");
49     <% end -%>
50
51     handleResize();
52   }
53
54   $(document).ready(handleResize);
55   $(window).resize(handleResize);
56 </script>
57 <% end %>