projects
/
rails.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Revert unrelated changes from db/structure.sql
[rails.git]
/
app
/
views
/
site
/
_potlatch2.html.erb
diff --git
a/app/views/site/_potlatch2.html.erb
b/app/views/site/_potlatch2.html.erb
index 1d45d622356f7399a043d0110a87a561d06df77c..1c203b2fb3e57ee6c9c5dfd2b80cdf5a559908bb 100644
(file)
--- a/
app/views/site/_potlatch2.html.erb
+++ b/
app/views/site/_potlatch2.html.erb
@@
-10,7
+10,7
@@
<script type="text/javascript">alert("<%= t 'site.edit.potlatch2_not_configured' %>")</script>
<% end %>
<script type="text/javascript">alert("<%= t 'site.edit.potlatch2_not_configured' %>")</script>
<% end %>
-<% locale =
request.compatible_language_from(Potlatch2::LOCALES.keys) || "en"
%>
+<% locale =
Locale.list(Potlatch2::LOCALES.keys).preferred(preferred_languages).to_s
%>
<script type="text/javascript" defer="defer">
var changesaved=true;
<script type="text/javascript" defer="defer">
var changesaved=true;
@@
-32,6
+32,8
@@
flashvars.font_library = "<%= asset_path "potlatch2/FontLibrary.swf" %>";
flashvars.locale = "<%= Potlatch2::LOCALES[locale] %>";
flashvars.locale_paths = "<%= Potlatch2::LOCALES[locale] %>=<%= asset_path("potlatch2/locales/#{Potlatch2::LOCALES[locale]}.swf") %>";
flashvars.font_library = "<%= asset_path "potlatch2/FontLibrary.swf" %>";
flashvars.locale = "<%= Potlatch2::LOCALES[locale] %>";
flashvars.locale_paths = "<%= Potlatch2::LOCALES[locale] %>=<%= asset_path("potlatch2/locales/#{Potlatch2::LOCALES[locale]}.swf") %>";
+ flashvars.intro_image = "<%= asset_path "help/introduction.jpg" %>";
+ flashvars.intro_video = "<%= asset_path "help/introduction.mp4" %>";
<% if params['gpx'] %>
flashvars.gpx = '<%= h(params['gpx']) %>';
<% end %>
<% if params['gpx'] %>
flashvars.gpx = '<%= h(params['gpx']) %>';
<% end %>
@@
-42,6
+44,7
@@
flashvars.policy = "<%= request.protocol + request.host_with_port %>/api/crossdomain.xml";
flashvars.connection = "XML";
flashvars.show_help = "once";
flashvars.policy = "<%= request.protocol + request.host_with_port %>/api/crossdomain.xml";
flashvars.connection = "XML";
flashvars.show_help = "once";
+ flashvars.user_check = "warn";
<% if token %>
flashvars.oauth_token = "<%= token.token %>";
flashvars.oauth_token_secret = "<%= token.secret %>";
<% if token %>
flashvars.oauth_token = "<%= token.token %>";
flashvars.oauth_token_secret = "<%= token.secret %>";
@@
-61,26
+64,25
@@
swfobject.embedSWF("<%= asset_path("potlatch2.swf") %>", "potlatch", "100%", "100%", "10.1.102","<%= asset_path("expressInstall.swf") %>", flashvars, params, attributes);
// 700,600 for fixed size, 100%,100% for resizable
swfobject.embedSWF("<%= asset_path("potlatch2.swf") %>", "potlatch", "100%", "100%", "10.1.102","<%= asset_path("expressInstall.swf") %>", flashvars, params, attributes);
// 700,600 for fixed size, 100%,100% for resizable
+
+ if (lat && lon) {
+ updateLinks({ lon: lon, lat: lat }, zoom);
+ }
}
}
-
<% if @lat && @lon -%>
- doSWF(<%= @lat %>,
<%= @lon %>,16
);
-
<% else -%>
- var
p
arams = OSM.mapParams();
- doSWF(
params.lat, params.lon, p
arams.zoom || 17);
-
<% end -%>
+<% if @lat && @lon -%>
+ doSWF(<%= @lat %>,
<%= @lon %>, <%= @zoom %>
);
+<% else -%>
+ var
mapP
arams = OSM.mapParams();
+ doSWF(
mapParams.lat, mapParams.lon, mapP
arams.zoom || 17);
+<% end -%>
- $(document).ready(function () {
- $("body").on("click", "a.set_position", function () {
- var data = $(this).data();
+ var mapMoved = $.throttle(250, function(lon, lat, zoom) {
+ updateLinks({ lon: lon, lat: lat }, zoom);
- $("#potlatch").each(function () {
- this.setPosition(data.lat, data.lon, Math.max(data.zoom || 15, 13));
-
}
);
- }
);
+ var hash = OSM.formatHash({ lon: lon, lat: lat, zoom: zoom });
+ if (hash !== location.hash) {
+
location.replace(hash
);
+ }
});
});
-
- function mapMoved(lon, lat, zoom, minlon, minlat, maxlon, maxlat) {
- updatelinks(lon, lat, zoom, null, minlon, minlat, maxlon, maxlat);
- }
</script>
</script>