]> git.openstreetmap.org Git - rails.git/blob - app/views/user/account.rhtml
Escape message titles and bodies. This is an emergency fix as some genius
[rails.git] / app / views / user / account.rhtml
1 <h2>User details</h2>
2 <%= error_messages_for 'user' %>
3 <% form_for :user, @user do |f| %>
4 <table style="width : 100%">
5   <tr><td>Email</td><td><%= @user.email %></td></tr>
6   <tr><td>Mapper since</td><td><%= @user.creation_time %> (<%= time_ago_in_words(@user.creation_time) %> ago)</td></tr>
7   <tr><td>Display Name</td><td><%= f.text_field :display_name %></td></tr>
8   <tr><td>Password</td><td><%= f.password_field :pass_crypt, {:value => '', :size => 50, :maxlength => 255} %></td></tr>
9   <tr><td>Confirm Password</td><td><%= f.password_field :pass_crypt_confirmation, {:value => '', :size => 50, :maxlength => 255} %></td></tr>
10
11   <tr><td valign="top">Description</td><td><%= f.text_area :description, :class => "editDescription" %></td></tr>
12
13   <tr id="homerow" <% unless @user.home_lat and @user.home_lon %> class="nohome" <%end%> ><td>Your home</td><td><em class="message">You have not entered your home location.</em><span class="location">Latitude: <%= f.text_field :home_lat, :size => 20, :id => "home_lat" %> Longitude <%= f.text_field :home_lon, :size => 20, :id => "home_lon" %></span></td></tr>
14
15   <tr><td></td><td>
16   <p>Update home location when I click on the map? <input type="checkbox" value="1" <% unless @user.home_lat and @user.home_lon %> checked="checked" <% end %> id="updatehome" /> </p>
17   <div id="map" style="border: 1px solid black; position: relative; width : 90%; height : 300px;"></div>
18   </td></tr>
19 </table>
20 <%= submit_tag 'Save Changes' %>
21 <% end %>
22
23 <% nearest_str = "" %>
24 <% if !@user.home_lat.nil? and !@user.home_lon.nil? %>
25   <% if !@user.nearby.empty? %>
26     <% @user.nearby.each do |nearby| %>
27     <% nearest_str += "nearest.push( { 'display_name' : '#{nearby.display_name}', 'home_lat' : #{nearby.home_lat}, 'home_lon' : #{nearby.home_lon} } );\n" %>
28     <% end %>
29   <% end %>
30 <% end %>
31 <script type="text/javascript">
32     var nearest = [], friends = [];
33     <%= nearest_str %>
34 </script>
35
36 <% if @user.home_lat.nil? or @user.home_lon.nil? %>
37   <% lon = h(params['lon'] || '-0.1') %>
38   <% lat = h(params['lat'] || '51.5') %>
39   <% zoom = h(params['zoom'] || '4') %> 
40 <% else %>
41   <% marker = true %>
42   <% mlon = @user.home_lon %> 
43   <% mlat = @user.home_lat %>
44   <% lon =  @user.home_lon %>
45   <% lat =  @user.home_lat %>
46   <% zoom =  '12' %>
47 <% end %>
48
49 <%= javascript_include_tag '/openlayers/OpenLayers.js' %>
50 <%= javascript_include_tag '/openlayers/OpenStreetMap.js' %>
51 <%= javascript_include_tag 'map.js' %>
52
53 <script type="text/javascript">
54   <!--
55   var marker;
56
57   function init(){
58     var centre = lonLatToMercator(new OpenLayers.LonLat(<%= lon %>, <%= lat %>));
59     var zoom = <%= zoom %>;
60
61     <% if params['scale'] and params['scale'].length > 0 then %>
62     zoom = scaleToZoom(<%= params['scale'].to_f() %>);
63     <% end %>
64
65     var map = createMap("map");
66
67     map.setCenter(centre, zoom);
68
69     <% if marker %>
70     marker = addMarkerToMap(lonLatToMercator(new OpenLayers.LonLat(<%= mlon %>, <%= mlat %>)), null, "Your location");
71     <% end %>
72
73     var near_icon = OpenLayers.Marker.defaultIcon();
74     near_icon.url = OpenLayers.Util.getImagesLocation() + "marker-green.png";;
75     var i = nearest.length;
76     while( i-- ) {
77       var description = 'Nearby mapper: <a href="/user/'+nearest[i].display_name+'">'+nearest[i].display_name+'</a>'
78       var nearmarker = addMarkerToMap(lonLatToMercator(new OpenLayers.LonLat(nearest[i].home_lon, nearest[i].home_lat)), near_icon.clone(), description);
79     }
80
81     map.events.register("click", map, setHome);
82   }        
83
84   function setHome( e ) { 
85     closeMapPopup();
86
87     if (document.getElementById('updatehome').checked) {
88       var merc = map.getLonLatFromViewPortPx(e.xy);
89       var lonlat = mercatorToLonLat(merc);
90
91       document.getElementById('homerow').className = '';
92       document.getElementById('home_lat').value = lonlat.lat;
93       document.getElementById('home_lon').value = lonlat.lon;
94
95       if (marker) {
96         removeMarkerFromMap(marker);
97       }
98
99       marker = addMarkerToMap(merc, null, "Your location");
100     }
101   }
102
103   window.onload = init;
104 // -->
105 </script>
106
107 <h2>Public editing</h2>
108 <% if @user.data_public? %>
109   All your edits are public.
110 <% else %>
111   Currently your edits are anonymous and people can't send you messages or see your location. To show what you edited and allow people to contact you through the website, click the button below. <b>You will need to do this if you want to use the online editor</b> (<a href="http://wiki.openstreetmap.org/index.php/Disabling_anonymous_edits">find out why</a>). This action cannot be reversed.
112   <br /><br />
113   <%= button_to "Make all my edits public, forever", :action => :go_public %>
114 <% end %>