search for: swfs

Displaying 14 results from an estimated 14 matches for "swfs".

Did you mean: sfs
2009 Jul 24
2
[PATCH server] Add fallback message when flexchart is missing
...it a/src/app/helpers/graph_helper.rb b/src/app/helpers/graph_helper.rb index bb1f05b..c57ddda 100644 --- a/src/app/helpers/graph_helper.rb +++ b/src/app/helpers/graph_helper.rb @@ -1,5 +1,14 @@ module GraphHelper + def swf_is_present + File.exists?(Rails.root.join('public','swfs','flexchart.swf')) + end + + def swf_bits_download_url + "http://ovirt.org/flexchart/flexchart.swf" + end + + # generate some json for the snapshot graph def snapshot_graph_json(target, snapshots) data = snapshots[:avg][target] diff --git a/s...
2009 Jul 30
1
Rails Plugin for swfobject? - swf_fu
...ng: onSelfEvent (load) { victoryID = this.loaderInfo.parameters.victory_id; } .. which is going to pull the victory_id value sent to it through swfobject''s flashvars. When I pull it up, it doesn''t show the value and the source shows the following: swfobject.embedSWF("/swfs/victory.swf?1248962132","flbars","250","75","7","/swfs/expressInstall.swf?1248568039",{"victory_id":"76","id":"victory"},{"wmode":"transparent"},{"id":"victory"})...
2005 Dec 17
12
new rails-based cms is born.
hallo, i would heavily like to get some feedback on our rails-based cms: rcms.oopen.de so, if some could find the time an try it i''d be pleased.. greetings rene
2010 Jan 15
21
Dynamic Assets - can it be done?
I''m looking for 3 areas to work as dynamic assets: image_path, javascript_path, and stylesheet_path When I say dynamic, I mean that they will be dynamic through controller/models. I have been working through approx. 12 hours of searches to satisfy my answer to this question but am not finding much luck. The closest things I''ve found enabling this are use of config for assets
2015 Feb 10
6
Another Fedora decision
On Tue, 2015-02-10 at 15:04 -0700, Warren Young wrote: > > On Feb 9, 2015, at 12:12 PM, John R Pierce <pierce at hogranch.com> wrote: > > > > On 2/9/2015 11:06 AM, Always Learning wrote: > >> The third item was a 16.1 MB PDF of 1,344 pages. A quick scan of the PDF > >> shows every page appears to be readable. 11 pages devoted to BASH. > >>
2015 Feb 11
0
Another Fedora decision
> On Feb 10, 2015, at 4:28 PM, Always Learning <centos at u64.u22.net> wrote: > > 2. PDFs can be created by *NON-ADOBE* software. And SWFs can be generated by non-Adobe software, and JARs can be generated by non-Oracle software. What?s your point? Is it that only Evil Corporations can create software that can be used for evil purposes? Are you back on the ?F/OSS software is invulnerable? bandwagon already, after being knocked off i...
2008 Mar 11
1
Simple Question : mozilla PFS service .
Hi I'm using a lot Itheora , the cortado / x-ogg wrapper that works like a charm. I was thinking that Java is great , but BTW why do we need Java if no x-ogg application handler are installed ? When i visit a page with flash the first time , plugin installed is only few clicks away, and I don't even care what software makes my flash application works. So I understood with
2009 Jun 09
0
SWF Object associated with Page
I want to have the option to add an SWF to a page on the administrative side of my site. I was thinking I will have to use collection_select() and somehow reference my public/swfs dir. I have the swfhelper plugin installed. How do I go about achieving this?
2006 Sep 26
5
Expert feedback needed
Hello list, Some time ago I was looking for apache (as non balanced proxy) + mongrel configurations. Almost everybody seemed to use similar approaches (one of these could be found @ mongrel.rubygorge.org docs) with mod_rewrite. I don''t use proxy_balancer because I don''t need it at the moment (my site has pretty low traffic). This is apache configuration that I''m using
2009 Jul 06
0
[PATCH server] UI for accumulated uptime for VMs. (revised2)
...p/helpers/application_helper.rb b/src/app/helpers/application_helper.rb index 0178ad0..0c6562e 100644 --- a/src/app/helpers/application_helper.rb +++ b/src/app/helpers/application_helper.rb @@ -171,4 +171,18 @@ module ApplicationHelper def flash_path(source) compute_public_path(source, 'swfs', 'swf') end + + def number_to_duration(input_num) + input_int = input_num.to_i + hours_to_seconds = [input_int/3600 % 24, + input_int/60 % 60, + input_int % 60].map{|t| t.to_s.rjust(2,'0')}.join(':') + days = in...
2009 Jul 02
1
[PATCH server] UI for accumulated uptime for VMs. (revised)
...p/helpers/application_helper.rb b/src/app/helpers/application_helper.rb index 0178ad0..0c6562e 100644 --- a/src/app/helpers/application_helper.rb +++ b/src/app/helpers/application_helper.rb @@ -171,4 +171,18 @@ module ApplicationHelper def flash_path(source) compute_public_path(source, 'swfs', 'swf') end + + def number_to_duration(input_num) + input_int = input_num.to_i + hours_to_seconds = [input_int/3600 % 24, + input_int/60 % 60, + input_int % 60].map{|t| t.to_s.rjust(2,'0')}.join(':') + days = in...
2009 Jul 06
2
[PATCH server] UI for accumulated uptime for VMs. (revised3)
...p/helpers/application_helper.rb b/src/app/helpers/application_helper.rb index 0178ad0..0c6562e 100644 --- a/src/app/helpers/application_helper.rb +++ b/src/app/helpers/application_helper.rb @@ -171,4 +171,18 @@ module ApplicationHelper def flash_path(source) compute_public_path(source, 'swfs', 'swf') end + + def number_to_duration(input_num) + input_int = input_num.to_i + hours_to_seconds = [input_int/3600 % 24, + input_int/60 % 60, + input_int % 60].map{|t| t.to_s.rjust(2,'0')}.join(':') + days = in...
2009 Jun 29
3
[PATCH server] UI for accumulated uptime for VMs.
...p/helpers/application_helper.rb b/src/app/helpers/application_helper.rb index 0178ad0..0c6562e 100644 --- a/src/app/helpers/application_helper.rb +++ b/src/app/helpers/application_helper.rb @@ -171,4 +171,18 @@ module ApplicationHelper def flash_path(source) compute_public_path(source, 'swfs', 'swf') end + + def number_to_duration(input_num) + input_int = input_num.to_i + hours_to_seconds = [input_int/3600 % 24, + input_int/60 % 60, + input_int % 60].map{|t| t.to_s.rjust(2,'0')}.join(':') + days = in...
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...askomatic %{buildroot}%{_initrddir} %{__install} -Dp -m0755 %{pbuild}/conf/ovirt-vnc-proxy %{buildroot}%{_initrddir} @@ -118,7 +127,7 @@ touch %{buildroot}%{_localstatedir}/log/%{name}/db-omatic.log # move Flash movie to the public folder %{__install} -d -m0755 %{buildroot}%{app_root}/public/swfs -%{__mv} %{buildroot}%{app_root}/flexchart/flexchart.swf %{buildroot}%{app_root}/public/swfs +# not building Flash for now until we've got flex compiler in Fedora # move configs to /etc, keeping symlinks for Rails %{__mv} %{buildroot}%{app_root}/config/database.yml %{buildroot}%{_sysconfdir...