city-watch 0.3.3 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +2 -2
- data/lib/city_watch/commander/home.rb +3 -3
- data/lib/city_watch/commander/server.rb +8 -3
- data/lib/city_watch/commander.rb +1 -1
- data/lib/city_watch.rb +3 -1
- data/lib/version.rb +1 -1
- data/static/javascripts/city_watch.js +0 -0
- data/static/javascripts/highlight.pack.js +1 -0
- data/static/stylesheets/arta.css +158 -0
- data/static/stylesheets/ascetic.css +50 -0
- data/static/stylesheets/brown_paper.css +104 -0
- data/static/stylesheets/brown_papersq.png +0 -0
- data/static/stylesheets/city_watch.css +30 -0
- data/static/stylesheets/dark.css +103 -0
- data/static/stylesheets/default.css +135 -0
- data/static/stylesheets/far.css +111 -0
- data/static/stylesheets/github.css +127 -0
- data/static/stylesheets/googlecode.css +144 -0
- data/static/stylesheets/idea.css +121 -0
- data/static/stylesheets/ir_black.css +104 -0
- data/static/stylesheets/magula.css +121 -0
- data/static/stylesheets/monokai.css +114 -0
- data/static/stylesheets/pojoaque.css +104 -0
- data/static/stylesheets/pojoaque.jpg +0 -0
- data/static/stylesheets/rainbow.css +114 -0
- data/static/stylesheets/school_book.css +111 -0
- data/static/stylesheets/school_book.png +0 -0
- data/static/stylesheets/solarized_dark.css +88 -0
- data/static/stylesheets/solarized_light.css +88 -0
- data/static/stylesheets/sunburst.css +158 -0
- data/static/stylesheets/tomorrow-night-blue.css +52 -0
- data/static/stylesheets/tomorrow-night-bright.css +51 -0
- data/static/stylesheets/tomorrow-night-eighties.css +51 -0
- data/static/stylesheets/tomorrow-night.css +52 -0
- data/static/stylesheets/tomorrow.css +49 -0
- data/static/stylesheets/vs.css +86 -0
- data/static/stylesheets/xcode.css +154 -0
- data/static/stylesheets/zenburn.css +115 -0
- data/watch_commander.ru +2 -0
- metadata +33 -1
@@ -0,0 +1,115 @@
|
|
1
|
+
/*
|
2
|
+
|
3
|
+
Zenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>
|
4
|
+
based on dark.css by Ivan Sagalaev
|
5
|
+
|
6
|
+
*/
|
7
|
+
|
8
|
+
pre code {
|
9
|
+
display: block; padding: 0.5em;
|
10
|
+
background: #3F3F3F;
|
11
|
+
color: #DCDCDC;
|
12
|
+
}
|
13
|
+
|
14
|
+
pre .keyword,
|
15
|
+
pre .tag,
|
16
|
+
pre .css .class,
|
17
|
+
pre .css .id,
|
18
|
+
pre .lisp .title,
|
19
|
+
pre .nginx .title,
|
20
|
+
pre .request,
|
21
|
+
pre .status,
|
22
|
+
pre .clojure .attribute {
|
23
|
+
color: #E3CEAB;
|
24
|
+
}
|
25
|
+
|
26
|
+
pre .django .template_tag,
|
27
|
+
pre .django .variable,
|
28
|
+
pre .django .filter .argument {
|
29
|
+
color: #DCDCDC;
|
30
|
+
}
|
31
|
+
|
32
|
+
pre .number,
|
33
|
+
pre .date {
|
34
|
+
color: #8CD0D3;
|
35
|
+
}
|
36
|
+
|
37
|
+
pre .dos .envvar,
|
38
|
+
pre .dos .stream,
|
39
|
+
pre .variable,
|
40
|
+
pre .apache .sqbracket {
|
41
|
+
color: #EFDCBC;
|
42
|
+
}
|
43
|
+
|
44
|
+
pre .dos .flow,
|
45
|
+
pre .diff .change,
|
46
|
+
pre .python .exception,
|
47
|
+
pre .python .built_in,
|
48
|
+
pre .literal,
|
49
|
+
pre .tex .special {
|
50
|
+
color: #EFEFAF;
|
51
|
+
}
|
52
|
+
|
53
|
+
pre .diff .chunk,
|
54
|
+
pre .subst {
|
55
|
+
color: #8F8F8F;
|
56
|
+
}
|
57
|
+
|
58
|
+
pre .dos .keyword,
|
59
|
+
pre .python .decorator,
|
60
|
+
pre .title,
|
61
|
+
pre .haskell .type,
|
62
|
+
pre .diff .header,
|
63
|
+
pre .ruby .class .parent,
|
64
|
+
pre .apache .tag,
|
65
|
+
pre .nginx .built_in,
|
66
|
+
pre .tex .command,
|
67
|
+
pre .prompt {
|
68
|
+
color: #efef8f;
|
69
|
+
}
|
70
|
+
|
71
|
+
pre .dos .winutils,
|
72
|
+
pre .ruby .symbol,
|
73
|
+
pre .ruby .symbol .string,
|
74
|
+
pre .ruby .string {
|
75
|
+
color: #DCA3A3;
|
76
|
+
}
|
77
|
+
|
78
|
+
pre .diff .deletion,
|
79
|
+
pre .string,
|
80
|
+
pre .tag .value,
|
81
|
+
pre .preprocessor,
|
82
|
+
pre .built_in,
|
83
|
+
pre .sql .aggregate,
|
84
|
+
pre .javadoc,
|
85
|
+
pre .smalltalk .class,
|
86
|
+
pre .smalltalk .localvars,
|
87
|
+
pre .smalltalk .array,
|
88
|
+
pre .css .rules .value,
|
89
|
+
pre .attr_selector,
|
90
|
+
pre .pseudo,
|
91
|
+
pre .apache .cbracket,
|
92
|
+
pre .tex .formula {
|
93
|
+
color: #CC9393;
|
94
|
+
}
|
95
|
+
|
96
|
+
pre .shebang,
|
97
|
+
pre .diff .addition,
|
98
|
+
pre .comment,
|
99
|
+
pre .java .annotation,
|
100
|
+
pre .template_comment,
|
101
|
+
pre .pi,
|
102
|
+
pre .doctype {
|
103
|
+
color: #7F9F7F;
|
104
|
+
}
|
105
|
+
|
106
|
+
pre .coffeescript .javascript,
|
107
|
+
pre .javascript .xml,
|
108
|
+
pre .tex .formula,
|
109
|
+
pre .xml .javascript,
|
110
|
+
pre .xml .vbscript,
|
111
|
+
pre .xml .css,
|
112
|
+
pre .xml .cdata {
|
113
|
+
opacity: 0.5;
|
114
|
+
}
|
115
|
+
|
data/watch_commander.ru
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: city-watch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.
|
5
|
+
version: 0.4.0
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- John Bragg
|
@@ -144,6 +144,38 @@ files:
|
|
144
144
|
- lib/city_watch/watchmen/sysinfo.rb
|
145
145
|
- lib/city_watch/watchmen/unicorns.rb
|
146
146
|
- lib/version.rb
|
147
|
+
- static/javascripts/city_watch.js
|
148
|
+
- static/javascripts/highlight.pack.js
|
149
|
+
- static/stylesheets/arta.css
|
150
|
+
- static/stylesheets/ascetic.css
|
151
|
+
- static/stylesheets/brown_paper.css
|
152
|
+
- static/stylesheets/brown_papersq.png
|
153
|
+
- static/stylesheets/city_watch.css
|
154
|
+
- static/stylesheets/dark.css
|
155
|
+
- static/stylesheets/default.css
|
156
|
+
- static/stylesheets/far.css
|
157
|
+
- static/stylesheets/github.css
|
158
|
+
- static/stylesheets/googlecode.css
|
159
|
+
- static/stylesheets/idea.css
|
160
|
+
- static/stylesheets/ir_black.css
|
161
|
+
- static/stylesheets/magula.css
|
162
|
+
- static/stylesheets/monokai.css
|
163
|
+
- static/stylesheets/pojoaque.css
|
164
|
+
- static/stylesheets/pojoaque.jpg
|
165
|
+
- static/stylesheets/rainbow.css
|
166
|
+
- static/stylesheets/school_book.css
|
167
|
+
- static/stylesheets/school_book.png
|
168
|
+
- static/stylesheets/solarized_dark.css
|
169
|
+
- static/stylesheets/solarized_light.css
|
170
|
+
- static/stylesheets/sunburst.css
|
171
|
+
- static/stylesheets/tomorrow-night-blue.css
|
172
|
+
- static/stylesheets/tomorrow-night-bright.css
|
173
|
+
- static/stylesheets/tomorrow-night-eighties.css
|
174
|
+
- static/stylesheets/tomorrow-night.css
|
175
|
+
- static/stylesheets/tomorrow.css
|
176
|
+
- static/stylesheets/vs.css
|
177
|
+
- static/stylesheets/xcode.css
|
178
|
+
- static/stylesheets/zenburn.css
|
147
179
|
- watch_collector.ru
|
148
180
|
- watch_commander.ru
|
149
181
|
homepage: http://cozy.co
|