Replace swfobject 1.5 with swfobject 2
This commit is contained in:
parent
14dd533cba
commit
a333712ad7
4 changed files with 52 additions and 41 deletions
|
@ -8,8 +8,6 @@
|
|||
|
||||
<script type="text/javascript" defer="defer">
|
||||
var brokenContentSize = $("content").offsetWidth == 0;
|
||||
var fo = new SWFObject("<%= asset_path("/potlatch/potlatch.swf") %>", "potlatch", "100%", "100%", "6", "#FFFFFF");
|
||||
// 700,600 for fixed size, 100%,100% for resizable
|
||||
var changesaved=true;
|
||||
var winie=false; if (document.all && window.print) { winie=true; }
|
||||
|
||||
|
@ -23,16 +21,26 @@
|
|||
|
||||
function doSWF(lat,lon,sc) {
|
||||
if (sc < 11) sc = 11;
|
||||
fo.addVariable('winie',winie);
|
||||
fo.addVariable('scale',sc);
|
||||
fo.addVariable('token','<%= session[:token] %>');
|
||||
if (lat) { fo.addVariable('lat',lat); }
|
||||
if (lon) { fo.addVariable('long',lon); }
|
||||
<% if params['gpx'] %>fo.addVariable('gpx' ,'<%= h(params['gpx'] ) %>');<% end %>
|
||||
<% if params['way'] %>fo.addVariable('way' ,'<%= h(params['way'] ) %>');<% end %>
|
||||
<% if params['node'] %>fo.addVariable('node' ,'<%= h(params['node'] ) %>');<% end %>
|
||||
<% if params['tileurl'] %>fo.addVariable('custombg','<%= h(params['tileurl']) %>');<% end %>
|
||||
fo.write("map");
|
||||
|
||||
var flashvars = {};
|
||||
flashvars.winie = winie;
|
||||
flashvars.scale = sc;
|
||||
flashvars.token = '<%= session[:token] %>';
|
||||
if (lat) { flashvars.lat = lat; }
|
||||
if (lon) { flashvars.long = lon; }
|
||||
<% if params['gpx'] %>flashvars.gpx = '<%= h(params['gpx'] ) %>';<% end %>
|
||||
<% if params['way'] %>flashvars.way = '<%= h(params['way'] ) %>';<% end %>
|
||||
<% if params['node'] %>flashvars.node = '<%= h(params['node'] ) %>';<% end %>
|
||||
<% if params['tileurl'] %>flashvars.custombg = '<%= h(params['tileurl']) %>';<% end %>
|
||||
|
||||
var params = {};
|
||||
|
||||
var attributes = {};
|
||||
attributes.id = "potlatch";
|
||||
attributes.bgcolor = "#FFFFFF";
|
||||
|
||||
swfobject.embedSWF("<%= asset_path("/potlatch/potlatch.swf") %>", "map", "100%", "100%", "6","<%= asset_path("/expressInstall.swf") %>", flashvars, params, attributes);
|
||||
// 700,600 for fixed size, 100%,100% for resizable
|
||||
}
|
||||
|
||||
doSWF(<%= @lat || 'null' %>,<%= @lon || 'null' %>,<%= @zoom %>);
|
||||
|
|
|
@ -14,8 +14,6 @@
|
|||
|
||||
<script type="text/javascript" defer="defer">
|
||||
var brokenContentSize = $("content").offsetWidth == 0;
|
||||
var fo = new SWFObject("<%= asset_path("/potlatch2/potlatch2.swf") %>", "potlatch", "100%", "100%", "10", "#FFFFFF");
|
||||
// 700,600 for fixed size, 100%,100% for resizable
|
||||
var changesaved=true;
|
||||
|
||||
window.onbeforeunload=function() {
|
||||
|
@ -27,31 +25,40 @@
|
|||
function markChanged(a) { changesaved=a; }
|
||||
|
||||
function doSWF(lat,lon,zoom) {
|
||||
fo.addParam("base","/potlatch2");
|
||||
if (lat) { fo.addVariable("lat",lat); }
|
||||
if (lon) { fo.addVariable("lon",lon); }
|
||||
fo.addVariable("locale", "<%= Potlatch2::LOCALES[locale] %>");
|
||||
var flashvars = {};
|
||||
if (lat) { flashvars.lat = lat; }
|
||||
if (lon) { flashvars.lon = lon; }
|
||||
flashvars.zoom = zoom;
|
||||
flashvars.locale = "<%= Potlatch2::LOCALES[locale] %>";
|
||||
<% if params['gpx'] %>
|
||||
fo.addVariable('gpx' ,'<%= h(params['gpx']) %>');
|
||||
flashvars.gpx = '<%= h(params['gpx']) %>';
|
||||
<% end %>
|
||||
<% if params['tileurl'] %>
|
||||
fo.addVariable('tileurl' ,'<%= h(params['tileurl']) %>');
|
||||
flashvars.tileurl = '<%= h(params['tileurl']) %>';
|
||||
<% end %>
|
||||
fo.addVariable("zoom",zoom);
|
||||
fo.addVariable("api","<%= request.protocol + request.host_with_port %>/api/<%= API_VERSION %>/");
|
||||
fo.addVariable("policy","<%= request.protocol + request.host_with_port %>/api/crossdomain.xml");
|
||||
fo.addVariable("connection","XML");
|
||||
fo.addVariable("show_help","once");
|
||||
flashvars.api = "<%= request.protocol + request.host_with_port %>/api/<%= API_VERSION %>/";
|
||||
flashvars.policy = "<%= request.protocol + request.host_with_port %>/api/crossdomain.xml";
|
||||
flashvars.connection = "XML";
|
||||
flashvars.show_help = "once";
|
||||
<% if token %>
|
||||
fo.addVariable("oauth_token","<%= token.token %>");
|
||||
fo.addVariable("oauth_token_secret","<%= token.secret %>");
|
||||
fo.addVariable("oauth_consumer_key","<%= token.client_application.key %>");
|
||||
fo.addVariable("oauth_consumer_secret","<%= token.client_application.secret %>");
|
||||
flashvars.oauth_token = "<%= token.token %>";
|
||||
flashvars.oauth_token_secret = "<%= token.secret %>";
|
||||
flashvars.oauth_consumer_key = "<%= token.client_application.key %>";
|
||||
flashvars.oauth_consumer_secret = "<%= token.client_application.secret %>";
|
||||
<% end %>
|
||||
fo.addVariable("maximise_function","maximiseMap");
|
||||
fo.addVariable("minimise_function","minimiseMap");
|
||||
fo.addVariable("move_function","mapMoved");
|
||||
fo.write("map");
|
||||
flashvars.maximise_function = "maximiseMap";
|
||||
flashvars.minimise_function = "minimiseMap";
|
||||
flashvars.move_function = "mapMoved";
|
||||
|
||||
var params = {};
|
||||
params.base = "/potlatch2";
|
||||
|
||||
var attributes = {};
|
||||
attributes.id = "potlatch";
|
||||
attributes.bgcolor = "#FFFFFF";
|
||||
|
||||
swfobject.embedSWF("<%= asset_path("/potlatch2/potlatch2.swf") %>", "map", "100%", "100%", "10.1.85","<%= asset_path("/expressInstall.swf") %>", flashvars, params, attributes);
|
||||
// 700,600 for fixed size, 100%,100% for resizable
|
||||
}
|
||||
|
||||
doSWF(<%= @lat || 'null' %>,<%= @lon || 'null' %>,<%= @zoom %>);
|
||||
|
|
BIN
public/expressInstall.swf
Executable file
BIN
public/expressInstall.swf
Executable file
Binary file not shown.
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue