| Module | ActionView::Helpers::AppletHelper::InstanceMethods |
| In: |
lib/applet_view_helper.rb
|
Returns a path to a Flash object. The src can be supplied as:
All of the above are expanded to "/applets/applet.swf"
# File lib/applet_view_helper.rb, line 19 def applet_path(source) source = source.sub(/\.lzx/, '') compute_public_path(source, 'applets', 'swf') rescue NoMethodError # See the note at # ActionView::Helpers::SwfObjectHelper::InstanceMethods#swfobject_path javascript_path(source.sub(/\/applets/, '/javascripts')). sub(/\/javascripts/, '/applets'). sub(/\.js$/, '.swf') end
This method is equivalent to swfobject_tag except, that in development mode it will also recompile the applet if it is older than the files in the applet source directory.
In addition, if the debug url query parameter is present in the development mode, this method will generate code that includes a version of the applet with the debug flag set, instead.
# File lib/applet_view_helper.rb, line 38 def applet_tag(source, options={}) path = applet_path(source) if ENV['RAILS_ENV'] == 'development' and (ENV['OPENLASZLO_PATH'] || ENV['OPENLASZLO_URL']) # This `require` is inside the conditional because we # don't need this, or the gem that it requires, in # production require 'openlaszlo_build_support' if params.include?('debug') options[:id] ||= File.basename(source, '.swf') source += '-debug' path = path_path(source) end OpenLaszlo::Rails::update_asset(path) end swfobject_tag(path, options) end