libastag 0.0.1 → 0.0.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/BUGS +10 -0
- data/CHANGES +8 -1
- data/MIT-LICENSE +2 -1
- data/README +7 -3
- data/Rakefile +3 -2
- data/TODO +4 -7
- data/doc/classes/Helpers.html +16 -20
- data/doc/classes/Helpers/REXML.html +4 -4
- data/doc/classes/Helpers/REXML/Attributes.html +10 -10
- data/doc/classes/Libastag.html +5 -5
- data/doc/classes/Libastag/Rabbit.html +56 -56
- data/doc/classes/Libastag/RabitEar.html +4 -4
- data/doc/classes/Libastag/RabitLed.html +4 -4
- data/doc/classes/Request.html +33 -37
- data/doc/classes/Request/Action.html +34 -34
- data/doc/classes/Request/AudioStream.html +313 -0
- data/doc/classes/Request/Base.html +13 -10
- data/doc/classes/Request/Base/Event.html +58 -23
- data/doc/classes/Request/Base/EventCollection.html +35 -32
- data/doc/classes/Request/Choregraphy.html +500 -0
- data/doc/classes/Request/Choregraphy/BadChorDesc.html +135 -0
- data/doc/classes/Request/Choregraphy/Ears.html +130 -0
- data/doc/classes/Request/Choregraphy/Ears/Directions.html +141 -0
- data/doc/classes/Request/Choregraphy/Ears/Positions.html +146 -0
- data/doc/classes/Request/Choregraphy/Leds.html +130 -0
- data/doc/classes/Request/Choregraphy/Leds/Colors.html +171 -0
- data/doc/classes/Request/Choregraphy/Leds/Positions.html +161 -0
- data/doc/classes/Request/GET_EARS_POSITION.html +17 -14
- data/doc/classes/Request/IdMessage.html +234 -0
- data/doc/classes/Request/Query.html +80 -55
- data/doc/classes/Request/SetEarsPosition.html +58 -36
- data/doc/classes/Request/TtsMessage.html +74 -50
- data/doc/classes/Response.html +55 -124
- data/doc/classes/Response/AbuseSending.html +34 -34
- data/doc/classes/Response/Base.html +34 -34
- data/doc/classes/Response/Base/BadServerRsp.html +34 -34
- data/doc/classes/Response/Base/GoodServerRsp.html +34 -34
- data/doc/classes/Response/Base/ServerRsp.html +53 -53
- data/doc/classes/Response/Blacklist.html +34 -34
- data/doc/classes/Response/ChorNotSend.html +34 -34
- data/doc/classes/Response/ChorSend.html +34 -34
- data/doc/classes/Response/CommandSend.html +34 -34
- data/doc/classes/Response/EarPositionNotSend.html +34 -34
- data/doc/classes/Response/EarPositionSend.html +34 -34
- data/doc/classes/Response/EmptyServerRsp.html +34 -34
- data/doc/classes/Response/LangListUser.html +34 -34
- data/doc/classes/Response/LinkPreview.html +34 -34
- data/doc/classes/Response/ListFriend.html +34 -34
- data/doc/classes/Response/ListReceivedMsg.html +34 -34
- data/doc/classes/Response/MessageNotSend.html +34 -34
- data/doc/classes/Response/MessageSend.html +34 -34
- data/doc/classes/Response/NabCastNotSend.html +34 -34
- data/doc/classes/Response/NabCastSend.html +34 -34
- data/doc/classes/Response/NoCorrectParameters.html +34 -34
- data/doc/classes/Response/NoGoodTokenOrSerial.html +34 -34
- data/doc/classes/Response/NotV2Rabbit.html +34 -34
- data/doc/classes/Response/PositionEar.html +34 -34
- data/doc/classes/Response/ProtocolExcepion.html +35 -35
- data/doc/classes/Response/RabbitName.html +34 -34
- data/doc/classes/Response/RabbitSleep.html +34 -34
- data/doc/classes/Response/RabbitVersion.html +34 -34
- data/doc/classes/Response/Signature.html +34 -34
- data/doc/classes/Response/Timezone.html +34 -34
- data/doc/classes/Response/TtsNotSend.html +34 -34
- data/doc/classes/Response/TtsSend.html +34 -34
- data/doc/classes/Response/VoiceListTts.html +34 -34
- data/doc/classes/Response/WebRadioNotSend.html +34 -34
- data/doc/classes/Response/WebRadioSend.html +34 -34
- data/doc/created.rid +1 -1
- data/doc/dot/f_0.png +0 -0
- data/doc/dot/f_5.dot +13 -445
- data/doc/dot/f_5.png +0 -0
- data/doc/dot/f_6.dot +445 -11
- data/doc/dot/f_6.png +0 -0
- data/doc/dot/f_7.dot +30 -5
- data/doc/dot/f_7.png +0 -0
- data/doc/dot/f_8.dot +39 -0
- data/doc/dot/f_8.png +0 -0
- data/doc/files/{lib/violet/violetapi_rb.html → BUGS.html} +17 -9
- data/doc/files/CHANGES.html +15 -2
- data/doc/files/MIT-LICENSE.html +2 -2
- data/doc/files/README.html +13 -3
- data/doc/files/TODO.html +5 -8
- data/doc/files/lib/libastag_rb.html +12 -10
- data/doc/files/lib/violet/helpers_rb.html +5 -5
- data/doc/files/lib/violet/request_rb.html +16 -12
- data/doc/files/lib/violet/response_rb.html +36 -35
- data/doc/fr_class_index.html +10 -1
- data/doc/fr_file_index.html +1 -1
- data/doc/fr_method_index.html +25 -12
- data/examples/morse.rb +72 -0
- data/lib/libastag.rb +6 -2
- data/lib/violet/helpers.rb +4 -2
- data/lib/violet/request.rb +501 -47
- data/lib/violet/response.rb +5 -2
- data/test/fake_violet_srv.rb +1 -1
- data/test/test_helpers.rb +3 -5
- data/test/{test_send.rb → test_query_and_actions.rb} +27 -10
- data/test/test_request_base.rb +76 -0
- data/test/test_request_chor.rb +162 -0
- data/test/test_request_stuff.rb +171 -0
- data/test/test_response.rb +3 -4
- metadata +45 -20
- data/doc/classes/VioletAPI.html +0 -118
- data/doc/dot/f_4.dot +0 -57
- data/doc/dot/f_4.png +0 -0
- data/lib/violet/violetapi.rb +0 -14
- data/test/test_request.rb +0 -20
data/doc/dot/f_6.png
CHANGED
|
Binary file
|
data/doc/dot/f_7.dot
CHANGED
|
@@ -10,20 +10,45 @@ digraph TopLevel {
|
|
|
10
10
|
color = black
|
|
11
11
|
]
|
|
12
12
|
|
|
13
|
-
subgraph
|
|
13
|
+
subgraph cluster_Helpers {
|
|
14
14
|
fillcolor = palegreen1
|
|
15
|
-
URL = "classes/
|
|
15
|
+
URL = "classes/Helpers.html"
|
|
16
16
|
fontname = Arial
|
|
17
17
|
color = blue
|
|
18
|
-
label = "
|
|
18
|
+
label = "Helpers"
|
|
19
19
|
style = filled
|
|
20
|
-
|
|
20
|
+
Helpers [
|
|
21
21
|
shape = plaintext,
|
|
22
22
|
height = 0.01,
|
|
23
|
-
width = 0.
|
|
23
|
+
width = 0.01,
|
|
24
24
|
label = ""
|
|
25
25
|
]
|
|
26
26
|
|
|
27
|
+
subgraph cluster_Helpers__REXML {
|
|
28
|
+
fillcolor = palegreen3
|
|
29
|
+
URL = "classes/Helpers/REXML.html"
|
|
30
|
+
fontname = Arial
|
|
31
|
+
color = blue
|
|
32
|
+
label = "REXML"
|
|
33
|
+
style = filled
|
|
34
|
+
Helpers__REXML [
|
|
35
|
+
shape = plaintext,
|
|
36
|
+
height = 0.01,
|
|
37
|
+
width = 0.01,
|
|
38
|
+
label = ""
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
Helpers__REXML__Attributes [
|
|
42
|
+
fontcolor = black,
|
|
43
|
+
URL = "classes/Helpers/REXML/Attributes.html",
|
|
44
|
+
shape = ellipse,
|
|
45
|
+
color = palegoldenrod,
|
|
46
|
+
style = filled,
|
|
47
|
+
label = "Attributes"
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
}
|
|
51
|
+
|
|
27
52
|
}
|
|
28
53
|
|
|
29
54
|
}
|
data/doc/dot/f_7.png
CHANGED
|
Binary file
|
data/doc/dot/f_8.dot
CHANGED
|
@@ -14,10 +14,22 @@ digraph TopLevel {
|
|
|
14
14
|
|
|
15
15
|
]
|
|
16
16
|
|
|
17
|
+
Request__Base__Event -> Request__AudioStream [
|
|
18
|
+
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
Request__Base__Event -> Request__Choregraphy [
|
|
22
|
+
|
|
23
|
+
]
|
|
24
|
+
|
|
17
25
|
Request__Base__Event -> Request__TtsMessage [
|
|
18
26
|
|
|
19
27
|
]
|
|
20
28
|
|
|
29
|
+
Request__Base__Event -> Request__IdMessage [
|
|
30
|
+
|
|
31
|
+
]
|
|
32
|
+
|
|
21
33
|
Request__Base__Event -> Request__SetEarsPosition [
|
|
22
34
|
|
|
23
35
|
]
|
|
@@ -59,6 +71,24 @@ digraph TopLevel {
|
|
|
59
71
|
label = "Action"
|
|
60
72
|
]
|
|
61
73
|
|
|
74
|
+
Request__AudioStream [
|
|
75
|
+
fontcolor = black,
|
|
76
|
+
URL = "classes/Request/AudioStream.html",
|
|
77
|
+
shape = ellipse,
|
|
78
|
+
color = palegoldenrod,
|
|
79
|
+
style = filled,
|
|
80
|
+
label = "AudioStream"
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
Request__Choregraphy [
|
|
84
|
+
fontcolor = black,
|
|
85
|
+
URL = "classes/Request/Choregraphy.html",
|
|
86
|
+
shape = ellipse,
|
|
87
|
+
color = palegoldenrod,
|
|
88
|
+
style = filled,
|
|
89
|
+
label = "Choregraphy"
|
|
90
|
+
]
|
|
91
|
+
|
|
62
92
|
Request__Query [
|
|
63
93
|
fontcolor = black,
|
|
64
94
|
URL = "classes/Request/Query.html",
|
|
@@ -77,6 +107,15 @@ digraph TopLevel {
|
|
|
77
107
|
label = "TtsMessage"
|
|
78
108
|
]
|
|
79
109
|
|
|
110
|
+
Request__IdMessage [
|
|
111
|
+
fontcolor = black,
|
|
112
|
+
URL = "classes/Request/IdMessage.html",
|
|
113
|
+
shape = ellipse,
|
|
114
|
+
color = palegoldenrod,
|
|
115
|
+
style = filled,
|
|
116
|
+
label = "IdMessage"
|
|
117
|
+
]
|
|
118
|
+
|
|
80
119
|
Request__SetEarsPosition [
|
|
81
120
|
fontcolor = black,
|
|
82
121
|
URL = "classes/Request/SetEarsPosition.html",
|
data/doc/dot/f_8.png
CHANGED
|
Binary file
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
7
|
<head>
|
|
8
|
-
<title>File:
|
|
8
|
+
<title>File: BUGS</title>
|
|
9
9
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
10
10
|
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
-
<link rel="stylesheet" href="
|
|
11
|
+
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
|
12
12
|
<script type="text/javascript">
|
|
13
13
|
// <![CDATA[
|
|
14
14
|
|
|
@@ -47,16 +47,16 @@
|
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
<div id="fileHeader">
|
|
50
|
-
<h1>
|
|
50
|
+
<h1>BUGS</h1>
|
|
51
51
|
<table class="header-table">
|
|
52
52
|
<tr class="top-aligned-row">
|
|
53
53
|
<td><strong>Path:</strong></td>
|
|
54
|
-
<td>
|
|
54
|
+
<td>BUGS
|
|
55
55
|
</td>
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>Wed
|
|
59
|
+
<td>Wed Jan 09 10:02:46 +0100 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -69,15 +69,23 @@
|
|
|
69
69
|
<div id="contextContent">
|
|
70
70
|
<div id="diagram">
|
|
71
71
|
<map id="map" name="map">
|
|
72
|
-
<area shape="rect" coords="16,16,109,64" href="../../../classes/VioletAPI.html" alt="VioletAPI" />
|
|
73
72
|
</map>
|
|
74
|
-
<img src="
|
|
73
|
+
<img src="../dot/f_0.png" usemap="#map" border="0" alt="dot/f_0.png">
|
|
75
74
|
</div>
|
|
76
75
|
|
|
77
76
|
<div id="description">
|
|
78
|
-
<h2>
|
|
77
|
+
<h2>001</h2>
|
|
78
|
+
<h1>Description</h1>
|
|
79
79
|
<p>
|
|
80
|
-
|
|
80
|
+
choregraphy with more than one command don‘t to_url smoothly.
|
|
81
|
+
</p>
|
|
82
|
+
<h1>Example</h1>
|
|
83
|
+
<pre>
|
|
84
|
+
<"chor=10,0,led,1,0,0,0,0,led,3,0,0,0"> expected but was <"chor=10,0,led,1,0,0,00,led,3,0,0,0">.
|
|
85
|
+
</pre>
|
|
86
|
+
<h1>Fix</h1>
|
|
87
|
+
<p>
|
|
88
|
+
fixed, see test/test_request_chor.rb <bugfix:001>
|
|
81
89
|
</p>
|
|
82
90
|
|
|
83
91
|
</div>
|
data/doc/files/CHANGES.html
CHANGED
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>
|
|
59
|
+
<td>Wed Jan 09 13:04:49 +0100 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -74,7 +74,20 @@
|
|
|
74
74
|
</div>
|
|
75
75
|
|
|
76
76
|
<div id="description">
|
|
77
|
-
<
|
|
77
|
+
<h1>v0.0.2</h1>
|
|
78
|
+
<ul>
|
|
79
|
+
<li>Worked on request.rb, added SetEarsPosition, TtsMessage, IdMessage,
|
|
80
|
+
AudioStream and Choregraphy class, doc, and tests.
|
|
81
|
+
|
|
82
|
+
</li>
|
|
83
|
+
<li>Added Choregraphy Domain Specific Language.
|
|
84
|
+
|
|
85
|
+
</li>
|
|
86
|
+
<li>added an example for Choregraphy script.
|
|
87
|
+
|
|
88
|
+
</li>
|
|
89
|
+
</ul>
|
|
90
|
+
<h1>v0.0.1</h1>
|
|
78
91
|
<ul>
|
|
79
92
|
<li><a href="../classes/Response.html">Response</a> module is working
|
|
80
93
|
|
data/doc/files/MIT-LICENSE.html
CHANGED
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>
|
|
59
|
+
<td>Tue Jan 08 13:12:05 +0100 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
|
|
76
76
|
<div id="description">
|
|
77
77
|
<p>
|
|
78
|
-
Copyright (c) 2007 Perrin Alexandre
|
|
78
|
+
Copyright (c) 2007-2008 Perrin Alexandre
|
|
79
79
|
</p>
|
|
80
80
|
<p>
|
|
81
81
|
Permission is hereby granted, free of charge, to any person obtaining a
|
data/doc/files/README.html
CHANGED
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>
|
|
59
|
+
<td>Tue Jan 08 23:58:23 +0100 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -138,10 +138,20 @@ href="http://rubyforge.org/projects/libastag">rubyforge.org/projects/libastag</a
|
|
|
138
138
|
|
|
139
139
|
</li>
|
|
140
140
|
</ul>
|
|
141
|
-
<h2>
|
|
141
|
+
<h2>Examples</h2>
|
|
142
|
+
<h1>irb</h1>
|
|
142
143
|
<p>
|
|
143
144
|
TODO
|
|
144
145
|
</p>
|
|
146
|
+
<h1>Script</h1>
|
|
147
|
+
<p>
|
|
148
|
+
examples/ directory of the project has several examples:
|
|
149
|
+
</p>
|
|
150
|
+
<dl>
|
|
151
|
+
<dt>morse.rb</dt><dd>send your name in morse to your rabbit.
|
|
152
|
+
|
|
153
|
+
</dd>
|
|
154
|
+
</dl>
|
|
145
155
|
<h2>Other Nabastag related Ruby projects</h2>
|
|
146
156
|
<ul>
|
|
147
157
|
<li>Nabaztag : <a
|
|
@@ -151,7 +161,7 @@ href="http://rubyforge.org/projects/nabaztag">rubyforge.org/projects/nabaztag</a
|
|
|
151
161
|
</ul>
|
|
152
162
|
<h2>Copying</h2>
|
|
153
163
|
<p>
|
|
154
|
-
Copyright (c) 2007 Perrin Alexandre
|
|
164
|
+
Copyright (c) 2007-2008 Perrin Alexandre
|
|
155
165
|
</p>
|
|
156
166
|
<p>
|
|
157
167
|
You may use, copy and redistribute this library under the terms of the MIT
|
data/doc/files/TODO.html
CHANGED
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>Wed
|
|
59
|
+
<td>Wed Jan 09 13:05:36 +0100 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -75,19 +75,16 @@
|
|
|
75
75
|
|
|
76
76
|
<div id="description">
|
|
77
77
|
<ul>
|
|
78
|
-
<li>
|
|
78
|
+
<li>add variable tempo to chor
|
|
79
79
|
|
|
80
80
|
</li>
|
|
81
|
-
<li>
|
|
81
|
+
<li>make a idMessage db for library
|
|
82
82
|
|
|
83
83
|
</li>
|
|
84
|
-
<li>
|
|
84
|
+
<li>work on fake server?
|
|
85
85
|
|
|
86
86
|
</li>
|
|
87
|
-
<li>
|
|
88
|
-
|
|
89
|
-
</li>
|
|
90
|
-
<li>Write doc for <a href="../classes/VioletAPI.html">VioletAPI</a> module
|
|
87
|
+
<li>Complete the high level API (libastag.rb)
|
|
91
88
|
|
|
92
89
|
</li>
|
|
93
90
|
</ul>
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>
|
|
59
|
+
<td>Tue Jan 08 22:10:41 +0100 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -69,21 +69,23 @@
|
|
|
69
69
|
<div id="contextContent">
|
|
70
70
|
<div id="diagram">
|
|
71
71
|
<map id="map" name="map">
|
|
72
|
-
<area shape="rect" coords="219,
|
|
73
|
-
<area shape="rect" coords="123,
|
|
74
|
-
<area shape="rect" coords="27,
|
|
72
|
+
<area shape="rect" coords="219,50,291,98" href="../../classes/Libastag/RabitEar.html" alt="RabitEar" />
|
|
73
|
+
<area shape="rect" coords="123,50,195,98" href="../../classes/Libastag/RabitLed.html" alt="RabitLed" />
|
|
74
|
+
<area shape="rect" coords="27,50,99,98" href="../../classes/Libastag/Rabbit.html" alt="Rabbit" />
|
|
75
75
|
<area shape="rect" coords="16,16,328,109" href="../../classes/Libastag.html" alt="Libastag" />
|
|
76
76
|
</map>
|
|
77
|
-
<img src="../../dot/
|
|
77
|
+
<img src="../../dot/f_5.png" usemap="#map" border="0" alt="dot/f_5.png">
|
|
78
78
|
</div>
|
|
79
79
|
|
|
80
|
-
<div id="description">
|
|
81
|
-
<p>
|
|
82
|
-
Handy class/methods to control a Nabastag.
|
|
83
|
-
</p>
|
|
84
80
|
|
|
85
|
-
|
|
81
|
+
<div id="requires-list">
|
|
82
|
+
<h3 class="section-bar">Required files</h3>
|
|
86
83
|
|
|
84
|
+
<div class="name-list">
|
|
85
|
+
violet/response.rb
|
|
86
|
+
violet/request.rb
|
|
87
|
+
</div>
|
|
88
|
+
</div>
|
|
87
89
|
|
|
88
90
|
</div>
|
|
89
91
|
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>Wed
|
|
59
|
+
<td>Wed Jan 09 10:09:41 +0100 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -69,11 +69,11 @@
|
|
|
69
69
|
<div id="contextContent">
|
|
70
70
|
<div id="diagram">
|
|
71
71
|
<map id="map" name="map">
|
|
72
|
-
<area shape="rect" coords="53,
|
|
73
|
-
<area shape="rect" coords="43,51,
|
|
74
|
-
<area shape="rect" coords="16,16,
|
|
72
|
+
<area shape="rect" coords="53,86,131,134" href="../../../classes/Helpers/REXML/Attributes.html" alt="Attributes" />
|
|
73
|
+
<area shape="rect" coords="43,51,168,144" href="../../../classes/Helpers/REXML.html" alt="REXML" />
|
|
74
|
+
<area shape="rect" coords="16,16,179,155" href="../../../classes/Helpers.html" alt="Helpers" />
|
|
75
75
|
</map>
|
|
76
|
-
<img src="../../../dot/
|
|
76
|
+
<img src="../../../dot/f_7.png" usemap="#map" border="0" alt="dot/f_7.png">
|
|
77
77
|
</div>
|
|
78
78
|
|
|
79
79
|
<div id="description">
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>Wed
|
|
59
|
+
<td>Wed Jan 09 12:58:00 +0100 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -69,16 +69,19 @@
|
|
|
69
69
|
<div id="contextContent">
|
|
70
70
|
<div id="diagram">
|
|
71
71
|
<map id="map" name="map">
|
|
72
|
-
<area shape="rect" coords="
|
|
73
|
-
<area shape="rect" coords="27,
|
|
74
|
-
<area shape="rect" coords="123,
|
|
75
|
-
<area shape="rect" coords="
|
|
76
|
-
<area shape="rect" coords="
|
|
77
|
-
<area shape="rect" coords="
|
|
78
|
-
<area shape="rect" coords="
|
|
79
|
-
<area shape="rect" coords="
|
|
80
|
-
<area shape="rect" coords="
|
|
81
|
-
<area shape="rect" coords="
|
|
72
|
+
<area shape="rect" coords="736,86,808,134" href="../../../classes/Request/Base/Event.html" alt="Event" />
|
|
73
|
+
<area shape="rect" coords="27,182,99,230" href="../../../classes/Request/Action.html" alt="Action" />
|
|
74
|
+
<area shape="rect" coords="123,182,216,230" href="../../../classes/Request/AudioStream.html" alt="AudioStream" />
|
|
75
|
+
<area shape="rect" coords="240,182,333,230" href="../../../classes/Request/Choregraphy.html" alt="Choregraphy" />
|
|
76
|
+
<area shape="rect" coords="357,182,448,230" href="../../../classes/Request/TtsMessage.html" alt="TtsMessage" />
|
|
77
|
+
<area shape="rect" coords="472,182,555,230" href="../../../classes/Request/IdMessage.html" alt="IdMessage" />
|
|
78
|
+
<area shape="rect" coords="579,182,685,230" href="../../../classes/Request/SetEarsPosition.html" alt="SetEarsPosition" />
|
|
79
|
+
<area shape="rect" coords="709,182,813,230" href="../../../classes/Request/Base/EventCollection.html" alt="EventCollection" />
|
|
80
|
+
<area shape="rect" coords="984,86,1061,134" href="../../../classes/Enumerable.html" alt="Enumerable" />
|
|
81
|
+
<area shape="rect" coords="307,86,379,134" href="../../../classes/Request/Query.html" alt="Query" />
|
|
82
|
+
<area shape="rect" coords="835,74,963,122" href="../../../classes/Request/GET_EARS_POSITION.html" alt="GET_EARS_POSITION" />
|
|
83
|
+
<area shape="rect" coords="699,51,824,240" href="../../../classes/Request/Base.html" alt="Base" />
|
|
84
|
+
<area shape="rect" coords="16,16,973,251" href="../../../classes/Request.html" alt="Request" />
|
|
82
85
|
</map>
|
|
83
86
|
<img src="../../../dot/f_8.png" usemap="#map" border="0" alt="dot/f_8.png">
|
|
84
87
|
</div>
|
|
@@ -97,8 +100,9 @@ class are used to create objects.
|
|
|
97
100
|
<h3 class="section-bar">Required files</h3>
|
|
98
101
|
|
|
99
102
|
<div class="name-list">
|
|
103
|
+
response.rb
|
|
104
|
+
helpers.rb
|
|
100
105
|
open-uri
|
|
101
|
-
cgi
|
|
102
106
|
</div>
|
|
103
107
|
</div>
|
|
104
108
|
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>
|
|
59
|
+
<td>Tue Jan 08 22:22:35 +0100 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -69,45 +69,45 @@
|
|
|
69
69
|
<div id="contextContent">
|
|
70
70
|
<div id="diagram">
|
|
71
71
|
<map id="map" name="map">
|
|
72
|
-
<area shape="rect" coords="
|
|
72
|
+
<area shape="rect" coords="1621,229,1731,277" href="../../../classes/Response/Base/GoodServerRsp.html" alt="GoodServerRsp" />
|
|
73
73
|
<area shape="rect" coords="27,325,136,373" href="../../../classes/Response/EarPositionSend.html" alt="EarPositionSend" />
|
|
74
74
|
<area shape="rect" coords="160,325,256,373" href="../../../classes/Response/NabCastSend.html" alt="NabCastSend" />
|
|
75
|
-
<area shape="rect" coords="280,325,
|
|
76
|
-
<area shape="rect" coords="
|
|
77
|
-
<area shape="rect" coords="
|
|
78
|
-
<area shape="rect" coords="
|
|
79
|
-
<area shape="rect" coords="
|
|
75
|
+
<area shape="rect" coords="280,325,381,373" href="../../../classes/Response/CommandSend.html" alt="CommandSend" />
|
|
76
|
+
<area shape="rect" coords="405,325,483,373" href="../../../classes/Response/Signature.html" alt="Signature" />
|
|
77
|
+
<area shape="rect" coords="507,325,589,373" href="../../../classes/Response/PositionEar.html" alt="PositionEar" />
|
|
78
|
+
<area shape="rect" coords="613,325,704,373" href="../../../classes/Response/VoiceListTts.html" alt="VoiceListTts" />
|
|
79
|
+
<area shape="rect" coords="728,325,819,373" href="../../../classes/Response/LinkPreview.html" alt="LinkPreview" />
|
|
80
80
|
<area shape="rect" coords="843,325,941,373" href="../../../classes/Response/MessageSend.html" alt="MessageSend" />
|
|
81
81
|
<area shape="rect" coords="965,325,1059,373" href="../../../classes/Response/LangListUser.html" alt="LangListUser" />
|
|
82
|
-
<area shape="rect" coords="1083,325,
|
|
83
|
-
<area shape="rect" coords="
|
|
84
|
-
<area shape="rect" coords="
|
|
85
|
-
<area shape="rect" coords="
|
|
86
|
-
<area shape="rect" coords="
|
|
87
|
-
<area shape="rect" coords="
|
|
88
|
-
<area shape="rect" coords="
|
|
89
|
-
<area shape="rect" coords="
|
|
90
|
-
<area shape="rect" coords="
|
|
91
|
-
<area shape="rect" coords="
|
|
92
|
-
<area shape="rect" coords="
|
|
93
|
-
<area shape="rect" coords="
|
|
94
|
-
<area shape="rect" coords="
|
|
95
|
-
<area shape="rect" coords="
|
|
96
|
-
<area shape="rect" coords="
|
|
97
|
-
<area shape="rect" coords="
|
|
98
|
-
<area shape="rect" coords="
|
|
99
|
-
<area shape="rect" coords="
|
|
100
|
-
<area shape="rect" coords="
|
|
101
|
-
<area shape="rect" coords="
|
|
102
|
-
<area shape="rect" coords="
|
|
103
|
-
<area shape="rect" coords="
|
|
104
|
-
<area shape="rect" coords="
|
|
105
|
-
<area shape="rect" coords="
|
|
106
|
-
<area shape="rect" coords="
|
|
107
|
-
<area shape="rect" coords="
|
|
108
|
-
<area shape="rect" coords="16,64,
|
|
82
|
+
<area shape="rect" coords="1083,325,1171,373" href="../../../classes/Response/RabbitName.html" alt="RabbitName" />
|
|
83
|
+
<area shape="rect" coords="1195,325,1267,373" href="../../../classes/Response/TtsSend.html" alt="TtsSend" />
|
|
84
|
+
<area shape="rect" coords="1291,325,1403,373" href="../../../classes/Response/ListReceivedMsg.html" alt="ListReceivedMsg" />
|
|
85
|
+
<area shape="rect" coords="1427,325,1504,373" href="../../../classes/Response/ListFriend.html" alt="ListFriend" />
|
|
86
|
+
<area shape="rect" coords="1528,325,1616,373" href="../../../classes/Response/RabbitSleep.html" alt="RabbitSleep" />
|
|
87
|
+
<area shape="rect" coords="1640,325,1712,373" href="../../../classes/Response/Blacklist.html" alt="Blacklist" />
|
|
88
|
+
<area shape="rect" coords="1736,325,1813,373" href="../../../classes/Response/Timezone.html" alt="Timezone" />
|
|
89
|
+
<area shape="rect" coords="1837,325,1936,373" href="../../../classes/Response/RabbitVersion.html" alt="RabbitVersion" />
|
|
90
|
+
<area shape="rect" coords="1960,325,2064,373" href="../../../classes/Response/WebRadioSend.html" alt="WebRadioSend" />
|
|
91
|
+
<area shape="rect" coords="2088,325,2165,373" href="../../../classes/Response/ChorSend.html" alt="ChorSend" />
|
|
92
|
+
<area shape="rect" coords="1755,229,1856,277" href="../../../classes/Response/Base/BadServerRsp.html" alt="BadServerRsp" />
|
|
93
|
+
<area shape="rect" coords="2189,325,2325,373" href="../../../classes/Response/NoGoodTokenOrSerial.html" alt="NoGoodTokenOrSerial" />
|
|
94
|
+
<area shape="rect" coords="2349,325,2443,373" href="../../../classes/Response/ChorNotSend.html" alt="ChorNotSend" />
|
|
95
|
+
<area shape="rect" coords="2467,325,2579,373" href="../../../classes/Response/NabCastNotSend.html" alt="NabCastNotSend" />
|
|
96
|
+
<area shape="rect" coords="2603,325,2717,373" href="../../../classes/Response/MessageNotSend.html" alt="MessageNotSend" />
|
|
97
|
+
<area shape="rect" coords="2741,325,2843,373" href="../../../classes/Response/AbuseSending.html" alt="AbuseSending" />
|
|
98
|
+
<area shape="rect" coords="2867,325,3000,373" href="../../../classes/Response/NoCorrectParameters.html" alt="NoCorrectParameters" />
|
|
99
|
+
<area shape="rect" coords="3024,325,3109,373" href="../../../classes/Response/TtsNotSend.html" alt="TtsNotSend" />
|
|
100
|
+
<area shape="rect" coords="3133,325,3224,373" href="../../../classes/Response/NotV2Rabbit.html" alt="NotV2Rabbit" />
|
|
101
|
+
<area shape="rect" coords="3248,325,3368,373" href="../../../classes/Response/WebRadioNotSend.html" alt="WebRadioNotSend" />
|
|
102
|
+
<area shape="rect" coords="3392,325,3517,373" href="../../../classes/Response/EarPositionNotSend.html" alt="EarPositionNotSend" />
|
|
103
|
+
<area shape="rect" coords="1136,5,1235,53" href="../../../classes/StandardError.html" alt="StandardError" />
|
|
104
|
+
<area shape="rect" coords="1128,133,1243,181" href="../../../classes/Response/ProtocolExcepion.html" alt="ProtocolExcepion" />
|
|
105
|
+
<area shape="rect" coords="1764,133,1847,181" href="../../../classes/Response/Base/ServerRsp.html" alt="ServerRsp" />
|
|
106
|
+
<area shape="rect" coords="1880,229,1992,277" href="../../../classes/Response/EmptyServerRsp.html" alt="EmptyServerRsp" />
|
|
107
|
+
<area shape="rect" coords="1611,99,1867,288" href="../../../classes/Response/Base.html" alt="Base" />
|
|
108
|
+
<area shape="rect" coords="16,64,3528,384" href="../../../classes/Response.html" alt="Response" />
|
|
109
109
|
</map>
|
|
110
|
-
<img src="../../../dot/
|
|
110
|
+
<img src="../../../dot/f_6.png" usemap="#map" border="0" alt="dot/f_6.png">
|
|
111
111
|
</div>
|
|
112
112
|
|
|
113
113
|
<div id="description">
|
|
@@ -185,6 +185,7 @@ either use rsp.xml or use ServerRsp#get_all method.
|
|
|
185
185
|
<h3 class="section-bar">Required files</h3>
|
|
186
186
|
|
|
187
187
|
<div class="name-list">
|
|
188
|
+
helpers.rb
|
|
188
189
|
rexml/document
|
|
189
190
|
</div>
|
|
190
191
|
</div>
|