Displaying 6 results from an estimated 6 matches for "flash_path".
2009 May 28
1
[PATCH server] Change default flexchart view and increase vertical dimension of flexchart area.
...app/views/graph/history_graphs.rhtml b/src/app/views/graph/history_graphs.rhtml
index 9488367..7a7e1e1 100644
--- a/src/app/views/graph/history_graphs.rhtml
+++ b/src/app/views/graph/history_graphs.rhtml
@@ -7,10 +7,10 @@ $('#flex_history_chart').flash(
{
src: '<%=flash_path("flexchart")%>',
width: 720,
- height: 300,
+ height: 380,
wmode: 'transparent',
menu: false,
- flashvars: { flexchart_data: "<%= url_for :controller =>'/graph', :action => 'flexchart_data...
2020 Sep 25
20
[RFC PATCH 00/19] vhost-user-rpmb (Replay Protected Memory Block)
Hi,
This is an initial implementation of a vhost-user backend for the
VirtIO RPMB device. The device is currently in the draft of the next
VirtIO specification and describes block device which uses combination
of a key, nonce, hashing and a persistent write counter to prevent
replay attacks (hence Replay Protected Memory Block).
It is implemented as a vhost-user device because we want to
2009 Jul 06
0
[PATCH server] UI for accumulated uptime for VMs. (revised2)
...ts, :include_pool => include_pool}
diff --git a/src/app/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.rju...
2009 Jul 02
1
[PATCH server] UI for accumulated uptime for VMs. (revised)
...ts, :include_pool => include_pool}
diff --git a/src/app/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.rju...
2009 Jul 06
2
[PATCH server] UI for accumulated uptime for VMs. (revised3)
...ts, :include_pool => include_pool}
diff --git a/src/app/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.rju...
2009 Jun 29
3
[PATCH server] UI for accumulated uptime for VMs.
...ts, :include_pool => include_pool}
diff --git a/src/app/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.rju...