visage-app 0.9.1 → 0.9.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/visage-app/views/profile.haml +4 -5
- data/visage-app.gemspec +2 -2
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.
|
1
|
+
0.9.2
|
@@ -4,17 +4,16 @@
|
|
4
4
|
%div#profile
|
5
5
|
%h2#profile_name= profile_name
|
6
6
|
- @profile.graphs.each do |graph|
|
7
|
-
id = URI.escape(graph.id)
|
8
|
-
host = URI.escape(graph.host)
|
9
|
-
plugin = URI.escape(graph.plugin)
|
10
|
-
instance = URI.escape(graph.instances.join(','))
|
7
|
+
- id = URI.escape(graph.id)
|
8
|
+
- host = URI.escape(graph.host)
|
9
|
+
- plugin = URI.escape(graph.plugin)
|
10
|
+
- instance = URI.escape(graph.instances.join(','))
|
11
11
|
%div{:id => id, :class => 'graph'}
|
12
12
|
%img{:src => link_to("/images/loader.gif")}
|
13
13
|
:javascript
|
14
14
|
window.addEvent('domready', function() {
|
15
15
|
var graph = new visageGraph('#{id}', '#{host}', '#{plugin}', {
|
16
16
|
pluginInstance: '#{instance}',
|
17
|
-
//name: '#{plugin} on #{host}',
|
18
17
|
start: '#{@start}',
|
19
18
|
finish: '#{@finish}',
|
20
19
|
#{ "baseurl: '" + ENV['BASE_URL'].gsub(/^\//, '') if ENV['BASE_URL'] }
|
data/visage-app.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{visage-app}
|
8
|
-
s.version = "0.9.
|
8
|
+
s.version = "0.9.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Lindsay Holmwood"]
|
12
|
-
s.date = %q{2011-02-
|
12
|
+
s.date = %q{2011-02-16}
|
13
13
|
s.default_executable = %q{visage-app}
|
14
14
|
s.description = %q{Visage is a web interface for viewing collectd statistics. It also provides a JSON interface onto collectd's RRD data, giving you an easy way to mash up the data.}
|
15
15
|
s.email = %q{lindsay@holmwood.id.au}
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 9
|
8
|
-
-
|
9
|
-
version: 0.9.
|
8
|
+
- 2
|
9
|
+
version: 0.9.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Lindsay Holmwood
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2011-02-
|
17
|
+
date: 2011-02-16 00:00:00 +11:00
|
18
18
|
default_executable: visage-app
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|