forked from rubyists/freeswitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1614 lines (831 loc) · 52.3 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[1351829 | 2010-01-19 20:40:11 UTC] TJ Vanderpoel <TJ Vanderpoel [email protected]>
* Inbound listener changes to support sub-events for CUSTOM
[af361eb | 2010-01-19 20:23:16 UTC] TJ Vanderpoel <TJ Vanderpoel [email protected]>
* Completed work on inbound listener, to subscribe to events
[50f00d3 | 2010-01-19 17:46:30 UTC] TJ Vanderpoel <TJ Vanderpoel [email protected]>
* Fixed inbound listener and completed spec fixes for new em-spec
* HOOKS in inbound listener now allow passing of self as the first arg
if your hook block's arity is 2
* Inbound listener guaranteed to call before_session again
[bd98082 | 2010-01-16 04:41:58 UTC] TJ Vanderpoel <TJ Vanderpoel [email protected]>
* modified to work with em-spec 0.2
[15f8138 | 2010-01-16 03:47:44 UTC] TJ Vanderpoel <TJ Vanderpoel [email protected]>
* removed old github-gem reference, em-spec is now on rubyforge
[45b02a3 | 2009-12-17 22:20:30 UTC] SS <[email protected]>
* resolved requirements
[01589c4 | 2009-11-18 06:46:00 UTC] TJ Vanderpoel <TJ Vanderpoel [email protected]>
* updated authors and changelog for next release
[1f5537d | 2009-11-18 06:43:28 UTC] TJ Vanderpoel <TJ Vanderpoel [email protected]>
* commented out more debugging
[4eb4342 | 2009-11-18 06:42:33 UTC] TJ Vanderpoel <TJ Vanderpoel [email protected]>
* commented out debugging
[daa5c02 | 2009-11-18 06:03:59 UTC] TJ Vanderpoel <TJ Vanderpoel [email protected]>
* upped version to 0.4.3, encompassing harryv bug fixes
[3685cad | 2009-11-18 06:01:06 UTC] TJ Vanderpoel <TJ Vanderpoel [email protected]>
* removed non-UTF characters from inbound.rb
[d90ae67 | 2009-11-16 21:09:04 UTC] Harry Vangberg <[email protected]>
* reconnect inbound listener when no connection has been made
[1d41dcb | 2009-11-10 21:16:35 UTC] Harry Vangberg <[email protected]>
* signature should be integer to make tests pass
[313b7cc | 2009-11-10 21:16:03 UTC] Harry Vangberg <[email protected]>
* don't force rubygems
[45bc310 | 2009-09-24 03:42:47 UTC] Harry Vangberg <[email protected]>
* inbound socket should default to port 8021
[1a5c881 | 2009-09-22 21:31:14 UTC] Harry Vangberg <[email protected]>
* instance_eval event hooks
[f5a32b5 | 2009-09-02 19:01:46 UTC] Harry Vangberg <[email protected]>
* strip newlines from event.content values
[206d683 | 2009-09-02 19:48:03 UTC] Harry Vangberg <[email protected]>
* rename app -> execute_app. otherwise it royally fucked up.
[0d16330 | 2009-09-02 17:31:15 UTC] Harry Vangberg <[email protected]>
* Add App::App for executing arbitrary apps.
Use: app("app_name", "arg1", "arg2")
[911a4db | 2009-08-27 13:50:20 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Brain fart - changed #push to #unshift. We need the update_session
[4ad32cb | 2009-08-27 13:40:04 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* When using an FSR::App object with a FSR::Listener::Outbound instance
[17630f1 | 2009-08-25 23:57:07 UTC] Harry Vangberg <[email protected]>
* add App::BindMetaApp
[2867c81 | 2009-08-24 19:03:57 UTC] Harry Vangberg <[email protected]>
* take multiple endpoints + :sequential => true
[b3cd01a | 2009-08-21 18:48:08 UTC] TJ Vanderpoel <TJ Vanderpoel [email protected]>
* pushed the lib, too :)
[9fc86a2 | 2009-08-21 18:17:35 UTC] TJ Vanderpoel <TJ Vanderpoel [email protected]>
* added hash accessible arguments to play_and_get_digits
[6ed562f | 2009-08-20 18:44:28 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Updated examples to use #to_s incase something goes wrong. I.e. wrong
[2a3e3e5 | 2009-08-20 15:34:10 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Reverted back to not use FSR::App in the inbound listener. Was a
[73464df | 2009-08-20 15:25:53 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Added load_all_applications to inbound event socket as well as include
[f50b64d | 2009-08-20 15:22:26 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Added FSR::Inbound::Listener#api as an abstraction to #say("api blah")
[ec9cad3 | 2009-08-20 14:44:36 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Added callback FSR::Listener::Inbound#before_session that is called once before
Added FSR::Listener::Inbound#add_event and #del_event for instance level
event hooks. As opposed to add_event_hook and del_event_hook which are
class level
Added specs for before_session and add_event and del_event
[63021ac | 2009-07-16 12:55:00 UTC] Jayson Vaughn <jayson@debtorforever.(none)>
* Probably be good to actually send sched_hangup command to FS in the sched_hangup method
[763464f | 2009-07-16 12:26:46 UTC] Jayson Vaughn <jayson@debtorforever.(none)>
* Added FSR::Listener::Outbound#sched_hangup
[33ab5f7 | 2009-07-15 19:18:01 UTC] Jayson Vaughn <[email protected]>
* Added engine capabilities to FSR::App::Speak
[fc083ef | 2009-07-03 14:14:17 UTC] TJ Vanderpoel <TJ Vanderpoel [email protected]>
* Version 0.4.2
[360c877 | 2009-06-22 01:45:56 UTC] bougyman <[email protected]>
* removed rcov dependency, added setup_spec task (for tmm1-em-spec)
[684ce82 | 2009-06-20 17:00:01 UTC] TJ Vanderpoel <bougyman@zero.(none)>
* made sent_data an array like replies
[f27b71d | 2009-06-17 18:09:17 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Added spec/fsr_listener_helper.rb to gemspec list
[52ef44b | 2009-06-16 20:26:30 UTC] TJ Vanderpoel <Jayson Vaughn [email protected]>
* added some helpers for speccing listener apps
[dcd2125 | 2009-06-15 14:12:12 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Changed uuid_dump params to have default assignment for 1.8.x compat
[d427e58 | 2009-06-06 23:21:20 UTC] Jayson Vaughn <[email protected]>
* In outbound listener spec, made sure to test variable is nil in update session test for a more complete test
[c47ffc2 | 2009-06-06 22:17:17 UTC] Jayson Vaughn <[email protected]>
* changed spec description for update_session
[d741758 | 2009-06-06 22:15:41 UTC] Jayson Vaughn <[email protected]>
* Added spec for FSR::Listener::Outbound#update_session
[6936e80 | 2009-06-06 21:55:33 UTC] Jayson Vaughn <[email protected]>
* Added FSR::Cmd::UuidDump and specs
[bf386f6 | 2009-06-06 21:33:16 UTC] Jayson Vaughn <[email protected]>
* added spec to FSR::Listener:Inbound for auth
[a458fbf | 2009-06-06 21:09:47 UTC] Jayson Vaughn <[email protected]>
* s/@queue << block/@queue.unshift block
[c2219d2 | 2009-06-06 21:05:37 UTC] Jayson Vaughn <[email protected]>
* corrected spec description typos
[78053cc | 2009-06-06 21:02:13 UTC] Jayson Vaughn <[email protected]>
* Added em-specs for FSR::Listener::Inbound class
* Added spec to test FSL::Inbound.add_event_hook
[2d56635 | 2009-06-06 20:11:58 UTC] Jayson Vaughn <[email protected]>
* Added specs to test our proc based state machine
[214be2b | 2009-06-06 18:16:29 UTC] Jayson Vaughn <[email protected]>
* Added em-epecs to test basic functionality of the Outbound Event Socket
* Test we can process a response sent in multiple transmissions
* Test we can receive a reply after a session is created
* Test that we send connect to freeswitch upon a new connection
TODO: Need to test Outbound Event socket state machine
[48ffd21 | 2009-06-05 19:36:20 UTC] TJ Vanderpoel <Jayson Vaughn [email protected]>
* Added em-spec capabilities
[76e6798 | 2009-06-04 17:24:29 UTC] TJ Vanderpoel <[email protected]>
* re-added ability to send auth to the inbound/outbound listeners. (thanks, lewdsilver)
[a724963 | 2009-06-04 00:04:24 UTC] Jayson Vaughn <[email protected]>
* Forgot to include these... woops
[840dfa1 | 2009-06-03 23:46:14 UTC] Jayson Vaughn <[email protected]>
* Version 0.4.1
[26c4f0c | 2009-06-03 23:42:52 UTC] Jayson Vaughn <[email protected]>
* s/queue << block/queue.unshift block/g
[6b589a3 | 2009-06-03 23:13:15 UTC] Jayson Vaughn <[email protected]>
* Version 0.4.0
[55753af | 2009-06-03 23:10:22 UTC] Jayson Vaughn <[email protected]>
* Updated outbound_event_socket.rb example
[234a17e | 2009-06-03 23:01:56 UTC] Jayson Vaughn <[email protected]>
* Refactored api to be a method of FSR::Listener::Outbound
[0bc8973 | 2009-06-03 21:55:02 UTC] Jayson Vaughn <[email protected]>
* Added FSR::App::Api
[9d2cc41 | 2009-05-30 18:49:08 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Made some changes so FSR is Ruby 1.9.1 compat
* Monkey patched, unfortunately, String class with alias :each
* :each_line compat with EventMachine
[a40e1ed | 2009-05-30 18:10:35 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Corrected typo in examples/outbound_event_socket.rb
[0a3f680 | 2009-05-29 16:15:15 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Added .to_s at end of Dir[load_path.join("*.rb").to_s] for Ruby 1.9.1
[f267c17 | 2009-05-27 20:49:27 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Updated header_and_content specs
[19ee736 | 2009-05-23 18:34:18 UTC] TJ Vanderpoel <[email protected]>
* Change example and readme to match what is demoed at sip:[email protected]
[5be4271 | 2009-05-19 21:02:09 UTC] freeswitch <freeswitch@falcon.(none)>
* try to load log4r for logging (Logger buffers, bugs with runit services), fall back to Logger from stdlib if log4r not found
[921251a | 2009-05-19 20:13:47 UTC] freeswitch <freeswitch@falcon.(none)>
* reverted regression to listeners, back to functional
[eb72db4 | 2009-05-19 15:15:04 UTC] TJ Vanderpoel <[email protected]>
* changed spacing in content#find
[c275898 | 2009-05-19 15:12:39 UTC] TJ Vanderpoel <[email protected]>
* improve the regex for matching a header: value in content of HeaderAndContentResponse
[4bfaf24 | 2009-05-20 05:05:07 UTC] Michael Fellinger <[email protected]>
* headers/content come in as Array
[5640b6f | 2009-05-20 04:54:42 UTC] Michael Fellinger <[email protected]>
* Fix the listener/outbound spec
[29527e2 | 2009-05-19 23:20:24 UTC] Michael Fellinger <[email protected]>
* Minor cleanup
[38b98fa | 2009-05-19 21:04:41 UTC] Michael Fellinger <[email protected]>
* Add some more outbound specs and refactor
[817e731 | 2009-05-19 21:04:22 UTC] Michael Fellinger <[email protected]>
* Add HeaderAndContentResponse subclass that will take care of parsing the content if it should be parsed
[d44c3f0 | 2009-05-19 20:45:48 UTC] Michael Fellinger <[email protected]>
* Minor refactor and some more specs for inbound listener
[4f945e5 | 2009-05-19 20:28:53 UTC] Michael Fellinger <[email protected]>
* Refactor and basic specs of HeaderAndContentResponse, integration with inbound/outbound follow
[e3c3142 | 2009-05-19 19:29:21 UTC] Michael Fellinger <[email protected]>
* A little bit less annoying require_relative look-alike
[e80cbc1 | 2009-05-19 00:27:53 UTC] TJ Vanderpoel <[email protected]>
* updated authors and changelog
[9451ba8 | 2009-05-19 00:26:26 UTC] TJ Vanderpoel <[email protected]>
* Version 0.3.1 fixes bug in FS_ROOT not being populated properly
[fbaf84c | 2009-05-18 23:24:58 UTC] TJ Vanderpoel <[email protected]>
* Version 0.3.0
[bf6befa | 2009-05-18 23:22:36 UTC] TJ Vanderpoel <[email protected]>
* functionality for receiving variables passed to a block complete. README updated. Convert Rakefile file options to Pathname
[7b0bf11 | 2009-05-18 20:31:48 UTC] Jayson Vaughn <[email protected]>
* Added yardoc comments
[7b7efa7 | 2009-05-18 20:10:30 UTC] Jayson Vaughn <[email protected]>
* Removed FSR::Log.info debugging line from uuid_getvar and setvar
[fda2ff4 | 2009-05-18 19:55:19 UTC] TJ Vanderpoel <[email protected]>
* Added FSR::App::UuidGetVar and UuidSetVar
[39338cd | 2009-05-18 18:55:17 UTC] Jayson Vaughn <[email protected]>
* Corrected typo s/header_and_content/header_and_content_hash
[cb4d1cc | 2009-05-18 18:54:08 UTC] Jayson Vaughn <[email protected]>
* And also it seems I need to include a parameter for hash_header in
[a818d62 | 2009-05-18 18:51:25 UTC] Jayson Vaughn <[email protected]>
* Need to add a second paremeter to check_for_updated_session that
[6302892 | 2009-05-18 18:49:17 UTC] Jayson Vaughn <[email protected]>
* Changed session_header_and_content to header_and_content_hash
[5b8d9a4 | 2009-05-18 18:47:57 UTC] Jayson Vaughn <[email protected]>
* Corrected some typos in previous refactor of Outbound#receive_reply
[12a13eb | 2009-05-18 18:41:40 UTC] Jayson Vaughn <[email protected]>
* Refactored Outbound#receive_request to decouple it a tad. Still could
[6a95fa1 | 2009-05-18 18:16:43 UTC] Jayson Vaughn <[email protected]>
* Refactored FSR::App::PlayAndGetDigits to now yeild the read_var in a
[5093e71 | 2009-05-18 15:08:39 UTC] TJ Vanderpoel <[email protected]>
* Read will now yield the read variable in a block
Updated README
[e71a1a5 | 2009-05-18 01:55:43 UTC] TJ Vanderpoel <[email protected]>
* reverted design error, putting SENDMSG_METHOD into Read attaching to Outbound, not App
[273bdaf | 2009-05-18 01:34:02 UTC] TJ Vanderpoel <[email protected]>
* removed &block from read method definition after failing spec
[ad1bbd1 | 2009-05-18 00:37:44 UTC] TJ Vanderpoel <[email protected]>
* left out another to_sym
[19f8581 | 2009-05-18 00:32:23 UTC] TJ Vanderpoel <[email protected]>
* left out a to_sym
[f445058 | 2009-05-18 00:31:43 UTC] TJ Vanderpoel <[email protected]>
* 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
[93ecad2 | 2009-05-18 00:19:16 UTC] TJ Vanderpoel <[email protected]>
* TEST push to test changes, read/outbound test needed
[30a39ad | 2009-05-16 20:41:41 UTC] TJ Vanderpoel <[email protected]>
* Added specs for originate, defaults to Cmd
* Added specs for failing cases of Cmd::Originate
* Move DEFAULT_OPTIONS to FSR::Cmd::Command so commands inherit this
* Move default_options method to FSR::Cmd::Command as well.
* Used default_options block in Originate for options population
[865d177 | 2009-05-16 17:56:45 UTC] TJ Vanderpoel <[email protected]>
* filling out originate specs, testing options and argument types
[19b81ff | 2009-05-13 16:03:35 UTC] TJ Vanderpoel <[email protected]>
* refactored to a new default_options
[081112a | 2009-05-13 15:32:20 UTC] TJ Vanderpoel <[email protected]>
* changed handling of :ignore_early_media in target_options of originate to behave properly. Added argument checks for some originate arguments
[55ec1c5 | 2009-05-11 17:14:34 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* New specs now pass
[ab262c9 | 2009-05-11 17:13:48 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Added specs for FSR::App::Answer, FSBreak, and FSSleep
[1faf55f | 2009-05-11 16:44:51 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Updated gemspec for 0.1.4
[011a3e6 | 2009-05-11 16:43:14 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Sync changes with Master
[f036509 | 2009-05-11 16:36:04 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Version 0.1.4
[a110dc6 | 2009-05-11 16:12:17 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Corrected typos in README
[da6d963 | 2009-05-11 16:00:35 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Removed 'puts $LOAD_PATH.inspect'
[5fd154d | 2009-05-11 15:57:36 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Updated README
[981d6bb | 2009-05-11 15:42:27 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Updating README
[2d2fdb5 | 2009-05-05 12:32:35 UTC] TJ Vanderpoel <[email protected]>
* added some yard documentation
[0e72f02 | 2009-05-04 22:15:48 UTC] TJ Vanderpoel <[email protected]>
* fixed broken tasks, tested all tasks
[8e6f7e8 | 2009-05-04 21:38:28 UTC] TJ Vanderpoel <[email protected]>
* updated package building and added a bunch of convenience tasks
[8b94e17 | 2009-05-04 20:31:56 UTC] Jayson Vaughn <[email protected]>
* Changed @state to @queue.
[54e2702 | 2009-05-04 20:04:25 UTC] TJ Vanderpoel <[email protected]>
* Changed state machine
[0f134f2 | 2009-05-03 20:07:27 UTC] Jayson Vaughn <[email protected]>
* No longer 100% necessary to override receive_reply method so I removed
[f70a43c | 2009-05-03 19:53:06 UTC] Jayson Vaughn <[email protected]>
* Added a different way to keep state.
playback 'blah'
cmd do
bridge 'blah'
end
end
[a4b9832 | 2009-05-02 22:00:37 UTC] TJ Vanderpoel <[email protected]>
* upped version and built new gemspec
[202d05b | 2009-05-02 22:00:05 UTC] TJ Vanderpoel <[email protected]>
* moved limit to FSR::App where it belonged
[17fa4e6 | 2009-05-02 21:46:50 UTC] TJ Vanderpoel <[email protected]>
* upped version and built new gem
[93220f3 | 2009-05-02 21:46:16 UTC] TJ Vanderpoel <[email protected]>
* added limit command
[4b918cd | 2009-05-02 21:12:18 UTC] TJ Vanderpoel <[email protected]>
* upped version and built new gemspec
[159f978 | 2009-05-02 21:11:40 UTC] TJ Vanderpoel <[email protected]>
* added #next_step to manually increment state machine
[738e6da | 2009-05-02 21:02:46 UTC] TJ Vanderpoel <[email protected]>
* upped version and made new gemspec
[faf4c5a | 2009-05-02 21:00:53 UTC] TJ Vanderpoel <[email protected]>
* added Cmd::Calls and a Model::Call to describe call data
[8ef6196 | 2009-04-30 20:48:12 UTC] TJ Vanderpoel <[email protected]>
* Added FSR::App::PlayAndGetDigits
1.9.1
Updated specs for FSR::App::PlayAndGetDigits
[426ea94 | 2009-04-16 15:12:54 UTC] Jayson Vaughn <[email protected]>
* Version bump 0.0.13
[1b81841 | 2009-04-16 15:11:37 UTC] Jayson Vaughn <[email protected]>
* Updated README to reflect refactor in FSR::Listener::Outbound
Version bump 0.0.13
[8bc8cdc | 2009-04-16 15:08:31 UTC] foo <[email protected]>
* Added Hash#strip_new_newlines helper
[5da2747 | 2009-04-16 14:48:26 UTC] Jayson Vaughn <[email protected]>
* Updated examples/dtmf_test.rb and oes_demo.rb
* This reflects the new changes to FSR::Listener::Outbound
[8465069 | 2009-04-16 14:43:50 UTC] foo <[email protected]>
* Refactored FSR::Listener::Outbound
session object
#update_session now fully updates @session
[0fa32ea | 2009-04-16 13:14:08 UTC] Jayson Vaughn <[email protected]>
* Updated README
Updated examples/dtm_read.rb
Bumped version to 0.0.12
[24ff9bd | 2009-04-16 13:00:54 UTC] Jayson Vaughn <[email protected]>
* Moved bin to examples
Updated README to show how to use 'step'
[5394612 | 2009-04-16 12:51:32 UTC] foo <[email protected]>
* Added the ability for receive_reply to keep state.
Please look at bin/dtmf_test.rb for example
[4cb5002 | 2009-04-15 14:51:13 UTC] Jayson Vaughn <[email protected]>
* Removed #wait_for_reply
[c63fce9 | 2009-04-15 14:37:21 UTC] Jayson Vaughn <[email protected]>
* Added Fsr::Listener::Outbound#wait_for_reply
[b09939b | 2009-04-15 14:15:29 UTC] Jayson Vaughn <[email protected]>
* Made sure to use #to_s on session.headers[:event_calling_function] incase it is nil
[8b75ddc | 2009-04-15 14:12:51 UTC] Jayson Vaughn <[email protected]>
* Added FSR::Listener::Outbound#update_session to update session variables
[ea36a2f | 2009-04-15 13:45:02 UTC] Jayson Vaughn <[email protected]>
* Corrected typo in FSR::App::UuidDump#initialize
[85086b6 | 2009-04-15 13:41:46 UTC] Jayson Vaughn <[email protected]>
* Added FSR::App::UuidSetVar
[7ab8727 | 2009-04-15 13:29:34 UTC] Jayson Vaughn <[email protected]>
* Corrected typo in FSR::App::UuidGetVar
[e732be4 | 2009-04-15 13:09:10 UTC] Jayson Vaughn <[email protected]>
* Added FSR::App::UuidGetVar
* use uuid_getvar("uuid", "varaible") to retreive a channel variable
[8b3b3a4 | 2009-04-14 21:47:05 UTC] Jayson Vaughn <[email protected]>
* FSR::App::Read#sendmsg now joins arguments using " " not "|" :)
[01d9867 | 2009-04-14 20:47:35 UTC] Jayson Vaughn <[email protected]>
* Added event-lock to FSR::App::Read by default to #sendmsg
[654f036 | 2009-04-14 20:39:49 UTC] Jayson Vaughn <[email protected]>
* Added FSR::App::Read to read DTMF input
[fd827b6 | 2009-04-14 19:23:43 UTC] Mikael Bjerkeland <[email protected]>
* We should inherit the dialplan and context we had before
[c093ad3 | 2009-04-14 15:08:11 UTC] Mikael Bjerkeland <[email protected]>
* Small clean-ups
[ad46f8a | 2009-04-11 21:39:04 UTC] TJ Vanderpoel <[email protected]>
* added spec for FSA::Set
[123bdaf | 2009-04-11 21:25:37 UTC] Jayson Vaughn <[email protected]>
* Version Bump to 0.0.10
[4e6abe7 | 2009-04-11 21:22:12 UTC] Jayson Vaughn <[email protected]>
* Updated README to reflect new api of #set
[de358d9 | 2009-04-09 15:45:54 UTC] Jayson Vaughn <[email protected]>
* Changed gem name to all lowercase. Camel case can be annoying
[f0c6fa4 | 2009-04-08 20:50:08 UTC] TJ Vanderpoel <[email protected]>
* upped the version to generate a new gem
[e413b96 | 2009-04-08 20:46:15 UTC] TJ Vanderpoel <[email protected]>
* added EM dependency to gemspec, updated news
[0abbdd6 | 2009-04-08 20:37:23 UTC] Jayson Vaughn <[email protected]>
* Changed VERSION
[b6a8137 | 2009-04-08 20:36:59 UTC] Jayson Vaughn <[email protected]>
* Up'd version
[736a88d | 2009-04-07 13:22:11 UTC] jayson vaughn <jayson@falcon.(none)>
* 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.
Updated spec/fsr/loading.rb to include FSR::App::Log
[e253698 | 2009-04-07 18:26:35 UTC] Mikael Bjerkeland <[email protected]>
* Set now takes two arguments (like #set in Adhearsion)
[38181ce | 2009-04-07 18:18:43 UTC] Mikael Bjerkeland <[email protected]>
* Added Log functionality to (OES)
Small documentation change in Set (OES)
oes_demo.rb now also demonstrates Log
[ab2ca12 | 2009-04-07 14:39:02 UTC] Mikael Bjerkeland <[email protected]>
* A few more examples
[c3b2df3 | 2009-04-06 20:25:22 UTC] Jayson Vaughn <[email protected]>
* Updated specs
[9e761f9 | 2009-04-06 20:47:11 UTC] Mikael Bjerkeland <[email protected]>
* Added a few more commands. If anything looks stupid please correct it :-
[7ec04a5 | 2009-04-03 19:31:35 UTC] Jayson Vaughn <[email protected]>
* Refactored FSR::Listener::Outbound to be a subclass of
No need for SocketResponse, Session, and CommandResponse objects anymore
Updated bin/oes_demo.rb
Updated README
*** NOTE session.headers's keys are now symbols! ***
[00f0919 | 2009-04-03 18:27:42 UTC] Jayson Vaughn <[email protected]>
* Updated bin/ies_demo.rb and README to show
[c1108d7 | 2009-04-03 18:14:10 UTC] Jayson Vaughn <[email protected]>
* Playing catchup - Made sure FSR::Listener::Inbound is now a subclass of
Made sure inspired's hook system still works
[4ac5698 | 2009-04-03 17:57:00 UTC] Jayson Vaughn <[email protected]>
* Fixing conflict
inspired added hooks in lib/fsr/listener/inbound.rb
bougyman added NEWS
inspiried added bin/ies_demo_with_hook.rb
[86db618 | 2009-04-03 13:37:38 UTC] Jayson Vaughn <[email protected]>
* Changed FSR::Listner::Inbound to be a subclass of
Added HeaderAndContentResponse class to represent a response
Updated bin/ies_demo.rb to reflecth how to use
Updated README
[803bfbc | 2009-03-31 15:49:30 UTC] Jayson Vaughn <[email protected]>
* Added some comments to the code
[d36c2e0 | 2009-03-31 15:21:44 UTC] Jayson Vaughn <[email protected]>
* Made sure Reply checks for "Control" vs :control
[08e49f7 | 2009-03-31 15:12:38 UTC] Jayson Vaughn <[email protected]>
* Reverted back to using strings as hash keys. This ensures that custom
[a698d18 | 2009-03-31 14:51:24 UTC] Jayson Vaughn <[email protected]>
* Corrected issue, now headers and body hash work with symbols
[b8cbcb0 | 2009-03-31 14:45:42 UTC] Jayson Vaughn <[email protected]>
* Trying .to_sym once more in Inbound::Event
[1a48504 | 2009-03-31 14:44:12 UTC] Jayson Vaughn <[email protected]>
* Changed back to original
[7c1d26c | 2009-03-31 14:42:36 UTC] Jayson Vaughn <[email protected]>
* typo
[792311e | 2009-03-31 14:36:57 UTC] Jayson Vaughn <[email protected]>
* s/.to.s_gsub/.to_s.gsub/
[90a757c | 2009-03-31 14:31:28 UTC] Jayson Vaughn <[email protected]>
* Changed FSR::Listener::Inbound::Event to use symbols for hash keys
[239dba6 | 2009-03-31 14:28:29 UTC] Jayson Vaughn <[email protected]>
* Updated README and sample bin/oes_demo.rb to reflect changes in headers
[7b75019 | 2009-03-31 14:24:49 UTC] Jayson Vaughn <[email protected]>
* Needed to check against @headers[:control] instead of
[bdb5444 | 2009-03-31 14:22:06 UTC] Jayson Vaughn <[email protected]>
* Added #to_s to correct bug with value
[845623a | 2009-03-31 14:17:45 UTC] Jayson Vaughn <[email protected]>
* Changed SocketResponse#headers to now use a symbol as the hash key
[431cd2c | 2009-03-30 22:05:03 UTC] TJ Vanderpoel <[email protected]>
* Added FSBreak to send a 'break' command during an Outbound Event
[cf77986 | 2009-03-25 21:58:02 UTC] Jayson Vaughn <[email protected]>
* Updated bin/oes_demo.rb and README to correctly describe how to use
[ab373dd | 2009-03-24 00:52:38 UTC] Michael Fellinger <[email protected]>
* Remove cruft from form helper
[0464d4e | 2009-03-19 19:17:41 UTC] Jayson Vaughn <[email protected]>
* Updated specs to include new apps
[045ffe8 | 2009-03-12 01:38:02 UTC] Michael Fellinger <[email protected]>
* Update style for auth forms
[41e87ef | 2009-03-12 01:33:28 UTC] Michael Fellinger <[email protected]>
* Put the label/input from join/start into a table for nicer listing
[8815d88 | 2009-03-12 01:32:49 UTC] Michael Fellinger <[email protected]>
* Add auth related links to layout
[abd4506 | 2009-03-12 01:32:21 UTC] Michael Fellinger <[email protected]>
* Fix two minor issues
[c15f39d | 2009-03-12 01:31:59 UTC] Michael Fellinger <[email protected]>
* Refactor MainController a bit and suggest alternate random conference id generation
[d2d42f6 | 2009-03-12 01:31:22 UTC] Michael Fellinger <[email protected]>
* Finish up auth, still needs some testing for openid and a profile page
[04bff23 | 2009-03-07 15:07:35 UTC] TJ Vanderpoel <[email protected]>
* removed contrib from the gemspec, unneeded. JV added a bunch of applications
[1cf0e5a | 2009-03-04 22:29:20 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* Abstracted how to start listeners.
* FSR.start_ies! for Inbound event socket listener
* FSR.start_oes! for Outbound event socket listener
* check out bin/ies_demo.rb and bin/oes_demo.rb for examples
* changed default log level to Logger::INFO
* Updated README
[c525445 | 2009-03-04 21:30:24 UTC] Jayson Vaughn <jayson@onedrop.(none)>
* added some String#strip magic
[b8d70b7 | 2009-02-25 22:49:51 UTC] Michael Fellinger <[email protected]>
* Fix some stuff around auth, needs more
[e9ef028 | 2009-02-25 22:41:53 UTC] Michael Fellinger <[email protected]>
* Remove the model/account
[88f58f8 | 2009-02-25 22:39:36 UTC] Michael Fellinger <[email protected]>
* Default engine is Haml
[f41c42b | 2009-02-25 04:27:45 UTC] bougyman <bougyman@Esther.(none)>
* fixed FreeSWITCHeR link
[bfd7482 | 2009-02-25 04:16:12 UTC] bougyman <bougyman@Esther.(none)>
* changed spec to match new 30 second default timeout
[033cb6b | 2009-02-25 04:12:44 UTC] bougyman <bougyman@Esther.(none)>
* wrapped user-supplied vars in h(), moved conference logic into model/conference.rb
[f55194b | 2009-02-25 18:31:33 UTC] Michael Fellinger <[email protected]>
* A little cleanup
[d1c5fc0 | 2009-02-25 18:30:01 UTC] Michael Fellinger <[email protected]>
* Rough cut of auth system
[fe4e9e8 | 2009-02-25 03:27:42 UTC] bougyman <bougyman@Esther.(none)>
* Use 8k (default) conferences instead of 32kHz. Make link show up in joined_conference view (style.css change)
[74bb49a | 2009-02-25 02:49:31 UTC] TJ Vanderpoel <[email protected]>
* make sure ignore_early_media has a default (true)
[d18c622 | 2009-02-25 02:42:49 UTC] bougyman <bougyman@Esther.(none)>
* corrected the legend
[b243a82 | 2009-02-25 02:31:51 UTC] bougyman <bougyman@Esther.(none)>
* added call control legend to conference_joined view
[55dfdae | 2009-02-24 21:11:46 UTC] bougyman <bougyman@Esther.(none)>
* removed unneeded index file
[1127bbb | 2009-02-24 21:11:27 UTC] bougyman <bougyman@Esther.(none)>
* added a gitignore for ride in the sample app
[c053826 | 2009-02-24 21:09:12 UTC] bougyman <bougyman@Esther.(none)>
* got sample app deployed and fixed a couple bugs
[e2a64eb | 2009-02-24 18:49:34 UTC] bougyman <[email protected]>
* added a little sample app, will be confme.com
[f971037 | 2009-02-24 18:11:05 UTC] Jayson Vaughn <[email protected]>
* Moved FSR::Event to FSR::Listener::Inbound::Event namespace
* Added temp on_event hook for testing/development
* Added specs for FSR::Listener::Inbound
* Updated bin/ies_demo.rb with on_event hook
[05a7acc | 2009-02-24 17:59:39 UTC] Jayson Vaughn <[email protected]>
* change ies_demo.rb to default to localhost
[f1987ab | 2009-02-24 17:57:16 UTC] Jayson Vaughn <[email protected]>
* Started work on FSR::Listener::Inbound
* Refaced FSR::Listener::Inbound to a module ala
* FSR::Listener::Outbound
* Moved lib/fsr/event.rb to lib/fsr/listener/inbound and created the
* namesspace FSR::Listener::Inbound::Event
* Created bin/ies_demo.rb to demo how to use the refactor
[bd15285 | 2009-02-24 14:52:17 UTC] U-Paul-PC\Paul <Paul@Paul-PC.(none)>
* Make specs work in Win32. No pretty green colors, though. :(