freeswitcher 0.4.1 → 0.4.2
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/AUTHORS +5 -2
- data/CHANGELOG +349 -263
- data/MANIFEST +4 -1
- data/README +1 -1
- data/Rakefile +1 -0
- data/examples/inbound_event_socket.rb +1 -1
- data/freeswitcher.gemspec +7 -7
- data/lib/fsr.rb +11 -6
- data/lib/fsr/cmd/uuid_dump.rb +27 -0
- data/lib/fsr/listener/inbound.rb +2 -0
- data/lib/fsr/listener/mock.rb +23 -0
- data/lib/fsr/listener/outbound.rb +0 -1
- data/lib/fsr/version.rb +1 -1
- data/spec/fsr/cmd/uuid_dump.rb +13 -0
- data/spec/fsr/listener/inbound.rb +45 -5
- data/spec/fsr/listener/outbound.rb +109 -9
- data/spec/fsr/loading.rb +1 -1
- data/spec/fsr_listener_helper.rb +22 -0
- data/tasks/setup.rake +12 -4
- metadata +8 -5
- data/tasks/rcov.rake +0 -23
data/AUTHORS
CHANGED
@@ -1,11 +1,14 @@
|
|
1
1
|
Following persons have contributed to freeswitcher.
|
2
2
|
(Sorted by number of submitted patches, then alphabetically)
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
125 TJ Vanderpoel <bougy.man@gmail.com>
|
5
|
+
112 Jayson Vaughn <vaughn.jayson@gmail.com>
|
6
6
|
40 Michael Fellinger <m.fellinger@gmail.com>
|
7
7
|
6 Mikael Bjerkeland <mikael@consoll.no>
|
8
8
|
4 foo <jvaughn@hellspass.nationwide-recovery.com>
|
9
9
|
3 Kevin Berry <kevin@opensourcealchemist.com>
|
10
10
|
2 freeswitch <freeswitch@falcon.(none)>
|
11
|
+
2 TJ Vanderpoel <Jayson Vaughn jv@rubyists.com>
|
12
|
+
1 TJ Vanderpoel <bougyman@zero.(none)>
|
13
|
+
1 TJ Vanderpoel <TJ Vanderpoel tj@rubyists.com>
|
11
14
|
1 U-Paul-PC\Paul <Paul@Paul-PC.(none)>
|
data/CHANGELOG
CHANGED
@@ -1,193 +1,279 @@
|
|
1
|
-
[
|
1
|
+
[fc083ef | 2009-07-03 14:14:17 UTC] TJ Vanderpoel <TJ Vanderpoel tj@rubyists.com>
|
2
|
+
|
3
|
+
* Version 0.4.2
|
4
|
+
|
5
|
+
[360c877 | 2009-06-22 01:45:56 UTC] bougyman <bougyman@gotdebt.nationwide-recovery.com>
|
6
|
+
|
7
|
+
* removed rcov dependency, added setup_spec task (for tmm1-em-spec)
|
8
|
+
|
9
|
+
[684ce82 | 2009-06-20 17:00:01 UTC] TJ Vanderpoel <bougyman@zero.(none)>
|
10
|
+
|
11
|
+
* made sent_data an array like replies
|
12
|
+
|
13
|
+
[f27b71d | 2009-06-17 18:09:17 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
14
|
+
|
15
|
+
* Added spec/fsr_listener_helper.rb to gemspec list
|
16
|
+
|
17
|
+
[52ef44b | 2009-06-16 20:26:30 UTC] TJ Vanderpoel <Jayson Vaughn jv@rubyists.com>
|
18
|
+
|
19
|
+
* added some helpers for speccing listener apps
|
20
|
+
|
21
|
+
[dcd2125 | 2009-06-15 14:12:12 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
22
|
+
|
23
|
+
* Changed uuid_dump params to have default assignment for 1.8.x compat
|
24
|
+
|
25
|
+
[d427e58 | 2009-06-06 23:21:20 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
26
|
+
|
27
|
+
* In outbound listener spec, made sure to test variable is nil in update session test for a more complete test
|
28
|
+
|
29
|
+
[c47ffc2 | 2009-06-06 22:17:17 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
30
|
+
|
31
|
+
* changed spec description for update_session
|
32
|
+
|
33
|
+
[d741758 | 2009-06-06 22:15:41 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
34
|
+
|
35
|
+
* Added spec for FSR::Listener::Outbound#update_session
|
36
|
+
|
37
|
+
[6936e80 | 2009-06-06 21:55:33 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
38
|
+
|
39
|
+
* Added FSR::Cmd::UuidDump and specs
|
40
|
+
|
41
|
+
[bf386f6 | 2009-06-06 21:33:16 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
42
|
+
|
43
|
+
* added spec to FSR::Listener:Inbound for auth
|
44
|
+
|
45
|
+
[a458fbf | 2009-06-06 21:09:47 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
46
|
+
|
47
|
+
* s/@queue << block/@queue.unshift block
|
48
|
+
|
49
|
+
[c2219d2 | 2009-06-06 21:05:37 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
50
|
+
|
51
|
+
* corrected spec description typos
|
52
|
+
|
53
|
+
[78053cc | 2009-06-06 21:02:13 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
54
|
+
|
55
|
+
* Added em-specs for FSR::Listener::Inbound class
|
56
|
+
|
57
|
+
* Added spec to test FSL::Inbound.add_event_hook
|
58
|
+
|
59
|
+
[2d56635 | 2009-06-06 20:11:58 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
60
|
+
|
61
|
+
* Added specs to test our proc based state machine
|
62
|
+
|
63
|
+
[214be2b | 2009-06-06 18:16:29 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
64
|
+
|
65
|
+
* Added em-epecs to test basic functionality of the Outbound Event Socket
|
66
|
+
|
67
|
+
* Test we can process a response sent in multiple transmissions
|
68
|
+
* Test we can receive a reply after a session is created
|
69
|
+
* Test that we send connect to freeswitch upon a new connection
|
70
|
+
|
71
|
+
TODO: Need to test Outbound Event socket state machine
|
72
|
+
|
73
|
+
[48ffd21 | 2009-06-05 19:36:20 UTC] TJ Vanderpoel <Jayson Vaughn jv@rubyists.com>
|
74
|
+
|
75
|
+
* Added em-spec capabilities
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
[76e6798 | 2009-06-04 17:24:29 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
80
|
+
|
81
|
+
* re-added ability to send auth to the inbound/outbound listeners. (thanks, lewdsilver)
|
82
|
+
|
83
|
+
[a724963 | 2009-06-04 00:04:24 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
84
|
+
|
85
|
+
* Forgot to include these... woops
|
86
|
+
|
87
|
+
[840dfa1 | 2009-06-03 23:46:14 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
2
88
|
|
3
89
|
* Version 0.4.1
|
4
90
|
|
5
|
-
[26c4f0c |
|
91
|
+
[26c4f0c | 2009-06-03 23:42:52 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
6
92
|
|
7
93
|
* s/queue << block/queue.unshift block/g
|
8
94
|
|
9
|
-
[6b589a3 |
|
95
|
+
[6b589a3 | 2009-06-03 23:13:15 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
10
96
|
|
11
97
|
* Version 0.4.0
|
12
98
|
|
13
|
-
[55753af |
|
99
|
+
[55753af | 2009-06-03 23:10:22 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
14
100
|
|
15
101
|
* Updated outbound_event_socket.rb example
|
16
102
|
|
17
|
-
[234a17e |
|
103
|
+
[234a17e | 2009-06-03 23:01:56 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
18
104
|
|
19
105
|
* Refactored api to be a method of FSR::Listener::Outbound
|
20
106
|
|
21
|
-
[0bc8973 |
|
107
|
+
[0bc8973 | 2009-06-03 21:55:02 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
22
108
|
|
23
109
|
* Added FSR::App::Api
|
24
110
|
|
25
|
-
[9d2cc41 |
|
111
|
+
[9d2cc41 | 2009-05-30 18:49:08 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
26
112
|
|
27
113
|
* Made some changes so FSR is Ruby 1.9.1 compat
|
28
114
|
|
29
115
|
* Monkey patched, unfortunately, String class with alias :each
|
30
116
|
* :each_line compat with EventMachine
|
31
117
|
|
32
|
-
[a40e1ed |
|
118
|
+
[a40e1ed | 2009-05-30 18:10:35 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
33
119
|
|
34
120
|
* Corrected typo in examples/outbound_event_socket.rb
|
35
121
|
|
36
|
-
[0a3f680 |
|
122
|
+
[0a3f680 | 2009-05-29 16:15:15 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
37
123
|
|
38
124
|
* Added .to_s at end of Dir[load_path.join("*.rb").to_s] for Ruby 1.9.1
|
39
125
|
|
40
126
|
|
41
127
|
|
42
|
-
[f267c17 |
|
128
|
+
[f267c17 | 2009-05-27 20:49:27 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
43
129
|
|
44
130
|
* Updated header_and_content specs
|
45
131
|
|
46
|
-
[19ee736 |
|
132
|
+
[19ee736 | 2009-05-23 18:34:18 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
47
133
|
|
48
134
|
* Change example and readme to match what is demoed at sip:8084@falcon.rubyists.com
|
49
135
|
|
50
|
-
[5be4271 |
|
136
|
+
[5be4271 | 2009-05-19 21:02:09 UTC] freeswitch <freeswitch@falcon.(none)>
|
51
137
|
|
52
138
|
* try to load log4r for logging (Logger buffers, bugs with runit services), fall back to Logger from stdlib if log4r not found
|
53
139
|
|
54
|
-
[921251a |
|
140
|
+
[921251a | 2009-05-19 20:13:47 UTC] freeswitch <freeswitch@falcon.(none)>
|
55
141
|
|
56
142
|
* reverted regression to listeners, back to functional
|
57
143
|
|
58
|
-
[eb72db4 |
|
144
|
+
[eb72db4 | 2009-05-19 15:15:04 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
59
145
|
|
60
146
|
* changed spacing in content#find
|
61
147
|
|
62
|
-
[c275898 |
|
148
|
+
[c275898 | 2009-05-19 15:12:39 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
63
149
|
|
64
150
|
* improve the regex for matching a header: value in content of HeaderAndContentResponse
|
65
151
|
|
66
|
-
[4bfaf24 |
|
152
|
+
[4bfaf24 | 2009-05-20 05:05:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
67
153
|
|
68
154
|
* headers/content come in as Array
|
69
155
|
|
70
|
-
[5640b6f |
|
156
|
+
[5640b6f | 2009-05-20 04:54:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
71
157
|
|
72
158
|
* Fix the listener/outbound spec
|
73
159
|
|
74
|
-
[29527e2 |
|
160
|
+
[29527e2 | 2009-05-19 23:20:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
75
161
|
|
76
162
|
* Minor cleanup
|
77
163
|
|
78
|
-
[38b98fa |
|
164
|
+
[38b98fa | 2009-05-19 21:04:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
79
165
|
|
80
166
|
* Add some more outbound specs and refactor
|
81
167
|
|
82
|
-
[817e731 |
|
168
|
+
[817e731 | 2009-05-19 21:04:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
83
169
|
|
84
170
|
* Add HeaderAndContentResponse subclass that will take care of parsing the content if it should be parsed
|
85
171
|
|
86
|
-
[d44c3f0 |
|
172
|
+
[d44c3f0 | 2009-05-19 20:45:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
87
173
|
|
88
174
|
* Minor refactor and some more specs for inbound listener
|
89
175
|
|
90
|
-
[4f945e5 |
|
176
|
+
[4f945e5 | 2009-05-19 20:28:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
91
177
|
|
92
178
|
* Refactor and basic specs of HeaderAndContentResponse, integration with inbound/outbound follow
|
93
179
|
|
94
|
-
[e3c3142 |
|
180
|
+
[e3c3142 | 2009-05-19 19:29:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
95
181
|
|
96
182
|
* A little bit less annoying require_relative look-alike
|
97
183
|
|
98
|
-
[e80cbc1 |
|
184
|
+
[e80cbc1 | 2009-05-19 00:27:53 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
99
185
|
|
100
186
|
* updated authors and changelog
|
101
187
|
|
102
|
-
[9451ba8 |
|
188
|
+
[9451ba8 | 2009-05-19 00:26:26 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
103
189
|
|
104
190
|
* Version 0.3.1 fixes bug in FS_ROOT not being populated properly
|
105
191
|
|
106
|
-
[fbaf84c |
|
192
|
+
[fbaf84c | 2009-05-18 23:24:58 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
107
193
|
|
108
194
|
* Version 0.3.0
|
109
195
|
|
110
|
-
[bf6befa |
|
196
|
+
[bf6befa | 2009-05-18 23:22:36 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
111
197
|
|
112
198
|
* functionality for receiving variables passed to a block complete. README updated. Convert Rakefile file options to Pathname
|
113
199
|
|
114
|
-
[7b0bf11 |
|
200
|
+
[7b0bf11 | 2009-05-18 20:31:48 UTC] Jayson Vaughn <jayson@onedrop.nationwide-recovery.com>
|
115
201
|
|
116
202
|
* Added yardoc comments
|
117
203
|
|
118
|
-
[7b7efa7 |
|
204
|
+
[7b7efa7 | 2009-05-18 20:10:30 UTC] Jayson Vaughn <jayson@onedrop.nationwide-recovery.com>
|
119
205
|
|
120
206
|
* Removed FSR::Log.info debugging line from uuid_getvar and setvar
|
121
207
|
|
122
|
-
[fda2ff4 |
|
208
|
+
[fda2ff4 | 2009-05-18 19:55:19 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
123
209
|
|
124
210
|
* Added FSR::App::UuidGetVar and UuidSetVar
|
125
211
|
|
126
|
-
[39338cd |
|
212
|
+
[39338cd | 2009-05-18 18:55:17 UTC] Jayson Vaughn <jayson@onedrop.nationwide-recovery.com>
|
127
213
|
|
128
214
|
* Corrected typo s/header_and_content/header_and_content_hash
|
129
215
|
|
130
|
-
[cb4d1cc |
|
216
|
+
[cb4d1cc | 2009-05-18 18:54:08 UTC] Jayson Vaughn <jayson@onedrop.nationwide-recovery.com>
|
131
217
|
|
132
218
|
* And also it seems I need to include a parameter for hash_header in
|
133
219
|
|
134
|
-
[a818d62 |
|
220
|
+
[a818d62 | 2009-05-18 18:51:25 UTC] Jayson Vaughn <jayson@onedrop.nationwide-recovery.com>
|
135
221
|
|
136
222
|
* Need to add a second paremeter to check_for_updated_session that
|
137
223
|
|
138
224
|
|
139
225
|
|
140
|
-
[6302892 |
|
226
|
+
[6302892 | 2009-05-18 18:49:17 UTC] Jayson Vaughn <jayson@onedrop.nationwide-recovery.com>
|
141
227
|
|
142
228
|
* Changed session_header_and_content to header_and_content_hash
|
143
229
|
|
144
|
-
[5b8d9a4 |
|
230
|
+
[5b8d9a4 | 2009-05-18 18:47:57 UTC] Jayson Vaughn <jayson@onedrop.nationwide-recovery.com>
|
145
231
|
|
146
232
|
* Corrected some typos in previous refactor of Outbound#receive_reply
|
147
233
|
|
148
|
-
[12a13eb |
|
234
|
+
[12a13eb | 2009-05-18 18:41:40 UTC] Jayson Vaughn <jayson@onedrop.nationwide-recovery.com>
|
149
235
|
|
150
236
|
* Refactored Outbound#receive_request to decouple it a tad. Still could
|
151
237
|
|
152
238
|
|
153
239
|
|
154
|
-
[6a95fa1 |
|
240
|
+
[6a95fa1 | 2009-05-18 18:16:43 UTC] Jayson Vaughn <jayson@onedrop.nationwide-recovery.com>
|
155
241
|
|
156
242
|
* Refactored FSR::App::PlayAndGetDigits to now yeild the read_var in a
|
157
243
|
|
158
244
|
|
159
245
|
|
160
|
-
[5093e71 |
|
246
|
+
[5093e71 | 2009-05-18 15:08:39 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
161
247
|
|
162
248
|
* Read will now yield the read variable in a block
|
163
249
|
|
164
250
|
Updated README
|
165
251
|
|
166
|
-
[e71a1a5 |
|
252
|
+
[e71a1a5 | 2009-05-18 01:55:43 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
167
253
|
|
168
254
|
* reverted design error, putting SENDMSG_METHOD into Read attaching to Outbound, not App
|
169
255
|
|
170
|
-
[273bdaf |
|
256
|
+
[273bdaf | 2009-05-18 01:34:02 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
171
257
|
|
172
258
|
* removed &block from read method definition after failing spec
|
173
259
|
|
174
|
-
[ad1bbd1 |
|
260
|
+
[ad1bbd1 | 2009-05-18 00:37:44 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
175
261
|
|
176
262
|
* left out another to_sym
|
177
263
|
|
178
|
-
[19f8581 |
|
264
|
+
[19f8581 | 2009-05-18 00:32:23 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
179
265
|
|
180
266
|
* left out a to_sym
|
181
267
|
|
182
|
-
[f445058 |
|
268
|
+
[f445058 | 2009-05-18 00:31:43 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
183
269
|
|
184
270
|
* typos galore, fixed wrong constant name in Read. created the queue_pop method to handle popping procs, adding the session.headers[@read_var] if it exist to the proc called
|
185
271
|
|
186
|
-
[93ecad2 |
|
272
|
+
[93ecad2 | 2009-05-18 00:19:16 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
187
273
|
|
188
274
|
* TEST push to test changes, read/outbound test needed
|
189
275
|
|
190
|
-
[30a39ad |
|
276
|
+
[30a39ad | 2009-05-16 20:41:41 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
191
277
|
|
192
278
|
* Added specs for originate, defaults to Cmd
|
193
279
|
|
@@ -196,91 +282,91 @@
|
|
196
282
|
* Move default_options method to FSR::Cmd::Command as well.
|
197
283
|
* Used default_options block in Originate for options population
|
198
284
|
|
199
|
-
[865d177 |
|
285
|
+
[865d177 | 2009-05-16 17:56:45 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
200
286
|
|
201
287
|
* filling out originate specs, testing options and argument types
|
202
288
|
|
203
|
-
[19b81ff |
|
289
|
+
[19b81ff | 2009-05-13 16:03:35 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
204
290
|
|
205
291
|
* refactored to a new default_options
|
206
292
|
|
207
|
-
[081112a |
|
293
|
+
[081112a | 2009-05-13 15:32:20 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
208
294
|
|
209
295
|
* changed handling of :ignore_early_media in target_options of originate to behave properly. Added argument checks for some originate arguments
|
210
296
|
|
211
|
-
[55ec1c5 |
|
297
|
+
[55ec1c5 | 2009-05-11 17:14:34 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
212
298
|
|
213
299
|
* New specs now pass
|
214
300
|
|
215
|
-
[ab262c9 |
|
301
|
+
[ab262c9 | 2009-05-11 17:13:48 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
216
302
|
|
217
303
|
* Added specs for FSR::App::Answer, FSBreak, and FSSleep
|
218
304
|
|
219
|
-
[1faf55f |
|
305
|
+
[1faf55f | 2009-05-11 16:44:51 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
220
306
|
|
221
307
|
* Updated gemspec for 0.1.4
|
222
308
|
|
223
|
-
[011a3e6 |
|
309
|
+
[011a3e6 | 2009-05-11 16:43:14 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
224
310
|
|
225
311
|
* Sync changes with Master
|
226
312
|
|
227
313
|
|
228
314
|
|
229
|
-
[f036509 |
|
315
|
+
[f036509 | 2009-05-11 16:36:04 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
230
316
|
|
231
317
|
* Version 0.1.4
|
232
318
|
|
233
|
-
[a110dc6 |
|
319
|
+
[a110dc6 | 2009-05-11 16:12:17 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
234
320
|
|
235
321
|
* Corrected typos in README
|
236
322
|
|
237
|
-
[da6d963 |
|
323
|
+
[da6d963 | 2009-05-11 16:00:35 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
238
324
|
|
239
325
|
* Removed 'puts $LOAD_PATH.inspect'
|
240
326
|
|
241
|
-
[5fd154d |
|
327
|
+
[5fd154d | 2009-05-11 15:57:36 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
242
328
|
|
243
329
|
* Updated README
|
244
330
|
|
245
331
|
|
246
332
|
|
247
|
-
[981d6bb |
|
333
|
+
[981d6bb | 2009-05-11 15:42:27 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
248
334
|
|
249
335
|
* Updating README
|
250
336
|
|
251
337
|
|
252
338
|
|
253
|
-
[2d2fdb5 |
|
339
|
+
[2d2fdb5 | 2009-05-05 12:32:35 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
254
340
|
|
255
341
|
* added some yard documentation
|
256
342
|
|
257
|
-
[0e72f02 |
|
343
|
+
[0e72f02 | 2009-05-04 22:15:48 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
258
344
|
|
259
345
|
* fixed broken tasks, tested all tasks
|
260
346
|
|
261
|
-
[8e6f7e8 |
|
347
|
+
[8e6f7e8 | 2009-05-04 21:38:28 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
262
348
|
|
263
349
|
* updated package building and added a bunch of convenience tasks
|
264
350
|
|
265
|
-
[8b94e17 |
|
351
|
+
[8b94e17 | 2009-05-04 20:31:56 UTC] Jayson Vaughn <jayson@onedrop.home>
|
266
352
|
|
267
353
|
* Changed @state to @queue.
|
268
354
|
|
269
355
|
|
270
356
|
|
271
|
-
[54e2702 |
|
357
|
+
[54e2702 | 2009-05-04 20:04:25 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
272
358
|
|
273
359
|
* Changed state machine
|
274
360
|
|
275
361
|
|
276
362
|
|
277
|
-
[0f134f2 |
|
363
|
+
[0f134f2 | 2009-05-03 20:07:27 UTC] Jayson Vaughn <jayson@onedrop.home>
|
278
364
|
|
279
365
|
* No longer 100% necessary to override receive_reply method so I removed
|
280
366
|
|
281
367
|
|
282
368
|
|
283
|
-
[f70a43c |
|
369
|
+
[f70a43c | 2009-05-03 19:53:06 UTC] Jayson Vaughn <jayson@onedrop.home>
|
284
370
|
|
285
371
|
* Added a different way to keep state.
|
286
372
|
|
@@ -290,219 +376,219 @@
|
|
290
376
|
end
|
291
377
|
end
|
292
378
|
|
293
|
-
[a4b9832 |
|
379
|
+
[a4b9832 | 2009-05-02 22:00:37 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
294
380
|
|
295
381
|
* upped version and built new gemspec
|
296
382
|
|
297
|
-
[202d05b |
|
383
|
+
[202d05b | 2009-05-02 22:00:05 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
298
384
|
|
299
385
|
* moved limit to FSR::App where it belonged
|
300
386
|
|
301
|
-
[17fa4e6 |
|
387
|
+
[17fa4e6 | 2009-05-02 21:46:50 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
302
388
|
|
303
389
|
* upped version and built new gem
|
304
390
|
|
305
|
-
[93220f3 |
|
391
|
+
[93220f3 | 2009-05-02 21:46:16 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
306
392
|
|
307
393
|
* added limit command
|
308
394
|
|
309
|
-
[4b918cd |
|
395
|
+
[4b918cd | 2009-05-02 21:12:18 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
310
396
|
|
311
397
|
* upped version and built new gemspec
|
312
398
|
|
313
|
-
[159f978 |
|
399
|
+
[159f978 | 2009-05-02 21:11:40 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
314
400
|
|
315
401
|
* added #next_step to manually increment state machine
|
316
402
|
|
317
|
-
[738e6da |
|
403
|
+
[738e6da | 2009-05-02 21:02:46 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
318
404
|
|
319
405
|
* upped version and made new gemspec
|
320
406
|
|
321
|
-
[faf4c5a |
|
407
|
+
[faf4c5a | 2009-05-02 21:00:53 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
322
408
|
|
323
409
|
* added Cmd::Calls and a Model::Call to describe call data
|
324
410
|
|
325
|
-
[8ef6196 |
|
411
|
+
[8ef6196 | 2009-04-30 20:48:12 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
326
412
|
|
327
413
|
* Added FSR::App::PlayAndGetDigits
|
328
414
|
|
329
415
|
1.9.1
|
330
416
|
Updated specs for FSR::App::PlayAndGetDigits
|
331
417
|
|
332
|
-
[426ea94 |
|
418
|
+
[426ea94 | 2009-04-16 15:12:54 UTC] Jayson Vaughn <jayson@onedrop.home>
|
333
419
|
|
334
420
|
* Version bump 0.0.13
|
335
421
|
|
336
422
|
|
337
423
|
|
338
|
-
[1b81841 |
|
424
|
+
[1b81841 | 2009-04-16 15:11:37 UTC] Jayson Vaughn <jayson@onedrop.home>
|
339
425
|
|
340
426
|
* Updated README to reflect refactor in FSR::Listener::Outbound
|
341
427
|
|
342
428
|
Version bump 0.0.13
|
343
429
|
|
344
|
-
[8bc8cdc |
|
430
|
+
[8bc8cdc | 2009-04-16 15:08:31 UTC] foo <jvaughn@hellspass.nationwide-recovery.com>
|
345
431
|
|
346
432
|
* Added Hash#strip_new_newlines helper
|
347
433
|
|
348
|
-
[5da2747 |
|
434
|
+
[5da2747 | 2009-04-16 14:48:26 UTC] Jayson Vaughn <jayson@onedrop.home>
|
349
435
|
|
350
436
|
* Updated examples/dtmf_test.rb and oes_demo.rb
|
351
437
|
|
352
438
|
* This reflects the new changes to FSR::Listener::Outbound
|
353
439
|
|
354
|
-
[8465069 |
|
440
|
+
[8465069 | 2009-04-16 14:43:50 UTC] foo <jvaughn@hellspass.nationwide-recovery.com>
|
355
441
|
|
356
442
|
* Refactored FSR::Listener::Outbound
|
357
443
|
|
358
444
|
session object
|
359
445
|
#update_session now fully updates @session
|
360
446
|
|
361
|
-
[0fa32ea |
|
447
|
+
[0fa32ea | 2009-04-16 13:14:08 UTC] Jayson Vaughn <jayson@onedrop.home>
|
362
448
|
|
363
449
|
* Updated README
|
364
450
|
|
365
451
|
Updated examples/dtm_read.rb
|
366
452
|
Bumped version to 0.0.12
|
367
453
|
|
368
|
-
[24ff9bd |
|
454
|
+
[24ff9bd | 2009-04-16 13:00:54 UTC] Jayson Vaughn <jayson@onedrop.home>
|
369
455
|
|
370
456
|
* Moved bin to examples
|
371
457
|
|
372
458
|
Updated README to show how to use 'step'
|
373
459
|
|
374
|
-
[5394612 |
|
460
|
+
[5394612 | 2009-04-16 12:51:32 UTC] foo <jvaughn@hellspass.nationwide-recovery.com>
|
375
461
|
|
376
462
|
* Added the ability for receive_reply to keep state.
|
377
463
|
|
378
464
|
Please look at bin/dtmf_test.rb for example
|
379
465
|
|
380
|
-
[4cb5002 |
|
466
|
+
[4cb5002 | 2009-04-15 14:51:13 UTC] Jayson Vaughn <jayson@onedrop.home>
|
381
467
|
|
382
468
|
* Removed #wait_for_reply
|
383
469
|
|
384
|
-
[c63fce9 |
|
470
|
+
[c63fce9 | 2009-04-15 14:37:21 UTC] Jayson Vaughn <jayson@onedrop.home>
|
385
471
|
|
386
472
|
* Added Fsr::Listener::Outbound#wait_for_reply
|
387
473
|
|
388
|
-
[b09939b |
|
474
|
+
[b09939b | 2009-04-15 14:15:29 UTC] Jayson Vaughn <jayson@onedrop.home>
|
389
475
|
|
390
476
|
* Made sure to use #to_s on session.headers[:event_calling_function] incase it is nil
|
391
477
|
|
392
|
-
[8b75ddc |
|
478
|
+
[8b75ddc | 2009-04-15 14:12:51 UTC] Jayson Vaughn <jayson@onedrop.home>
|
393
479
|
|
394
480
|
* Added FSR::Listener::Outbound#update_session to update session variables
|
395
481
|
|
396
|
-
[ea36a2f |
|
482
|
+
[ea36a2f | 2009-04-15 13:45:02 UTC] Jayson Vaughn <jayson@onedrop.home>
|
397
483
|
|
398
484
|
* Corrected typo in FSR::App::UuidDump#initialize
|
399
485
|
|
400
|
-
[85086b6 |
|
486
|
+
[85086b6 | 2009-04-15 13:41:46 UTC] Jayson Vaughn <jayson@onedrop.home>
|
401
487
|
|
402
488
|
* Added FSR::App::UuidSetVar
|
403
489
|
|
404
490
|
|
405
491
|
|
406
|
-
[7ab8727 |
|
492
|
+
[7ab8727 | 2009-04-15 13:29:34 UTC] Jayson Vaughn <jayson@onedrop.home>
|
407
493
|
|
408
494
|
* Corrected typo in FSR::App::UuidGetVar
|
409
495
|
|
410
|
-
[e732be4 |
|
496
|
+
[e732be4 | 2009-04-15 13:09:10 UTC] Jayson Vaughn <jayson@onedrop.home>
|
411
497
|
|
412
498
|
* Added FSR::App::UuidGetVar
|
413
499
|
|
414
500
|
* use uuid_getvar("uuid", "varaible") to retreive a channel variable
|
415
501
|
|
416
|
-
[8b3b3a4 |
|
502
|
+
[8b3b3a4 | 2009-04-14 21:47:05 UTC] Jayson Vaughn <jayson@onedrop.home>
|
417
503
|
|
418
504
|
* FSR::App::Read#sendmsg now joins arguments using " " not "|" :)
|
419
505
|
|
420
|
-
[01d9867 |
|
506
|
+
[01d9867 | 2009-04-14 20:47:35 UTC] Jayson Vaughn <jayson@onedrop.home>
|
421
507
|
|
422
508
|
* Added event-lock to FSR::App::Read by default to #sendmsg
|
423
509
|
|
424
|
-
[654f036 |
|
510
|
+
[654f036 | 2009-04-14 20:39:49 UTC] Jayson Vaughn <jayson@onedrop.home>
|
425
511
|
|
426
512
|
* Added FSR::App::Read to read DTMF input
|
427
513
|
|
428
|
-
[fd827b6 |
|
514
|
+
[fd827b6 | 2009-04-14 19:23:43 UTC] Mikael Bjerkeland <mikael@consoll.no>
|
429
515
|
|
430
516
|
* We should inherit the dialplan and context we had before
|
431
517
|
|
432
518
|
|
433
519
|
|
434
|
-
[c093ad3 |
|
520
|
+
[c093ad3 | 2009-04-14 15:08:11 UTC] Mikael Bjerkeland <mikael@consoll.no>
|
435
521
|
|
436
522
|
* Small clean-ups
|
437
523
|
|
438
524
|
|
439
525
|
|
440
|
-
[ad46f8a |
|
526
|
+
[ad46f8a | 2009-04-11 21:39:04 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
441
527
|
|
442
528
|
* added spec for FSA::Set
|
443
529
|
|
444
|
-
[123bdaf |
|
530
|
+
[123bdaf | 2009-04-11 21:25:37 UTC] Jayson Vaughn <jayson@onedrop.home>
|
445
531
|
|
446
532
|
* Version Bump to 0.0.10
|
447
533
|
|
448
|
-
[4e6abe7 |
|
534
|
+
[4e6abe7 | 2009-04-11 21:22:12 UTC] Jayson Vaughn <jayson@onedrop.home>
|
449
535
|
|
450
536
|
* Updated README to reflect new api of #set
|
451
537
|
|
452
|
-
[de358d9 |
|
538
|
+
[de358d9 | 2009-04-09 15:45:54 UTC] Jayson Vaughn <jayson@onedrop.home>
|
453
539
|
|
454
540
|
* Changed gem name to all lowercase. Camel case can be annoying
|
455
541
|
|
456
|
-
[f0c6fa4 |
|
542
|
+
[f0c6fa4 | 2009-04-08 20:50:08 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
457
543
|
|
458
544
|
* upped the version to generate a new gem
|
459
545
|
|
460
|
-
[e413b96 |
|
546
|
+
[e413b96 | 2009-04-08 20:46:15 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
461
547
|
|
462
548
|
* added EM dependency to gemspec, updated news
|
463
549
|
|
464
|
-
[0abbdd6 |
|
550
|
+
[0abbdd6 | 2009-04-08 20:37:23 UTC] Jayson Vaughn <jayson@onedrop.home>
|
465
551
|
|
466
552
|
* Changed VERSION
|
467
553
|
|
468
|
-
[b6a8137 |
|
554
|
+
[b6a8137 | 2009-04-08 20:36:59 UTC] Jayson Vaughn <jayson@onedrop.home>
|
469
555
|
|
470
556
|
* Up'd version
|
471
557
|
|
472
|
-
[736a88d |
|
558
|
+
[736a88d | 2009-04-07 13:22:11 UTC] jayson vaughn <jayson@falcon.(none)>
|
473
559
|
|
474
560
|
* Changed FSR::App::Log#initiailize to make sure both parameters have a default setting. Can not have an optional parameter as your first one in Ruby it seems.
|
475
561
|
|
476
562
|
Updated spec/fsr/loading.rb to include FSR::App::Log
|
477
563
|
|
478
|
-
[e253698 |
|
564
|
+
[e253698 | 2009-04-07 18:26:35 UTC] Mikael Bjerkeland <mikael@consoll.no>
|
479
565
|
|
480
566
|
* Set now takes two arguments (like #set in Adhearsion)
|
481
567
|
|
482
|
-
[38181ce |
|
568
|
+
[38181ce | 2009-04-07 18:18:43 UTC] Mikael Bjerkeland <mikael@consoll.no>
|
483
569
|
|
484
570
|
* Added Log functionality to (OES)
|
485
571
|
|
486
572
|
Small documentation change in Set (OES)
|
487
573
|
oes_demo.rb now also demonstrates Log
|
488
574
|
|
489
|
-
[ab2ca12 |
|
575
|
+
[ab2ca12 | 2009-04-07 14:39:02 UTC] Mikael Bjerkeland <mikael@consoll.no>
|
490
576
|
|
491
577
|
* A few more examples
|
492
578
|
|
493
|
-
[c3b2df3 |
|
579
|
+
[c3b2df3 | 2009-04-06 20:25:22 UTC] Jayson Vaughn <jayson@onedrop.home>
|
494
580
|
|
495
581
|
* Updated specs
|
496
582
|
|
497
583
|
|
498
584
|
|
499
|
-
[9e761f9 |
|
585
|
+
[9e761f9 | 2009-04-06 20:47:11 UTC] Mikael Bjerkeland <mikael@consoll.no>
|
500
586
|
|
501
587
|
* Added a few more commands. If anything looks stupid please correct it :-
|
502
588
|
|
503
589
|
|
504
590
|
|
505
|
-
[7ec04a5 |
|
591
|
+
[7ec04a5 | 2009-04-03 19:31:35 UTC] Jayson Vaughn <jayson@onedrop.home>
|
506
592
|
|
507
593
|
* Refactored FSR::Listener::Outbound to be a subclass of
|
508
594
|
|
@@ -515,20 +601,20 @@
|
|
515
601
|
|
516
602
|
*** NOTE session.headers's keys are now symbols! ***
|
517
603
|
|
518
|
-
[00f0919 |
|
604
|
+
[00f0919 | 2009-04-03 18:27:42 UTC] Jayson Vaughn <jayson@onedrop.home>
|
519
605
|
|
520
606
|
* Updated bin/ies_demo.rb and README to show
|
521
607
|
|
522
608
|
|
523
609
|
|
524
|
-
[c1108d7 |
|
610
|
+
[c1108d7 | 2009-04-03 18:14:10 UTC] Jayson Vaughn <jayson@onedrop.home>
|
525
611
|
|
526
612
|
* Playing catchup - Made sure FSR::Listener::Inbound is now a subclass of
|
527
613
|
|
528
614
|
|
529
615
|
Made sure inspired's hook system still works
|
530
616
|
|
531
|
-
[4ac5698 |
|
617
|
+
[4ac5698 | 2009-04-03 17:57:00 UTC] Jayson Vaughn <jayson@onedrop.home>
|
532
618
|
|
533
619
|
* Fixing conflict
|
534
620
|
|
@@ -536,7 +622,7 @@
|
|
536
622
|
bougyman added NEWS
|
537
623
|
inspiried added bin/ies_demo_with_hook.rb
|
538
624
|
|
539
|
-
[86db618 |
|
625
|
+
[86db618 | 2009-04-03 13:37:38 UTC] Jayson Vaughn <jayson@onedrop.home>
|
540
626
|
|
541
627
|
* Changed FSR::Listner::Inbound to be a subclass of
|
542
628
|
|
@@ -547,113 +633,113 @@
|
|
547
633
|
|
548
634
|
Updated README
|
549
635
|
|
550
|
-
[803bfbc |
|
636
|
+
[803bfbc | 2009-03-31 15:49:30 UTC] Jayson Vaughn <jayson@onedrop.home>
|
551
637
|
|
552
638
|
* Added some comments to the code
|
553
639
|
|
554
|
-
[d36c2e0 |
|
640
|
+
[d36c2e0 | 2009-03-31 15:21:44 UTC] Jayson Vaughn <jayson@onedrop.home>
|
555
641
|
|
556
642
|
* Made sure Reply checks for "Control" vs :control
|
557
643
|
|
558
|
-
[08e49f7 |
|
644
|
+
[08e49f7 | 2009-03-31 15:12:38 UTC] Jayson Vaughn <jayson@onedrop.home>
|
559
645
|
|
560
646
|
* Reverted back to using strings as hash keys. This ensures that custom
|
561
647
|
|
562
648
|
|
563
649
|
|
564
|
-
[a698d18 |
|
650
|
+
[a698d18 | 2009-03-31 14:51:24 UTC] Jayson Vaughn <jayson@onedrop.home>
|
565
651
|
|
566
652
|
* Corrected issue, now headers and body hash work with symbols
|
567
653
|
|
568
|
-
[b8cbcb0 |
|
654
|
+
[b8cbcb0 | 2009-03-31 14:45:42 UTC] Jayson Vaughn <jayson@onedrop.home>
|
569
655
|
|
570
656
|
* Trying .to_sym once more in Inbound::Event
|
571
657
|
|
572
|
-
[1a48504 |
|
658
|
+
[1a48504 | 2009-03-31 14:44:12 UTC] Jayson Vaughn <jayson@onedrop.home>
|
573
659
|
|
574
660
|
* Changed back to original
|
575
661
|
|
576
|
-
[7c1d26c |
|
662
|
+
[7c1d26c | 2009-03-31 14:42:36 UTC] Jayson Vaughn <jayson@onedrop.home>
|
577
663
|
|
578
664
|
* typo
|
579
665
|
|
580
|
-
[792311e |
|
666
|
+
[792311e | 2009-03-31 14:36:57 UTC] Jayson Vaughn <jayson@onedrop.home>
|
581
667
|
|
582
668
|
* s/.to.s_gsub/.to_s.gsub/
|
583
669
|
|
584
|
-
[90a757c |
|
670
|
+
[90a757c | 2009-03-31 14:31:28 UTC] Jayson Vaughn <jayson@onedrop.home>
|
585
671
|
|
586
672
|
* Changed FSR::Listener::Inbound::Event to use symbols for hash keys
|
587
673
|
|
588
|
-
[239dba6 |
|
674
|
+
[239dba6 | 2009-03-31 14:28:29 UTC] Jayson Vaughn <jayson@onedrop.home>
|
589
675
|
|
590
676
|
* Updated README and sample bin/oes_demo.rb to reflect changes in headers
|
591
677
|
|
592
678
|
|
593
679
|
|
594
|
-
[7b75019 |
|
680
|
+
[7b75019 | 2009-03-31 14:24:49 UTC] Jayson Vaughn <jayson@onedrop.home>
|
595
681
|
|
596
682
|
* Needed to check against @headers[:control] instead of
|
597
683
|
|
598
684
|
|
599
685
|
|
600
|
-
[bdb5444 |
|
686
|
+
[bdb5444 | 2009-03-31 14:22:06 UTC] Jayson Vaughn <jayson@onedrop.home>
|
601
687
|
|
602
688
|
* Added #to_s to correct bug with value
|
603
689
|
|
604
|
-
[845623a |
|
690
|
+
[845623a | 2009-03-31 14:17:45 UTC] Jayson Vaughn <jayson@onedrop.home>
|
605
691
|
|
606
692
|
* Changed SocketResponse#headers to now use a symbol as the hash key
|
607
693
|
|
608
|
-
[431cd2c |
|
694
|
+
[431cd2c | 2009-03-30 22:05:03 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
609
695
|
|
610
696
|
* Added FSBreak to send a 'break' command during an Outbound Event
|
611
697
|
|
612
698
|
|
613
699
|
|
614
|
-
[cf77986 |
|
700
|
+
[cf77986 | 2009-03-25 21:58:02 UTC] Jayson Vaughn <jayson@onedrop.home>
|
615
701
|
|
616
702
|
* Updated bin/oes_demo.rb and README to correctly describe how to use
|
617
703
|
|
618
704
|
|
619
705
|
|
620
|
-
[ab373dd |
|
706
|
+
[ab373dd | 2009-03-24 00:52:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
621
707
|
|
622
708
|
* Remove cruft from form helper
|
623
709
|
|
624
|
-
[0464d4e |
|
710
|
+
[0464d4e | 2009-03-19 19:17:41 UTC] Jayson Vaughn <jayson@onedrop.home>
|
625
711
|
|
626
712
|
* Updated specs to include new apps
|
627
713
|
|
628
|
-
[045ffe8 |
|
714
|
+
[045ffe8 | 2009-03-12 01:38:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
629
715
|
|
630
716
|
* Update style for auth forms
|
631
717
|
|
632
|
-
[41e87ef |
|
718
|
+
[41e87ef | 2009-03-12 01:33:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
633
719
|
|
634
720
|
* Put the label/input from join/start into a table for nicer listing
|
635
721
|
|
636
|
-
[8815d88 |
|
722
|
+
[8815d88 | 2009-03-12 01:32:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
637
723
|
|
638
724
|
* Add auth related links to layout
|
639
725
|
|
640
|
-
[abd4506 |
|
726
|
+
[abd4506 | 2009-03-12 01:32:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
641
727
|
|
642
728
|
* Fix two minor issues
|
643
729
|
|
644
|
-
[c15f39d |
|
730
|
+
[c15f39d | 2009-03-12 01:31:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
645
731
|
|
646
732
|
* Refactor MainController a bit and suggest alternate random conference id generation
|
647
733
|
|
648
|
-
[d2d42f6 |
|
734
|
+
[d2d42f6 | 2009-03-12 01:31:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
649
735
|
|
650
736
|
* Finish up auth, still needs some testing for openid and a profile page
|
651
737
|
|
652
|
-
[04bff23 |
|
738
|
+
[04bff23 | 2009-03-07 15:07:35 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
653
739
|
|
654
740
|
* removed contrib from the gemspec, unneeded. JV added a bunch of applications
|
655
741
|
|
656
|
-
[1cf0e5a |
|
742
|
+
[1cf0e5a | 2009-03-04 22:29:20 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
657
743
|
|
658
744
|
* Abstracted how to start listeners.
|
659
745
|
|
@@ -663,75 +749,75 @@
|
|
663
749
|
* changed default log level to Logger::INFO
|
664
750
|
* Updated README
|
665
751
|
|
666
|
-
[c525445 |
|
752
|
+
[c525445 | 2009-03-04 21:30:24 UTC] Jayson Vaughn <jayson@onedrop.(none)>
|
667
753
|
|
668
754
|
* added some String#strip magic
|
669
755
|
|
670
|
-
[b8d70b7 |
|
756
|
+
[b8d70b7 | 2009-02-25 22:49:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
671
757
|
|
672
758
|
* Fix some stuff around auth, needs more
|
673
759
|
|
674
|
-
[e9ef028 |
|
760
|
+
[e9ef028 | 2009-02-25 22:41:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
675
761
|
|
676
762
|
* Remove the model/account
|
677
763
|
|
678
|
-
[88f58f8 |
|
764
|
+
[88f58f8 | 2009-02-25 22:39:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
679
765
|
|
680
766
|
* Default engine is Haml
|
681
767
|
|
682
|
-
[f41c42b |
|
768
|
+
[f41c42b | 2009-02-25 04:27:45 UTC] bougyman <bougyman@Esther.(none)>
|
683
769
|
|
684
770
|
* fixed FreeSWITCHeR link
|
685
771
|
|
686
|
-
[bfd7482 |
|
772
|
+
[bfd7482 | 2009-02-25 04:16:12 UTC] bougyman <bougyman@Esther.(none)>
|
687
773
|
|
688
774
|
* changed spec to match new 30 second default timeout
|
689
775
|
|
690
|
-
[033cb6b |
|
776
|
+
[033cb6b | 2009-02-25 04:12:44 UTC] bougyman <bougyman@Esther.(none)>
|
691
777
|
|
692
778
|
* wrapped user-supplied vars in h(), moved conference logic into model/conference.rb
|
693
779
|
|
694
|
-
[f55194b |
|
780
|
+
[f55194b | 2009-02-25 18:31:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
695
781
|
|
696
782
|
* A little cleanup
|
697
783
|
|
698
|
-
[d1c5fc0 |
|
784
|
+
[d1c5fc0 | 2009-02-25 18:30:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
699
785
|
|
700
786
|
* Rough cut of auth system
|
701
787
|
|
702
|
-
[fe4e9e8 |
|
788
|
+
[fe4e9e8 | 2009-02-25 03:27:42 UTC] bougyman <bougyman@Esther.(none)>
|
703
789
|
|
704
790
|
* Use 8k (default) conferences instead of 32kHz. Make link show up in joined_conference view (style.css change)
|
705
791
|
|
706
|
-
[74bb49a |
|
792
|
+
[74bb49a | 2009-02-25 02:49:31 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
707
793
|
|
708
794
|
* make sure ignore_early_media has a default (true)
|
709
795
|
|
710
|
-
[d18c622 |
|
796
|
+
[d18c622 | 2009-02-25 02:42:49 UTC] bougyman <bougyman@Esther.(none)>
|
711
797
|
|
712
798
|
* corrected the legend
|
713
799
|
|
714
|
-
[b243a82 |
|
800
|
+
[b243a82 | 2009-02-25 02:31:51 UTC] bougyman <bougyman@Esther.(none)>
|
715
801
|
|
716
802
|
* added call control legend to conference_joined view
|
717
803
|
|
718
|
-
[55dfdae |
|
804
|
+
[55dfdae | 2009-02-24 21:11:46 UTC] bougyman <bougyman@Esther.(none)>
|
719
805
|
|
720
806
|
* removed unneeded index file
|
721
807
|
|
722
|
-
[1127bbb |
|
808
|
+
[1127bbb | 2009-02-24 21:11:27 UTC] bougyman <bougyman@Esther.(none)>
|
723
809
|
|
724
810
|
* added a gitignore for ride in the sample app
|
725
811
|
|
726
|
-
[c053826 |
|
812
|
+
[c053826 | 2009-02-24 21:09:12 UTC] bougyman <bougyman@Esther.(none)>
|
727
813
|
|
728
814
|
* got sample app deployed and fixed a couple bugs
|
729
815
|
|
730
|
-
[e2a64eb |
|
816
|
+
[e2a64eb | 2009-02-24 18:49:34 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
731
817
|
|
732
818
|
* added a little sample app, will be confme.com
|
733
819
|
|
734
|
-
[f971037 |
|
820
|
+
[f971037 | 2009-02-24 18:11:05 UTC] Jayson Vaughn <jayson@onedrop.home>
|
735
821
|
|
736
822
|
* Moved FSR::Event to FSR::Listener::Inbound::Event namespace
|
737
823
|
|
@@ -739,11 +825,11 @@
|
|
739
825
|
* Added specs for FSR::Listener::Inbound
|
740
826
|
* Updated bin/ies_demo.rb with on_event hook
|
741
827
|
|
742
|
-
[05a7acc |
|
828
|
+
[05a7acc | 2009-02-24 17:59:39 UTC] Jayson Vaughn <jayson@onedrop.home>
|
743
829
|
|
744
830
|
* change ies_demo.rb to default to localhost
|
745
831
|
|
746
|
-
[f1987ab |
|
832
|
+
[f1987ab | 2009-02-24 17:57:16 UTC] Jayson Vaughn <jayson@onedrop.home>
|
747
833
|
|
748
834
|
* Started work on FSR::Listener::Inbound
|
749
835
|
|
@@ -753,38 +839,38 @@
|
|
753
839
|
* namesspace FSR::Listener::Inbound::Event
|
754
840
|
* Created bin/ies_demo.rb to demo how to use the refactor
|
755
841
|
|
756
|
-
[bd15285 |
|
842
|
+
[bd15285 | 2009-02-24 14:52:17 UTC] U-Paul-PC\Paul <Paul@Paul-PC.(none)>
|
757
843
|
|
758
844
|
* Make specs work in Win32. No pretty green colors, though. :(
|
759
845
|
|
760
|
-
[d9ee68e |
|
846
|
+
[d9ee68e | 2009-02-23 02:21:56 UTC] Kevin Berry <kevin@opensourcealchemist.com>
|
761
847
|
|
762
848
|
* Version 0.0.4:
|
763
849
|
|
764
850
|
* functionality can still be used.
|
765
851
|
|
766
|
-
[52a9570 |
|
852
|
+
[52a9570 | 2009-02-23 01:12:51 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
767
853
|
|
768
854
|
* updated version to get a new GH gem
|
769
855
|
|
770
|
-
[21e0ea5 |
|
856
|
+
[21e0ea5 | 2009-02-22 19:03:09 UTC] Jayson Vaughn <jayson@onedrop.home>
|
771
857
|
|
772
858
|
* Modified bin/oes_demo.rb to use session_initiated method instead of
|
773
859
|
|
774
860
|
|
775
861
|
Removed on_call alias from FSR::Listener::Outbound
|
776
862
|
|
777
|
-
[0257bcc |
|
863
|
+
[0257bcc | 2009-02-23 00:51:20 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
778
864
|
|
779
865
|
* fixed spec
|
780
866
|
|
781
|
-
[8df4a28 |
|
867
|
+
[8df4a28 | 2009-02-22 18:45:01 UTC] Jayson Vaughn <jayson@onedrop.home>
|
782
868
|
|
783
869
|
* Added a test to ensure on_call is always called after a session is
|
784
870
|
|
785
871
|
|
786
872
|
|
787
|
-
[1300fbe |
|
873
|
+
[1300fbe | 2009-02-23 00:39:00 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
788
874
|
|
789
875
|
* Made all FSR::App classes have an #arguments array
|
790
876
|
|
@@ -794,11 +880,11 @@
|
|
794
880
|
* Removed the #caller test in Application#to_s, now defaults to
|
795
881
|
#sendmsg
|
796
882
|
|
797
|
-
[5f152a3 |
|
883
|
+
[5f152a3 | 2009-02-22 19:12:05 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
798
884
|
|
799
885
|
* fixed the else side of data handling to be the same as the if side
|
800
886
|
|
801
|
-
[0827e9f |
|
887
|
+
[0827e9f | 2009-02-22 19:05:36 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
802
888
|
|
803
889
|
* Fixed receive_data to be able to handle incomlete responses/lines
|
804
890
|
|
@@ -806,24 +892,24 @@
|
|
806
892
|
parsing any data received
|
807
893
|
* Added specs for testing this case
|
808
894
|
|
809
|
-
[fb5ec1e |
|
895
|
+
[fb5ec1e | 2009-02-22 18:39:06 UTC] Jayson Vaughn <jayson@onedrop.home>
|
810
896
|
|
811
897
|
* Added spec to make sure "on_call" hook is called after a session is
|
812
898
|
|
813
899
|
|
814
900
|
|
815
|
-
[0fc1d6d |
|
901
|
+
[0fc1d6d | 2009-02-22 17:42:11 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
816
902
|
|
817
903
|
* added a check of the @data array on a Command Reply to the outbound spec
|
818
904
|
|
819
|
-
[f5c5931 |
|
905
|
+
[f5c5931 | 2009-02-22 17:37:58 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
820
906
|
|
821
907
|
* Made Session more specific, changed @data to an array.
|
822
908
|
|
823
909
|
* Fixed bug where new session headers were not being added to @headers
|
824
910
|
* Modified specs to use more of the bacon dsl and fewer == test
|
825
911
|
|
826
|
-
[7461cbc |
|
912
|
+
[7461cbc | 2009-02-22 16:32:30 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
827
913
|
|
828
914
|
* Made CommandReply instances an array instance variable on Session
|
829
915
|
|
@@ -833,7 +919,7 @@
|
|
833
919
|
fire on #initiated? Sessions or a Session getting a #complete? reply
|
834
920
|
* TODO #complete? needs logic to decide whether or not it's complete
|
835
921
|
|
836
|
-
[c516f24 |
|
922
|
+
[c516f24 | 2009-02-22 16:04:22 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
837
923
|
|
838
924
|
* Modified outbound to know less about Session, made Session more
|
839
925
|
|
@@ -844,11 +930,11 @@
|
|
844
930
|
case it's split across receive_data calls
|
845
931
|
* Rewrote Outbond spec to check for a valid Session
|
846
932
|
|
847
|
-
[2fd2d22 |
|
933
|
+
[2fd2d22 | 2009-02-22 01:06:23 UTC] Jayson Vaughn <jayson@onedrop.home>
|
848
934
|
|
849
935
|
* Added more comments explaining outbound.rb
|
850
936
|
|
851
|
-
[7bf1a6f |
|
937
|
+
[7bf1a6f | 2009-02-22 00:53:24 UTC] Jayson Vaughn <jayson@onedrop.home>
|
852
938
|
|
853
939
|
* Heavy Refactor of FSR::Listener::Outbound
|
854
940
|
|
@@ -861,19 +947,19 @@
|
|
861
947
|
TODO: Now that we can chain multipule commands, need to work in
|
862
948
|
responses to commands so we can peform condition logic
|
863
949
|
|
864
|
-
[b6c51f5 |
|
950
|
+
[b6c51f5 | 2009-02-21 17:53:13 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
865
951
|
|
866
952
|
* a little magic to get the proper string, based on sendmsg being in the caller stack
|
867
953
|
|
868
|
-
[767cfb2 |
|
954
|
+
[767cfb2 | 2009-02-20 23:27:59 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
869
955
|
|
870
956
|
* ignore the .gemspec.erb file in spec_files for gem building
|
871
957
|
|
872
|
-
[412e65a |
|
958
|
+
[412e65a | 2009-02-20 23:14:54 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
873
959
|
|
874
960
|
* Removed the gemspec.erb from the spec.files list
|
875
961
|
|
876
|
-
[6c8d46a |
|
962
|
+
[6c8d46a | 2009-02-20 23:11:23 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
877
963
|
|
878
964
|
* Added rake tasks for package building
|
879
965
|
|
@@ -882,23 +968,23 @@
|
|
882
968
|
to built a compliant gemspec
|
883
969
|
* Added FSR::VERSION constant to keep track of current version
|
884
970
|
|
885
|
-
[0fcc86f |
|
971
|
+
[0fcc86f | 2009-02-20 22:21:07 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
886
972
|
|
887
973
|
* bumped version number to try and force a GH gem build
|
888
974
|
|
889
|
-
[9b7dc90 |
|
975
|
+
[9b7dc90 | 2009-02-20 22:14:58 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
890
976
|
|
891
977
|
* renamed gemspec so GH builds the gem
|
892
978
|
|
893
|
-
[444ed09 |
|
979
|
+
[444ed09 | 2009-02-20 22:14:26 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
894
980
|
|
895
981
|
* did not need gem in tree, GH builds on-the-fly from .gemspec
|
896
982
|
|
897
|
-
[b2565a7 |
|
983
|
+
[b2565a7 | 2009-02-20 22:10:32 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
898
984
|
|
899
985
|
* Renamed demo listener
|
900
986
|
|
901
|
-
[1ef570b |
|
987
|
+
[1ef570b | 2009-02-20 22:08:37 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
902
988
|
|
903
989
|
* First gem release, added minor docs to README
|
904
990
|
|
@@ -907,7 +993,7 @@
|
|
907
993
|
* Added docs to README
|
908
994
|
* Include current version gem in pkg/ for GH
|
909
995
|
|
910
|
-
[38c8615 |
|
996
|
+
[38c8615 | 2009-02-20 21:12:10 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
911
997
|
|
912
998
|
* Added specs for FSR::Listener::Outbound, removed unused methods from FSR::Listener
|
913
999
|
|
@@ -916,7 +1002,7 @@
|
|
916
1002
|
FSR::Listener::Outbound::CommandReply
|
917
1003
|
* Added new Top-Level constant FSL which references FSR::Listener.
|
918
1004
|
|
919
|
-
[575455a |
|
1005
|
+
[575455a | 2009-02-20 17:27:32 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
920
1006
|
|
921
1007
|
* Refactored FSR::Listener::Outbound, now a module instead of a class
|
922
1008
|
|
@@ -928,15 +1014,15 @@
|
|
928
1014
|
session_initiated(FSR::Listener::Outbound::Session.new) and
|
929
1015
|
command_reply(FSR::Listener::Outbound::CommandReply.new)
|
930
1016
|
|
931
|
-
[a1a7a5a |
|
1017
|
+
[a1a7a5a | 2009-02-20 15:58:24 UTC] bougyman <bougyman@jimmy.nationwide-recovery.com>
|
932
1018
|
|
933
1019
|
* fixed error when no freeswitch install is available
|
934
1020
|
|
935
|
-
[99f328d |
|
1021
|
+
[99f328d | 2009-02-19 23:09:22 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
936
1022
|
|
937
1023
|
* this commit breaks everything done thus far. have fun
|
938
1024
|
|
939
|
-
[22023cc |
|
1025
|
+
[22023cc | 2009-02-18 23:28:32 UTC] Jayson Vaughn <jayson@onedrop.home>
|
940
1026
|
|
941
1027
|
* Changed Listener base class to a subclass of EventMachine::Connection
|
942
1028
|
|
@@ -944,38 +1030,38 @@
|
|
944
1030
|
every new connection
|
945
1031
|
* Created simple bin/oes_listener.rb to test new class
|
946
1032
|
|
947
|
-
[1cb04d1 |
|
1033
|
+
[1cb04d1 | 2009-02-18 19:50:34 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
948
1034
|
|
949
1035
|
* added FSC and FSA top-level constants, pointing to FSR::App and FSR::Cmd
|
950
1036
|
|
951
|
-
[7c68537 |
|
1037
|
+
[7c68537 | 2009-02-19 08:09:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
952
1038
|
|
953
1039
|
* Add FSR::Listener
|
954
1040
|
|
955
|
-
[45984f9 |
|
1041
|
+
[45984f9 | 2009-02-18 01:38:34 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
956
1042
|
|
957
1043
|
* added homepage ref in README
|
958
1044
|
|
959
|
-
[5796a3a |
|
1045
|
+
[5796a3a | 2009-02-18 01:37:13 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
960
1046
|
|
961
1047
|
* fixed specs to not care about the order of the array, but still only allow commands if they are in the expected command/application set
|
962
1048
|
|
963
|
-
[af4cda9 |
|
1049
|
+
[af4cda9 | 2009-02-17 19:45:53 UTC] Kevin Berry <kevin@opensourcealchemist.com>
|
964
1050
|
|
965
1051
|
* Add MIT License.
|
966
1052
|
|
967
|
-
[36a1227 |
|
1053
|
+
[36a1227 | 2009-02-17 19:19:54 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
968
1054
|
|
969
1055
|
* removed necessity of local freeswitch install, now gives warning when not running on a machine with a local freeswitch running
|
970
1056
|
|
971
|
-
[f5b17ca |
|
1057
|
+
[f5b17ca | 2009-02-17 18:01:27 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
972
1058
|
|
973
1059
|
* Moved FSR::Cmd::Sofia::Profile specs to it's own file
|
974
1060
|
|
975
1061
|
|
976
1062
|
Updated specs to reflect new options hash
|
977
1063
|
|
978
|
-
[d87d69d |
|
1064
|
+
[d87d69d | 2009-02-17 17:44:26 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
979
1065
|
|
980
1066
|
* Added class level commands to profile and more argument type handling
|
981
1067
|
|
@@ -984,13 +1070,13 @@
|
|
984
1070
|
* Sofia.new.profile(arguments) still works with a string, but now
|
985
1071
|
also accepts an options hash {:action => :start, :name => "foo"}
|
986
1072
|
|
987
|
-
[ace59a6 |
|
1073
|
+
[ace59a6 | 2009-02-17 16:46:47 UTC] Jayson Vaughn <jayson@onedrop.home>
|
988
1074
|
|
989
1075
|
* Refactored profile so that start, stop, etc just create
|
990
1076
|
|
991
1077
|
|
992
1078
|
|
993
|
-
[b057b46 |
|
1079
|
+
[b057b46 | 2009-02-17 00:40:36 UTC] Jayson Vaughn <jayson@onedrop.home>
|
994
1080
|
|
995
1081
|
* Refactored FSR::Cmd::Sofia::Profile and updated specs
|
996
1082
|
|
@@ -1002,7 +1088,7 @@
|
|
1002
1088
|
sofia.profile.stop("internal").raw
|
1003
1089
|
=> "sofia profile internal stop"
|
1004
1090
|
|
1005
|
-
[4308560 |
|
1091
|
+
[4308560 | 2009-02-16 23:16:00 UTC] Jayson Vaughn <jayson@onedrop.home>
|
1006
1092
|
|
1007
1093
|
* Added FSR::Cmd::Sofia::Profile
|
1008
1094
|
|
@@ -1013,7 +1099,7 @@
|
|
1013
1099
|
|
1014
1100
|
Updated spec/cmd/sofia.rb to test Sofia::Profile
|
1015
1101
|
|
1016
|
-
[1e03eba |
|
1102
|
+
[1e03eba | 2009-02-16 22:14:30 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1017
1103
|
|
1018
1104
|
* Added App::Fifo and specs for it
|
1019
1105
|
|
@@ -1021,22 +1107,22 @@
|
|
1021
1107
|
* Fifo << "myqueue" shortcut for Fifo.new("myqueue", "in")
|
1022
1108
|
* Fifo >> "myqueue" shortcut for Fifo.new("myqueue", "out", :wait => false)
|
1023
1109
|
|
1024
|
-
[a8fe3d7 |
|
1110
|
+
[a8fe3d7 | 2009-02-16 19:01:22 UTC] Jayson Vaughn <jayson@onedrop.home>
|
1025
1111
|
|
1026
1112
|
* Added specs for FSR::Cmd::Sofia
|
1027
1113
|
|
1028
|
-
[0c2a106 |
|
1114
|
+
[0c2a106 | 2009-02-16 18:52:24 UTC] Jayson Vaughn <jayson@onedrop.home>
|
1029
1115
|
|
1030
1116
|
* Added spec for cmd/orignate.rb
|
1031
1117
|
|
1032
1118
|
Changed Originate#raw to sort the keys on target options before adding
|
1033
1119
|
them to command. This ensures we can test on raw
|
1034
1120
|
|
1035
|
-
[55bf869 |
|
1121
|
+
[55bf869 | 2009-02-16 18:29:16 UTC] Kevin Berry <kevin@opensourcealchemist.com>
|
1036
1122
|
|
1037
1123
|
* Get better error messages for FS root path issues.
|
1038
1124
|
|
1039
|
-
[b368c5b |
|
1125
|
+
[b368c5b | 2009-02-16 18:08:34 UTC] Jayson Vaughn <jayson@onedrop.home>
|
1040
1126
|
|
1041
1127
|
* Refactored sofia command to use composition for it's features
|
1042
1128
|
|
@@ -1049,15 +1135,15 @@
|
|
1049
1135
|
|
1050
1136
|
TODO: Need to add cmd/sofia/profile.rb
|
1051
1137
|
|
1052
|
-
[33e3bc7 |
|
1138
|
+
[33e3bc7 | 2009-02-16 16:54:31 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1053
1139
|
|
1054
1140
|
* better handling of caller_id
|
1055
1141
|
|
1056
|
-
[b0e4442 |
|
1142
|
+
[b0e4442 | 2009-02-17 07:41:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1057
1143
|
|
1058
1144
|
* FSR::FakeSocket - to be adapted as we need it
|
1059
1145
|
|
1060
|
-
[0405b64 |
|
1146
|
+
[0405b64 | 2009-02-16 14:59:22 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1061
1147
|
|
1062
1148
|
* Removed fs_socket requirement from commands, refactored Cmd::Originate
|
1063
1149
|
|
@@ -1068,17 +1154,17 @@
|
|
1068
1154
|
a typecheck determines whether endpoint is an App and runs #raw, or
|
1069
1155
|
a string and just sends the string
|
1070
1156
|
|
1071
|
-
[32ba63e |
|
1157
|
+
[32ba63e | 2009-02-16 17:06:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1072
1158
|
|
1073
1159
|
* A little bit nicer specs
|
1074
1160
|
|
1075
|
-
[3373217 |
|
1161
|
+
[3373217 | 2009-02-15 22:04:14 UTC] Jayson Vaughn <jayson@onedrop.home>
|
1076
1162
|
|
1077
1163
|
* Added a check for args[:status] parameter to ensure it is either
|
1078
1164
|
|
1079
1165
|
|
1080
1166
|
|
1081
|
-
[d72c6c0 |
|
1167
|
+
[d72c6c0 | 2009-02-15 21:50:57 UTC] Jayson Vaughn <jayson@onedrop.home>
|
1082
1168
|
|
1083
1169
|
* Created FSR::Cmd::Sofia
|
1084
1170
|
|
@@ -1090,27 +1176,27 @@
|
|
1090
1176
|
TODO: Need to add "sofia profile" command
|
1091
1177
|
Need to add "sofia status" stand alone
|
1092
1178
|
|
1093
|
-
[43fccce |
|
1179
|
+
[43fccce | 2009-02-15 15:51:35 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1094
1180
|
|
1095
1181
|
* * Added specs for a simple application - FSR::App::Conference
|
1096
1182
|
|
1097
1183
|
* Added convenience method FSR::App::Conference[conf_spec]
|
1098
1184
|
|
1099
|
-
[f703128 |
|
1185
|
+
[f703128 | 2009-02-15 15:14:27 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1100
1186
|
|
1101
1187
|
* a decent view of the tree from ride-console, use with
|
1102
1188
|
|
1103
1189
|
|
1104
1190
|
|
1105
|
-
[818d52b |
|
1191
|
+
[818d52b | 2009-02-15 15:14:27 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1106
1192
|
|
1107
1193
|
* a decent view of the tree from ride-console
|
1108
1194
|
|
1109
|
-
[00cfbd6 |
|
1195
|
+
[00cfbd6 | 2009-02-15 15:08:56 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1110
1196
|
|
1111
1197
|
* fixed some straggling old-namespace files that were missed in the namespace refactor
|
1112
1198
|
|
1113
|
-
[4ccf214 |
|
1199
|
+
[4ccf214 | 2009-02-15 14:58:06 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1114
1200
|
|
1115
1201
|
* * Added rakefile (from rasta) which includes everything in tasks/
|
1116
1202
|
|
@@ -1118,7 +1204,7 @@
|
|
1118
1204
|
* Added some info output to spec/helper when they don't have bacon
|
1119
1205
|
(TODO: add link for bacon source)
|
1120
1206
|
|
1121
|
-
[0a6dc32 |
|
1207
|
+
[0a6dc32 | 2009-02-15 14:33:07 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1122
1208
|
|
1123
1209
|
* * Refactored to shorten/clean namespaces
|
1124
1210
|
|
@@ -1127,77 +1213,77 @@
|
|
1127
1213
|
* Note the spec/fsr/loading.rb, it must be maintained as new apps or
|
1128
1214
|
commands are added
|
1129
1215
|
|
1130
|
-
[907d642 |
|
1216
|
+
[907d642 | 2009-02-16 04:54:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1131
1217
|
|
1132
1218
|
* Require spec/helper and use subdir
|
1133
1219
|
|
1134
|
-
[1efbd6d |
|
1220
|
+
[1efbd6d | 2009-02-15 13:53:27 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1135
1221
|
|
1136
1222
|
* un-did the lazy rubygems require
|
1137
1223
|
|
1138
|
-
[2c4e101 |
|
1224
|
+
[2c4e101 | 2009-02-15 13:49:57 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1139
1225
|
|
1140
1226
|
* added rubygems requirement
|
1141
1227
|
|
1142
|
-
[1f5fd24 |
|
1228
|
+
[1f5fd24 | 2009-02-15 13:46:16 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1143
1229
|
|
1144
1230
|
* added spec for a couple fsR module methods
|
1145
1231
|
|
1146
|
-
[6351bab |
|
1232
|
+
[6351bab | 2009-02-16 04:33:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1147
1233
|
|
1148
1234
|
* Require freeswitcher in spec/helper
|
1149
1235
|
|
1150
|
-
[66510ae |
|
1236
|
+
[66510ae | 2009-02-16 04:31:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1151
1237
|
|
1152
1238
|
* Add spec/helper.rb
|
1153
1239
|
|
1154
|
-
[a3f373d |
|
1240
|
+
[a3f373d | 2009-02-16 04:30:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1155
1241
|
|
1156
1242
|
* support absolute paths and load all applications
|
1157
1243
|
|
1158
|
-
[fb2d4ab |
|
1244
|
+
[fb2d4ab | 2009-02-15 13:01:58 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1159
1245
|
|
1160
1246
|
* added conference application, fixed originate when you send an extension instead of application (target_opts)
|
1161
1247
|
|
1162
|
-
[0ec0026 |
|
1248
|
+
[0ec0026 | 2009-02-16 02:36:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1163
1249
|
|
1164
1250
|
* Some more refactoring
|
1165
1251
|
|
1166
|
-
[fc399cb |
|
1252
|
+
[fc399cb | 2009-02-15 22:14:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1167
1253
|
|
1168
1254
|
* Start using Pathname
|
1169
1255
|
|
1170
|
-
[70b57a3 |
|
1256
|
+
[70b57a3 | 2009-02-15 21:03:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1171
1257
|
|
1172
1258
|
* Remove (null).rb
|
1173
1259
|
|
1174
|
-
[34421cd |
|
1260
|
+
[34421cd | 2009-02-15 20:57:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1175
1261
|
|
1176
1262
|
* Easier load methods
|
1177
1263
|
|
1178
|
-
[89a7ba5 |
|
1264
|
+
[89a7ba5 | 2009-02-15 05:38:59 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1179
1265
|
|
1180
1266
|
* * Added Applications module, mimicks Commands module, for
|
1181
1267
|
|
1182
1268
|
* Refactored Originate to use an Application class
|
1183
1269
|
|
1184
|
-
[a02c9a3 |
|
1270
|
+
[a02c9a3 | 2009-02-14 22:29:45 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1185
1271
|
|
1186
1272
|
* renamed #command_text to #raw, shorter and sweeter (thedonvaughn suggestion)
|
1187
1273
|
|
1188
|
-
[63762c9 |
|
1274
|
+
[63762c9 | 2009-02-14 22:27:36 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1189
1275
|
|
1190
1276
|
* woops, messed up the conf and db paths, fixed
|
1191
1277
|
|
1192
|
-
[49c8bf5 |
|
1278
|
+
[49c8bf5 | 2009-02-14 22:21:17 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1193
1279
|
|
1194
1280
|
* added a search for the freeswitch install in FS_INTSALL_PATHS to figure out where freeswitch is installed
|
1195
1281
|
|
1196
|
-
[d953804 |
|
1282
|
+
[d953804 | 2009-02-14 22:12:32 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1197
1283
|
|
1198
1284
|
* changed FS_ROOT to standard /usr/local/freeswitch location
|
1199
1285
|
|
1200
|
-
[9804dfb |
|
1286
|
+
[9804dfb | 2009-02-14 21:13:04 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1201
1287
|
|
1202
1288
|
* * Refactored originate to more closely model FS originate,
|
1203
1289
|
|
@@ -1205,15 +1291,15 @@
|
|
1205
1291
|
* Made command_text its own method, so run only sends the command_text
|
1206
1292
|
return string to the fs event socket
|
1207
1293
|
|
1208
|
-
[8ae592b |
|
1294
|
+
[8ae592b | 2009-02-14 17:41:39 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1209
1295
|
|
1210
1296
|
* added defaults to FreeSwitcher callerid and such
|
1211
1297
|
|
1212
|
-
[8797be8 |
|
1298
|
+
[8797be8 | 2009-02-14 17:22:31 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1213
1299
|
|
1214
1300
|
* pulled duplicated code for setting table name
|
1215
1301
|
|
1216
|
-
[d0994c7 |
|
1302
|
+
[d0994c7 | 2009-02-14 17:16:27 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1217
1303
|
|
1218
1304
|
* * Began mapping of Free Switch database
|
1219
1305
|
|
@@ -1231,7 +1317,7 @@
|
|
1231
1317
|
irb(main):003:0> FreeSwitcher::Database::Core::Complete.all.size
|
1232
1318
|
=> 51
|
1233
1319
|
|
1234
|
-
[9644f6f |
|
1320
|
+
[9644f6f | 2009-02-14 16:05:35 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1235
1321
|
|
1236
1322
|
* * db/init is meant to initialize the db, had to sort out permissions on
|
1237
1323
|
|
@@ -1261,19 +1347,19 @@
|
|
1261
1347
|
D, [2009-02-14T10:11:38.093333 #4123] DEBUG -- : saying bgapi originate {ignore_early_media=true,origination_timeout=15}sofia/gateway/carlos/6666 &bridge(user/bougyman)
|
1262
1348
|
=> {"Job-UUID"=>"b2677f8a-9ba7-42f6-9422-65f09b9c3762", "body"=>"", "Content-Type"=>"command/reply", "Reply-Text"=>"+OK Job-UUID: b2677f8a-9ba7-42f6-9422-65f09b9c3762"}
|
1263
1349
|
|
1264
|
-
[e120547 |
|
1350
|
+
[e120547 | 2009-02-14 02:47:46 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1265
1351
|
|
1266
1352
|
* New Command structure
|
1267
1353
|
|
1268
|
-
[b5cc476 |
|
1354
|
+
[b5cc476 | 2009-02-14 02:21:07 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1269
1355
|
|
1270
1356
|
* Adding FreeSwitcher::Log
|
1271
1357
|
|
1272
|
-
[e93e462 |
|
1358
|
+
[e93e462 | 2009-02-14 02:20:14 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1273
1359
|
|
1274
1360
|
* Move InboundEventSocket to CommandSocket
|
1275
1361
|
|
1276
|
-
[bc83ac5 |
|
1362
|
+
[bc83ac5 | 2009-02-13 18:20:22 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1277
1363
|
|
1278
1364
|
* * Changed order of default requires to put commands last
|
1279
1365
|
|
@@ -1281,92 +1367,92 @@
|
|
1281
1367
|
Originate
|
1282
1368
|
* Renamed the 'send' method to 'say' in EventSocket for clarity
|
1283
1369
|
|
1284
|
-
[154e909 |
|
1370
|
+
[154e909 | 2009-02-12 22:36:25 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1285
1371
|
|
1286
1372
|
* refactored includes so they load properly. rewrote FreeSwitcher::Commands.register and .list
|
1287
1373
|
|
1288
|
-
[1c8a642 |
|
1374
|
+
[1c8a642 | 2009-02-12 17:28:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1289
1375
|
|
1290
1376
|
* Clean up lib/ a bit
|
1291
1377
|
|
1292
|
-
[2416d4b |
|
1378
|
+
[2416d4b | 2009-02-12 01:15:22 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1293
1379
|
|
1294
1380
|
* renamed method to include all of its functionality
|
1295
1381
|
|
1296
|
-
[290dcc6 |
|
1382
|
+
[290dcc6 | 2009-02-12 01:11:56 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1297
1383
|
|
1298
1384
|
* finished parsing in EventSocket without sending to Event.from
|
1299
1385
|
|
1300
|
-
[068f7f3 |
|
1386
|
+
[068f7f3 | 2009-02-12 00:23:09 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
1301
1387
|
|
1302
1388
|
* Return the body, not just the header in event_socket.rb
|
1303
1389
|
|
1304
|
-
[66ccf4f |
|
1390
|
+
[66ccf4f | 2009-02-11 22:21:05 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
1305
1391
|
|
1306
1392
|
* removed web branch
|
1307
1393
|
|
1308
|
-
[3223431 |
|
1394
|
+
[3223431 | 2009-02-11 21:44:54 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1309
1395
|
|
1310
1396
|
* removed irb history file, added full path spec to library includes
|
1311
1397
|
|
1312
|
-
[b889e58 |
|
1398
|
+
[b889e58 | 2009-02-11 21:44:18 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1313
1399
|
|
1314
1400
|
* removed irb history file, added full path spec to library includes
|
1315
1401
|
|
1316
|
-
[c3798a1 |
|
1402
|
+
[c3798a1 | 2009-02-11 21:28:49 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1317
1403
|
|
1318
1404
|
* added fully qualified path to the require of event
|
1319
1405
|
|
1320
|
-
[ef29cea |
|
1406
|
+
[ef29cea | 2009-02-11 21:16:06 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1321
1407
|
|
1322
1408
|
* removed the rest of ride
|
1323
1409
|
|
1324
|
-
[6102073 |
|
1410
|
+
[6102073 | 2009-02-11 21:15:18 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1325
1411
|
|
1326
1412
|
* removed ride from tree
|
1327
1413
|
|
1328
|
-
[8cdd8f1 |
|
1414
|
+
[8cdd8f1 | 2009-02-11 21:13:51 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1329
1415
|
|
1330
1416
|
* unneded ride files
|
1331
1417
|
|
1332
|
-
[b01400e |
|
1418
|
+
[b01400e | 2009-02-11 21:11:44 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1333
1419
|
|
1334
1420
|
* should not have been in the tree
|
1335
1421
|
|
1336
|
-
[b712888 |
|
1422
|
+
[b712888 | 2009-02-11 21:11:07 UTC] bougyman <bougyman@hellspass.nationwide-recovery.com>
|
1337
1423
|
|
1338
1424
|
* Added ramaze tree to hold configurator and sequel models
|
1339
1425
|
|
1340
|
-
[cfe4d14 |
|
1426
|
+
[cfe4d14 | 2009-02-11 01:10:27 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
1341
1427
|
|
1342
1428
|
* s/return_result/response
|
1343
1429
|
|
1344
|
-
[9304554 |
|
1430
|
+
[9304554 | 2009-02-11 01:00:07 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
1345
1431
|
|
1346
1432
|
* Moved FreeSwitcher::Event into lib
|
1347
1433
|
|
1348
1434
|
Created FreeSwitcher::EventSocket base class
|
1349
1435
|
Created FreeSwitcher::InboundEventSocket
|
1350
1436
|
|
1351
|
-
[2f31803 |
|
1437
|
+
[2f31803 | 2009-02-09 18:11:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1352
1438
|
|
1353
1439
|
* More EM, no Threads
|
1354
1440
|
|
1355
|
-
[8f20e9c |
|
1441
|
+
[8f20e9c | 2009-02-09 00:57:08 UTC] Jayson Vaughn <vaughn.jayson@gmail.com>
|
1356
1442
|
|
1357
1443
|
* Added a controller on port 9000. Anything you send to port 9000 will be
|
1358
1444
|
|
1359
1445
|
|
1360
1446
|
|
1361
|
-
[303a136 |
|
1447
|
+
[303a136 | 2009-02-09 06:42:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1362
1448
|
|
1363
1449
|
* s/Response/Event/
|
1364
1450
|
|
1365
|
-
[71fc503 |
|
1451
|
+
[71fc503 | 2009-02-09 06:35:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1366
1452
|
|
1367
1453
|
* Initial bin/freeswitcher
|
1368
1454
|
|
1369
|
-
[966b75f |
|
1455
|
+
[966b75f | 2009-02-07 14:36:57 UTC] TJ Vanderpoel <bougy.man@gmail.com>
|
1370
1456
|
|
1371
1457
|
* initial tree
|
1372
1458
|
|