vinesmod 0.4.5
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/Gemfile +3 -0
- data/LICENSE +19 -0
- data/README.md +43 -0
- data/Rakefile +57 -0
- data/bin/vines +93 -0
- data/conf/certs/README +39 -0
- data/conf/certs/ca-bundle.crt +3366 -0
- data/conf/config.rb +149 -0
- data/lib/vines.rb +197 -0
- data/lib/vines/cluster.rb +246 -0
- data/lib/vines/cluster/connection.rb +26 -0
- data/lib/vines/cluster/publisher.rb +55 -0
- data/lib/vines/cluster/pubsub.rb +92 -0
- data/lib/vines/cluster/sessions.rb +125 -0
- data/lib/vines/cluster/subscriber.rb +108 -0
- data/lib/vines/command/bcrypt.rb +12 -0
- data/lib/vines/command/cert.rb +50 -0
- data/lib/vines/command/init.rb +68 -0
- data/lib/vines/command/register.rb +27 -0
- data/lib/vines/command/restart.rb +12 -0
- data/lib/vines/command/schema.rb +24 -0
- data/lib/vines/command/start.rb +28 -0
- data/lib/vines/command/stop.rb +18 -0
- data/lib/vines/command/unregister.rb +27 -0
- data/lib/vines/config.rb +213 -0
- data/lib/vines/config/host.rb +119 -0
- data/lib/vines/config/port.rb +132 -0
- data/lib/vines/config/pubsub.rb +108 -0
- data/lib/vines/contact.rb +111 -0
- data/lib/vines/daemon.rb +78 -0
- data/lib/vines/error.rb +150 -0
- data/lib/vines/jid.rb +95 -0
- data/lib/vines/kit.rb +35 -0
- data/lib/vines/log.rb +24 -0
- data/lib/vines/router.rb +179 -0
- data/lib/vines/stanza.rb +175 -0
- data/lib/vines/stanza/iq.rb +48 -0
- data/lib/vines/stanza/iq/auth.rb +18 -0
- data/lib/vines/stanza/iq/disco_info.rb +45 -0
- data/lib/vines/stanza/iq/disco_items.rb +29 -0
- data/lib/vines/stanza/iq/error.rb +16 -0
- data/lib/vines/stanza/iq/ping.rb +16 -0
- data/lib/vines/stanza/iq/private_storage.rb +83 -0
- data/lib/vines/stanza/iq/query.rb +10 -0
- data/lib/vines/stanza/iq/register.rb +42 -0
- data/lib/vines/stanza/iq/result.rb +16 -0
- data/lib/vines/stanza/iq/roster.rb +140 -0
- data/lib/vines/stanza/iq/session.rb +17 -0
- data/lib/vines/stanza/iq/vcard.rb +56 -0
- data/lib/vines/stanza/iq/version.rb +25 -0
- data/lib/vines/stanza/message.rb +43 -0
- data/lib/vines/stanza/presence.rb +156 -0
- data/lib/vines/stanza/presence/error.rb +23 -0
- data/lib/vines/stanza/presence/probe.rb +37 -0
- data/lib/vines/stanza/presence/subscribe.rb +42 -0
- data/lib/vines/stanza/presence/subscribed.rb +51 -0
- data/lib/vines/stanza/presence/unavailable.rb +15 -0
- data/lib/vines/stanza/presence/unsubscribe.rb +38 -0
- data/lib/vines/stanza/presence/unsubscribed.rb +38 -0
- data/lib/vines/stanza/pubsub.rb +22 -0
- data/lib/vines/stanza/pubsub/create.rb +39 -0
- data/lib/vines/stanza/pubsub/delete.rb +41 -0
- data/lib/vines/stanza/pubsub/publish.rb +66 -0
- data/lib/vines/stanza/pubsub/subscribe.rb +44 -0
- data/lib/vines/stanza/pubsub/unsubscribe.rb +30 -0
- data/lib/vines/storage.rb +188 -0
- data/lib/vines/storage/local.rb +165 -0
- data/lib/vines/storage/null.rb +39 -0
- data/lib/vines/storage/sql.rb +260 -0
- data/lib/vines/store.rb +94 -0
- data/lib/vines/stream.rb +247 -0
- data/lib/vines/stream/client.rb +84 -0
- data/lib/vines/stream/client/auth.rb +74 -0
- data/lib/vines/stream/client/auth_restart.rb +29 -0
- data/lib/vines/stream/client/bind.rb +72 -0
- data/lib/vines/stream/client/bind_restart.rb +24 -0
- data/lib/vines/stream/client/closed.rb +13 -0
- data/lib/vines/stream/client/ready.rb +17 -0
- data/lib/vines/stream/client/session.rb +210 -0
- data/lib/vines/stream/client/start.rb +27 -0
- data/lib/vines/stream/client/tls.rb +38 -0
- data/lib/vines/stream/component.rb +58 -0
- data/lib/vines/stream/component/handshake.rb +26 -0
- data/lib/vines/stream/component/ready.rb +23 -0
- data/lib/vines/stream/component/start.rb +19 -0
- data/lib/vines/stream/http.rb +157 -0
- data/lib/vines/stream/http/auth.rb +22 -0
- data/lib/vines/stream/http/bind.rb +32 -0
- data/lib/vines/stream/http/bind_restart.rb +37 -0
- data/lib/vines/stream/http/ready.rb +29 -0
- data/lib/vines/stream/http/request.rb +172 -0
- data/lib/vines/stream/http/session.rb +120 -0
- data/lib/vines/stream/http/sessions.rb +65 -0
- data/lib/vines/stream/http/start.rb +23 -0
- data/lib/vines/stream/parser.rb +78 -0
- data/lib/vines/stream/sasl.rb +92 -0
- data/lib/vines/stream/server.rb +150 -0
- data/lib/vines/stream/server/auth.rb +13 -0
- data/lib/vines/stream/server/auth_restart.rb +13 -0
- data/lib/vines/stream/server/final_restart.rb +21 -0
- data/lib/vines/stream/server/outbound/auth.rb +31 -0
- data/lib/vines/stream/server/outbound/auth_restart.rb +20 -0
- data/lib/vines/stream/server/outbound/auth_result.rb +32 -0
- data/lib/vines/stream/server/outbound/final_features.rb +28 -0
- data/lib/vines/stream/server/outbound/final_restart.rb +20 -0
- data/lib/vines/stream/server/outbound/start.rb +20 -0
- data/lib/vines/stream/server/outbound/tls.rb +30 -0
- data/lib/vines/stream/server/outbound/tls_result.rb +34 -0
- data/lib/vines/stream/server/ready.rb +24 -0
- data/lib/vines/stream/server/start.rb +13 -0
- data/lib/vines/stream/server/tls.rb +13 -0
- data/lib/vines/stream/state.rb +60 -0
- data/lib/vines/token_bucket.rb +55 -0
- data/lib/vines/user.rb +123 -0
- data/lib/vines/version.rb +5 -0
- data/lib/vines/xmpp_server.rb +43 -0
- data/vines.gemspec +36 -0
- data/web/404.html +51 -0
- data/web/apple-touch-icon.png +0 -0
- data/web/chat/coffeescripts/chat.coffee +362 -0
- data/web/chat/coffeescripts/init.coffee +15 -0
- data/web/chat/index.html +16 -0
- data/web/chat/javascripts/app.js +1 -0
- data/web/chat/stylesheets/chat.css +144 -0
- data/web/favicon.png +0 -0
- data/web/lib/coffeescripts/button.coffee +25 -0
- data/web/lib/coffeescripts/contact.coffee +32 -0
- data/web/lib/coffeescripts/filter.coffee +49 -0
- data/web/lib/coffeescripts/layout.coffee +30 -0
- data/web/lib/coffeescripts/login.coffee +68 -0
- data/web/lib/coffeescripts/logout.coffee +5 -0
- data/web/lib/coffeescripts/navbar.coffee +84 -0
- data/web/lib/coffeescripts/notification.coffee +14 -0
- data/web/lib/coffeescripts/router.coffee +40 -0
- data/web/lib/coffeescripts/session.coffee +229 -0
- data/web/lib/coffeescripts/transfer.coffee +106 -0
- data/web/lib/images/dark-gray.png +0 -0
- data/web/lib/images/default-user.png +0 -0
- data/web/lib/images/light-gray.png +0 -0
- data/web/lib/images/logo-large.png +0 -0
- data/web/lib/images/logo-small.png +0 -0
- data/web/lib/images/white.png +0 -0
- data/web/lib/javascripts/base.js +12 -0
- data/web/lib/javascripts/icons.js +110 -0
- data/web/lib/javascripts/jquery.cookie.js +91 -0
- data/web/lib/javascripts/jquery.js +4 -0
- data/web/lib/javascripts/raphael.js +6 -0
- data/web/lib/javascripts/strophe.js +1 -0
- data/web/lib/stylesheets/base.css +385 -0
- data/web/lib/stylesheets/login.css +68 -0
- metadata +423 -0
@@ -0,0 +1,68 @@
|
|
1
|
+
#login-page {
|
2
|
+
background: -moz-radial-gradient(rgba(26, 55, 98, 0.8), rgba(12, 26, 45, 0.8)), url(../images/dark-gray.png);
|
3
|
+
background: -ms-radial-gradient(center, 500px 500px, rgba(26, 55, 98, 0.8), rgba(12, 26, 45, 0.8)), url(../images/dark-gray.png);
|
4
|
+
background: -o-radial-gradient(rgba(26, 55, 98, 0.8), rgba(12, 26, 45, 0.8)), url(../images/dark-gray.png);
|
5
|
+
background: -webkit-radial-gradient(center, 500px 500px, rgba(26, 55, 98, 0.8), rgba(12, 26, 45, 0.8)), url(../images/dark-gray.png);
|
6
|
+
}
|
7
|
+
#login-page #container {
|
8
|
+
height: 100%;
|
9
|
+
width: 100%;
|
10
|
+
text-align: center;
|
11
|
+
}
|
12
|
+
#login-page #login-form {
|
13
|
+
margin: 0 auto;
|
14
|
+
position: relative;
|
15
|
+
width: 640px;
|
16
|
+
}
|
17
|
+
#login-page #login-form h1 {
|
18
|
+
background: url(../images/logo-large.png) no-repeat;
|
19
|
+
color: transparent;
|
20
|
+
height: 82px;
|
21
|
+
line-height: 1;
|
22
|
+
margin: 0 auto 40px auto;
|
23
|
+
text-shadow: none;
|
24
|
+
width: 245px;
|
25
|
+
}
|
26
|
+
#login-page #jid,
|
27
|
+
#login-page #password {
|
28
|
+
margin: 0 auto;
|
29
|
+
margin-bottom: 10px;
|
30
|
+
width: 240px;
|
31
|
+
display: block;
|
32
|
+
}
|
33
|
+
#login-page #icon {
|
34
|
+
position: absolute;
|
35
|
+
left: 90px;
|
36
|
+
top: 0px;
|
37
|
+
width: 100px;
|
38
|
+
height: 80px;
|
39
|
+
}
|
40
|
+
#login-page #login-form-controls {
|
41
|
+
background: rgba(0, 0, 0, 0.2);
|
42
|
+
border: 1px solid rgba(0, 0, 0, 0.1);
|
43
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
|
44
|
+
border-radius: 5px;
|
45
|
+
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset;
|
46
|
+
margin: 0 auto;
|
47
|
+
padding: 20px;
|
48
|
+
}
|
49
|
+
#login-page #start {
|
50
|
+
width: 100px;
|
51
|
+
margin-left: 0;
|
52
|
+
margin-bottom: 0;
|
53
|
+
}
|
54
|
+
#login-page #start:active {
|
55
|
+
box-shadow: inset 0 1px 7px #0c1a2d;
|
56
|
+
}
|
57
|
+
#login-page input[type="submit"] {
|
58
|
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.5);
|
59
|
+
}
|
60
|
+
#login-page #error {
|
61
|
+
background: rgba(255, 255, 255, 0.05);
|
62
|
+
border-radius: 3px;
|
63
|
+
color: #4693FF;
|
64
|
+
font-size: 10pt;
|
65
|
+
margin: 20px auto;
|
66
|
+
text-shadow: 0 1px 1px #000;
|
67
|
+
width: 250px;
|
68
|
+
}
|
metadata
ADDED
@@ -0,0 +1,423 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: vinesmod
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.4.5
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- David Graham
|
9
|
+
- Damian Lesiuk
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2012-10-19 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: activerecord
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ~>
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 3.2.8
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ~>
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: 3.2.8
|
31
|
+
- !ruby/object:Gem::Dependency
|
32
|
+
name: bcrypt-ruby
|
33
|
+
requirement: !ruby/object:Gem::Requirement
|
34
|
+
none: false
|
35
|
+
requirements:
|
36
|
+
- - ~>
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: 3.0.1
|
39
|
+
type: :runtime
|
40
|
+
prerelease: false
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ~>
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 3.0.1
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: em-http-request
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.0.3
|
55
|
+
type: :runtime
|
56
|
+
prerelease: false
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
59
|
+
requirements:
|
60
|
+
- - ~>
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: 1.0.3
|
63
|
+
- !ruby/object:Gem::Dependency
|
64
|
+
name: eventmachine
|
65
|
+
requirement: !ruby/object:Gem::Requirement
|
66
|
+
none: false
|
67
|
+
requirements:
|
68
|
+
- - ~>
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: 1.0.0
|
71
|
+
type: :runtime
|
72
|
+
prerelease: false
|
73
|
+
version_requirements: !ruby/object:Gem::Requirement
|
74
|
+
none: false
|
75
|
+
requirements:
|
76
|
+
- - ~>
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: 1.0.0
|
79
|
+
- !ruby/object:Gem::Dependency
|
80
|
+
name: http_parser.rb
|
81
|
+
requirement: !ruby/object:Gem::Requirement
|
82
|
+
none: false
|
83
|
+
requirements:
|
84
|
+
- - ~>
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: 0.5.3
|
87
|
+
type: :runtime
|
88
|
+
prerelease: false
|
89
|
+
version_requirements: !ruby/object:Gem::Requirement
|
90
|
+
none: false
|
91
|
+
requirements:
|
92
|
+
- - ~>
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: 0.5.3
|
95
|
+
- !ruby/object:Gem::Dependency
|
96
|
+
name: bson_ext
|
97
|
+
requirement: !ruby/object:Gem::Requirement
|
98
|
+
none: false
|
99
|
+
requirements:
|
100
|
+
- - ~>
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 1.5.2
|
103
|
+
type: :runtime
|
104
|
+
prerelease: false
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
106
|
+
none: false
|
107
|
+
requirements:
|
108
|
+
- - ~>
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 1.5.2
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: nokogiri
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
none: false
|
115
|
+
requirements:
|
116
|
+
- - ~>
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: 1.5.5
|
119
|
+
type: :runtime
|
120
|
+
prerelease: false
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
none: false
|
123
|
+
requirements:
|
124
|
+
- - ~>
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: 1.5.5
|
127
|
+
- !ruby/object:Gem::Dependency
|
128
|
+
name: mupnp
|
129
|
+
requirement: !ruby/object:Gem::Requirement
|
130
|
+
none: false
|
131
|
+
requirements:
|
132
|
+
- - ~>
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: 0.2.0
|
135
|
+
type: :runtime
|
136
|
+
prerelease: false
|
137
|
+
version_requirements: !ruby/object:Gem::Requirement
|
138
|
+
none: false
|
139
|
+
requirements:
|
140
|
+
- - ~>
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: 0.2.0
|
143
|
+
- !ruby/object:Gem::Dependency
|
144
|
+
name: minitest
|
145
|
+
requirement: !ruby/object:Gem::Requirement
|
146
|
+
none: false
|
147
|
+
requirements:
|
148
|
+
- - ~>
|
149
|
+
- !ruby/object:Gem::Version
|
150
|
+
version: 3.4.0
|
151
|
+
type: :development
|
152
|
+
prerelease: false
|
153
|
+
version_requirements: !ruby/object:Gem::Requirement
|
154
|
+
none: false
|
155
|
+
requirements:
|
156
|
+
- - ~>
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: 3.4.0
|
159
|
+
- !ruby/object:Gem::Dependency
|
160
|
+
name: coffee-script
|
161
|
+
requirement: !ruby/object:Gem::Requirement
|
162
|
+
none: false
|
163
|
+
requirements:
|
164
|
+
- - ~>
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: 2.2.0
|
167
|
+
type: :development
|
168
|
+
prerelease: false
|
169
|
+
version_requirements: !ruby/object:Gem::Requirement
|
170
|
+
none: false
|
171
|
+
requirements:
|
172
|
+
- - ~>
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: 2.2.0
|
175
|
+
- !ruby/object:Gem::Dependency
|
176
|
+
name: coffee-script-source
|
177
|
+
requirement: !ruby/object:Gem::Requirement
|
178
|
+
none: false
|
179
|
+
requirements:
|
180
|
+
- - ~>
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: 1.3.3
|
183
|
+
type: :development
|
184
|
+
prerelease: false
|
185
|
+
version_requirements: !ruby/object:Gem::Requirement
|
186
|
+
none: false
|
187
|
+
requirements:
|
188
|
+
- - ~>
|
189
|
+
- !ruby/object:Gem::Version
|
190
|
+
version: 1.3.3
|
191
|
+
- !ruby/object:Gem::Dependency
|
192
|
+
name: uglifier
|
193
|
+
requirement: !ruby/object:Gem::Requirement
|
194
|
+
none: false
|
195
|
+
requirements:
|
196
|
+
- - ~>
|
197
|
+
- !ruby/object:Gem::Version
|
198
|
+
version: 1.3.0
|
199
|
+
type: :development
|
200
|
+
prerelease: false
|
201
|
+
version_requirements: !ruby/object:Gem::Requirement
|
202
|
+
none: false
|
203
|
+
requirements:
|
204
|
+
- - ~>
|
205
|
+
- !ruby/object:Gem::Version
|
206
|
+
version: 1.3.0
|
207
|
+
- !ruby/object:Gem::Dependency
|
208
|
+
name: rake
|
209
|
+
requirement: !ruby/object:Gem::Requirement
|
210
|
+
none: false
|
211
|
+
requirements:
|
212
|
+
- - ! '>='
|
213
|
+
- !ruby/object:Gem::Version
|
214
|
+
version: '0'
|
215
|
+
type: :development
|
216
|
+
prerelease: false
|
217
|
+
version_requirements: !ruby/object:Gem::Requirement
|
218
|
+
none: false
|
219
|
+
requirements:
|
220
|
+
- - ! '>='
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '0'
|
223
|
+
- !ruby/object:Gem::Dependency
|
224
|
+
name: sqlite3
|
225
|
+
requirement: !ruby/object:Gem::Requirement
|
226
|
+
none: false
|
227
|
+
requirements:
|
228
|
+
- - ! '>='
|
229
|
+
- !ruby/object:Gem::Version
|
230
|
+
version: '0'
|
231
|
+
type: :development
|
232
|
+
prerelease: false
|
233
|
+
version_requirements: !ruby/object:Gem::Requirement
|
234
|
+
none: false
|
235
|
+
requirements:
|
236
|
+
- - ! '>='
|
237
|
+
- !ruby/object:Gem::Version
|
238
|
+
version: '0'
|
239
|
+
description: Vines is an XMPP chat server that supports thousands of simultaneous
|
240
|
+
connections, using EventMachine and Nokogiri.
|
241
|
+
email:
|
242
|
+
- ja@lesiuk.net
|
243
|
+
executables:
|
244
|
+
- vines
|
245
|
+
extensions: []
|
246
|
+
extra_rdoc_files: []
|
247
|
+
files:
|
248
|
+
- README.md
|
249
|
+
- Gemfile
|
250
|
+
- LICENSE
|
251
|
+
- Rakefile
|
252
|
+
- vines.gemspec
|
253
|
+
- bin/vines
|
254
|
+
- lib/vines/kit.rb
|
255
|
+
- lib/vines/config.rb
|
256
|
+
- lib/vines/store.rb
|
257
|
+
- lib/vines/cluster/publisher.rb
|
258
|
+
- lib/vines/cluster/sessions.rb
|
259
|
+
- lib/vines/cluster/subscriber.rb
|
260
|
+
- lib/vines/cluster/pubsub.rb
|
261
|
+
- lib/vines/cluster/connection.rb
|
262
|
+
- lib/vines/storage.rb
|
263
|
+
- lib/vines/token_bucket.rb
|
264
|
+
- lib/vines/contact.rb
|
265
|
+
- lib/vines/stream.rb
|
266
|
+
- lib/vines/stanza.rb
|
267
|
+
- lib/vines/stanza/presence.rb
|
268
|
+
- lib/vines/stanza/message.rb
|
269
|
+
- lib/vines/stanza/iq/query.rb
|
270
|
+
- lib/vines/stanza/iq/result.rb
|
271
|
+
- lib/vines/stanza/iq/session.rb
|
272
|
+
- lib/vines/stanza/iq/vcard.rb
|
273
|
+
- lib/vines/stanza/iq/ping.rb
|
274
|
+
- lib/vines/stanza/iq/register.rb
|
275
|
+
- lib/vines/stanza/iq/disco_items.rb
|
276
|
+
- lib/vines/stanza/iq/version.rb
|
277
|
+
- lib/vines/stanza/iq/disco_info.rb
|
278
|
+
- lib/vines/stanza/iq/auth.rb
|
279
|
+
- lib/vines/stanza/iq/roster.rb
|
280
|
+
- lib/vines/stanza/iq/error.rb
|
281
|
+
- lib/vines/stanza/iq/private_storage.rb
|
282
|
+
- lib/vines/stanza/presence/subscribed.rb
|
283
|
+
- lib/vines/stanza/presence/unsubscribe.rb
|
284
|
+
- lib/vines/stanza/presence/subscribe.rb
|
285
|
+
- lib/vines/stanza/presence/unavailable.rb
|
286
|
+
- lib/vines/stanza/presence/probe.rb
|
287
|
+
- lib/vines/stanza/presence/error.rb
|
288
|
+
- lib/vines/stanza/presence/unsubscribed.rb
|
289
|
+
- lib/vines/stanza/iq.rb
|
290
|
+
- lib/vines/stanza/pubsub.rb
|
291
|
+
- lib/vines/stanza/pubsub/delete.rb
|
292
|
+
- lib/vines/stanza/pubsub/publish.rb
|
293
|
+
- lib/vines/stanza/pubsub/unsubscribe.rb
|
294
|
+
- lib/vines/stanza/pubsub/subscribe.rb
|
295
|
+
- lib/vines/stanza/pubsub/create.rb
|
296
|
+
- lib/vines/router.rb
|
297
|
+
- lib/vines/stream/component.rb
|
298
|
+
- lib/vines/stream/state.rb
|
299
|
+
- lib/vines/stream/sasl.rb
|
300
|
+
- lib/vines/stream/http/request.rb
|
301
|
+
- lib/vines/stream/http/bind_restart.rb
|
302
|
+
- lib/vines/stream/http/bind.rb
|
303
|
+
- lib/vines/stream/http/session.rb
|
304
|
+
- lib/vines/stream/http/sessions.rb
|
305
|
+
- lib/vines/stream/http/auth.rb
|
306
|
+
- lib/vines/stream/http/ready.rb
|
307
|
+
- lib/vines/stream/http/start.rb
|
308
|
+
- lib/vines/stream/component/handshake.rb
|
309
|
+
- lib/vines/stream/component/ready.rb
|
310
|
+
- lib/vines/stream/component/start.rb
|
311
|
+
- lib/vines/stream/client/auth_restart.rb
|
312
|
+
- lib/vines/stream/client/tls.rb
|
313
|
+
- lib/vines/stream/client/bind_restart.rb
|
314
|
+
- lib/vines/stream/client/bind.rb
|
315
|
+
- lib/vines/stream/client/session.rb
|
316
|
+
- lib/vines/stream/client/auth.rb
|
317
|
+
- lib/vines/stream/client/closed.rb
|
318
|
+
- lib/vines/stream/client/ready.rb
|
319
|
+
- lib/vines/stream/client/start.rb
|
320
|
+
- lib/vines/stream/parser.rb
|
321
|
+
- lib/vines/stream/server.rb
|
322
|
+
- lib/vines/stream/http.rb
|
323
|
+
- lib/vines/stream/server/auth_restart.rb
|
324
|
+
- lib/vines/stream/server/tls.rb
|
325
|
+
- lib/vines/stream/server/outbound/auth_restart.rb
|
326
|
+
- lib/vines/stream/server/outbound/tls.rb
|
327
|
+
- lib/vines/stream/server/outbound/final_restart.rb
|
328
|
+
- lib/vines/stream/server/outbound/auth.rb
|
329
|
+
- lib/vines/stream/server/outbound/tls_result.rb
|
330
|
+
- lib/vines/stream/server/outbound/final_features.rb
|
331
|
+
- lib/vines/stream/server/outbound/auth_result.rb
|
332
|
+
- lib/vines/stream/server/outbound/start.rb
|
333
|
+
- lib/vines/stream/server/final_restart.rb
|
334
|
+
- lib/vines/stream/server/auth.rb
|
335
|
+
- lib/vines/stream/server/ready.rb
|
336
|
+
- lib/vines/stream/server/start.rb
|
337
|
+
- lib/vines/stream/client.rb
|
338
|
+
- lib/vines/version.rb
|
339
|
+
- lib/vines/command/bcrypt.rb
|
340
|
+
- lib/vines/command/cert.rb
|
341
|
+
- lib/vines/command/register.rb
|
342
|
+
- lib/vines/command/stop.rb
|
343
|
+
- lib/vines/command/unregister.rb
|
344
|
+
- lib/vines/command/init.rb
|
345
|
+
- lib/vines/command/restart.rb
|
346
|
+
- lib/vines/command/schema.rb
|
347
|
+
- lib/vines/command/start.rb
|
348
|
+
- lib/vines/daemon.rb
|
349
|
+
- lib/vines/config/host.rb
|
350
|
+
- lib/vines/config/port.rb
|
351
|
+
- lib/vines/config/pubsub.rb
|
352
|
+
- lib/vines/jid.rb
|
353
|
+
- lib/vines/cluster.rb
|
354
|
+
- lib/vines/error.rb
|
355
|
+
- lib/vines/storage/local.rb
|
356
|
+
- lib/vines/storage/sql.rb
|
357
|
+
- lib/vines/storage/null.rb
|
358
|
+
- lib/vines/xmpp_server.rb
|
359
|
+
- lib/vines/log.rb
|
360
|
+
- lib/vines/user.rb
|
361
|
+
- lib/vines.rb
|
362
|
+
- conf/config.rb
|
363
|
+
- conf/certs/ca-bundle.crt
|
364
|
+
- conf/certs/README
|
365
|
+
- web/favicon.png
|
366
|
+
- web/lib/stylesheets/base.css
|
367
|
+
- web/lib/stylesheets/login.css
|
368
|
+
- web/lib/images/white.png
|
369
|
+
- web/lib/images/logo-large.png
|
370
|
+
- web/lib/images/logo-small.png
|
371
|
+
- web/lib/images/dark-gray.png
|
372
|
+
- web/lib/images/light-gray.png
|
373
|
+
- web/lib/images/default-user.png
|
374
|
+
- web/lib/javascripts/jquery.js
|
375
|
+
- web/lib/javascripts/icons.js
|
376
|
+
- web/lib/javascripts/jquery.cookie.js
|
377
|
+
- web/lib/javascripts/raphael.js
|
378
|
+
- web/lib/javascripts/strophe.js
|
379
|
+
- web/lib/javascripts/base.js
|
380
|
+
- web/lib/coffeescripts/notification.coffee
|
381
|
+
- web/lib/coffeescripts/session.coffee
|
382
|
+
- web/lib/coffeescripts/router.coffee
|
383
|
+
- web/lib/coffeescripts/contact.coffee
|
384
|
+
- web/lib/coffeescripts/layout.coffee
|
385
|
+
- web/lib/coffeescripts/login.coffee
|
386
|
+
- web/lib/coffeescripts/filter.coffee
|
387
|
+
- web/lib/coffeescripts/transfer.coffee
|
388
|
+
- web/lib/coffeescripts/button.coffee
|
389
|
+
- web/lib/coffeescripts/logout.coffee
|
390
|
+
- web/lib/coffeescripts/navbar.coffee
|
391
|
+
- web/apple-touch-icon.png
|
392
|
+
- web/404.html
|
393
|
+
- web/chat/stylesheets/chat.css
|
394
|
+
- web/chat/index.html
|
395
|
+
- web/chat/javascripts/app.js
|
396
|
+
- web/chat/coffeescripts/init.coffee
|
397
|
+
- web/chat/coffeescripts/chat.coffee
|
398
|
+
homepage: ''
|
399
|
+
licenses:
|
400
|
+
- MIT
|
401
|
+
post_install_message:
|
402
|
+
rdoc_options: []
|
403
|
+
require_paths:
|
404
|
+
- lib
|
405
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
406
|
+
none: false
|
407
|
+
requirements:
|
408
|
+
- - ! '>='
|
409
|
+
- !ruby/object:Gem::Version
|
410
|
+
version: 1.9.3
|
411
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
412
|
+
none: false
|
413
|
+
requirements:
|
414
|
+
- - ! '>='
|
415
|
+
- !ruby/object:Gem::Version
|
416
|
+
version: '0'
|
417
|
+
requirements: []
|
418
|
+
rubyforge_project:
|
419
|
+
rubygems_version: 1.8.24
|
420
|
+
signing_key:
|
421
|
+
specification_version: 3
|
422
|
+
summary: Vines is an XMPP chat server that's easy to install and run.
|
423
|
+
test_files: []
|