pmux-logview 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Makefile
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
RUBY_VERID?=default
|
|
2
|
+
RAKE?=rake
|
|
2
3
|
|
|
3
4
|
default: build
|
|
4
5
|
|
|
5
6
|
build: clean
|
|
6
|
-
|
|
7
|
+
$(RAKE) build
|
|
7
8
|
|
|
8
9
|
install: clean
|
|
9
|
-
|
|
10
|
+
$(RAKE) install
|
|
10
11
|
|
|
11
12
|
rpmbuild: clean
|
|
12
13
|
cd rpm && make clean
|
|
13
|
-
|
|
14
|
+
$(RAKE) build
|
|
14
15
|
cd rpm && make RUBY_VERID=$(RUBY_VERID)
|
|
15
16
|
|
|
16
17
|
clean:
|
|
@@ -61,7 +61,7 @@ module Pmux
|
|
|
61
61
|
@host = @config["host"] if @config["host"]
|
|
62
62
|
@port = @config["port"] if @config["port"]
|
|
63
63
|
Controller.setup(@config)
|
|
64
|
-
Controller.run! :host
|
|
64
|
+
Controller.run! :bind => @host, :host => @host, :port => @port
|
|
65
65
|
end
|
|
66
66
|
end
|
|
67
67
|
end
|
|
@@ -291,10 +291,10 @@ pmux_logview.index.initialize = function() {
|
|
|
291
291
|
self.$error_button = $(".error-button").click(function(event) {
|
|
292
292
|
var html = '<table class="border task-tooltip"><thead class="task-tooltip"></thead>';
|
|
293
293
|
html += '<tbody class="task-tooltip"><tr class="task-tooltip">';
|
|
294
|
-
html += '<td class="task-tooltip">status
|
|
294
|
+
html += '<td class="task-tooltip">status:</td>';
|
|
295
295
|
html += '<td class="task-tooltip">' + $(event.currentTarget).attr("data-error-status") +'</td>';
|
|
296
296
|
html += '</tr><tr class="task-tooltip">';
|
|
297
|
-
html += '<td class="task-tooltip">
|
|
297
|
+
html += '<td class="task-tooltip">message:</td>';
|
|
298
298
|
html += '<td class="task-tooltip">' + $(event.currentTarget).attr("data-error-message") +'</td>';
|
|
299
299
|
html += '</tr></tbody></table>';
|
|
300
300
|
self.parent.open_tooltip(html, event.target, event);
|
data/lib/pmux-logview/version.rb
CHANGED
data/rpm/pmux-logview.spec
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pmux-logview
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 17
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.3.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- hiroyuki kakine
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2013-05-
|
|
18
|
+
date: 2013-05-30 00:00:00 +09:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|