rumai 3.2.0 → 3.2.1
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/CREDITS +4 -3
- data/HISTORY +327 -0
- data/INSTALL +31 -0
- data/README +92 -0
- data/USAGE +297 -0
- data/bin/rumai +9 -22
- data/doc/api/IO.html +119 -0
- data/doc/api/Integer.html +171 -0
- data/doc/api/Rumai.html +1270 -0
- data/doc/api/Rumai/Area.html +1485 -0
- data/doc/api/Rumai/Chain.html +301 -0
- data/doc/api/Rumai/Client.html +2451 -0
- data/doc/api/Rumai/ClientContainer.html +301 -0
- data/doc/api/Rumai/ExportInstanceMethods.html +103 -0
- data/doc/api/Rumai/IXP.html +94 -0
- data/doc/api/Rumai/IXP/Agent.html +1625 -0
- data/doc/api/Rumai/IXP/Agent/FidStream.html +959 -0
- data/doc/api/Rumai/IXP/Agent/RangedPool.html +381 -0
- data/doc/api/Rumai/IXP/Error.html +110 -0
- data/doc/api/Rumai/IXP/Fcall.html +503 -0
- data/doc/api/Rumai/IXP/Qid.html +207 -0
- data/doc/api/Rumai/IXP/Rattach.html +148 -0
- data/doc/api/Rumai/IXP/Rauth.html +148 -0
- data/doc/api/Rumai/IXP/Rclunk.html +148 -0
- data/doc/api/Rumai/IXP/Rcreate.html +148 -0
- data/doc/api/Rumai/IXP/Rerror.html +148 -0
- data/doc/api/Rumai/IXP/Rflush.html +148 -0
- data/doc/api/Rumai/IXP/Ropen.html +148 -0
- data/doc/api/Rumai/IXP/Rread.html +148 -0
- data/doc/api/Rumai/IXP/Rremove.html +148 -0
- data/doc/api/Rumai/IXP/Rstat.html +148 -0
- data/doc/api/Rumai/IXP/Rversion.html +148 -0
- data/doc/api/Rumai/IXP/Rwalk.html +148 -0
- data/doc/api/Rumai/IXP/Rwrite.html +148 -0
- data/doc/api/Rumai/IXP/Rwstat.html +148 -0
- data/doc/api/Rumai/IXP/Stat.html +335 -0
- data/doc/api/Rumai/IXP/Stream.html +194 -0
- data/doc/api/Rumai/IXP/Struct.html +586 -0
- data/doc/api/Rumai/IXP/Struct/ClassField.html +242 -0
- data/doc/api/Rumai/IXP/Struct/Field.html +782 -0
- data/doc/api/Rumai/IXP/Struct/Field/CounteeField.html +227 -0
- data/doc/api/Rumai/IXP/Struct/Field/CounterField.html +153 -0
- data/doc/api/Rumai/IXP/Struct/Integer8Field.html +242 -0
- data/doc/api/Rumai/IXP/Struct/StringField.html +206 -0
- data/doc/api/Rumai/IXP/Tattach.html +148 -0
- data/doc/api/Rumai/IXP/Tauth.html +148 -0
- data/doc/api/Rumai/IXP/Tclunk.html +148 -0
- data/doc/api/Rumai/IXP/Tcreate.html +148 -0
- data/doc/api/Rumai/IXP/Terror.html +231 -0
- data/doc/api/Rumai/IXP/Tflush.html +148 -0
- data/doc/api/Rumai/IXP/Topen.html +240 -0
- data/doc/api/Rumai/IXP/Tread.html +148 -0
- data/doc/api/Rumai/IXP/Tremove.html +148 -0
- data/doc/api/Rumai/IXP/Tstat.html +148 -0
- data/doc/api/Rumai/IXP/Tversion.html +162 -0
- data/doc/api/Rumai/IXP/Twalk.html +148 -0
- data/doc/api/Rumai/IXP/Twrite.html +148 -0
- data/doc/api/Rumai/IXP/Twstat.html +148 -0
- data/doc/api/Rumai/Node.html +1406 -0
- data/doc/api/Rumai/View.html +1587 -0
- data/doc/api/Rumai/WidgetImpl.html +333 -0
- data/doc/api/Rumai/WidgetNode.html +246 -0
- data/doc/api/String.html +258 -0
- data/doc/api/StringIO.html +119 -0
- data/doc/api/Time.html +247 -0
- data/doc/api/_index.html +581 -0
- data/doc/api/class_list.html +36 -0
- data/doc/api/css/common.css +1 -0
- data/doc/api/css/full_list.css +50 -0
- data/doc/api/css/style.css +273 -0
- data/doc/api/file.LICENSE.html +73 -0
- data/doc/api/file_list.html +38 -0
- data/doc/api/frames.html +13 -0
- data/doc/api/index.html +72 -13
- data/doc/api/js/app.js +111 -0
- data/doc/api/js/full_list.js +117 -0
- data/doc/api/js/{jquery-1.3.2.min.js → jquery.js} +0 -0
- data/doc/api/method_list.html +1483 -0
- data/doc/api/top-level-namespace.html +89 -0
- data/doc/index.erb +18 -13
- data/doc/index.html +331 -386
- data/lib/rumai.rb +1 -18
- data/lib/rumai/fs.rb +11 -11
- data/lib/rumai/inochi.rb +48 -0
- data/lib/rumai/inochi.yaml +94 -0
- data/lib/rumai/ixp.rb +0 -4
- data/lib/rumai/ixp/message.rb +6 -17
- data/lib/rumai/ixp/transport.rb +39 -30
- data/lib/rumai/wm.rb +35 -37
- data/test/rumai/inochi_test.rb +17 -0
- data/test/rumai/ixp/message_test.rb +245 -0
- data/test/runner +25 -0
- data/test/test_helper.rb +1 -0
- metadata +107 -125
- data/doc/api/apple-touch-icon.png +0 -0
- data/doc/api/classes/IO.html +0 -72
- data/doc/api/classes/Integer.html +0 -110
- data/doc/api/classes/Object.html +0 -60
- data/doc/api/classes/Rumai.html +0 -837
- data/doc/api/classes/Rumai/Area.html +0 -909
- data/doc/api/classes/Rumai/Chain.html +0 -197
- data/doc/api/classes/Rumai/Client.html +0 -1526
- data/doc/api/classes/Rumai/ClientContainer.html +0 -191
- data/doc/api/classes/Rumai/ExportInstanceMethods.html +0 -69
- data/doc/api/classes/Rumai/IXP.html +0 -131
- data/doc/api/classes/Rumai/IXP/Agent.html +0 -941
- data/doc/api/classes/Rumai/IXP/Agent/FidStream.html +0 -456
- data/doc/api/classes/Rumai/IXP/Agent/MODES.html +0 -108
- data/doc/api/classes/Rumai/IXP/Agent/RangedPool.html +0 -241
- data/doc/api/classes/Rumai/IXP/Error.html +0 -67
- data/doc/api/classes/Rumai/IXP/Fcall.html +0 -323
- data/doc/api/classes/Rumai/IXP/Qid.html +0 -153
- data/doc/api/classes/Rumai/IXP/Rattach.html +0 -67
- data/doc/api/classes/Rumai/IXP/Rauth.html +0 -67
- data/doc/api/classes/Rumai/IXP/Rclunk.html +0 -67
- data/doc/api/classes/Rumai/IXP/Rcreate.html +0 -67
- data/doc/api/classes/Rumai/IXP/Rerror.html +0 -67
- data/doc/api/classes/Rumai/IXP/Rflush.html +0 -67
- data/doc/api/classes/Rumai/IXP/Ropen.html +0 -67
- data/doc/api/classes/Rumai/IXP/Rread.html +0 -67
- data/doc/api/classes/Rumai/IXP/Rremove.html +0 -67
- data/doc/api/classes/Rumai/IXP/Rstat.html +0 -67
- data/doc/api/classes/Rumai/IXP/Rversion.html +0 -67
- data/doc/api/classes/Rumai/IXP/Rwalk.html +0 -67
- data/doc/api/classes/Rumai/IXP/Rwrite.html +0 -67
- data/doc/api/classes/Rumai/IXP/Rwstat.html +0 -67
- data/doc/api/classes/Rumai/IXP/Stat.html +0 -252
- data/doc/api/classes/Rumai/IXP/Stream.html +0 -131
- data/doc/api/classes/Rumai/IXP/Struct.html +0 -311
- data/doc/api/classes/Rumai/IXP/Struct/Field.html +0 -415
- data/doc/api/classes/Rumai/IXP/Struct/Field/CounteeField.html +0 -153
- data/doc/api/classes/Rumai/IXP/Struct/Field/CounterField.html +0 -104
- data/doc/api/classes/Rumai/IXP/Tattach.html +0 -68
- data/doc/api/classes/Rumai/IXP/Tauth.html +0 -67
- data/doc/api/classes/Rumai/IXP/Tclunk.html +0 -67
- data/doc/api/classes/Rumai/IXP/Tcreate.html +0 -68
- data/doc/api/classes/Rumai/IXP/Terror.html +0 -110
- data/doc/api/classes/Rumai/IXP/Tflush.html +0 -67
- data/doc/api/classes/Rumai/IXP/Topen.html +0 -165
- data/doc/api/classes/Rumai/IXP/Tread.html +0 -67
- data/doc/api/classes/Rumai/IXP/Tremove.html +0 -67
- data/doc/api/classes/Rumai/IXP/Tstat.html +0 -67
- data/doc/api/classes/Rumai/IXP/Tversion.html +0 -86
- data/doc/api/classes/Rumai/IXP/Twalk.html +0 -68
- data/doc/api/classes/Rumai/IXP/Twrite.html +0 -68
- data/doc/api/classes/Rumai/IXP/Twstat.html +0 -67
- data/doc/api/classes/Rumai/Node.html +0 -821
- data/doc/api/classes/Rumai/View.html +0 -967
- data/doc/api/classes/Rumai/WidgetImpl.html +0 -65
- data/doc/api/classes/Rumai/WidgetNode.html +0 -68
- data/doc/api/classes/String.html +0 -163
- data/doc/api/classes/StringIO.html +0 -72
- data/doc/api/classes/Time.html +0 -156
- data/doc/api/created.rid +0 -1
- data/doc/api/css/main.css +0 -263
- data/doc/api/css/panel.css +0 -383
- data/doc/api/css/reset.css +0 -53
- data/doc/api/favicon.ico +0 -0
- data/doc/api/files/CREDITS.html +0 -67
- data/doc/api/files/LICENSE.html +0 -76
- data/doc/api/files/lib/rumai/fs_rb.html +0 -75
- data/doc/api/files/lib/rumai/ixp/message_rb.html +0 -91
- data/doc/api/files/lib/rumai/ixp/transport_rb.html +0 -75
- data/doc/api/files/lib/rumai/ixp_rb.html +0 -69
- data/doc/api/files/lib/rumai/wm_rb.html +0 -77
- data/doc/api/files/lib/rumai_rb.html +0 -65
- data/doc/api/i/arrows.png +0 -0
- data/doc/api/i/results_bg.png +0 -0
- data/doc/api/i/tree_bg.png +0 -0
- data/doc/api/js/jquery-effect.js +0 -593
- data/doc/api/js/main.js +0 -22
- data/doc/api/js/searchdoc.js +0 -628
- data/doc/api/panel/index.html +0 -71
- data/doc/api/panel/search_index.js +0 -1
- data/doc/api/panel/tree.js +0 -1
- data/doc/history.erb +0 -233
- data/doc/intro.erb +0 -70
- data/doc/setup.erb +0 -144
- data/doc/usage.erb +0 -308
- data/rakefile +0 -14
- data/test/rumai/ixp/message.rb +0 -237
data/CREDITS
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
- Christoph Blank <http://textmode.at>
|
|
2
|
+
- Gigamo <http://github.com/gigamo>
|
|
3
|
+
- Michael Andrus <http://github.com/centyx>
|
|
4
|
+
- Simon Hafner <http://github.com/Tass>
|
data/HISTORY
ADDED
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
%# #%
|
|
2
|
+
%# You can read this document in its full glory by #%
|
|
3
|
+
%# opening ./doc/index.html in your favorite Web browser. #%
|
|
4
|
+
%# #%
|
|
5
|
+
|
|
6
|
+
%#----------------------------------------------------------------------------
|
|
7
|
+
%| section "Version 3.2.1 (2010-03-22)"
|
|
8
|
+
%#----------------------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
This release improves multi-threading support in Rumai's pure-Ruby
|
|
11
|
+
implementation of the [IXP file-system interface](<%= wmii_ixp_url %>).
|
|
12
|
+
|
|
13
|
+
%#--------------------------------------------------------------------------
|
|
14
|
+
%| paragraph "Thank you"
|
|
15
|
+
%#--------------------------------------------------------------------------
|
|
16
|
+
|
|
17
|
+
* Gigamo reported the issue of status bar applets not refreshing
|
|
18
|
+
according to their prescribed schedule (this is particularly noticable
|
|
19
|
+
in the clock applet) and verified my fix for the problem.
|
|
20
|
+
|
|
21
|
+
%#--------------------------------------------------------------------------
|
|
22
|
+
%| paragraph "Bug fixes"
|
|
23
|
+
%#--------------------------------------------------------------------------
|
|
24
|
+
|
|
25
|
+
* Perform a blocking I/O read to recieve a 9P2000 message in
|
|
26
|
+
`Rumai::IXP::Agent#recv` only if recieve buffer is empty. This gives
|
|
27
|
+
other threads a chance to check the recieve buffer for their response.
|
|
28
|
+
instead of being blocked by us as we greedily hold on to the 9P2000
|
|
29
|
+
message stream until our expected response arrives.
|
|
30
|
+
|
|
31
|
+
%#--------------------------------------------------------------------------
|
|
32
|
+
%| paragraph "Housekeeping"
|
|
33
|
+
%#--------------------------------------------------------------------------
|
|
34
|
+
|
|
35
|
+
* Upgrade to Inochi 2.0.0 and Dfect 2.0.0.
|
|
36
|
+
|
|
37
|
+
%#----------------------------------------------------------------------------
|
|
38
|
+
%| section "Version 3.2.0 (2009-11-17)"
|
|
39
|
+
%#----------------------------------------------------------------------------
|
|
40
|
+
|
|
41
|
+
This release adds a new automated view arrangement, simplifies the IXP
|
|
42
|
+
transport layer, and cleans up the code and API documentation.
|
|
43
|
+
|
|
44
|
+
%#--------------------------------------------------------------------------
|
|
45
|
+
%| paragraph "New features"
|
|
46
|
+
%#--------------------------------------------------------------------------
|
|
47
|
+
|
|
48
|
+
* Add `Rumai::View#arrange_in_stacks` automated view arrangement.
|
|
49
|
+
|
|
50
|
+
* Convert `:stack` and `:max` arguments into wmii 3.9 syntax in
|
|
51
|
+
`Rumai::Area#layout=`.
|
|
52
|
+
|
|
53
|
+
%#--------------------------------------------------------------------------
|
|
54
|
+
%| paragraph "Bug fixes"
|
|
55
|
+
%#--------------------------------------------------------------------------
|
|
56
|
+
|
|
57
|
+
* Rewrote IXP transport layer (`Rumai::IXP::Agent`) to *not* use a
|
|
58
|
+
background thread, according to [the XCB cookie
|
|
59
|
+
approach](http://www.x.org/releases/X11R7.5/doc/libxcb/tutorial/#requestsreplies).
|
|
60
|
+
|
|
61
|
+
%#--------------------------------------------------------------------------
|
|
62
|
+
%| paragraph "Housekeeping"
|
|
63
|
+
%#--------------------------------------------------------------------------
|
|
64
|
+
|
|
65
|
+
* Clean up some code and API docs.
|
|
66
|
+
|
|
67
|
+
* Reduce amount of string concatenation in `Struct#to_9p`.
|
|
68
|
+
|
|
69
|
+
%#----------------------------------------------------------------------------
|
|
70
|
+
%| section "Version 3.1.1 (2009-11-16)"
|
|
71
|
+
%#----------------------------------------------------------------------------
|
|
72
|
+
|
|
73
|
+
This release fixes bugs in automated view arrangements and updates the user
|
|
74
|
+
manual.
|
|
75
|
+
|
|
76
|
+
%#--------------------------------------------------------------------------
|
|
77
|
+
%| paragraph "Thank you"
|
|
78
|
+
%#--------------------------------------------------------------------------
|
|
79
|
+
|
|
80
|
+
* Nathan Neff reported the client ordering bug in automated view
|
|
81
|
+
arrangements.
|
|
82
|
+
|
|
83
|
+
%#--------------------------------------------------------------------------
|
|
84
|
+
%| paragraph "Bug fixes"
|
|
85
|
+
%#--------------------------------------------------------------------------
|
|
86
|
+
|
|
87
|
+
* The relative order of clients was not being preserved during view
|
|
88
|
+
arrangements.
|
|
89
|
+
|
|
90
|
+
* Focus on the current view was lost after automated view arrangement was
|
|
91
|
+
applied if the current view was not the first view on which the initially
|
|
92
|
+
focused (before the automated arrangement was applied) client appeared.
|
|
93
|
+
|
|
94
|
+
%#----------------------------------------------------------------------------
|
|
95
|
+
%| section "Version 3.1.0 (2009-10-02)"
|
|
96
|
+
%#----------------------------------------------------------------------------
|
|
97
|
+
|
|
98
|
+
This release adds new methods, fixes some bugs, and revises the manual.
|
|
99
|
+
|
|
100
|
+
%#--------------------------------------------------------------------------
|
|
101
|
+
%| paragraph "New features"
|
|
102
|
+
%#--------------------------------------------------------------------------
|
|
103
|
+
|
|
104
|
+
* Add `Client#float` methods to manipulate floating status.
|
|
105
|
+
|
|
106
|
+
* Add `Client#manage` methods to manipulate managed status.
|
|
107
|
+
|
|
108
|
+
* The `Client#tags=` method now accepts '~' and '!' tag prefixes.
|
|
109
|
+
|
|
110
|
+
%#--------------------------------------------------------------------------
|
|
111
|
+
%| paragraph "Bug fixes"
|
|
112
|
+
%#--------------------------------------------------------------------------
|
|
113
|
+
|
|
114
|
+
* There is no `View#move_focus` method, only `View#select`.
|
|
115
|
+
|
|
116
|
+
* Assertion failure in test suite because all files in <tt>/rbar</tt>
|
|
117
|
+
(inside wmii's IXP filesystem) contain an automatic color header when
|
|
118
|
+
read.
|
|
119
|
+
|
|
120
|
+
%#--------------------------------------------------------------------------
|
|
121
|
+
%| paragraph "Housekeeping"
|
|
122
|
+
%#--------------------------------------------------------------------------
|
|
123
|
+
|
|
124
|
+
* Use simpler Copyright reminder at the top of every file.
|
|
125
|
+
|
|
126
|
+
* Open source is for fun, so [be
|
|
127
|
+
nice](http://loiclemeur.com/english/2009/03/never-criticize-your-competitors.html):
|
|
128
|
+
speak of "related works" instead of "competitors".
|
|
129
|
+
|
|
130
|
+
%#----------------------------------------------------------------------------
|
|
131
|
+
%| section "Version 3.0.0 (2009-05-11)"
|
|
132
|
+
%#----------------------------------------------------------------------------
|
|
133
|
+
|
|
134
|
+
This release revises method names, adds new methods, and fixes a bug.
|
|
135
|
+
|
|
136
|
+
%#--------------------------------------------------------------------------
|
|
137
|
+
%| paragraph "Incompatible changes"
|
|
138
|
+
%#--------------------------------------------------------------------------
|
|
139
|
+
|
|
140
|
+
* Rename `#toggle_` methods to use `!` suffix in their names.
|
|
141
|
+
|
|
142
|
+
* Rename `#float` methods to `#floating`.
|
|
143
|
+
|
|
144
|
+
* Rename `View#floater` method to `View#floating_area`.
|
|
145
|
+
|
|
146
|
+
%#--------------------------------------------------------------------------
|
|
147
|
+
%| paragraph "New features"
|
|
148
|
+
%#--------------------------------------------------------------------------
|
|
149
|
+
|
|
150
|
+
* Add `Client#stick` methods to manipulate sticky status.
|
|
151
|
+
|
|
152
|
+
* Add `Client#fullscreen` methods to manipulate fullscreen status.
|
|
153
|
+
|
|
154
|
+
* Add `Client#slay` method which is a forceful version of `#kill`.
|
|
155
|
+
|
|
156
|
+
* Add `View#select` method to move focus relatively inside a view.
|
|
157
|
+
|
|
158
|
+
* Add `Area::floating` method for symmetry with `Area::curr`.
|
|
159
|
+
|
|
160
|
+
* Add `View#managed_area` aliases for `View#column` methods.
|
|
161
|
+
|
|
162
|
+
%#--------------------------------------------------------------------------
|
|
163
|
+
%| paragraph "Bug fixes"
|
|
164
|
+
%#--------------------------------------------------------------------------
|
|
165
|
+
|
|
166
|
+
* Fix error when unzooming clients from temporary view.
|
|
167
|
+
|
|
168
|
+
* Fix code that launches temporary terminals in <%= xref "Tutorial" %>.
|
|
169
|
+
|
|
170
|
+
Use the <tt>/bin/sh</tt> version of the **read** command for
|
|
171
|
+
portability.
|
|
172
|
+
|
|
173
|
+
%#--------------------------------------------------------------------------
|
|
174
|
+
%| paragraph "Housekeeping"
|
|
175
|
+
%#--------------------------------------------------------------------------
|
|
176
|
+
|
|
177
|
+
* Use `Client#send` instead of `#swap` in automated arrangements because
|
|
178
|
+
it causes less traffic on /event/.
|
|
179
|
+
|
|
180
|
+
* Add old release notes from blog to user manual.
|
|
181
|
+
|
|
182
|
+
%#----------------------------------------------------------------------------
|
|
183
|
+
%| section "Version 2.1.0 (2009-05-09)"
|
|
184
|
+
%#----------------------------------------------------------------------------
|
|
185
|
+
|
|
186
|
+
This release improves client arrangement, fixes several bugs, and cleans up
|
|
187
|
+
the code.
|
|
188
|
+
|
|
189
|
+
%#--------------------------------------------------------------------------
|
|
190
|
+
%| paragraph "Thank you"
|
|
191
|
+
%#--------------------------------------------------------------------------
|
|
192
|
+
|
|
193
|
+
* Simon Hafner reported several bugs.
|
|
194
|
+
* Michael Andrus verified bug fixes.
|
|
195
|
+
|
|
196
|
+
%#--------------------------------------------------------------------------
|
|
197
|
+
%| paragraph "New features"
|
|
198
|
+
%#--------------------------------------------------------------------------
|
|
199
|
+
|
|
200
|
+
* Focus is now restored on the initially focused client after applying <%=
|
|
201
|
+
xref "Automated client arrangement" %>s.
|
|
202
|
+
|
|
203
|
+
* The push(), insert(), and unshift() instance methods of the
|
|
204
|
+
`Rumai::Area` class now preserve the order of inserted clients.
|
|
205
|
+
|
|
206
|
+
* The `Rumai::View#arrange_in_grid()` method now accepts 1 as a parameter.
|
|
207
|
+
This invocation causes every column to contain at most 1 client.
|
|
208
|
+
|
|
209
|
+
%#--------------------------------------------------------------------------
|
|
210
|
+
%| paragraph "Bug fixes"
|
|
211
|
+
%#--------------------------------------------------------------------------
|
|
212
|
+
|
|
213
|
+
* Fix error caused by focusing the top/bottom client in the destination
|
|
214
|
+
area before sending new clients into that area.
|
|
215
|
+
|
|
216
|
+
* Fix error when importing clients into an empty area.
|
|
217
|
+
|
|
218
|
+
%#--------------------------------------------------------------------------
|
|
219
|
+
%| paragraph "Housekeeping"
|
|
220
|
+
%#--------------------------------------------------------------------------
|
|
221
|
+
|
|
222
|
+
* Use snake_case instead of camelCase for variable names.
|
|
223
|
+
|
|
224
|
+
* Add copyright notice at the top of every file.
|
|
225
|
+
|
|
226
|
+
* Plenty of code formatting and beautification.
|
|
227
|
+
|
|
228
|
+
%#----------------------------------------------------------------------------
|
|
229
|
+
%| section "Version 2.0.2 (2009-02-26)"
|
|
230
|
+
%#----------------------------------------------------------------------------
|
|
231
|
+
|
|
232
|
+
This release fixes a connection bug.
|
|
233
|
+
|
|
234
|
+
%#--------------------------------------------------------------------------
|
|
235
|
+
%| paragraph "Thank you"
|
|
236
|
+
%#--------------------------------------------------------------------------
|
|
237
|
+
|
|
238
|
+
* Simon Hafner reported and helped debug the `$DISPLAY` bug.
|
|
239
|
+
|
|
240
|
+
%#--------------------------------------------------------------------------
|
|
241
|
+
%| paragraph "Bug fixes"
|
|
242
|
+
%#--------------------------------------------------------------------------
|
|
243
|
+
|
|
244
|
+
* wmii omits the fractional portion of `$DISPLAY` in its socket file path.
|
|
245
|
+
Rumai was trying to connect with the entire `$DISPLAY` value (including
|
|
246
|
+
the fractional portion) and thus could not find wmii's socket file.
|
|
247
|
+
|
|
248
|
+
%#----------------------------------------------------------------------------
|
|
249
|
+
%| section "Version 2.0.1 (2009-01-25)"
|
|
250
|
+
%#----------------------------------------------------------------------------
|
|
251
|
+
|
|
252
|
+
This release simplifies project administrivia using [<%= Inochi::PROJECT
|
|
253
|
+
%>](<%= Inochi::WEBSITE %>), improves the unit tests, and revises the user
|
|
254
|
+
manual.
|
|
255
|
+
|
|
256
|
+
%#--------------------------------------------------------------------------
|
|
257
|
+
%| paragraph "Bug fixes"
|
|
258
|
+
%#--------------------------------------------------------------------------
|
|
259
|
+
|
|
260
|
+
* The <tt>lib/rumai/ixp/message.rb</tt> library's unit test would fail if
|
|
261
|
+
<tt>/rbar/status</tt> did not already exist in wmii.
|
|
262
|
+
|
|
263
|
+
%#--------------------------------------------------------------------------
|
|
264
|
+
%| paragraph "Housekeeping"
|
|
265
|
+
%#--------------------------------------------------------------------------
|
|
266
|
+
|
|
267
|
+
* Store IXP socket address in `Rumai::IXP_SOCK_ADDR`.
|
|
268
|
+
|
|
269
|
+
* Added missing test cases for (TR)create and (TR)remove messages in the
|
|
270
|
+
unit test for the <tt>lib/rumai/ixp/message.rb</tt> library.
|
|
271
|
+
|
|
272
|
+
%#----------------------------------------------------------------------------
|
|
273
|
+
%| section "Version 2.0.0 (2008-02-04)"
|
|
274
|
+
%#----------------------------------------------------------------------------
|
|
275
|
+
|
|
276
|
+
This release adds support for wmii 3.6, improves the performance of the IXP
|
|
277
|
+
library, and fixes some bugs.
|
|
278
|
+
|
|
279
|
+
%#--------------------------------------------------------------------------
|
|
280
|
+
%| paragraph "Thank you"
|
|
281
|
+
%#--------------------------------------------------------------------------
|
|
282
|
+
|
|
283
|
+
* Christoph Blank tested Rumai 1.0.0 under wmii 3.6 and reported bugs.
|
|
284
|
+
|
|
285
|
+
%#--------------------------------------------------------------------------
|
|
286
|
+
%| paragraph "Incompatible changes"
|
|
287
|
+
%#--------------------------------------------------------------------------
|
|
288
|
+
|
|
289
|
+
* wmii version 3.6 or newer is now required.
|
|
290
|
+
|
|
291
|
+
* The `Rumai::IXP::Agent::FidStream#read_partial` method has been replaced
|
|
292
|
+
by `Rumai::IXP::Agent::FidStream#read(true)` for efficiency.
|
|
293
|
+
|
|
294
|
+
* The `Rumai::IXP::Agent::FidStream#write` method no longer writes to
|
|
295
|
+
the beginning of the stream. Instead, it writes to the current position
|
|
296
|
+
in the stream.
|
|
297
|
+
|
|
298
|
+
* The `Rumai::View#floating_area` method has been renamed to
|
|
299
|
+
`Rumai::View#floater` for brevity.
|
|
300
|
+
|
|
301
|
+
%#--------------------------------------------------------------------------
|
|
302
|
+
%| paragraph "New features"
|
|
303
|
+
%#--------------------------------------------------------------------------
|
|
304
|
+
|
|
305
|
+
* Added several more methods (such as rewind, pos=, eof?, and so on) from
|
|
306
|
+
Ruby's IO class to the `Rumai::IXP::Agent::FidStream` class.
|
|
307
|
+
|
|
308
|
+
* Added the `Rumai::Client#kill` method to simplify client termination.
|
|
309
|
+
|
|
310
|
+
%#--------------------------------------------------------------------------
|
|
311
|
+
%| paragraph "Bug fixes"
|
|
312
|
+
%#--------------------------------------------------------------------------
|
|
313
|
+
|
|
314
|
+
* Fixed a race condition in `Rumai::Agent#talk` which would cause Rumai to
|
|
315
|
+
hang when multiple threads used it.
|
|
316
|
+
|
|
317
|
+
%#----------------------------------------------------------------------------
|
|
318
|
+
%| section "Version 1.0.0 (2008-01-26)"
|
|
319
|
+
%#----------------------------------------------------------------------------
|
|
320
|
+
|
|
321
|
+
This is the first release of Rumai, the evolution of
|
|
322
|
+
[wmii-irb](http://article.gmane.org/gmane.comp.window-managers.wmii/1704),
|
|
323
|
+
which lets you manipulate the [wmii](<%= wmii_url %>) window manager through
|
|
324
|
+
[Ruby](<%= ruby_url %>).
|
|
325
|
+
|
|
326
|
+
Happy birthday!
|
|
327
|
+
|
data/INSTALL
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
%# #%
|
|
2
|
+
%# You can read this document in its full glory by #%
|
|
3
|
+
%# opening ./doc/index.html in your favorite Web browser. #%
|
|
4
|
+
%# #%
|
|
5
|
+
|
|
6
|
+
%#----------------------------------------------------------------------------
|
|
7
|
+
%| section "Prerequisites"
|
|
8
|
+
%#----------------------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
* [Ruby](http://ruby-lang.org) 1.8.6 or newer.
|
|
11
|
+
* [RubyGems](http://rubygems.org) 1.3.6 or newer.
|
|
12
|
+
* [wmii](http://wmii.suckless.org) 3.6 or newer.
|
|
13
|
+
|
|
14
|
+
%#----------------------------------------------------------------------------
|
|
15
|
+
%| section "Installing"
|
|
16
|
+
%#----------------------------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
%|command! "gem install rumai"
|
|
19
|
+
|
|
20
|
+
%#----------------------------------------------------------------------------
|
|
21
|
+
%| section "Upgrading"
|
|
22
|
+
%#----------------------------------------------------------------------------
|
|
23
|
+
|
|
24
|
+
%|command! "gem update rumai"
|
|
25
|
+
|
|
26
|
+
%#----------------------------------------------------------------------------
|
|
27
|
+
%| section "Uninstalling"
|
|
28
|
+
%#----------------------------------------------------------------------------
|
|
29
|
+
|
|
30
|
+
%|command! "gem uninstall rumai"
|
|
31
|
+
|
data/README
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
%# #%
|
|
2
|
+
%# You can read this document in its full glory by #%
|
|
3
|
+
%# opening ./doc/index.html in your favorite Web browser. #%
|
|
4
|
+
%# #%
|
|
5
|
+
|
|
6
|
+
%#----------------------------------------------------------------------------
|
|
7
|
+
%| project_summary
|
|
8
|
+
%#----------------------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
Rumai is a [Ruby](<%= ruby_url %>) interface to
|
|
11
|
+
the [wmii](<%= wmii_url %>) window manager.
|
|
12
|
+
|
|
13
|
+
%#----------------------------------------------------------------------------
|
|
14
|
+
%| paragraph "Resources"
|
|
15
|
+
%#----------------------------------------------------------------------------
|
|
16
|
+
|
|
17
|
+
* <%= xref "History", "What's new?" %> ---
|
|
18
|
+
release notes and project history.
|
|
19
|
+
|
|
20
|
+
* [Issue tracker](<%= issue_tracker_url %>) ---
|
|
21
|
+
report bugs, request features, or ask for help.
|
|
22
|
+
|
|
23
|
+
* [Source code](<%= source_code_url %>) ---
|
|
24
|
+
browse online or obtain using <%= source_code_tool %>
|
|
25
|
+
|
|
26
|
+
* [API reference](<%= api_reference_url %>) ---
|
|
27
|
+
documentation for source code.
|
|
28
|
+
|
|
29
|
+
* [Project home](<%= Rumai::WEBSITE %>) ---
|
|
30
|
+
the official project home page.
|
|
31
|
+
|
|
32
|
+
%#----------------------------------------------------------------------------
|
|
33
|
+
%| section "Features"
|
|
34
|
+
%#----------------------------------------------------------------------------
|
|
35
|
+
|
|
36
|
+
Rumai is exciting because:
|
|
37
|
+
|
|
38
|
+
* It excels at dynamic arrangement of clients, columns, views, and tags.
|
|
39
|
+
|
|
40
|
+
* It provides an <%= xref 'shell', 'interactive shell' %> for live
|
|
41
|
+
entertainment and experimentation.
|
|
42
|
+
|
|
43
|
+
* It provides a pure Ruby client for the [9P2000 protocol](<%= p9p_url %>)
|
|
44
|
+
used by wmii's [IXP file-system interface](<%= wmii_ixp_url %>).
|
|
45
|
+
|
|
46
|
+
* It powers [many Ruby-based wmii configurations][2], including [my own][1].
|
|
47
|
+
|
|
48
|
+
[1]: http://github.com/sunaku/wmiirc/
|
|
49
|
+
[2]: http://github.com/sunaku/wmiirc/network
|
|
50
|
+
|
|
51
|
+
%#----------------------------------------------------------------------------
|
|
52
|
+
%| section "Etymology"
|
|
53
|
+
%#----------------------------------------------------------------------------
|
|
54
|
+
|
|
55
|
+
The word "wmii" is difficult to pronounce because it is an abbreviation, not
|
|
56
|
+
an acronym. If we were to treat it as an acronym, the closest pronounciation
|
|
57
|
+
would be, in my mind, something like "vim-eye".
|
|
58
|
+
|
|
59
|
+
Since this is a Ruby library, I added a "roo" and worked it through:
|
|
60
|
+
|
|
61
|
+
* vim-eye
|
|
62
|
+
* roo-vim-eye
|
|
63
|
+
* roovm-eye
|
|
64
|
+
|
|
65
|
+
And thus we get "Rumai".
|
|
66
|
+
|
|
67
|
+
%#----------------------------------------------------------------------------
|
|
68
|
+
%| section "License"
|
|
69
|
+
%#----------------------------------------------------------------------------
|
|
70
|
+
|
|
71
|
+
%# See the file named "LICENSE" for details.
|
|
72
|
+
%< "LICENSE"
|
|
73
|
+
|
|
74
|
+
%#----------------------------------------------------------------------------
|
|
75
|
+
%| section "Credits"
|
|
76
|
+
%#----------------------------------------------------------------------------
|
|
77
|
+
|
|
78
|
+
Rumai is made possible by <%= xref "History",
|
|
79
|
+
"contributions" %> from users like you:
|
|
80
|
+
|
|
81
|
+
%# See the file named "CREDITS" for details.
|
|
82
|
+
%< "CREDITS"
|
|
83
|
+
|
|
84
|
+
%#----------------------------------------------------------------------------
|
|
85
|
+
%| section "Related works"
|
|
86
|
+
%#----------------------------------------------------------------------------
|
|
87
|
+
|
|
88
|
+
* [r9p](http://libs.suckless.org/r9p)
|
|
89
|
+
* [Rii](http://rubyforge.org/projects/rii/)
|
|
90
|
+
* [Ruby-IXP](http://home.gna.org/rubyixp/)
|
|
91
|
+
* [ruby-wmii](http://eigenclass.org/hiki.rb?wmii+ruby)
|
|
92
|
+
|