]> git.openstreetmap.org Git - rails.git/blob - app/views/site/edit.rhtml
Send a Content-Language header with any localised pages.
[rails.git] / app / views / site / edit.rhtml
1 <% if OSM_STATUS == :database_offline or OSM_STATUS == :api_offline %>
2 <p><%= t 'layouts.osm_offline' %>
3 </p>
4 <% elsif OSM_STATUS == :database_readonly or OSM_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><%= t 'site.edit.not_public_description', 
10 :user_page => (link_to t('site.edit.user_page_link'), {:controller => 'user', :action => 'account', :display_name => @user.display_name, :anchor => 'public'}) %></p>
11 <p><%= t 'site.edit.anon_edits', :link => link_to(t('site.edit.anon_edit_link_text'), t('site.edit.anon_edits_link')) %> (<a href=""></a>)</p>
12 <% else %>
13 <% content_for :greeting do %>
14 <% if @user and !@user.home_lon.nil? and !@user.home_lat.nil? %>
15 <%= link_to_function 'home', "setPosition(#{@user.home_lat}, #{@user.home_lon}, 10)" %> |
16 <% end %>
17 <% end %>
18
19 <%= render :partial => 'sidebar', :locals => { :onopen => "resizeMap();", :onclose => "resizeMap();" } %>
20 <%= render :partial => 'search' %>
21
22 <%
23 session[:token] = @user.tokens.create.token unless session[:token]
24
25 # Decide on a lat lon to initialise potlatch with. Various ways of doing this
26 if params['lon'] and params['lat']
27         lon =  h(params['lon']) 
28         lat =  h(params['lat']) 
29         zoom =  h(params['zoom'])
30
31 elsif params['mlon'] and params['mlat'] 
32         lon =  h(params['mlon']) 
33         lat =  h(params['mlat']) 
34         zoom =  h(params['zoom'])
35         
36 elsif params['gpx']
37         #use gpx id to locate (dealt with below)
38         
39 elsif cookies.key?("_osm_location")
40         lon,lat,zoom,layers = cookies["_osm_location"].split("|")
41         
42 elsif @user and !@user.home_lon.nil? and !@user.home_lat.nil? 
43         lon =  @user.home_lon
44         lat =  @user.home_lat
45
46 else
47         #catch all.  Do nothing.  lat=nil, lon=nil
48         #Currently this results in potlatch starting up at 0,0 (Atlantic ocean).
49 end
50
51 zoom='14' if zoom.nil?
52 %>
53
54 <div id="map">
55         <%= t 'site.edit.flash_player_required' %>
56 </div>
57
58 <%= javascript_include_tag 'swfobject.js' %>
59 <script type="text/javascript" defer="defer">
60   var brokenContentSize = $("content").offsetWidth == 0;
61   var fo = new SWFObject("/potlatch/potlatch.swf?d="+Math.round(Math.random()*1000), "potlatch", "100%", "100%", "6", "#FFFFFF");
62   // 700,600 for fixed size, 100%,100% for resizable
63   var changesaved=true;
64   var winie=false; if (document.all && window.print) { winie=true; }
65   
66   window.onbeforeunload=function() {
67     if (!changesaved) {
68       return "<%= t 'site.edit.potlatch_unsaved_changes' %>";
69     }
70   }
71
72   function markChanged(a) { changesaved=a; }
73
74   function doSWF(lat,lon,sc) {
75     if (sc < 11) sc = 11;
76     fo.addVariable('winie',winie);
77     fo.addVariable('scale',sc);
78     fo.addVariable('token','<%= session[:token] %>');
79     if (lat) { fo.addVariable('lat',lat); }
80     if (lon) { fo.addVariable('long',lon); }
81     <% if params['gpx']  %>fo.addVariable('gpx' ,'<%= h(params['gpx'] ) %>');<% end %>
82     <% if params['way']  %>fo.addVariable('way' ,'<%= h(params['way'] ) %>');<% end %>
83     <% if params['node'] %>fo.addVariable('node','<%= h(params['node']) %>');<% end %>
84     fo.write("map");
85   }
86
87   doSWF(<%= lat || 'null' %>,<%= lon || 'null' %>,<%= zoom %>);
88
89   function setPosition(lat, lon, zoom) {
90     doSWF(lat, lon, zoom);
91   }
92
93   function resizeContent() {
94     var content = $("content");
95     var rightMargin = parseInt(getStyle(content, "right"));
96     var bottomMargin = parseInt(getStyle(content, "bottom"));
97
98     content.style.width = document.documentElement.clientWidth - content.offsetLeft - rightMargin;
99     content.style.height = document.documentElement.clientHeight - content.offsetTop - bottomMargin;
100   }
101   
102   function resizeMap() {
103     var sidebar_width = $("sidebar").offsetWidth;
104
105     if (sidebar_width > 0) {
106       sidebar_width = sidebar_width + 5
107     }
108
109     $("map").style.left = (sidebar_width) + "px";
110     $("map").style.width = ($("content").offsetWidth - sidebar_width) + "px";
111     $("map").style.height = ($("content").offsetHeight - 2) + "px";
112   }
113
114   function handleResize() {
115     if (brokenContentSize) {
116       resizeContent();
117     }
118
119     resizeMap();
120   }
121
122   function maximiseMap() {
123     $("left").style.display = "none";
124     $("greeting").style.display = "none";
125     $("tabnav").style.display = "none";
126
127     $("content").style.top = "10px";
128     $("content").style.left = "10px";
129
130     handleResize();
131   }
132   
133   function minimiseMap() {
134     $("left").style.display = "";
135     $("greeting").style.display = "";
136     $("tabnav").style.display = "";
137
138     $("content").style.top = "35px";
139     $("content").style.left = "192px";
140
141     handleResize();
142   }
143
144   handleResize();
145
146   window.onload = handleResize;
147   window.onresize = handleResize;
148 </script>
149 <% end %>