mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-21 17:50:13 +01:00
Removed superfluous 'tracks' directory at the root of the repository.
Testing commits to github.
This commit is contained in:
parent
6a42901514
commit
4cbf5a34d3
2269 changed files with 0 additions and 0 deletions
85
vendor/plugins/flashobject_helper/lib/flashobject_view_helper.rb
vendored
Normal file
85
vendor/plugins/flashobject_helper/lib/flashobject_view_helper.rb
vendored
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
# Author:: Davide D'Agostino aka DAddYE
|
||||
# WebSite:: http://www.lipsiasoft.com
|
||||
require 'action_view'
|
||||
|
||||
module ActionView #:nodoc:
|
||||
module Helpers # :nodoc:
|
||||
module FlashObjectHelper # :nodoc:
|
||||
def self.included(base)
|
||||
base.class_eval do
|
||||
include InstanceMethods
|
||||
end
|
||||
end
|
||||
module InstanceMethods
|
||||
# Returns a set of tags that display a Flash object within an
|
||||
# HTML page.
|
||||
#
|
||||
# Options:
|
||||
# * <tt>:div_id</tt> - the HTML +id+ of the +div+ element that is used to contain the Flash object; default "flashcontent"
|
||||
# * <tt>:flash_id</tt> - the +id+ of the Flash object itself.
|
||||
# * <tt>:background_color</tt> - the background color of the Flash object; default white
|
||||
# * <tt>:flash_version</tt> - the version of the Flash player that is required; default "7"
|
||||
# * <tt>:size</tt> - the size of the Flash object, in the form "100x100". Defaults to "100%x100%"
|
||||
# * <tt>:variables</tt> - a Hash of initialization variables that are passed to the object; default <tt>{:lzproxied => false}</tt>
|
||||
# * <tt>:parameters</tt> - a Hash of parameters that configure the display of the object; default <tt>{:scale => 'noscale'}</tt>
|
||||
# * <tt>:fallback_html</tt> - HTML text that is displayed when the Flash player is not available.
|
||||
#
|
||||
# The following options are for developers. They default to true in
|
||||
# development mode, and false otherwise.
|
||||
# * <tt>:check_for_javascript_include</tt> - if true, the return value will cause the browser to display a diagnostic message if the FlashObject JavaScript was not included.
|
||||
# * <tt>:verify_file_exists</tt> - if true, the return value will cause the browser to display a diagnostic message if the Flash object does not exist.
|
||||
#
|
||||
# (This method is called flashobject_tag instead of flashobject_tag
|
||||
# because it returns a *sequence* of HTML tags: a +div+, followed by
|
||||
# a +script+.)
|
||||
def flashobject_tag source, options={}
|
||||
source = flash_path(source)
|
||||
query_params = '?' + options[:query_params].map{ |key, value| "#{key}=#{value}" }.join('&') if options[:query_params]
|
||||
div_id = options[:div_id] || "flashcontent_#{rand(1_100)}"
|
||||
flash_id = options[:flash_id] || File.basename(source, '.swf') + "_#{rand(1_100)}"
|
||||
width, height = (options[:size]||'100%x100%').scan(/^(\d*%?)x(\d*%?)$/).first
|
||||
background_color = options[:background_color] || '#ffffff'
|
||||
flash_version = options[:flash_version] || 7
|
||||
class_name = options[:class_name] || 'flash'
|
||||
variables = options.fetch(:variables, {})
|
||||
parameters = options.fetch(:parameters, {:scale => 'noscale'})
|
||||
fallback_html = options[:fallback_html] || %q{<p>Requires the Flash plugin. If the plugin is already installed, click <a href="?detectflash=false">here</a>.</p>}
|
||||
if options.fetch(:check_for_javascript_include, ENV['RAILS_ENV'] == 'development')
|
||||
check_for_javascript ="if (typeof FlashObject == 'undefined') document.getElementById('#{div_id}').innerHTML = '<strong>Warning:</strong> FlashObject is undefined. Did you forget to execute <tt>rake update_javascripts</tt>, or to include <tt><%= javascript_include_tag :defaults %></tt> in your view file?';"
|
||||
end
|
||||
return <<-"EOF"
|
||||
<div id="#{div_id}" class="#{class_name}" style="height: #{height}">
|
||||
#{fallback_html}
|
||||
</div>
|
||||
<script type="text/javascript">//<![CDATA[
|
||||
#{check_for_javascript}
|
||||
var fo = new FlashObject("#{source}#{query_params}", "#{flash_id}", "#{width}", "#{height}", "#{flash_version}", "#{background_color}");
|
||||
#{parameters.map{|k,v|%Q[fo.addParam("#{k}", "#{v}");]}.join("\n")}
|
||||
#{variables.map{|k,v|%Q[fo.addVariable("#{k}", "#{v}");]}.join("\n")}
|
||||
fo.write("#{div_id}");
|
||||
//]]>
|
||||
</script>
|
||||
EOF
|
||||
end
|
||||
|
||||
# Computes the path to a flash asset in the public swf directory.
|
||||
# If the +source+ filename has no extension, .swf will be appended.
|
||||
# Full paths from the document root will be passed through.
|
||||
#
|
||||
# flash_path "movie" # => /swf/movie.swf
|
||||
# flash_path "dir/movie.swf" # => /swf/dir/movie.swf
|
||||
# flash_path "/dir/movie" # => /dir/movie.swf
|
||||
def flash_path(source)
|
||||
compute_public_path(source, 'swf', 'swf', false)
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
ActionView::Base.class_eval do
|
||||
include ActionView::Helpers::FlashObjectHelper
|
||||
end
|
||||
|
||||
ActionView::Helpers::AssetTagHelper.register_javascript_include_default 'flashobject'
|
||||
Loading…
Add table
Add a link
Reference in a new issue