rio 0.3.7 → 0.3.8
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/ChangeLog +1273 -1482
- data/README +2 -2
- data/Rakefile +5 -5
- data/VERSION +1 -1
- data/{RUNME.1st.rb → build_doc.rb} +4 -10
- data/doc/ANNOUNCE +33 -80
- data/doc/RELEASE_NOTES +31 -1
- data/doc/generators/template/html/rio.rb +3 -3
- data/lib/rio/abstract_method.rb +2 -2
- data/lib/rio/argv.rb +2 -2
- data/lib/rio/arycopy.rb +2 -2
- data/lib/rio/assert.rb +2 -2
- data/lib/rio/base.rb +2 -2
- data/lib/rio/callstr.rb +47 -0
- data/lib/rio/const.rb +52 -0
- data/lib/rio/construct.rb +6 -24
- data/lib/rio/constructor.rb +12 -2
- data/lib/rio/context/autoclose.rb +73 -0
- data/lib/rio/context/copying.rb +2 -2
- data/lib/rio/context/cxx.rb +2 -2
- data/lib/rio/context/dir.rb +2 -2
- data/lib/rio/context/gzip.rb +2 -2
- data/lib/rio/context/methods.rb +6 -34
- data/lib/rio/context/skip.rb +2 -2
- data/lib/rio/context/stream.rb +2 -2
- data/lib/rio/context.rb +17 -2
- data/lib/rio/cp.rb +35 -9
- data/lib/rio/def.rb +54 -0
- data/lib/rio/dir.rb +19 -20
- data/lib/rio/doc/HOWTO.rb +23 -7
- data/lib/rio/doc/INTRO.rb +57 -23
- data/lib/rio/doc/MISC.rb +2 -2
- data/lib/rio/doc/OPTIONAL.rb +134 -0
- data/lib/rio/doc/SYNOPSIS.rb +11 -4
- data/lib/rio/doc.rb +2 -2
- data/lib/rio/entrysel.rb +25 -6
- data/lib/rio/exception/copy.rb +2 -2
- data/lib/rio/exception/notsupported.rb +47 -0
- data/lib/rio/exception/open.rb +2 -2
- data/lib/rio/exception/state.rb +2 -2
- data/lib/rio/exception.rb +2 -2
- data/lib/rio/ext/csv.rb +56 -11
- data/lib/rio/ext/yaml.rb +2 -2
- data/lib/rio/ext/zipfile.rb +91 -0
- data/lib/rio/ext.rb +38 -3
- data/lib/rio/factory.rb +17 -34
- data/lib/rio/file.rb +48 -8
- data/lib/rio/filter/closeoneof.rb +36 -16
- data/lib/rio/filter/gzip.rb +2 -2
- data/lib/rio/filter.rb +2 -2
- data/lib/rio/fs/base.rb +42 -0
- data/lib/rio/fs/impl.rb +123 -0
- data/lib/rio/fs/native.rb +76 -0
- data/lib/rio/{record.rb → fs/stream.rb} +21 -18
- data/lib/rio/fs/url.rb +64 -0
- data/lib/rio/ftp/{ioh.rb → conncache.rb} +38 -39
- data/lib/rio/ftp/dir.rb +95 -0
- data/lib/rio/ftp/fs.rb +173 -0
- data/lib/rio/ftp/ftpfile.rb +20 -0
- data/lib/rio/grande.rb +2 -2
- data/lib/rio/handle.rb +2 -2
- data/lib/rio/if/basic.rb +2 -2
- data/lib/rio/if/csv.rb +2 -2
- data/lib/rio/if/dir.rb +2 -2
- data/lib/rio/if/file.rb +26 -2
- data/lib/rio/if/fileordir.rb +44 -49
- data/lib/rio/if/grande.rb +32 -10
- data/lib/rio/if/grande_entry.rb +12 -2
- data/lib/rio/if/grande_stream.rb +17 -28
- data/lib/rio/if/internal.rb +2 -2
- data/lib/rio/if/path.rb +7 -6
- data/lib/rio/if/stream.rb +85 -29
- data/lib/rio/if/string.rb +2 -2
- data/lib/rio/if/temp.rb +2 -2
- data/lib/rio/if/test.rb +37 -4
- data/lib/rio/if/yaml.rb +2 -2
- data/lib/rio/if.rb +2 -2
- data/lib/rio/impl/path.rb +2 -2
- data/lib/rio/ioh.rb +17 -6
- data/lib/rio/iomode.rb +4 -3
- data/lib/rio/ios/fail.rb +107 -0
- data/lib/rio/ios/generic.rb +120 -0
- data/lib/rio/ios/mode.rb +61 -0
- data/lib/rio/ios/null.rb +120 -0
- data/lib/rio/iowrap.rb +129 -0
- data/lib/rio/kernel.rb +12 -3
- data/lib/rio/local.rb +2 -2
- data/lib/rio/match.rb +3 -3
- data/lib/rio/matchrecord.rb +2 -2
- data/lib/rio/no_warn.rb +50 -0
- data/lib/rio/{arrayio.rb → nullio.rb} +47 -86
- data/lib/rio/open3.rb +2 -2
- data/lib/rio/ops/construct.rb +20 -13
- data/lib/rio/ops/create.rb +10 -19
- data/lib/rio/ops/dir.rb +60 -54
- data/lib/rio/ops/either.rb +11 -9
- data/lib/rio/ops/file.rb +28 -24
- data/lib/rio/ops/path.rb +45 -43
- data/lib/rio/ops/stream/input.rb +12 -8
- data/lib/rio/ops/stream/output.rb +2 -2
- data/lib/rio/ops/stream/read.rb +35 -32
- data/lib/rio/ops/stream/write.rb +5 -5
- data/lib/rio/ops/stream.rb +7 -3
- data/lib/rio/ops/symlink.rb +12 -10
- data/lib/rio/path/reset.rb +5 -5
- data/lib/rio/path.rb +32 -24
- data/lib/rio/piper/cp.rb +2 -2
- data/lib/rio/piper.rb +2 -2
- data/lib/rio/prompt.rb +2 -2
- data/lib/rio/rectype.rb +9 -7
- data/lib/rio/rl/base.rb +5 -4
- data/lib/rio/rl/builder.rb +17 -5
- data/lib/rio/rl/ioi.rb +14 -4
- data/lib/rio/rl/path.rb +23 -15
- data/lib/rio/rl/pathmethods.rb +12 -2
- data/lib/rio/rl/uri.rb +13 -6
- data/lib/rio/scheme/aryio.rb +3 -3
- data/lib/rio/scheme/cmdio.rb +4 -3
- data/lib/rio/scheme/cmdpipe.rb +3 -35
- data/lib/rio/scheme/fd.rb +4 -3
- data/lib/rio/scheme/ftp.rb +36 -7
- data/lib/rio/scheme/http.rb +2 -2
- data/lib/rio/{context/closeoneof.rb → scheme/null.rb} +17 -11
- data/lib/rio/scheme/path.rb +28 -30
- data/lib/rio/scheme/stderr.rb +4 -4
- data/lib/rio/scheme/stdio.rb +6 -5
- data/lib/rio/scheme/strio.rb +10 -20
- data/lib/rio/scheme/sysio.rb +5 -2
- data/lib/rio/scheme/tcp.rb +4 -3
- data/lib/rio/scheme/temp.rb +14 -1
- data/lib/rio/state/error.rb +2 -2
- data/lib/rio/state.rb +80 -34
- data/lib/rio/stream/base.rb +7 -2
- data/lib/rio/stream/duplex.rb +13 -10
- data/lib/rio/stream/open.rb +74 -79
- data/lib/rio/stream.rb +15 -23
- data/lib/rio/symantics.rb +2 -2
- data/lib/rio/tempdir.rb +132 -132
- data/lib/rio/to_rio/all.rb +40 -0
- data/lib/rio/to_rio/array.rb +40 -0
- data/lib/rio/to_rio/io.rb +41 -0
- data/lib/rio/to_rio/object.rb +43 -0
- data/lib/rio/to_rio/string.rb +41 -0
- data/lib/rio/to_rio.rb +13 -2
- data/lib/rio/uri/file.rb +2 -2
- data/lib/rio/util.rb +2 -2
- data/lib/rio/version.rb +3 -3
- data/lib/rio.rb +16 -25
- data/test/bin/count_lines.rb +11 -0
- data/test/bin/find_lines.rb +13 -0
- data/test/bin/list_dir.rb +14 -0
- data/test/ftp/all.rb +9 -0
- data/test/ftp/anon_misc.rb +112 -0
- data/test/ftp/anon_read.rb +105 -0
- data/test/ftp/anon_special.rb +68 -0
- data/test/ftp/anon_write.rb +63 -0
- data/test/ftp/ftp2ftp.rb +51 -0
- data/test/ftp/initftpfiles.rb +14 -0
- data/test/ftp/testdef.rb +51 -0
- data/test/gem_runtests.rb +15 -15
- data/test/runalltests.rb +15 -0
- data/test/runftptests.rb +14 -0
- data/test/{1.rb → runhttptests.rb} +14 -14
- data/test/runtests.rb +14 -14
- data/test/tc/all.rb +36 -21
- data/test/tc/cmdpipe.rb +18 -15
- data/test/tc/copy-from-http.rb +89 -0
- data/test/tc/copy-from.rb +1 -52
- data/test/tc/copy.rb +19 -17
- data/test/tc/csv2.rb +6 -3
- data/test/tc/empty.rb +47 -0
- data/test/tc/emptyriodir.rb +129 -0
- data/test/tc/entsel.rb +110 -0
- data/test/tc/files_select.rb +92 -0
- data/test/tc/get.rb +7 -6
- data/test/tc/getrec.rb +2 -5
- data/test/tc/gzip.rb +82 -0
- data/test/tc/io_each_byte.rb +60 -0
- data/test/tc/io_read.rb +80 -0
- data/test/tc/iometh.rb +149 -0
- data/test/tc/likeio.rb +112 -0
- data/test/tc/methods.rb +10 -9
- data/test/tc/misc.rb +1 -37
- data/test/tc/null.rb +45 -0
- data/test/tc/pid.rb +31 -0
- data/test/tc/piper.rb +34 -37
- data/test/tc/programs_util.rb +24 -0
- data/test/tc/readline.rb +30 -0
- data/test/tc/rename.rb +12 -0
- data/test/tc/tempfile.rb +14 -0
- data/test/tc/testcase.rb +6 -0
- data/test/tc/tonl.rb +37 -0
- metadata +181 -144
- data/ex/colx.rb +0 -8
- data/ex/findinruby +0 -16
- data/ex/findruby +0 -15
- data/ex/passwd_report.rb +0 -8
- data/ex/prompt.rb +0 -25
- data/ex/rgb.txt.gz +0 -0
- data/ex/riocat +0 -35
- data/ex/riogunzip +0 -31
- data/ex/riogzip +0 -24
- data/ex/rioprompt.rb +0 -6
- data/ex/targz2zip +0 -17
- data/ex/tolf +0 -11
- data/lib/rio/ftp/conn.rb +0 -167
- data/lib/rio/ftp.rb +0 -275
- data/test/once.rb +0 -7
data/ChangeLog
CHANGED
|
@@ -1,1627 +1,1418 @@
|
|
|
1
1
|
------------------------------------------------------------------------
|
|
2
|
-
|
|
2
|
+
r93 | rio4ruby | 2006-05-05 10:43:56 -0700 (Fri, 05 May 2006) | 1 line
|
|
3
3
|
Changed paths:
|
|
4
|
-
M /rio/
|
|
4
|
+
M /trunk/rio/doc/ANNOUNCE
|
|
5
|
+
M /trunk/rio/doc/RELEASE_NOTES
|
|
6
|
+
M /trunk/rio/lib/rio/factory.rb
|
|
5
7
|
|
|
6
|
-
|
|
8
|
+
Prepare for release
|
|
7
9
|
------------------------------------------------------------------------
|
|
8
|
-
|
|
10
|
+
r92 | rio4ruby | 2006-05-05 09:54:55 -0700 (Fri, 05 May 2006) | 1 line
|
|
9
11
|
Changed paths:
|
|
10
|
-
|
|
12
|
+
D /trunk/rio/lib/rio/arrayio.rb
|
|
13
|
+
D /trunk/rio/lib/rio/ftp/conn.rb
|
|
14
|
+
D /trunk/rio/lib/rio/ftp/impl.rb
|
|
15
|
+
D /trunk/rio/lib/rio/ftp/ioh.rb
|
|
16
|
+
D /trunk/rio/lib/rio/ftp.rb
|
|
17
|
+
M /trunk/rio/lib/rio/scheme/ftp.rb
|
|
18
|
+
|
|
19
|
+
removed dead files
|
|
20
|
+
------------------------------------------------------------------------
|
|
21
|
+
r91 | rio4ruby | 2006-05-05 09:35:54 -0700 (Fri, 05 May 2006) | 1 line
|
|
22
|
+
Changed paths:
|
|
23
|
+
M /trunk/rio/lib/rio/dir.rb
|
|
24
|
+
M /trunk/rio/lib/rio/factory.rb
|
|
25
|
+
M /trunk/rio/lib/rio/file.rb
|
|
26
|
+
M /trunk/rio/lib/rio/fs/base.rb
|
|
27
|
+
M /trunk/rio/lib/rio/fs/impl.rb
|
|
28
|
+
M /trunk/rio/lib/rio/fs/native.rb
|
|
29
|
+
A /trunk/rio/lib/rio/ftp/conncache.rb
|
|
30
|
+
A /trunk/rio/lib/rio/ftp/dir.rb
|
|
31
|
+
M /trunk/rio/lib/rio/ftp/fs.rb
|
|
32
|
+
A /trunk/rio/lib/rio/ftp/ftpfile.rb
|
|
33
|
+
M /trunk/rio/lib/rio/ftp.rb
|
|
34
|
+
M /trunk/rio/lib/rio/ops/create.rb
|
|
35
|
+
M /trunk/rio/lib/rio/ops/dir.rb
|
|
36
|
+
M /trunk/rio/lib/rio/scheme/ftp.rb
|
|
37
|
+
M /trunk/rio/lib/rio/scheme/path.rb
|
|
38
|
+
M /trunk/rio/lib/rio/scheme/temp.rb
|
|
39
|
+
M /trunk/rio/test/ftp/all.rb
|
|
40
|
+
M /trunk/rio/test/ftp/anon_misc.rb
|
|
41
|
+
M /trunk/rio/test/ftp/anon_read.rb
|
|
42
|
+
A /trunk/rio/test/ftp/anon_special.rb
|
|
43
|
+
M /trunk/rio/test/ftp/initftpfiles.rb
|
|
44
|
+
M /trunk/rio/test/tc/copy-from-http.rb
|
|
45
|
+
|
|
46
|
+
Refactored ftp code and more ftp tests
|
|
47
|
+
------------------------------------------------------------------------
|
|
48
|
+
r90 | rio4ruby | 2006-05-02 05:32:44 -0700 (Tue, 02 May 2006) | 1 line
|
|
49
|
+
Changed paths:
|
|
50
|
+
M /trunk/rio/test/ftp/anon_misc.rb
|
|
51
|
+
M /trunk/rio/test/ftp/anon_read.rb
|
|
52
|
+
M /trunk/rio/test/ftp/anon_write.rb
|
|
53
|
+
M /trunk/rio/test/ftp/ftp2ftp.rb
|
|
54
|
+
D /trunk/rio/test/ftp/test.rb
|
|
55
|
+
A /trunk/rio/test/ftp/testdef.rb (from /trunk/rio/test/ftp/test.rb:84)
|
|
11
56
|
|
|
12
|
-
|
|
57
|
+
renamed test/ftp/test.rb to test/ftp/testdev.rb
|
|
13
58
|
------------------------------------------------------------------------
|
|
14
|
-
|
|
59
|
+
r89 | rio4ruby | 2006-05-02 05:27:04 -0700 (Tue, 02 May 2006) | 1 line
|
|
15
60
|
Changed paths:
|
|
16
|
-
M /rio/
|
|
17
|
-
M /
|
|
61
|
+
M /trunk/rio/Rakefile
|
|
62
|
+
M /trunk/rio/doc/RELEASE_NOTES
|
|
63
|
+
M /trunk/rio/rio.gemspec
|
|
64
|
+
D /trunk/rio/rioinstall.rb
|
|
65
|
+
D /trunk/rio/test/1.rb
|
|
66
|
+
D /trunk/rio/test/once.rb
|
|
18
67
|
|
|
19
|
-
|
|
68
|
+
cleanup
|
|
20
69
|
------------------------------------------------------------------------
|
|
21
|
-
|
|
70
|
+
r88 | rio4ruby | 2006-05-02 04:38:43 -0700 (Tue, 02 May 2006) | 1 line
|
|
22
71
|
Changed paths:
|
|
23
|
-
M /rio/
|
|
24
|
-
M /rio/
|
|
25
|
-
M /rio/
|
|
26
|
-
|
|
72
|
+
M /trunk/rio/lib/rio/cp.rb
|
|
73
|
+
M /trunk/rio/lib/rio/if/grande.rb
|
|
74
|
+
M /trunk/rio/lib/rio/if/grande_stream.rb
|
|
75
|
+
A /trunk/rio/lib/rio/no_warn.rb
|
|
76
|
+
M /trunk/rio/lib/rio.rb
|
|
27
77
|
|
|
28
|
-
|
|
78
|
+
added code to supress some of the 'void context' warnings
|
|
29
79
|
------------------------------------------------------------------------
|
|
30
|
-
|
|
80
|
+
r87 | rio4ruby | 2006-05-01 20:57:00 -0700 (Mon, 01 May 2006) | 1 line
|
|
31
81
|
Changed paths:
|
|
32
|
-
M /rio/
|
|
33
|
-
M /rio/
|
|
82
|
+
M /trunk/rio/lib/rio/ftp/conn.rb
|
|
83
|
+
M /trunk/rio/lib/rio/ftp/ioh.rb
|
|
84
|
+
M /trunk/rio/lib/rio/ftp.rb
|
|
85
|
+
M /trunk/rio/lib/rio/scheme/ftp.rb
|
|
34
86
|
|
|
35
|
-
|
|
87
|
+
fixed some ftp problems
|
|
36
88
|
------------------------------------------------------------------------
|
|
37
|
-
|
|
89
|
+
r86 | rio4ruby | 2006-05-01 18:36:04 -0700 (Mon, 01 May 2006) | 1 line
|
|
38
90
|
Changed paths:
|
|
39
|
-
M /rio/
|
|
40
|
-
M /
|
|
41
|
-
M /rio/trunk/lib/rio/rl/ioi.rb
|
|
42
|
-
M /rio/trunk/lib/rio/version.rb
|
|
91
|
+
M /trunk/rio/lib/rio/ext/csv.rb
|
|
92
|
+
M /trunk/rio/test/tc/csv2.rb
|
|
43
93
|
|
|
44
|
-
|
|
94
|
+
Changed CSV to no longer extend arrays and strings
|
|
45
95
|
------------------------------------------------------------------------
|
|
46
|
-
|
|
96
|
+
r85 | rio4ruby | 2006-05-01 16:57:24 -0700 (Mon, 01 May 2006) | 1 line
|
|
47
97
|
Changed paths:
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
M /rio/
|
|
51
|
-
M /rio/
|
|
98
|
+
A /trunk/rio/lib/rio/context/autoclose.rb (from /trunk/rio/lib/rio/context/closeoneof.rb:83)
|
|
99
|
+
D /trunk/rio/lib/rio/context/closeoneof.rb
|
|
100
|
+
M /trunk/rio/lib/rio/context/methods.rb
|
|
101
|
+
M /trunk/rio/lib/rio/context.rb
|
|
102
|
+
M /trunk/rio/lib/rio/cp.rb
|
|
103
|
+
M /trunk/rio/lib/rio/scheme/temp.rb
|
|
104
|
+
M /trunk/rio/test/tc/gzip.rb
|
|
105
|
+
M /trunk/rio/test/tc/tempfile.rb
|
|
52
106
|
|
|
53
|
-
|
|
107
|
+
tempfile work
|
|
54
108
|
------------------------------------------------------------------------
|
|
55
|
-
|
|
56
|
-
Changed paths:
|
|
57
|
-
M /rio/trunk/Rakefile
|
|
58
|
-
M /rio/trunk/test/tc/cd1.rb
|
|
59
|
-
M /rio/trunk/test/tc/copynonex.rb
|
|
60
|
-
M /rio/trunk/test/tc/dirautoclose.rb
|
|
61
|
-
M /rio/trunk/test/tc/dirss.rb
|
|
62
|
-
M /rio/trunk/test/tc/edf.rb
|
|
63
|
-
M /rio/trunk/test/tc/fileno.rb
|
|
64
|
-
M /rio/trunk/test/tc/lineno.rb
|
|
65
|
-
M /rio/trunk/test/tc/pathop.rb
|
|
66
|
-
M /rio/trunk/test/tc/rename_assign.rb
|
|
67
|
-
M /rio/trunk/test/tc/sub.rb
|
|
68
|
-
|
|
69
|
-
more remove dependence on extensions
|
|
70
|
-
------------------------------------------------------------------------
|
|
71
|
-
r130 | kit | 2005-11-24 20:19:58 -0800 (Thu, 24 Nov 2005) | 1 line
|
|
72
|
-
Changed paths:
|
|
73
|
-
M /rio/trunk/lib/rio/ext/csv.rb
|
|
74
|
-
M /rio/trunk/lib/rio/ext.rb
|
|
75
|
-
M /rio/trunk/lib/rio/filter.rb
|
|
76
|
-
M /rio/trunk/lib/rio/ftp.rb
|
|
77
|
-
M /rio/trunk/lib/rio/ops/dir.rb
|
|
78
|
-
M /rio/trunk/lib/rio/scheme/temp.rb
|
|
79
|
-
M /rio/trunk/lib/rio/state.rb
|
|
80
|
-
M /rio/trunk/lib/rio/stream/open.rb
|
|
81
|
-
A /rio/trunk/lib/rio/util.rb
|
|
82
|
-
M /rio/trunk/lib/rio.rb
|
|
83
|
-
M /rio/trunk/test/tc/clearsel.rb
|
|
84
|
-
M /rio/trunk/test/tc/copy-from.rb
|
|
85
|
-
M /rio/trunk/test/tc/copy-to.rb
|
|
86
|
-
M /rio/trunk/test/tc/copyarray.rb
|
|
87
|
-
M /rio/trunk/test/tc/copydir.rb
|
|
88
|
-
M /rio/trunk/test/tc/copydirlines.rb
|
|
89
|
-
M /rio/trunk/test/tc/csv.rb
|
|
90
|
-
M /rio/trunk/test/tc/dir.rb
|
|
91
|
-
M /rio/trunk/test/tc/dir_iter.rb
|
|
92
|
-
M /rio/trunk/test/tc/dirautoclose.rb
|
|
93
|
-
M /rio/trunk/test/tc/dirent.rb
|
|
94
|
-
M /rio/trunk/test/tc/dirss.rb
|
|
95
|
-
M /rio/trunk/test/tc/each.rb
|
|
96
|
-
M /rio/trunk/test/tc/each_break.rb
|
|
97
|
-
M /rio/trunk/test/tc/edf.rb
|
|
98
|
-
M /rio/trunk/test/tc/entary.rb
|
|
99
|
-
M /rio/trunk/test/tc/expand_path.rb
|
|
100
|
-
M /rio/trunk/test/tc/ext.rb
|
|
101
|
-
M /rio/trunk/test/tc/fileno.rb
|
|
102
|
-
M /rio/trunk/test/tc/lineno.rb
|
|
103
|
-
M /rio/trunk/test/tc/methods.rb
|
|
104
|
-
M /rio/trunk/test/tc/misc.rb
|
|
105
|
-
M /rio/trunk/test/tc/nolines.rb
|
|
106
|
-
M /rio/trunk/test/tc/noqae.rb
|
|
107
|
-
M /rio/trunk/test/tc/pa.rb
|
|
108
|
-
M /rio/trunk/test/tc/paths.rb
|
|
109
|
-
M /rio/trunk/test/tc/qae.rb
|
|
110
|
-
M /rio/trunk/test/tc/qae_riovar.rb
|
|
111
|
-
M /rio/trunk/test/tc/records.rb
|
|
112
|
-
M /rio/trunk/test/tc/rename.rb
|
|
113
|
-
M /rio/trunk/test/tc/riorl.rb
|
|
114
|
-
M /rio/trunk/test/tc/selnosel.rb
|
|
115
|
-
M /rio/trunk/test/tc/symlink.rb
|
|
116
|
-
M /rio/trunk/test/tc/symlink0.rb
|
|
117
|
-
M /rio/trunk/test/tc/symlink1.rb
|
|
118
|
-
M /rio/trunk/test/tc/temp.rb
|
|
119
|
-
M /rio/trunk/test/tc/tempdir.rb
|
|
120
|
-
M /rio/trunk/test/tc/tempfile.rb
|
|
121
|
-
M /rio/trunk/test/tc/testcase.rb
|
|
122
|
-
|
|
123
|
-
remove dependence on extensions
|
|
124
|
-
------------------------------------------------------------------------
|
|
125
|
-
r129 | kit | 2005-11-23 22:12:19 -0800 (Wed, 23 Nov 2005) | 1 line
|
|
109
|
+
r84 | rio4ruby | 2006-05-01 13:59:27 -0700 (Mon, 01 May 2006) | 1 line
|
|
126
110
|
Changed paths:
|
|
127
|
-
M /rio/
|
|
128
|
-
|
|
111
|
+
M /trunk/rio/lib/rio/cp.rb
|
|
112
|
+
A /trunk/rio/lib/rio/fs/stream.rb
|
|
113
|
+
M /trunk/rio/lib/rio/rl/base.rb
|
|
114
|
+
M /trunk/rio/lib/rio/rl/ioi.rb
|
|
115
|
+
M /trunk/rio/lib/rio/rl/path.rb
|
|
116
|
+
M /trunk/rio/lib/rio/rl/uri.rb
|
|
117
|
+
M /trunk/rio/lib/rio/scheme/cmdio.rb
|
|
118
|
+
M /trunk/rio/lib/rio/scheme/cmdpipe.rb
|
|
119
|
+
M /trunk/rio/lib/rio/scheme/fd.rb
|
|
120
|
+
M /trunk/rio/lib/rio/scheme/stdio.rb
|
|
121
|
+
M /trunk/rio/lib/rio/scheme/strio.rb
|
|
122
|
+
M /trunk/rio/lib/rio/scheme/tcp.rb
|
|
123
|
+
M /trunk/rio/lib/rio/scheme/temp.rb
|
|
124
|
+
M /trunk/rio/lib/rio/state.rb
|
|
125
|
+
M /trunk/rio/lib/rio/stream/base.rb
|
|
126
|
+
M /trunk/rio/lib/rio/stream/open.rb
|
|
127
|
+
M /trunk/rio/test/ftp/test.rb
|
|
128
|
+
M /trunk/rio/test/tc/all.rb
|
|
129
|
+
A /trunk/rio/test/tc/gzip.rb
|
|
129
130
|
|
|
130
|
-
|
|
131
|
+
Fixed problem with strio not having an fs, added gzip tests
|
|
131
132
|
------------------------------------------------------------------------
|
|
132
|
-
|
|
133
|
+
r83 | rio4ruby | 2006-04-08 09:02:17 -0700 (Sat, 08 Apr 2006) | 2 lines
|
|
133
134
|
Changed paths:
|
|
134
|
-
M /rio/
|
|
135
|
-
|
|
136
|
-
M /rio/trunk/lib/rio/construct.rb
|
|
137
|
-
M /rio/trunk/lib/rio/doc/INTRO.rb
|
|
138
|
-
M /rio/trunk/lib/rio/if/dir.rb
|
|
139
|
-
M /rio/trunk/lib/rio/ops/construct.rb
|
|
140
|
-
M /rio/trunk/test/tc/riorl.rb
|
|
135
|
+
M /trunk/rio/test/ftp/anon_misc.rb
|
|
136
|
+
M /trunk/rio/test/ftp/ftp2ftp.rb
|
|
141
137
|
|
|
142
|
-
tests
|
|
143
|
-
------------------------------------------------------------------------
|
|
144
|
-
r127 | kit | 2005-11-15 14:00:07 -0800 (Tue, 15 Nov 2005) | 1 line
|
|
145
|
-
Changed paths:
|
|
146
|
-
M /rio/trunk/RUNME.1st.rb
|
|
147
|
-
M /rio/trunk/Rakefile
|
|
148
|
-
M /rio/trunk/lib/rio/construct.rb
|
|
149
|
-
M /rio/trunk/lib/rio/ext/yaml.rb
|
|
150
|
-
M /rio/trunk/lib/rio/if/grande.rb
|
|
151
|
-
M /rio/trunk/lib/rio/ops/construct.rb
|
|
152
|
-
M /rio/trunk/test/tc/get.rb
|
|
153
|
-
M /rio/trunk/test/tc/yaml.rb
|
|
154
|
-
|
|
155
|
-
YAML is not ready
|
|
156
|
-
------------------------------------------------------------------------
|
|
157
|
-
r126 | kit | 2005-11-15 12:02:42 -0800 (Tue, 15 Nov 2005) | 1 line
|
|
158
|
-
Changed paths:
|
|
159
|
-
M /rio/trunk/Rakefile
|
|
160
|
-
M /rio/trunk/lib/rio/dir.rb
|
|
161
|
-
M /rio/trunk/lib/rio/ioh.rb
|
|
162
|
-
M /rio/trunk/lib/rio/ops/dir.rb
|
|
163
|
-
M /rio/trunk/lib/rio/stream/open.rb
|
|
164
|
-
M /rio/trunk/test/tc/all.rb
|
|
165
|
-
A /rio/trunk/test/tc/dir_iter.rb
|
|
166
|
-
M /rio/trunk/test/tc/each_break.rb
|
|
167
|
-
A /rio/trunk/test/tc/get.rb
|
|
168
|
-
M /rio/trunk/test/tc/testcase.rb
|
|
169
|
-
M /rio/trunk/test/tc/yaml.rb
|
|
170
|
-
|
|
171
|
-
fix get and tighten dir iteration, more tests
|
|
172
|
-
------------------------------------------------------------------------
|
|
173
|
-
r124 | kit | 2005-11-14 20:49:23 -0800 (Mon, 14 Nov 2005) | 1 line
|
|
174
|
-
Changed paths:
|
|
175
|
-
M /rio/trunk/lib/rio/version.rb
|
|
138
|
+
ftp tests
|
|
176
139
|
|
|
177
|
-
New Version
|
|
178
140
|
------------------------------------------------------------------------
|
|
179
|
-
|
|
141
|
+
r82 | rio4ruby | 2006-04-08 08:23:44 -0700 (Sat, 08 Apr 2006) | 2 lines
|
|
180
142
|
Changed paths:
|
|
181
|
-
M /
|
|
182
|
-
M /
|
|
183
|
-
M /rio/
|
|
143
|
+
M /trunk/rio/ex/tonl
|
|
144
|
+
M /trunk/rio/test/ftp/test.rb
|
|
145
|
+
M /trunk/rio/test/runftptests.rb
|
|
146
|
+
M /trunk/rio/test/runtests.rb
|
|
147
|
+
M /trunk/rio/test/tc/all.rb
|
|
148
|
+
A /trunk/rio/test/tc/tonl.rb
|
|
184
149
|
|
|
185
|
-
|
|
186
|
-
------------------------------------------------------------------------
|
|
187
|
-
r122 | kit | 2005-11-14 20:15:02 -0800 (Mon, 14 Nov 2005) | 1 line
|
|
188
|
-
Changed paths:
|
|
189
|
-
M /rio/trunk/doc/ANNOUNCE
|
|
190
|
-
M /rio/trunk/doc/RELEASE_NOTES
|
|
191
|
-
M /rio/trunk/lib/rio/doc/HOWTO.rb
|
|
192
|
-
M /rio/trunk/lib/rio/piper/cp.rb
|
|
193
|
-
M /rio/trunk/lib/rio/piper.rb
|
|
194
|
-
M /rio/trunk/lib/rio/state.rb
|
|
150
|
+
ftp tests and tonl simplification
|
|
195
151
|
|
|
196
|
-
Release
|
|
197
152
|
------------------------------------------------------------------------
|
|
198
|
-
|
|
153
|
+
r81 | rio4ruby | 2006-04-07 14:14:20 -0700 (Fri, 07 Apr 2006) | 2 lines
|
|
199
154
|
Changed paths:
|
|
200
|
-
A /rio/
|
|
155
|
+
A /trunk/rio/lib/rio/ftp/impl.rb
|
|
201
156
|
|
|
202
|
-
|
|
203
|
-
------------------------------------------------------------------------
|
|
204
|
-
r120 | kit | 2005-11-14 17:30:57 -0800 (Mon, 14 Nov 2005) | 1 line
|
|
205
|
-
Changed paths:
|
|
206
|
-
M /rio/trunk/lib/rio/constructor.rb
|
|
207
|
-
M /rio/trunk/lib/rio/factory.rb
|
|
208
|
-
M /rio/trunk/lib/rio/if/grande.rb
|
|
209
|
-
M /rio/trunk/lib/rio/piper/cp.rb
|
|
210
|
-
M /rio/trunk/lib/rio/piper.rb
|
|
211
|
-
M /rio/trunk/lib/rio/rl/base.rb
|
|
212
|
-
M /rio/trunk/lib/rio/rl/builder.rb
|
|
213
|
-
M /rio/trunk/lib/rio/scheme/cmdpipe.rb
|
|
214
|
-
M /rio/trunk/lib/rio/scheme/strio.rb
|
|
215
|
-
M /rio/trunk/lib/rio.rb
|
|
216
|
-
M /rio/trunk/test/tc/all.rb
|
|
217
|
-
M /rio/trunk/test/tc/riorl.rb
|
|
218
|
-
|
|
219
|
-
cmdpipe documentation
|
|
220
|
-
------------------------------------------------------------------------
|
|
221
|
-
r119 | kit | 2005-11-14 12:42:09 -0800 (Mon, 14 Nov 2005) | 1 line
|
|
222
|
-
Changed paths:
|
|
223
|
-
M /rio/trunk/lib/rio/ops/file.rb
|
|
224
|
-
M /rio/trunk/lib/rio/ops/stream/input.rb
|
|
225
|
-
A /rio/trunk/lib/rio/piper
|
|
226
|
-
A /rio/trunk/lib/rio/piper/cp.rb
|
|
227
|
-
M /rio/trunk/lib/rio/piper.rb
|
|
228
|
-
M /rio/trunk/lib/rio/rl/ioi.rb
|
|
229
|
-
M /rio/trunk/lib/rio/scheme/cmdio.rb
|
|
230
|
-
M /rio/trunk/lib/rio/scheme/cmdpipe.rb
|
|
231
|
-
M /rio/trunk/lib/rio/stream/open.rb
|
|
232
|
-
A /rio/trunk/test/tc/piper.rb
|
|
233
|
-
M /rio/trunk/test/tc/riorl.rb
|
|
234
|
-
|
|
235
|
-
cmdpipe using piper (cp model of pipes)
|
|
236
|
-
------------------------------------------------------------------------
|
|
237
|
-
r118 | kit | 2005-11-09 10:09:56 -0800 (Wed, 09 Nov 2005) | 1 line
|
|
238
|
-
Changed paths:
|
|
239
|
-
M /rio/trunk/Rakefile
|
|
240
|
-
A /rio/trunk/rio.gemspec
|
|
157
|
+
added ftp/impl.rb
|
|
241
158
|
|
|
242
|
-
added rio.gemspec
|
|
243
159
|
------------------------------------------------------------------------
|
|
244
|
-
|
|
160
|
+
r80 | rio4ruby | 2006-04-07 14:07:38 -0700 (Fri, 07 Apr 2006) | 2 lines
|
|
245
161
|
Changed paths:
|
|
246
|
-
|
|
162
|
+
A /trunk/rio/lib/rio/ftp/fs.rb
|
|
247
163
|
|
|
248
|
-
|
|
249
|
-
------------------------------------------------------------------------
|
|
250
|
-
r115 | kit | 2005-11-09 08:35:51 -0800 (Wed, 09 Nov 2005) | 1 line
|
|
251
|
-
Changed paths:
|
|
252
|
-
M /rio/trunk/doc/RELEASE_NOTES
|
|
164
|
+
added ftp/fs.rb
|
|
253
165
|
|
|
254
|
-
RELEASE_NOTES
|
|
255
166
|
------------------------------------------------------------------------
|
|
256
|
-
|
|
167
|
+
r79 | rio4ruby | 2006-03-29 23:24:47 -0800 (Wed, 29 Mar 2006) | 2 lines
|
|
257
168
|
Changed paths:
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
M /
|
|
261
|
-
M /rio/trunk/lib/rio/rl/base.rb
|
|
262
|
-
M /rio/trunk/lib/rio/rl/path.rb
|
|
263
|
-
M /rio/trunk/lib/rio/scheme/temp.rb
|
|
264
|
-
M /rio/trunk/test/tc/riorl.rb
|
|
265
|
-
M /rio/trunk/test/tc/temp.rb
|
|
266
|
-
|
|
267
|
-
tempfile fixes
|
|
268
|
-
------------------------------------------------------------------------
|
|
269
|
-
r113 | kit | 2005-11-06 23:59:18 -0800 (Sun, 06 Nov 2005) | 1 line
|
|
270
|
-
Changed paths:
|
|
271
|
-
D /rio/trunk/test/mswin32.rb
|
|
169
|
+
A /trunk/rio/test/runhttptests.rb
|
|
170
|
+
A /trunk/rio/test/tc/copy-from-http.rb
|
|
171
|
+
M /trunk/rio/test/tc/copy-from.rb
|
|
272
172
|
|
|
273
|
-
|
|
274
|
-
------------------------------------------------------------------------
|
|
275
|
-
r112 | kit | 2005-11-06 23:58:27 -0800 (Sun, 06 Nov 2005) | 1 line
|
|
276
|
-
Changed paths:
|
|
277
|
-
D /rio/trunk/doc/README_MSWIN32.txt
|
|
278
|
-
M /rio/trunk/lib/rio/if/path.rb
|
|
279
|
-
M /rio/trunk/lib/rio/ops/path.rb
|
|
280
|
-
M /rio/trunk/lib/rio/rl/path.rb
|
|
281
|
-
M /rio/trunk/lib/rio.rb
|
|
282
|
-
M /rio/trunk/test/runtests.rb
|
|
283
|
-
M /rio/trunk/test/tc/all.rb
|
|
284
|
-
M /rio/trunk/test/tc/misc.rb
|
|
285
|
-
M /rio/trunk/test/tc/overload.rb
|
|
286
|
-
M /rio/trunk/test/tc/route.rb
|
|
287
|
-
|
|
288
|
-
documentation and more path work, unified tests for mswin32
|
|
289
|
-
------------------------------------------------------------------------
|
|
290
|
-
r111 | kit | 2005-11-06 22:37:39 -0800 (Sun, 06 Nov 2005) | 1 line
|
|
291
|
-
Changed paths:
|
|
292
|
-
M /rio/trunk/lib/rio/rl/path.rb
|
|
293
|
-
A /rio/trunk/lib/rio/rl/pathmethods.rb
|
|
294
|
-
M /rio/trunk/lib/rio/rl/uri.rb
|
|
295
|
-
M /rio/trunk/lib/rio/scheme/ftp.rb
|
|
296
|
-
M /rio/trunk/test/mswin32.rb
|
|
297
|
-
M /rio/trunk/test/tc/all.rb
|
|
298
|
-
M /rio/trunk/test/tc/base.rb
|
|
299
|
-
A /rio/trunk/test/tc/route.rb
|
|
300
|
-
|
|
301
|
-
fix route_from, route_to
|
|
302
|
-
------------------------------------------------------------------------
|
|
303
|
-
r110 | kit | 2005-11-06 19:47:14 -0800 (Sun, 06 Nov 2005) | 1 line
|
|
304
|
-
Changed paths:
|
|
305
|
-
M /rio/trunk/lib/rio/ops/path.rb
|
|
306
|
-
M /rio/trunk/lib/rio/rl/path.rb
|
|
307
|
-
M /rio/trunk/lib/rio/rl/uri.rb
|
|
308
|
-
M /rio/trunk/lib/rio/scheme/http.rb
|
|
309
|
-
A /rio/trunk/test/gem_runtests.rb (from /rio/trunk/test/runtests_gem.rb:107)
|
|
310
|
-
M /rio/trunk/test/mswin32.rb
|
|
311
|
-
D /rio/trunk/test/runtests_gem.rb
|
|
312
|
-
M /rio/trunk/test/tc/abs.rb
|
|
313
|
-
M /rio/trunk/test/tc/all.rb
|
|
314
|
-
A /rio/trunk/test/tc/base.rb
|
|
315
|
-
A /rio/trunk/test/tc/split.rb
|
|
316
|
-
|
|
317
|
-
Cleanup of RL, and path handling in general
|
|
318
|
-
------------------------------------------------------------------------
|
|
319
|
-
r109 | kit | 2005-11-05 19:44:40 -0800 (Sat, 05 Nov 2005) | 1 line
|
|
320
|
-
Changed paths:
|
|
321
|
-
M /rio/trunk/lib/rio/if/path.rb
|
|
322
|
-
M /rio/trunk/lib/rio/ops/path.rb
|
|
323
|
-
M /rio/trunk/lib/rio/path.rb
|
|
324
|
-
M /rio/trunk/lib/rio/rl/base.rb
|
|
325
|
-
M /rio/trunk/lib/rio/rl/builder.rb
|
|
326
|
-
M /rio/trunk/lib/rio/rl/ioi.rb
|
|
327
|
-
M /rio/trunk/lib/rio/rl/path.rb
|
|
328
|
-
M /rio/trunk/lib/rio/state.rb
|
|
329
|
-
M /rio/trunk/test/mswin32.rb
|
|
330
|
-
M /rio/trunk/test/tc/abs.rb
|
|
331
|
-
M /rio/trunk/test/tc/create.rb
|
|
332
|
-
|
|
333
|
-
change meaning of path, modify tests
|
|
334
|
-
------------------------------------------------------------------------
|
|
335
|
-
r108 | kit | 2005-10-30 11:36:40 -0800 (Sun, 30 Oct 2005) | 1 line
|
|
336
|
-
Changed paths:
|
|
337
|
-
M /rio/trunk/lib/rio/ops/path.rb
|
|
338
|
-
M /rio/trunk/lib/rio/ops/stream/input.rb
|
|
339
|
-
M /rio/trunk/lib/rio/path/reset.rb
|
|
340
|
-
M /rio/trunk/lib/rio/piper.rb
|
|
341
|
-
M /rio/trunk/lib/rio/rl/base.rb
|
|
342
|
-
M /rio/trunk/lib/rio/rl/builder.rb
|
|
343
|
-
M /rio/trunk/lib/rio/rl/ioi.rb
|
|
344
|
-
M /rio/trunk/lib/rio/rl/path.rb
|
|
345
|
-
M /rio/trunk/lib/rio/scheme/cmdpipe.rb
|
|
346
|
-
M /rio/trunk/lib/rio/scheme/temp.rb
|
|
347
|
-
M /rio/trunk/test/mswin32.rb
|
|
348
|
-
M /rio/trunk/test/tc/abs.rb
|
|
349
|
-
M /rio/trunk/test/tc/copydir.rb
|
|
350
|
-
M /rio/trunk/test/tc/create.rb
|
|
351
|
-
M /rio/trunk/test/tc/expand_path.rb
|
|
352
|
-
M /rio/trunk/test/tc/noqae.rb
|
|
353
|
-
M /rio/trunk/test/tc/riorl.rb
|
|
354
|
-
M /rio/trunk/test/tc/skip.rb
|
|
355
|
-
M /rio/trunk/test/tc/testcase.rb
|
|
356
|
-
|
|
357
|
-
MSWIN32 paths
|
|
358
|
-
------------------------------------------------------------------------
|
|
359
|
-
r107 | kit | 2005-10-28 14:34:23 -0700 (Fri, 28 Oct 2005) | 1 line
|
|
360
|
-
Changed paths:
|
|
361
|
-
M /rio/trunk/lib/rio/factory.rb
|
|
362
|
-
M /rio/trunk/lib/rio/filter/closeoneof.rb
|
|
363
|
-
M /rio/trunk/lib/rio/ioh.rb
|
|
364
|
-
M /rio/trunk/lib/rio/ops/stream/input.rb
|
|
365
|
-
M /rio/trunk/lib/rio/ops/stream/output.rb
|
|
366
|
-
M /rio/trunk/lib/rio/ops/stream/read.rb
|
|
367
|
-
M /rio/trunk/lib/rio/ops/stream/write.rb
|
|
368
|
-
M /rio/trunk/lib/rio/ops/stream.rb
|
|
369
|
-
M /rio/trunk/lib/rio/piper.rb
|
|
370
|
-
M /rio/trunk/lib/rio/rl/base.rb
|
|
371
|
-
M /rio/trunk/lib/rio/rl/builder.rb
|
|
372
|
-
M /rio/trunk/lib/rio/rl/path.rb
|
|
373
|
-
M /rio/trunk/lib/rio/scheme/cmdio.rb
|
|
374
|
-
A /rio/trunk/lib/rio/scheme/cmdpipe.rb
|
|
375
|
-
M /rio/trunk/lib/rio/state.rb
|
|
376
|
-
M /rio/trunk/lib/rio/stream/open.rb
|
|
377
|
-
M /rio/trunk/lib/rio.rb
|
|
378
|
-
|
|
379
|
-
initial pipe implementation
|
|
380
|
-
------------------------------------------------------------------------
|
|
381
|
-
r106 | kit | 2005-10-27 13:12:14 -0700 (Thu, 27 Oct 2005) | 1 line
|
|
382
|
-
Changed paths:
|
|
383
|
-
A /rio/trunk/lib/rio/piper.rb
|
|
173
|
+
Moved http tests from general tests
|
|
384
174
|
|
|
385
|
-
inititial of piper.rb
|
|
386
175
|
------------------------------------------------------------------------
|
|
387
|
-
|
|
176
|
+
r78 | rio4ruby | 2006-03-26 02:55:45 -0800 (Sun, 26 Mar 2006) | 2 lines
|
|
388
177
|
Changed paths:
|
|
389
|
-
|
|
390
|
-
|
|
178
|
+
A /trunk/rio/test/bin
|
|
179
|
+
A /trunk/rio/test/bin/count_lines.rb
|
|
180
|
+
A /trunk/rio/test/bin/find_lines.rb
|
|
181
|
+
A /trunk/rio/test/bin/list_dir.rb
|
|
391
182
|
|
|
392
|
-
|
|
393
|
-
------------------------------------------------------------------------
|
|
394
|
-
r104 | kit | 2005-09-12 22:22:01 -0700 (Mon, 12 Sep 2005) | 1 line
|
|
395
|
-
Changed paths:
|
|
396
|
-
M /rio/trunk/lib/rio/if/yaml.rb
|
|
397
|
-
|
|
398
|
-
yaml documentation
|
|
399
|
-
------------------------------------------------------------------------
|
|
400
|
-
r103 | kit | 2005-09-12 21:53:53 -0700 (Mon, 12 Sep 2005) | 1 line
|
|
401
|
-
Changed paths:
|
|
402
|
-
M /rio/trunk/lib/rio/doc/INTRO.rb
|
|
403
|
-
M /rio/trunk/lib/rio/ext/yaml.rb
|
|
404
|
-
M /rio/trunk/lib/rio/if/yaml.rb
|
|
405
|
-
M /rio/trunk/lib/rio/ops/either.rb
|
|
406
|
-
M /rio/trunk/lib/rio/state.rb
|
|
183
|
+
added test/bin programs
|
|
407
184
|
|
|
408
|
-
yaml and yaml documentation
|
|
409
185
|
------------------------------------------------------------------------
|
|
410
|
-
|
|
186
|
+
r77 | rio4ruby | 2006-03-26 02:54:17 -0800 (Sun, 26 Mar 2006) | 2 lines
|
|
411
187
|
Changed paths:
|
|
412
|
-
M /rio/
|
|
413
|
-
M /rio/
|
|
414
|
-
M /
|
|
415
|
-
A /
|
|
416
|
-
M /rio/trunk/lib/rio/if.rb
|
|
417
|
-
M /rio/trunk/test/tc/yaml.rb
|
|
188
|
+
M /trunk/rio/lib/rio/construct.rb
|
|
189
|
+
M /trunk/rio/test/tc/cmdpipe.rb
|
|
190
|
+
M /trunk/rio/test/tc/piper.rb
|
|
191
|
+
A /trunk/rio/test/tc/programs_util.rb
|
|
418
192
|
|
|
419
|
-
|
|
420
|
-
------------------------------------------------------------------------
|
|
421
|
-
r101 | kit | 2005-09-10 20:08:08 -0700 (Sat, 10 Sep 2005) | 1 line
|
|
422
|
-
Changed paths:
|
|
423
|
-
A /rio/trunk/test/tc/yaml.rb
|
|
193
|
+
added test/bin
|
|
424
194
|
|
|
425
|
-
yaml
|
|
426
195
|
------------------------------------------------------------------------
|
|
427
|
-
|
|
196
|
+
r76 | rio4ruby | 2006-03-20 17:20:35 -0800 (Mon, 20 Mar 2006) | 2 lines
|
|
428
197
|
Changed paths:
|
|
429
|
-
|
|
430
|
-
M /rio/
|
|
431
|
-
M /rio/trunk/lib/rio/cp.rb
|
|
432
|
-
M /rio/trunk/lib/rio/doc/INTRO.rb
|
|
433
|
-
M /rio/trunk/lib/rio/ext/csv.rb
|
|
434
|
-
A /rio/trunk/lib/rio/ext/yaml.rb
|
|
435
|
-
M /rio/trunk/lib/rio/ext.rb
|
|
436
|
-
M /rio/trunk/lib/rio/filter/closeoneof.rb
|
|
437
|
-
M /rio/trunk/lib/rio/filter/gzip.rb
|
|
438
|
-
M /rio/trunk/lib/rio/if/csv.rb
|
|
439
|
-
M /rio/trunk/lib/rio/if/grande.rb
|
|
440
|
-
M /rio/trunk/lib/rio/if/grande_stream.rb
|
|
441
|
-
M /rio/trunk/lib/rio/if.rb
|
|
442
|
-
M /rio/trunk/lib/rio/ioh.rb
|
|
443
|
-
M /rio/trunk/lib/rio/matchrecord.rb
|
|
444
|
-
M /rio/trunk/lib/rio/ops/dir.rb
|
|
445
|
-
M /rio/trunk/lib/rio/ops/either.rb
|
|
446
|
-
M /rio/trunk/lib/rio/ops/file.rb
|
|
447
|
-
M /rio/trunk/lib/rio/ops/stream/input.rb
|
|
448
|
-
M /rio/trunk/lib/rio/ops/stream/output.rb
|
|
449
|
-
M /rio/trunk/lib/rio/rectype.rb
|
|
450
|
-
M /rio/trunk/lib/rio/state.rb
|
|
451
|
-
M /rio/trunk/lib/rio/stream/open.rb
|
|
452
|
-
M /rio/trunk/lib/rio/stream.rb
|
|
453
|
-
M /rio/trunk/test/tc/all.rb
|
|
454
|
-
M /rio/trunk/test/tc/csv.rb
|
|
455
|
-
M /rio/trunk/test/tc/csv2.rb
|
|
456
|
-
M /rio/trunk/test/tc/csv_columns.rb
|
|
198
|
+
M /trunk/rio/lib/rio/ftp/conn.rb
|
|
199
|
+
M /trunk/rio/lib/rio/ftp.rb
|
|
457
200
|
|
|
458
|
-
|
|
459
|
-
------------------------------------------------------------------------
|
|
460
|
-
r97 | kit | 2005-09-06 16:51:50 -0700 (Tue, 06 Sep 2005) | 1 line
|
|
461
|
-
Changed paths:
|
|
462
|
-
M /rio/trunk/doc/ANNOUNCE
|
|
463
|
-
M /rio/trunk/doc/RELEASE_NOTES
|
|
464
|
-
M /rio/trunk/lib/rio/base.rb
|
|
465
|
-
M /rio/trunk/lib/rio/entrysel.rb
|
|
466
|
-
M /rio/trunk/lib/rio/grande.rb
|
|
467
|
-
M /rio/trunk/lib/rio/if/grande_stream.rb
|
|
468
|
-
D /rio/trunk/lib/rio/if/methods.rb
|
|
469
|
-
M /rio/trunk/lib/rio/if.rb
|
|
470
|
-
M /rio/trunk/test/tc/temp.rb
|
|
471
|
-
M /rio/trunk/test/tc/tempdir.rb
|
|
201
|
+
fixed bug 3303 regarding mtime for ftp rios
|
|
472
202
|
|
|
473
|
-
Prepare for Release
|
|
474
203
|
------------------------------------------------------------------------
|
|
475
|
-
|
|
204
|
+
r75 | rio4ruby | 2006-03-20 16:54:09 -0800 (Mon, 20 Mar 2006) | 2 lines
|
|
476
205
|
Changed paths:
|
|
477
|
-
M /rio/
|
|
206
|
+
M /trunk/rio/lib/rio/dir.rb
|
|
207
|
+
M /trunk/rio/lib/rio/file.rb
|
|
208
|
+
M /trunk/rio/lib/rio/ftp/conn.rb
|
|
209
|
+
M /trunk/rio/lib/rio/ftp.rb
|
|
210
|
+
M /trunk/rio/lib/rio/match.rb
|
|
211
|
+
M /trunk/rio/lib/rio/ops/dir.rb
|
|
212
|
+
M /trunk/rio/lib/rio/path.rb
|
|
213
|
+
M /trunk/rio/lib/rio/rl/ioi.rb
|
|
214
|
+
M /trunk/rio/lib/rio/rl/path.rb
|
|
215
|
+
M /trunk/rio/lib/rio/rl/uri.rb
|
|
216
|
+
M /trunk/rio/lib/rio/scheme/cmdio.rb
|
|
217
|
+
M /trunk/rio/lib/rio/scheme/fd.rb
|
|
218
|
+
M /trunk/rio/lib/rio/scheme/ftp.rb
|
|
219
|
+
M /trunk/rio/lib/rio/scheme/null.rb
|
|
220
|
+
M /trunk/rio/lib/rio/scheme/path.rb
|
|
221
|
+
M /trunk/rio/lib/rio/scheme/stderr.rb
|
|
222
|
+
M /trunk/rio/lib/rio/scheme/stdio.rb
|
|
223
|
+
M /trunk/rio/lib/rio/scheme/strio.rb
|
|
224
|
+
M /trunk/rio/lib/rio/scheme/sysio.rb
|
|
225
|
+
M /trunk/rio/lib/rio/scheme/tcp.rb
|
|
226
|
+
M /trunk/rio/lib/rio/stream/open.rb
|
|
227
|
+
M /trunk/rio/test/ftp/anon_misc.rb
|
|
228
|
+
M /trunk/rio/test/tc/all.rb
|
|
229
|
+
A /trunk/rio/test/tc/files_select.rb
|
|
478
230
|
|
|
479
|
-
|
|
480
|
-
------------------------------------------------------------------------
|
|
481
|
-
r94 | kit | 2005-09-06 15:28:19 -0700 (Tue, 06 Sep 2005) | 1 line
|
|
482
|
-
Changed paths:
|
|
483
|
-
M /rio/trunk/lib/rio/base.rb
|
|
484
|
-
A /rio/trunk/lib/rio/construct.rb
|
|
485
|
-
M /rio/trunk/lib/rio/if/path.rb
|
|
486
|
-
M /rio/trunk/lib/rio/if/temp.rb
|
|
487
|
-
M /rio/trunk/lib/rio/if/test.rb
|
|
488
|
-
M /rio/trunk/lib/rio/impl/path.rb
|
|
489
|
-
A /rio/trunk/lib/rio/ops/construct.rb
|
|
490
|
-
M /rio/trunk/lib/rio/ops/create.rb
|
|
491
|
-
M /rio/trunk/lib/rio/ops/either.rb
|
|
492
|
-
M /rio/trunk/lib/rio/ops/path.rb
|
|
493
|
-
M /rio/trunk/lib/rio/state.rb
|
|
494
|
-
M /rio/trunk/lib/rio/version.rb
|
|
495
|
-
M /rio/trunk/lib/rio.rb
|
|
496
|
-
A /rio/trunk/test/tc/skiplines.rb
|
|
497
|
-
|
|
498
|
-
skip tests and new constructor methods
|
|
499
|
-
------------------------------------------------------------------------
|
|
500
|
-
r93 | kit | 2005-09-05 20:22:06 -0700 (Mon, 05 Sep 2005) | 1 line
|
|
501
|
-
Changed paths:
|
|
502
|
-
M /rio/trunk/lib/rio/context/stream.rb
|
|
503
|
-
M /rio/trunk/lib/rio/if/grande.rb
|
|
504
|
-
M /rio/trunk/lib/rio/if/grande_stream.rb
|
|
505
|
-
M /rio/trunk/lib/rio/if/methods.rb
|
|
506
|
-
M /rio/trunk/lib/rio/ops/dir.rb
|
|
507
|
-
M /rio/trunk/lib/rio/ops/stream/input.rb
|
|
508
|
-
M /rio/trunk/test/tc/all.rb
|
|
509
|
-
M /rio/trunk/test/tc/skip.rb
|
|
510
|
-
|
|
511
|
-
skip lines, and document skip
|
|
512
|
-
------------------------------------------------------------------------
|
|
513
|
-
r92 | kit | 2005-09-05 13:32:45 -0700 (Mon, 05 Sep 2005) | 1 line
|
|
514
|
-
Changed paths:
|
|
515
|
-
A /rio/trunk/lib/rio/context/skip.rb
|
|
516
|
-
A /rio/trunk/lib/rio/if/grande_entry.rb
|
|
517
|
-
A /rio/trunk/lib/rio/if/grande_stream.rb
|
|
518
|
-
A /rio/trunk/test/tc/copysymlink.rb
|
|
519
|
-
A /rio/trunk/test/tc/skip.rb
|
|
231
|
+
Now IOH is returned by RL schemes~
|
|
520
232
|
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
M /
|
|
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
|
-
M /rio/
|
|
233
|
+
------------------------------------------------------------------------
|
|
234
|
+
r74 | rio4ruby | 2006-03-17 12:09:58 -0800 (Fri, 17 Mar 2006) | 2 lines
|
|
235
|
+
Changed paths:
|
|
236
|
+
M /trunk/rio/lib/rio/stream.rb
|
|
237
|
+
M /trunk/rio/test/ftp/all.rb
|
|
238
|
+
A /trunk/rio/test/ftp/anon_misc.rb
|
|
239
|
+
A /trunk/rio/test/ftp/anon_read.rb
|
|
240
|
+
A /trunk/rio/test/ftp/anon_write.rb
|
|
241
|
+
D /trunk/rio/test/ftp/miscanon.rb
|
|
242
|
+
D /trunk/rio/test/ftp/readanon.rb
|
|
243
|
+
D /trunk/rio/test/ftp/writeanon.rb
|
|
244
|
+
|
|
245
|
+
renamed ftp tests
|
|
246
|
+
|
|
247
|
+
------------------------------------------------------------------------
|
|
248
|
+
r73 | rio4ruby | 2006-03-16 13:28:47 -0800 (Thu, 16 Mar 2006) | 2 lines
|
|
249
|
+
Changed paths:
|
|
250
|
+
A /trunk/rio/rioinstall.rb
|
|
251
|
+
|
|
252
|
+
rioinstall.rb added
|
|
253
|
+
|
|
254
|
+
------------------------------------------------------------------------
|
|
255
|
+
r72 | rio4ruby | 2006-03-16 13:27:37 -0800 (Thu, 16 Mar 2006) | 2 lines
|
|
256
|
+
Changed paths:
|
|
257
|
+
D /trunk/rio/RUNME.1st.rb
|
|
258
|
+
A /trunk/rio/build_doc.rb
|
|
259
|
+
A /trunk/rio/lib/rio/callstr.rb
|
|
260
|
+
A /trunk/rio/lib/rio/const.rb
|
|
261
|
+
A /trunk/rio/lib/rio/def.rb
|
|
262
|
+
A /trunk/rio/lib/rio/fs/base.rb
|
|
263
|
+
A /trunk/rio/lib/rio/fs/impl.rb
|
|
264
|
+
A /trunk/rio/lib/rio/fs/url.rb
|
|
265
|
+
A /trunk/rio/lib/rio/nullio.rb
|
|
266
|
+
D /trunk/rio/lib/rio/record.rb
|
|
267
|
+
A /trunk/rio/lib/rio/to_rio/io.rb
|
|
268
|
+
A /trunk/rio/test/ftp
|
|
269
|
+
A /trunk/rio/test/ftp/all.rb
|
|
270
|
+
A /trunk/rio/test/ftp/ftp2ftp.rb
|
|
271
|
+
A /trunk/rio/test/ftp/initftpfiles.rb
|
|
272
|
+
A /trunk/rio/test/ftp/miscanon.rb
|
|
273
|
+
A /trunk/rio/test/ftp/readanon.rb
|
|
274
|
+
A /trunk/rio/test/ftp/test.rb
|
|
275
|
+
A /trunk/rio/test/ftp/writeanon.rb
|
|
276
|
+
A /trunk/rio/test/runalltests.rb
|
|
277
|
+
A /trunk/rio/test/runftptests.rb
|
|
278
|
+
A /trunk/rio/test/tc/emptyriodir.rb
|
|
279
|
+
A /trunk/rio/test/tc/entsel.rb
|
|
280
|
+
|
|
281
|
+
ftp and misc
|
|
282
|
+
|
|
283
|
+
------------------------------------------------------------------------
|
|
284
|
+
r71 | rio4ruby | 2006-03-16 13:14:51 -0800 (Thu, 16 Mar 2006) | 2 lines
|
|
285
|
+
Changed paths:
|
|
286
|
+
M /trunk/rio/README
|
|
287
|
+
M /trunk/rio/Rakefile
|
|
288
|
+
M /trunk/rio/doc/ANNOUNCE
|
|
289
|
+
M /trunk/rio/doc/RELEASE_NOTES
|
|
290
|
+
M /trunk/rio/doc/generators/template/html/rio.rb
|
|
291
|
+
M /trunk/rio/ex/findruby
|
|
292
|
+
M /trunk/rio/ex/prompt.rb
|
|
293
|
+
M /trunk/rio/ex/riocat
|
|
294
|
+
M /trunk/rio/ex/rioprompt.rb
|
|
295
|
+
M /trunk/rio/lib/rio/abstract_method.rb
|
|
296
|
+
M /trunk/rio/lib/rio/argv.rb
|
|
297
|
+
M /trunk/rio/lib/rio/arrayio.rb
|
|
298
|
+
M /trunk/rio/lib/rio/arycopy.rb
|
|
299
|
+
M /trunk/rio/lib/rio/assert.rb
|
|
300
|
+
M /trunk/rio/lib/rio/base.rb
|
|
301
|
+
M /trunk/rio/lib/rio/construct.rb
|
|
302
|
+
M /trunk/rio/lib/rio/constructor.rb
|
|
303
|
+
M /trunk/rio/lib/rio/context/closeoneof.rb
|
|
304
|
+
M /trunk/rio/lib/rio/context/copying.rb
|
|
305
|
+
M /trunk/rio/lib/rio/context/cxx.rb
|
|
306
|
+
M /trunk/rio/lib/rio/context/dir.rb
|
|
307
|
+
M /trunk/rio/lib/rio/context/gzip.rb
|
|
308
|
+
M /trunk/rio/lib/rio/context/methods.rb
|
|
309
|
+
M /trunk/rio/lib/rio/context/skip.rb
|
|
310
|
+
M /trunk/rio/lib/rio/context/stream.rb
|
|
311
|
+
M /trunk/rio/lib/rio/context.rb
|
|
312
|
+
M /trunk/rio/lib/rio/cp.rb
|
|
313
|
+
M /trunk/rio/lib/rio/dir.rb
|
|
314
|
+
M /trunk/rio/lib/rio/doc/HOWTO.rb
|
|
315
|
+
M /trunk/rio/lib/rio/doc/INTRO.rb
|
|
316
|
+
M /trunk/rio/lib/rio/doc/MISC.rb
|
|
317
|
+
M /trunk/rio/lib/rio/doc/OPTIONAL.rb
|
|
318
|
+
M /trunk/rio/lib/rio/doc/SYNOPSIS.rb
|
|
319
|
+
M /trunk/rio/lib/rio/doc.rb
|
|
320
|
+
M /trunk/rio/lib/rio/entrysel.rb
|
|
321
|
+
M /trunk/rio/lib/rio/exception/copy.rb
|
|
322
|
+
M /trunk/rio/lib/rio/exception/notsupported.rb
|
|
323
|
+
M /trunk/rio/lib/rio/exception/open.rb
|
|
324
|
+
M /trunk/rio/lib/rio/exception/state.rb
|
|
325
|
+
M /trunk/rio/lib/rio/exception.rb
|
|
326
|
+
M /trunk/rio/lib/rio/ext/csv.rb
|
|
327
|
+
M /trunk/rio/lib/rio/ext/yaml.rb
|
|
328
|
+
M /trunk/rio/lib/rio/ext/zipfile.rb
|
|
329
|
+
M /trunk/rio/lib/rio/ext.rb
|
|
330
|
+
M /trunk/rio/lib/rio/factory.rb
|
|
331
|
+
M /trunk/rio/lib/rio/file.rb
|
|
332
|
+
M /trunk/rio/lib/rio/filter/closeoneof.rb
|
|
333
|
+
M /trunk/rio/lib/rio/filter/gzip.rb
|
|
334
|
+
M /trunk/rio/lib/rio/filter.rb
|
|
335
|
+
M /trunk/rio/lib/rio/fs/native.rb
|
|
336
|
+
M /trunk/rio/lib/rio/ftp/conn.rb
|
|
337
|
+
M /trunk/rio/lib/rio/ftp/ioh.rb
|
|
338
|
+
M /trunk/rio/lib/rio/ftp.rb
|
|
339
|
+
M /trunk/rio/lib/rio/grande.rb
|
|
340
|
+
M /trunk/rio/lib/rio/handle.rb
|
|
341
|
+
M /trunk/rio/lib/rio/if/basic.rb
|
|
342
|
+
M /trunk/rio/lib/rio/if/csv.rb
|
|
343
|
+
M /trunk/rio/lib/rio/if/dir.rb
|
|
344
|
+
M /trunk/rio/lib/rio/if/file.rb
|
|
345
|
+
M /trunk/rio/lib/rio/if/fileordir.rb
|
|
346
|
+
M /trunk/rio/lib/rio/if/grande.rb
|
|
347
|
+
M /trunk/rio/lib/rio/if/grande_entry.rb
|
|
348
|
+
M /trunk/rio/lib/rio/if/grande_stream.rb
|
|
349
|
+
M /trunk/rio/lib/rio/if/internal.rb
|
|
350
|
+
M /trunk/rio/lib/rio/if/path.rb
|
|
351
|
+
M /trunk/rio/lib/rio/if/stream.rb
|
|
352
|
+
M /trunk/rio/lib/rio/if/string.rb
|
|
353
|
+
M /trunk/rio/lib/rio/if/temp.rb
|
|
354
|
+
M /trunk/rio/lib/rio/if/test.rb
|
|
355
|
+
M /trunk/rio/lib/rio/if/yaml.rb
|
|
356
|
+
M /trunk/rio/lib/rio/if.rb
|
|
357
|
+
M /trunk/rio/lib/rio/impl/path.rb
|
|
358
|
+
M /trunk/rio/lib/rio/ioh.rb
|
|
359
|
+
M /trunk/rio/lib/rio/iomode.rb
|
|
360
|
+
M /trunk/rio/lib/rio/ios/fail.rb
|
|
361
|
+
M /trunk/rio/lib/rio/ios/generic.rb
|
|
362
|
+
M /trunk/rio/lib/rio/ios/mode.rb
|
|
363
|
+
M /trunk/rio/lib/rio/ios/null.rb
|
|
364
|
+
M /trunk/rio/lib/rio/iowrap.rb
|
|
365
|
+
M /trunk/rio/lib/rio/kernel.rb
|
|
366
|
+
M /trunk/rio/lib/rio/local.rb
|
|
367
|
+
M /trunk/rio/lib/rio/match.rb
|
|
368
|
+
M /trunk/rio/lib/rio/matchrecord.rb
|
|
369
|
+
M /trunk/rio/lib/rio/open3.rb
|
|
370
|
+
M /trunk/rio/lib/rio/ops/construct.rb
|
|
371
|
+
M /trunk/rio/lib/rio/ops/create.rb
|
|
372
|
+
M /trunk/rio/lib/rio/ops/dir.rb
|
|
373
|
+
M /trunk/rio/lib/rio/ops/either.rb
|
|
374
|
+
M /trunk/rio/lib/rio/ops/file.rb
|
|
375
|
+
M /trunk/rio/lib/rio/ops/path.rb
|
|
376
|
+
M /trunk/rio/lib/rio/ops/stream/input.rb
|
|
377
|
+
M /trunk/rio/lib/rio/ops/stream/output.rb
|
|
378
|
+
M /trunk/rio/lib/rio/ops/stream/read.rb
|
|
379
|
+
M /trunk/rio/lib/rio/ops/stream/write.rb
|
|
380
|
+
M /trunk/rio/lib/rio/ops/stream.rb
|
|
381
|
+
M /trunk/rio/lib/rio/ops/symlink.rb
|
|
382
|
+
M /trunk/rio/lib/rio/path/reset.rb
|
|
383
|
+
M /trunk/rio/lib/rio/path.rb
|
|
384
|
+
M /trunk/rio/lib/rio/piper/cp.rb
|
|
385
|
+
M /trunk/rio/lib/rio/piper.rb
|
|
386
|
+
M /trunk/rio/lib/rio/prompt.rb
|
|
387
|
+
M /trunk/rio/lib/rio/rectype.rb
|
|
388
|
+
M /trunk/rio/lib/rio/rl/base.rb
|
|
389
|
+
M /trunk/rio/lib/rio/rl/builder.rb
|
|
390
|
+
M /trunk/rio/lib/rio/rl/ioi.rb
|
|
391
|
+
M /trunk/rio/lib/rio/rl/path.rb
|
|
392
|
+
M /trunk/rio/lib/rio/rl/pathmethods.rb
|
|
393
|
+
M /trunk/rio/lib/rio/rl/uri.rb
|
|
394
|
+
M /trunk/rio/lib/rio/scheme/aryio.rb
|
|
395
|
+
M /trunk/rio/lib/rio/scheme/cmdio.rb
|
|
396
|
+
M /trunk/rio/lib/rio/scheme/cmdpipe.rb
|
|
397
|
+
M /trunk/rio/lib/rio/scheme/fd.rb
|
|
398
|
+
M /trunk/rio/lib/rio/scheme/ftp.rb
|
|
399
|
+
M /trunk/rio/lib/rio/scheme/http.rb
|
|
400
|
+
M /trunk/rio/lib/rio/scheme/null.rb
|
|
401
|
+
M /trunk/rio/lib/rio/scheme/path.rb
|
|
402
|
+
M /trunk/rio/lib/rio/scheme/stderr.rb
|
|
403
|
+
M /trunk/rio/lib/rio/scheme/stdio.rb
|
|
404
|
+
M /trunk/rio/lib/rio/scheme/strio.rb
|
|
405
|
+
M /trunk/rio/lib/rio/scheme/sysio.rb
|
|
406
|
+
M /trunk/rio/lib/rio/scheme/tcp.rb
|
|
407
|
+
M /trunk/rio/lib/rio/state/error.rb
|
|
408
|
+
M /trunk/rio/lib/rio/state.rb
|
|
409
|
+
M /trunk/rio/lib/rio/stream/base.rb
|
|
410
|
+
M /trunk/rio/lib/rio/stream/duplex.rb
|
|
411
|
+
M /trunk/rio/lib/rio/stream/open.rb
|
|
412
|
+
M /trunk/rio/lib/rio/stream.rb
|
|
413
|
+
M /trunk/rio/lib/rio/symantics.rb
|
|
414
|
+
M /trunk/rio/lib/rio/to_rio/all.rb
|
|
415
|
+
M /trunk/rio/lib/rio/to_rio/array.rb
|
|
416
|
+
M /trunk/rio/lib/rio/to_rio/object.rb
|
|
417
|
+
M /trunk/rio/lib/rio/to_rio/string.rb
|
|
418
|
+
M /trunk/rio/lib/rio/to_rio.rb
|
|
419
|
+
M /trunk/rio/lib/rio/uri/file.rb
|
|
420
|
+
M /trunk/rio/lib/rio/util.rb
|
|
421
|
+
M /trunk/rio/lib/rio/version.rb
|
|
422
|
+
M /trunk/rio/lib/rio.rb
|
|
423
|
+
M /trunk/rio/misc/newheader
|
|
424
|
+
M /trunk/rio/misc/oldheader
|
|
425
|
+
M /trunk/rio/test/tc/all.rb
|
|
426
|
+
M /trunk/rio/test/tc/misc.rb
|
|
427
|
+
M /trunk/rio/test/tc/rename.rb
|
|
428
|
+
M /trunk/rio/test/tc/testcase.rb
|
|
429
|
+
|
|
430
|
+
Many updates
|
|
431
|
+
|
|
432
|
+
------------------------------------------------------------------------
|
|
433
|
+
r70 | rio4ruby | 2006-01-04 19:51:17 -0800 (Wed, 04 Jan 2006) | 2 lines
|
|
434
|
+
Changed paths:
|
|
435
|
+
A /trunk/rio/lib/rio/ios/fail.rb
|
|
436
|
+
A /trunk/rio/lib/rio/ios/generic.rb
|
|
437
|
+
A /trunk/rio/lib/rio/ios/mode.rb
|
|
438
|
+
|
|
439
|
+
added various missing files
|
|
440
|
+
|
|
441
|
+
------------------------------------------------------------------------
|
|
442
|
+
r69 | rio4ruby | 2006-01-04 19:48:31 -0800 (Wed, 04 Jan 2006) | 2 lines
|
|
443
|
+
Changed paths:
|
|
444
|
+
A /trunk/rio/lib/rio/exception/notsupported.rb
|
|
445
|
+
|
|
446
|
+
exception/notsupported.rb added
|
|
447
|
+
|
|
448
|
+
------------------------------------------------------------------------
|
|
449
|
+
r68 | rio4ruby | 2006-01-04 19:44:47 -0800 (Wed, 04 Jan 2006) | 2 lines
|
|
450
|
+
Changed paths:
|
|
451
|
+
A /trunk/rio/lib/rio/ios
|
|
452
|
+
A /trunk/rio/lib/rio/ios/null.rb
|
|
453
|
+
|
|
454
|
+
ios/null.rb added
|
|
455
|
+
|
|
456
|
+
------------------------------------------------------------------------
|
|
457
|
+
r67 | rio4ruby | 2006-01-04 19:38:11 -0800 (Wed, 04 Jan 2006) | 2 lines
|
|
458
|
+
Changed paths:
|
|
459
|
+
A /trunk/rio/lib/rio/iowrap.rb
|
|
460
|
+
|
|
461
|
+
added iowrap.rb
|
|
462
|
+
|
|
463
|
+
------------------------------------------------------------------------
|
|
464
|
+
r66 | rio4ruby | 2006-01-04 19:35:42 -0800 (Wed, 04 Jan 2006) | 2 lines
|
|
465
|
+
Changed paths:
|
|
466
|
+
A /trunk/rio/lib/rio/ext/zipfile.rb
|
|
467
|
+
|
|
468
|
+
added zipfile.rb
|
|
469
|
+
|
|
470
|
+
------------------------------------------------------------------------
|
|
471
|
+
r65 | rio4ruby | 2006-01-04 19:28:40 -0800 (Wed, 04 Jan 2006) | 2 lines
|
|
472
|
+
Changed paths:
|
|
473
|
+
D /trunk/rio/ex/tolf
|
|
474
|
+
A /trunk/rio/ex/tonl
|
|
475
|
+
A /trunk/rio/lib/rio/fs
|
|
476
|
+
A /trunk/rio/lib/rio/fs/native.rb
|
|
477
|
+
A /trunk/rio/lib/rio/to_rio
|
|
478
|
+
A /trunk/rio/lib/rio/to_rio/all.rb
|
|
479
|
+
A /trunk/rio/lib/rio/to_rio/array.rb
|
|
480
|
+
A /trunk/rio/lib/rio/to_rio/object.rb
|
|
481
|
+
A /trunk/rio/lib/rio/to_rio/string.rb
|
|
482
|
+
|
|
483
|
+
add more files
|
|
484
|
+
|
|
485
|
+
------------------------------------------------------------------------
|
|
486
|
+
r64 | rio4ruby | 2006-01-04 19:24:12 -0800 (Wed, 04 Jan 2006) | 2 lines
|
|
487
|
+
Changed paths:
|
|
488
|
+
A /trunk/rio/lib/rio/doc/OPTIONAL.rb
|
|
489
|
+
A /trunk/rio/lib/rio/scheme/null.rb
|
|
490
|
+
A /trunk/rio/test/tc/empty.rb
|
|
491
|
+
A /trunk/rio/test/tc/io_each_byte.rb
|
|
492
|
+
A /trunk/rio/test/tc/io_read.rb
|
|
493
|
+
A /trunk/rio/test/tc/iometh.rb
|
|
494
|
+
A /trunk/rio/test/tc/likeio.rb
|
|
495
|
+
A /trunk/rio/test/tc/null.rb
|
|
496
|
+
A /trunk/rio/test/tc/pid.rb
|
|
497
|
+
A /trunk/rio/test/tc/readline.rb
|
|
498
|
+
|
|
499
|
+
add files
|
|
500
|
+
|
|
501
|
+
------------------------------------------------------------------------
|
|
502
|
+
r63 | rio4ruby | 2006-01-04 19:20:07 -0800 (Wed, 04 Jan 2006) | 2 lines
|
|
503
|
+
Changed paths:
|
|
504
|
+
M /trunk/rio/doc/ANNOUNCE
|
|
505
|
+
M /trunk/rio/ex/riocat
|
|
506
|
+
M /trunk/rio/ex/riogunzip
|
|
507
|
+
M /trunk/rio/ex/rioprompt.rb
|
|
508
|
+
M /trunk/rio/lib/rio/constructor.rb
|
|
509
|
+
M /trunk/rio/lib/rio/context/methods.rb
|
|
510
|
+
M /trunk/rio/lib/rio/cp.rb
|
|
511
|
+
M /trunk/rio/lib/rio/dir.rb
|
|
512
|
+
M /trunk/rio/lib/rio/doc/HOWTO.rb
|
|
513
|
+
M /trunk/rio/lib/rio/doc/INTRO.rb
|
|
514
|
+
M /trunk/rio/lib/rio/doc/SYNOPSIS.rb
|
|
515
|
+
M /trunk/rio/lib/rio/entrysel.rb
|
|
516
|
+
M /trunk/rio/lib/rio/ext.rb
|
|
517
|
+
M /trunk/rio/lib/rio/factory.rb
|
|
518
|
+
M /trunk/rio/lib/rio/file.rb
|
|
519
|
+
M /trunk/rio/lib/rio/filter/closeoneof.rb
|
|
520
|
+
M /trunk/rio/lib/rio/if/fileordir.rb
|
|
521
|
+
M /trunk/rio/lib/rio/if/grande.rb
|
|
522
|
+
M /trunk/rio/lib/rio/if/grande_entry.rb
|
|
523
|
+
M /trunk/rio/lib/rio/if/grande_stream.rb
|
|
524
|
+
M /trunk/rio/lib/rio/if/path.rb
|
|
525
|
+
M /trunk/rio/lib/rio/if/stream.rb
|
|
526
|
+
M /trunk/rio/lib/rio/if/test.rb
|
|
527
|
+
M /trunk/rio/lib/rio/ioh.rb
|
|
528
|
+
M /trunk/rio/lib/rio/kernel.rb
|
|
529
|
+
M /trunk/rio/lib/rio/ops/create.rb
|
|
530
|
+
M /trunk/rio/lib/rio/ops/dir.rb
|
|
531
|
+
M /trunk/rio/lib/rio/ops/either.rb
|
|
532
|
+
M /trunk/rio/lib/rio/ops/file.rb
|
|
533
|
+
M /trunk/rio/lib/rio/ops/path.rb
|
|
534
|
+
M /trunk/rio/lib/rio/ops/stream/input.rb
|
|
535
|
+
M /trunk/rio/lib/rio/ops/stream/read.rb
|
|
536
|
+
M /trunk/rio/lib/rio/ops/stream/write.rb
|
|
537
|
+
M /trunk/rio/lib/rio/ops/stream.rb
|
|
538
|
+
M /trunk/rio/lib/rio/ops/symlink.rb
|
|
539
|
+
M /trunk/rio/lib/rio/path/reset.rb
|
|
540
|
+
M /trunk/rio/lib/rio/path.rb
|
|
541
|
+
M /trunk/rio/lib/rio/rectype.rb
|
|
542
|
+
M /trunk/rio/lib/rio/rl/builder.rb
|
|
543
|
+
M /trunk/rio/lib/rio/rl/path.rb
|
|
544
|
+
M /trunk/rio/lib/rio/rl/uri.rb
|
|
545
|
+
M /trunk/rio/lib/rio/scheme/cmdpipe.rb
|
|
546
|
+
M /trunk/rio/lib/rio/scheme/path.rb
|
|
547
|
+
M /trunk/rio/lib/rio/state.rb
|
|
548
|
+
M /trunk/rio/lib/rio/stream/open.rb
|
|
549
|
+
M /trunk/rio/lib/rio/stream.rb
|
|
550
|
+
M /trunk/rio/test/tc/all.rb
|
|
551
|
+
M /trunk/rio/test/tc/copy.rb
|
|
552
|
+
M /trunk/rio/test/tc/get.rb
|
|
553
|
+
M /trunk/rio/test/tc/getrec.rb
|
|
554
|
+
M /trunk/rio/test/tc/methods.rb
|
|
555
|
+
M /trunk/rio/test/tc/misc.rb
|
|
556
|
+
M /trunk/rio/test/tc/testcase.rb
|
|
557
|
+
|
|
558
|
+
Overdue update
|
|
559
|
+
|
|
560
|
+
------------------------------------------------------------------------
|
|
561
|
+
r62 | rio4ruby | 2005-11-25 20:06:39 -0800 (Fri, 25 Nov 2005) | 2 lines
|
|
562
|
+
Changed paths:
|
|
563
|
+
M /trunk/rio/README
|
|
564
|
+
M /trunk/rio/RUNME.1st.rb
|
|
565
|
+
M /trunk/rio/Rakefile
|
|
566
|
+
M /trunk/rio/doc/ANNOUNCE
|
|
567
|
+
M /trunk/rio/doc/RELEASE_NOTES
|
|
568
|
+
M /trunk/rio/lib/rio/doc/INTRO.rb
|
|
569
|
+
M /trunk/rio/lib/rio/ext/csv.rb
|
|
570
|
+
M /trunk/rio/lib/rio/ext.rb
|
|
571
|
+
M /trunk/rio/lib/rio/filter.rb
|
|
572
|
+
M /trunk/rio/lib/rio/ftp.rb
|
|
573
|
+
M /trunk/rio/lib/rio/if/yaml.rb
|
|
574
|
+
M /trunk/rio/lib/rio/ops/dir.rb
|
|
575
|
+
M /trunk/rio/lib/rio/rl/ioi.rb
|
|
576
|
+
M /trunk/rio/lib/rio/scheme/temp.rb
|
|
577
|
+
M /trunk/rio/lib/rio/state.rb
|
|
578
|
+
M /trunk/rio/lib/rio/stream/open.rb
|
|
579
|
+
A /trunk/rio/lib/rio/util.rb
|
|
580
|
+
M /trunk/rio/lib/rio/version.rb
|
|
581
|
+
M /trunk/rio/lib/rio.rb
|
|
582
|
+
M /trunk/rio/rio.gemspec
|
|
583
|
+
M /trunk/rio/test/tc/all.rb
|
|
584
|
+
M /trunk/rio/test/tc/cd1.rb
|
|
585
|
+
M /trunk/rio/test/tc/clearsel.rb
|
|
586
|
+
M /trunk/rio/test/tc/copy-from.rb
|
|
587
|
+
M /trunk/rio/test/tc/copy-to.rb
|
|
588
|
+
M /trunk/rio/test/tc/copyarray.rb
|
|
589
|
+
M /trunk/rio/test/tc/copydir.rb
|
|
590
|
+
M /trunk/rio/test/tc/copydirlines.rb
|
|
591
|
+
M /trunk/rio/test/tc/copynonex.rb
|
|
592
|
+
M /trunk/rio/test/tc/csv.rb
|
|
593
|
+
M /trunk/rio/test/tc/dir.rb
|
|
594
|
+
M /trunk/rio/test/tc/dir_iter.rb
|
|
595
|
+
M /trunk/rio/test/tc/dirautoclose.rb
|
|
596
|
+
M /trunk/rio/test/tc/dirent.rb
|
|
597
|
+
M /trunk/rio/test/tc/dirss.rb
|
|
598
|
+
M /trunk/rio/test/tc/each.rb
|
|
599
|
+
M /trunk/rio/test/tc/each_break.rb
|
|
600
|
+
M /trunk/rio/test/tc/edf.rb
|
|
601
|
+
M /trunk/rio/test/tc/entary.rb
|
|
602
|
+
M /trunk/rio/test/tc/expand_path.rb
|
|
603
|
+
M /trunk/rio/test/tc/ext.rb
|
|
604
|
+
M /trunk/rio/test/tc/fileno.rb
|
|
605
|
+
M /trunk/rio/test/tc/lineno.rb
|
|
606
|
+
M /trunk/rio/test/tc/methods.rb
|
|
607
|
+
M /trunk/rio/test/tc/misc.rb
|
|
608
|
+
M /trunk/rio/test/tc/nolines.rb
|
|
609
|
+
M /trunk/rio/test/tc/noqae.rb
|
|
610
|
+
M /trunk/rio/test/tc/pa.rb
|
|
611
|
+
M /trunk/rio/test/tc/pathop.rb
|
|
612
|
+
M /trunk/rio/test/tc/paths.rb
|
|
613
|
+
M /trunk/rio/test/tc/qae.rb
|
|
614
|
+
M /trunk/rio/test/tc/qae_riovar.rb
|
|
615
|
+
M /trunk/rio/test/tc/records.rb
|
|
616
|
+
M /trunk/rio/test/tc/rename.rb
|
|
617
|
+
M /trunk/rio/test/tc/rename_assign.rb
|
|
618
|
+
M /trunk/rio/test/tc/riorl.rb
|
|
619
|
+
M /trunk/rio/test/tc/selnosel.rb
|
|
620
|
+
M /trunk/rio/test/tc/sub.rb
|
|
621
|
+
M /trunk/rio/test/tc/symlink.rb
|
|
622
|
+
M /trunk/rio/test/tc/symlink0.rb
|
|
623
|
+
M /trunk/rio/test/tc/symlink1.rb
|
|
624
|
+
M /trunk/rio/test/tc/temp.rb
|
|
625
|
+
M /trunk/rio/test/tc/tempdir.rb
|
|
626
|
+
M /trunk/rio/test/tc/tempfile.rb
|
|
627
|
+
M /trunk/rio/test/tc/testcase.rb
|
|
628
|
+
|
|
629
|
+
prepare for release
|
|
630
|
+
|
|
631
|
+
------------------------------------------------------------------------
|
|
632
|
+
r61 | rio4ruby | 2005-11-23 22:18:56 -0800 (Wed, 23 Nov 2005) | 2 lines
|
|
633
|
+
Changed paths:
|
|
634
|
+
A /trunk/rio/ex/targz2zip
|
|
635
|
+
A /trunk/rio/lib/rio/piper
|
|
636
|
+
A /trunk/rio/lib/rio/piper/cp.rb
|
|
637
|
+
A /trunk/rio/test/tc/base.rb
|
|
638
|
+
A /trunk/rio/test/tc/cmdpipe.rb
|
|
639
|
+
A /trunk/rio/test/tc/dir_iter.rb
|
|
640
|
+
A /trunk/rio/test/tc/get.rb
|
|
641
|
+
A /trunk/rio/test/tc/piper.rb
|
|
642
|
+
A /trunk/rio/test/tc/route.rb
|
|
643
|
+
A /trunk/rio/test/tc/split.rb
|
|
644
|
+
|
|
645
|
+
Tests for 0.3.6
|
|
646
|
+
|
|
647
|
+
------------------------------------------------------------------------
|
|
648
|
+
r60 | rio4ruby | 2005-11-23 22:14:47 -0800 (Wed, 23 Nov 2005) | 2 lines
|
|
649
|
+
Changed paths:
|
|
650
|
+
M /trunk/rio/RUNME.1st.rb
|
|
651
|
+
M /trunk/rio/Rakefile
|
|
652
|
+
M /trunk/rio/doc/ANNOUNCE
|
|
653
|
+
D /trunk/rio/doc/README_MSWIN32.txt
|
|
654
|
+
M /trunk/rio/doc/RELEASE_NOTES
|
|
655
|
+
M /trunk/rio/ex/findinruby
|
|
656
|
+
M /trunk/rio/lib/rio/construct.rb
|
|
657
|
+
M /trunk/rio/lib/rio/constructor.rb
|
|
658
|
+
M /trunk/rio/lib/rio/dir.rb
|
|
659
|
+
M /trunk/rio/lib/rio/doc/HOWTO.rb
|
|
660
|
+
M /trunk/rio/lib/rio/doc/INTRO.rb
|
|
661
|
+
M /trunk/rio/lib/rio/ext/yaml.rb
|
|
662
|
+
M /trunk/rio/lib/rio/factory.rb
|
|
663
|
+
M /trunk/rio/lib/rio/filter/closeoneof.rb
|
|
664
|
+
M /trunk/rio/lib/rio/if/dir.rb
|
|
665
|
+
M /trunk/rio/lib/rio/if/grande.rb
|
|
666
|
+
M /trunk/rio/lib/rio/if/path.rb
|
|
667
|
+
M /trunk/rio/lib/rio/ioh.rb
|
|
668
|
+
M /trunk/rio/lib/rio/ops/construct.rb
|
|
669
|
+
M /trunk/rio/lib/rio/ops/dir.rb
|
|
670
|
+
M /trunk/rio/lib/rio/ops/file.rb
|
|
671
|
+
M /trunk/rio/lib/rio/ops/path.rb
|
|
672
|
+
M /trunk/rio/lib/rio/ops/stream/input.rb
|
|
673
|
+
M /trunk/rio/lib/rio/ops/stream/output.rb
|
|
674
|
+
M /trunk/rio/lib/rio/ops/stream/read.rb
|
|
675
|
+
M /trunk/rio/lib/rio/ops/stream/write.rb
|
|
676
|
+
M /trunk/rio/lib/rio/ops/stream.rb
|
|
677
|
+
M /trunk/rio/lib/rio/path/reset.rb
|
|
678
|
+
M /trunk/rio/lib/rio/path.rb
|
|
679
|
+
A /trunk/rio/lib/rio/piper.rb
|
|
680
|
+
M /trunk/rio/lib/rio/rl/base.rb
|
|
681
|
+
M /trunk/rio/lib/rio/rl/builder.rb
|
|
682
|
+
M /trunk/rio/lib/rio/rl/ioi.rb
|
|
683
|
+
M /trunk/rio/lib/rio/rl/path.rb
|
|
684
|
+
A /trunk/rio/lib/rio/rl/pathmethods.rb
|
|
685
|
+
M /trunk/rio/lib/rio/rl/uri.rb
|
|
686
|
+
M /trunk/rio/lib/rio/scheme/cmdio.rb
|
|
687
|
+
A /trunk/rio/lib/rio/scheme/cmdpipe.rb
|
|
688
|
+
M /trunk/rio/lib/rio/scheme/ftp.rb
|
|
689
|
+
M /trunk/rio/lib/rio/scheme/http.rb
|
|
690
|
+
M /trunk/rio/lib/rio/scheme/strio.rb
|
|
691
|
+
M /trunk/rio/lib/rio/scheme/temp.rb
|
|
692
|
+
M /trunk/rio/lib/rio/state.rb
|
|
693
|
+
M /trunk/rio/lib/rio/stream/duplex.rb
|
|
694
|
+
M /trunk/rio/lib/rio/stream/open.rb
|
|
695
|
+
M /trunk/rio/lib/rio/version.rb
|
|
696
|
+
M /trunk/rio/lib/rio.rb
|
|
697
|
+
A /trunk/rio/rio.gemspec
|
|
698
|
+
A /trunk/rio/test/gem_runtests.rb
|
|
699
|
+
D /trunk/rio/test/mswin32.rb
|
|
700
|
+
M /trunk/rio/test/runtests.rb
|
|
701
|
+
D /trunk/rio/test/runtests_gem.rb
|
|
702
|
+
M /trunk/rio/test/tc/abs.rb
|
|
703
|
+
M /trunk/rio/test/tc/all.rb
|
|
704
|
+
M /trunk/rio/test/tc/copydir.rb
|
|
705
|
+
M /trunk/rio/test/tc/create.rb
|
|
706
|
+
M /trunk/rio/test/tc/each_break.rb
|
|
707
|
+
M /trunk/rio/test/tc/expand_path.rb
|
|
708
|
+
M /trunk/rio/test/tc/misc.rb
|
|
709
|
+
M /trunk/rio/test/tc/noqae.rb
|
|
710
|
+
M /trunk/rio/test/tc/overload.rb
|
|
711
|
+
M /trunk/rio/test/tc/riorl.rb
|
|
712
|
+
M /trunk/rio/test/tc/skip.rb
|
|
713
|
+
M /trunk/rio/test/tc/temp.rb
|
|
714
|
+
M /trunk/rio/test/tc/testcase.rb
|
|
715
|
+
M /trunk/rio/test/tc/yaml.rb
|
|
716
|
+
|
|
717
|
+
Catch Up
|
|
718
|
+
|
|
719
|
+
------------------------------------------------------------------------
|
|
720
|
+
r59 | rio4ruby | 2005-09-12 22:18:07 -0700 (Mon, 12 Sep 2005) | 2 lines
|
|
721
|
+
Changed paths:
|
|
722
|
+
M /trunk/rio/lib/rio/if/yaml.rb
|
|
578
723
|
|
|
579
|
-
|
|
580
|
-
------------------------------------------------------------------------
|
|
581
|
-
r88 | kit | 2005-08-29 19:33:43 -0700 (Mon, 29 Aug 2005) | 1 line
|
|
582
|
-
Changed paths:
|
|
583
|
-
M /rio/trunk/doc/RELEASE_NOTES
|
|
584
|
-
M /rio/trunk/lib/rio/doc/INTRO.rb
|
|
585
|
-
M /rio/trunk/lib/rio/entrysel.rb
|
|
586
|
-
M /rio/trunk/lib/rio/if/grande.rb
|
|
587
|
-
M /rio/trunk/lib/rio/if/methods.rb
|
|
588
|
-
M /rio/trunk/lib/rio/matchrecord.rb
|
|
724
|
+
yaml documentation
|
|
589
725
|
|
|
590
|
-
selection using arrays (logical AND)
|
|
591
726
|
------------------------------------------------------------------------
|
|
592
|
-
|
|
727
|
+
r58 | rio4ruby | 2005-09-12 21:50:22 -0700 (Mon, 12 Sep 2005) | 2 lines
|
|
593
728
|
Changed paths:
|
|
594
|
-
M /rio/
|
|
595
|
-
M /rio/
|
|
596
|
-
M /rio/
|
|
729
|
+
M /trunk/rio/lib/rio/doc/INTRO.rb
|
|
730
|
+
M /trunk/rio/lib/rio/ext/yaml.rb
|
|
731
|
+
M /trunk/rio/lib/rio/if/yaml.rb
|
|
732
|
+
M /trunk/rio/lib/rio/ops/either.rb
|
|
733
|
+
M /trunk/rio/lib/rio/state.rb
|
|
597
734
|
|
|
598
|
-
|
|
599
|
-
------------------------------------------------------------------------
|
|
600
|
-
r86 | kit | 2005-08-29 08:41:48 -0700 (Mon, 29 Aug 2005) | 1 line
|
|
601
|
-
Changed paths:
|
|
602
|
-
M /rio/trunk/lib/rio/cp.rb
|
|
603
|
-
M /rio/trunk/lib/rio/doc/HOWTO.rb
|
|
604
|
-
M /rio/trunk/lib/rio/doc/INTRO.rb
|
|
605
|
-
M /rio/trunk/lib/rio/doc/MISC.rb
|
|
606
|
-
M /rio/trunk/lib/rio/filter/closeoneof.rb
|
|
607
|
-
M /rio/trunk/lib/rio/if/dir.rb
|
|
608
|
-
M /rio/trunk/lib/rio/if/grande.rb
|
|
609
|
-
M /rio/trunk/lib/rio/if/methods.rb
|
|
610
|
-
M /rio/trunk/lib/rio/if/stream.rb
|
|
611
|
-
M /rio/trunk/lib/rio/ops/stream/read.rb
|
|
612
|
-
M /rio/trunk/lib/rio/rl/builder.rb
|
|
613
|
-
M /rio/trunk/lib/rio/stream/open.rb
|
|
614
|
-
M /rio/trunk/test/tc/copy-from.rb
|
|
615
|
-
M /rio/trunk/test/tc/copy-to.rb
|
|
616
|
-
M /rio/trunk/test/tc/copydir.rb
|
|
617
|
-
M /rio/trunk/test/tc/csv.rb
|
|
618
|
-
M /rio/trunk/test/tc/csv2.rb
|
|
619
|
-
M /rio/trunk/test/tc/misc.rb
|
|
620
|
-
M /rio/trunk/test/tc/overload.rb
|
|
621
|
-
M /rio/trunk/test/tc/symlink.rb
|
|
622
|
-
M /rio/trunk/test/tc/symlink0.rb
|
|
623
|
-
M /rio/trunk/test/tc/testcase.rb
|
|
624
|
-
|
|
625
|
-
removed #slurp in favor of #contents
|
|
626
|
-
------------------------------------------------------------------------
|
|
627
|
-
r85 | kit | 2005-08-26 13:02:42 -0700 (Fri, 26 Aug 2005) | 1 line
|
|
628
|
-
Changed paths:
|
|
629
|
-
M /rio/trunk/README
|
|
630
|
-
M /rio/trunk/test/runtests_gem.rb
|
|
735
|
+
yaml and yaml documentation
|
|
631
736
|
|
|
632
|
-
Documented rubygems installation
|
|
633
737
|
------------------------------------------------------------------------
|
|
634
|
-
|
|
635
|
-
Changed paths:
|
|
636
|
-
|
|
637
|
-
M /rio/
|
|
638
|
-
M /rio/
|
|
639
|
-
M /rio/
|
|
640
|
-
M /rio/
|
|
641
|
-
|
|
642
|
-
M /rio/
|
|
643
|
-
M /rio/
|
|
644
|
-
M /rio/
|
|
645
|
-
M /rio/
|
|
646
|
-
M /rio/
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
M /rio/
|
|
653
|
-
M /rio/
|
|
654
|
-
M /rio/
|
|
655
|
-
M /rio/
|
|
738
|
+
r57 | rio4ruby | 2005-09-10 21:01:13 -0700 (Sat, 10 Sep 2005) | 2 lines
|
|
739
|
+
Changed paths:
|
|
740
|
+
A /trunk/rio/lib/rio/context/copying.rb
|
|
741
|
+
M /trunk/rio/lib/rio/context/methods.rb
|
|
742
|
+
M /trunk/rio/lib/rio/cp.rb
|
|
743
|
+
M /trunk/rio/lib/rio/doc/INTRO.rb
|
|
744
|
+
M /trunk/rio/lib/rio/ext/csv.rb
|
|
745
|
+
A /trunk/rio/lib/rio/ext/yaml.rb
|
|
746
|
+
M /trunk/rio/lib/rio/ext.rb
|
|
747
|
+
M /trunk/rio/lib/rio/filter/closeoneof.rb
|
|
748
|
+
M /trunk/rio/lib/rio/filter/gzip.rb
|
|
749
|
+
M /trunk/rio/lib/rio/if/csv.rb
|
|
750
|
+
M /trunk/rio/lib/rio/if/grande.rb
|
|
751
|
+
M /trunk/rio/lib/rio/if/grande_stream.rb
|
|
752
|
+
A /trunk/rio/lib/rio/if/yaml.rb
|
|
753
|
+
M /trunk/rio/lib/rio/if.rb
|
|
754
|
+
M /trunk/rio/lib/rio/ioh.rb
|
|
755
|
+
M /trunk/rio/lib/rio/matchrecord.rb
|
|
756
|
+
M /trunk/rio/lib/rio/ops/dir.rb
|
|
757
|
+
M /trunk/rio/lib/rio/ops/either.rb
|
|
758
|
+
M /trunk/rio/lib/rio/ops/file.rb
|
|
759
|
+
M /trunk/rio/lib/rio/ops/stream/input.rb
|
|
760
|
+
M /trunk/rio/lib/rio/ops/stream/output.rb
|
|
761
|
+
M /trunk/rio/lib/rio/rectype.rb
|
|
762
|
+
M /trunk/rio/lib/rio/state.rb
|
|
763
|
+
M /trunk/rio/lib/rio/stream/open.rb
|
|
764
|
+
M /trunk/rio/lib/rio/stream.rb
|
|
765
|
+
M /trunk/rio/test/tc/all.rb
|
|
766
|
+
M /trunk/rio/test/tc/csv.rb
|
|
767
|
+
M /trunk/rio/test/tc/csv2.rb
|
|
768
|
+
M /trunk/rio/test/tc/csv_columns.rb
|
|
769
|
+
A /trunk/rio/test/tc/yaml.rb
|
|
656
770
|
|
|
657
|
-
|
|
658
|
-
------------------------------------------------------------------------
|
|
659
|
-
r82 | kit | 2005-08-24 09:06:42 -0700 (Wed, 24 Aug 2005) | 1 line
|
|
660
|
-
Changed paths:
|
|
661
|
-
M /rio/trunk/doc/ANNOUNCE
|
|
662
|
-
M /rio/trunk/ex/colx.rb
|
|
663
|
-
M /rio/trunk/ex/passwd_report.rb
|
|
664
|
-
M /rio/trunk/ex/riocat
|
|
665
|
-
M /rio/trunk/ex/riogunzip
|
|
666
|
-
M /rio/trunk/ex/riogzip
|
|
667
|
-
A /rio/trunk/ex/rioprompt.rb
|
|
668
|
-
D /rio/trunk/lib/rio/context/chomp.rb
|
|
669
|
-
M /rio/trunk/lib/rio/context/methods.rb
|
|
670
|
-
M /rio/trunk/lib/rio/context.rb
|
|
671
|
-
D /rio/trunk/lib/rio/filter/chomp.rb
|
|
672
|
-
A /rio/trunk/lib/rio/filter.rb
|
|
673
|
-
A /rio/trunk/lib/rio/prompt.rb
|
|
674
|
-
M /rio/trunk/lib/rio/state.rb
|
|
675
|
-
M /rio/trunk/lib/rio/stream.rb
|
|
676
|
-
|
|
677
|
-
chomp and strip
|
|
678
|
-
------------------------------------------------------------------------
|
|
679
|
-
r81 | kit | 2005-08-23 11:57:02 -0700 (Tue, 23 Aug 2005) | 1 line
|
|
680
|
-
Changed paths:
|
|
681
|
-
M /rio/trunk/lib/rio/doc/INTRO.rb
|
|
771
|
+
yaml support
|
|
682
772
|
|
|
683
|
-
Documentation
|
|
684
773
|
------------------------------------------------------------------------
|
|
685
|
-
|
|
774
|
+
r56 | rio4ruby | 2005-09-06 16:50:10 -0700 (Tue, 06 Sep 2005) | 2 lines
|
|
686
775
|
Changed paths:
|
|
687
|
-
|
|
688
|
-
M /rio/trunk/doc/RELEASE_NOTES
|
|
689
|
-
A /rio/trunk/ex/passwd_report.rb
|
|
690
|
-
M /rio/trunk/lib/rio/version.rb
|
|
776
|
+
D /trunk/rio/lib/rio/if/methods.rb
|
|
691
777
|
|
|
692
|
-
|
|
693
|
-
------------------------------------------------------------------------
|
|
694
|
-
r78 | kit | 2005-08-19 15:56:33 -0700 (Fri, 19 Aug 2005) | 1 line
|
|
695
|
-
Changed paths:
|
|
696
|
-
M /rio/trunk/lib/rio/doc/INTRO.rb
|
|
697
|
-
M /rio/trunk/lib/rio/ext/csv.rb
|
|
698
|
-
M /rio/trunk/lib/rio/if/csv.rb
|
|
699
|
-
M /rio/trunk/lib/rio/if/internal.rb
|
|
700
|
-
M /rio/trunk/lib/rio.rb
|
|
701
|
-
M /rio/trunk/test/tc/all.rb
|
|
702
|
-
A /rio/trunk/test/tc/csv2.rb
|
|
703
|
-
A /rio/trunk/test/tc/csv_columns.rb
|
|
704
|
-
A /rio/trunk/test/tc/csvutil.rb
|
|
705
|
-
M /rio/trunk/test/tc/tempfile.rb
|
|
778
|
+
Removed dead code
|
|
706
779
|
|
|
707
|
-
CSV support and documentation for same
|
|
708
780
|
------------------------------------------------------------------------
|
|
709
|
-
|
|
781
|
+
r55 | rio4ruby | 2005-09-06 16:48:54 -0700 (Tue, 06 Sep 2005) | 2 lines
|
|
710
782
|
Changed paths:
|
|
711
|
-
M /rio/
|
|
712
|
-
M /rio/
|
|
713
|
-
M /rio/
|
|
714
|
-
M /rio/
|
|
715
|
-
M /rio/
|
|
716
|
-
|
|
717
|
-
M /rio/
|
|
718
|
-
M /
|
|
719
|
-
M /
|
|
720
|
-
M /rio/trunk/lib/rio/if/internal.rb
|
|
721
|
-
M /rio/trunk/lib/rio/if/methods.rb
|
|
722
|
-
A /rio/trunk/lib/rio/if/string.rb
|
|
723
|
-
A /rio/trunk/lib/rio/if/temp.rb
|
|
724
|
-
M /rio/trunk/lib/rio/if.rb
|
|
725
|
-
M /rio/trunk/lib/rio/scheme/temp.rb
|
|
726
|
-
M /rio/trunk/lib/rio.rb
|
|
727
|
-
M /rio/trunk/test/tc/copy-from.rb
|
|
728
|
-
M /rio/trunk/test/tc/ext.rb
|
|
729
|
-
M /rio/trunk/test/tc/methods.rb
|
|
730
|
-
M /rio/trunk/test/tc/tempfile.rb
|
|
731
|
-
|
|
732
|
-
documentation
|
|
733
|
-
------------------------------------------------------------------------
|
|
734
|
-
r74 | kit | 2005-08-16 11:00:55 -0700 (Tue, 16 Aug 2005) | 1 line
|
|
735
|
-
Changed paths:
|
|
736
|
-
M /rio/trunk/doc/ANNOUNCE
|
|
737
|
-
M /rio/trunk/doc/RELEASE_NOTES
|
|
783
|
+
M /trunk/rio/doc/ANNOUNCE
|
|
784
|
+
M /trunk/rio/doc/RELEASE_NOTES
|
|
785
|
+
M /trunk/rio/lib/rio/base.rb
|
|
786
|
+
M /trunk/rio/lib/rio/entrysel.rb
|
|
787
|
+
M /trunk/rio/lib/rio/grande.rb
|
|
788
|
+
M /trunk/rio/lib/rio/if/grande_stream.rb
|
|
789
|
+
M /trunk/rio/lib/rio/if.rb
|
|
790
|
+
M /trunk/rio/test/tc/temp.rb
|
|
791
|
+
M /trunk/rio/test/tc/tempdir.rb
|
|
738
792
|
|
|
739
|
-
|
|
740
|
-
------------------------------------------------------------------------
|
|
741
|
-
r72 | kit | 2005-08-16 07:42:58 -0700 (Tue, 16 Aug 2005) | 1 line
|
|
742
|
-
Changed paths:
|
|
743
|
-
M /rio/trunk/lib/rio/state.rb
|
|
793
|
+
Prepare for Release
|
|
744
794
|
|
|
745
|
-
initialized
|
|
746
795
|
------------------------------------------------------------------------
|
|
747
|
-
|
|
796
|
+
r54 | rio4ruby | 2005-09-06 15:32:42 -0700 (Tue, 06 Sep 2005) | 2 lines
|
|
748
797
|
Changed paths:
|
|
749
|
-
M /
|
|
750
|
-
M /rio/trunk/doc/RELEASE_NOTES
|
|
798
|
+
M /trunk/rio/Rakefile
|
|
751
799
|
|
|
752
|
-
|
|
753
|
-
------------------------------------------------------------------------
|
|
754
|
-
r63 | kit | 2005-08-15 14:58:10 -0700 (Mon, 15 Aug 2005) | 1 line
|
|
755
|
-
Changed paths:
|
|
756
|
-
M /rio/trunk/lib/rio/constructor.rb
|
|
757
|
-
M /rio/trunk/lib/rio/doc/INTRO.rb
|
|
800
|
+
Rakefile modified
|
|
758
801
|
|
|
759
|
-
Tempfile and Tempdir documentation
|
|
760
802
|
------------------------------------------------------------------------
|
|
761
|
-
|
|
762
|
-
Changed paths:
|
|
763
|
-
M /rio/
|
|
764
|
-
|
|
765
|
-
M /rio/
|
|
766
|
-
M /rio/
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
M /rio/
|
|
771
|
-
M /rio/
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
M /rio/
|
|
779
|
-
M /rio/
|
|
780
|
-
M /rio/
|
|
781
|
-
M /
|
|
803
|
+
r53 | rio4ruby | 2005-09-06 15:27:32 -0700 (Tue, 06 Sep 2005) | 2 lines
|
|
804
|
+
Changed paths:
|
|
805
|
+
M /trunk/rio/lib/rio/base.rb
|
|
806
|
+
A /trunk/rio/lib/rio/construct.rb
|
|
807
|
+
M /trunk/rio/lib/rio/context/stream.rb
|
|
808
|
+
M /trunk/rio/lib/rio/if/grande.rb
|
|
809
|
+
M /trunk/rio/lib/rio/if/grande_stream.rb
|
|
810
|
+
M /trunk/rio/lib/rio/if/methods.rb
|
|
811
|
+
M /trunk/rio/lib/rio/if/path.rb
|
|
812
|
+
M /trunk/rio/lib/rio/if/temp.rb
|
|
813
|
+
M /trunk/rio/lib/rio/if/test.rb
|
|
814
|
+
M /trunk/rio/lib/rio/impl/path.rb
|
|
815
|
+
A /trunk/rio/lib/rio/ops/construct.rb
|
|
816
|
+
M /trunk/rio/lib/rio/ops/create.rb
|
|
817
|
+
M /trunk/rio/lib/rio/ops/dir.rb
|
|
818
|
+
M /trunk/rio/lib/rio/ops/either.rb
|
|
819
|
+
M /trunk/rio/lib/rio/ops/path.rb
|
|
820
|
+
M /trunk/rio/lib/rio/ops/stream/input.rb
|
|
821
|
+
M /trunk/rio/lib/rio/state.rb
|
|
822
|
+
M /trunk/rio/lib/rio/version.rb
|
|
823
|
+
M /trunk/rio/lib/rio.rb
|
|
824
|
+
M /trunk/rio/test/tc/all.rb
|
|
825
|
+
M /trunk/rio/test/tc/skip.rb
|
|
826
|
+
A /trunk/rio/test/tc/skiplines.rb
|
|
827
|
+
|
|
828
|
+
skip() tests and new constructor methods
|
|
829
|
+
|
|
830
|
+
------------------------------------------------------------------------
|
|
831
|
+
r52 | rio4ruby | 2005-09-05 13:32:17 -0700 (Mon, 05 Sep 2005) | 2 lines
|
|
832
|
+
Changed paths:
|
|
833
|
+
A /trunk/rio/lib/rio/context/skip.rb
|
|
834
|
+
D /trunk/rio/lib/rio/cxdir.rb
|
|
835
|
+
A /trunk/rio/lib/rio/if/grande_entry.rb
|
|
836
|
+
A /trunk/rio/lib/rio/if/grande_stream.rb
|
|
837
|
+
A /trunk/rio/test/tc/copysymlink.rb
|
|
838
|
+
A /trunk/rio/test/tc/selnosel.rb
|
|
839
|
+
A /trunk/rio/test/tc/skip.rb
|
|
782
840
|
|
|
783
|
-
|
|
784
|
-
------------------------------------------------------------------------
|
|
785
|
-
r57 | kit | 2005-08-13 14:35:16 -0700 (Sat, 13 Aug 2005) | 1 line
|
|
786
|
-
Changed paths:
|
|
787
|
-
M /rio/trunk/ex/findinruby
|
|
788
|
-
M /rio/trunk/ex/findruby
|
|
789
|
-
M /rio/trunk/lib/rio/argv.rb
|
|
790
|
-
M /rio/trunk/lib/rio/context/dir.rb
|
|
791
|
-
M /rio/trunk/lib/rio/context.rb
|
|
792
|
-
M /rio/trunk/lib/rio/doc/HOWTO.rb
|
|
793
|
-
M /rio/trunk/lib/rio/grande.rb
|
|
794
|
-
M /rio/trunk/lib/rio/matchrecord.rb
|
|
795
|
-
M /rio/trunk/lib/rio/ops/stream/input.rb
|
|
796
|
-
M /rio/trunk/test/tc/all.rb
|
|
797
|
-
M /rio/trunk/test/tc/copylines.rb
|
|
798
|
-
A /rio/trunk/test/tc/tempdir.rb
|
|
799
|
-
|
|
800
|
-
documentation and fixed examples; added test for tempdirs
|
|
801
|
-
------------------------------------------------------------------------
|
|
802
|
-
r56 | kit | 2005-08-11 10:47:05 -0700 (Thu, 11 Aug 2005) | 1 line
|
|
803
|
-
Changed paths:
|
|
804
|
-
M /rio/trunk/lib/rio/dir.rb
|
|
805
|
-
M /rio/trunk/lib/rio/factory.rb
|
|
806
|
-
M /rio/trunk/lib/rio/scheme/tempdir.rb
|
|
807
|
-
M /rio/trunk/lib/rio/tempdir.rb
|
|
841
|
+
skip
|
|
808
842
|
|
|
809
|
-
tempdir support
|
|
810
843
|
------------------------------------------------------------------------
|
|
811
|
-
|
|
812
|
-
Changed paths:
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
M /rio/
|
|
817
|
-
|
|
844
|
+
r51 | rio4ruby | 2005-09-05 13:26:27 -0700 (Mon, 05 Sep 2005) | 2 lines
|
|
845
|
+
Changed paths:
|
|
846
|
+
M /trunk/rio/doc/RELEASE_NOTES
|
|
847
|
+
M /trunk/rio/lib/rio/constructor.rb
|
|
848
|
+
M /trunk/rio/lib/rio/context/dir.rb
|
|
849
|
+
M /trunk/rio/lib/rio/context/methods.rb
|
|
850
|
+
M /trunk/rio/lib/rio/context/stream.rb
|
|
851
|
+
M /trunk/rio/lib/rio/cp.rb
|
|
852
|
+
M /trunk/rio/lib/rio/dir.rb
|
|
853
|
+
M /trunk/rio/lib/rio/doc/HOWTO.rb
|
|
854
|
+
M /trunk/rio/lib/rio/doc/INTRO.rb
|
|
855
|
+
M /trunk/rio/lib/rio/doc/MISC.rb
|
|
856
|
+
M /trunk/rio/lib/rio/doc/SYNOPSIS.rb
|
|
857
|
+
M /trunk/rio/lib/rio/entrysel.rb
|
|
858
|
+
M /trunk/rio/lib/rio/file.rb
|
|
859
|
+
M /trunk/rio/lib/rio/filter/closeoneof.rb
|
|
860
|
+
M /trunk/rio/lib/rio/grande.rb
|
|
861
|
+
M /trunk/rio/lib/rio/if/csv.rb
|
|
862
|
+
M /trunk/rio/lib/rio/if/dir.rb
|
|
863
|
+
M /trunk/rio/lib/rio/if/fileordir.rb
|
|
864
|
+
M /trunk/rio/lib/rio/if/grande.rb
|
|
865
|
+
M /trunk/rio/lib/rio/if/methods.rb
|
|
866
|
+
M /trunk/rio/lib/rio/if/path.rb
|
|
867
|
+
M /trunk/rio/lib/rio/if/stream.rb
|
|
868
|
+
M /trunk/rio/lib/rio/if.rb
|
|
869
|
+
M /trunk/rio/lib/rio/match.rb
|
|
870
|
+
M /trunk/rio/lib/rio/matchrecord.rb
|
|
871
|
+
M /trunk/rio/lib/rio/ops/dir.rb
|
|
872
|
+
M /trunk/rio/lib/rio/ops/either.rb
|
|
873
|
+
M /trunk/rio/lib/rio/ops/stream/input.rb
|
|
874
|
+
M /trunk/rio/lib/rio/ops/stream/read.rb
|
|
875
|
+
M /trunk/rio/lib/rio/rl/builder.rb
|
|
876
|
+
M /trunk/rio/lib/rio/stream/open.rb
|
|
877
|
+
M /trunk/rio/lib/rio.rb
|
|
878
|
+
M /trunk/rio/misc/addsrcheaders.rb
|
|
879
|
+
M /trunk/rio/misc/mktoc.rb
|
|
880
|
+
M /trunk/rio/test/mswin32.rb
|
|
881
|
+
M /trunk/rio/test/tc/all.rb
|
|
882
|
+
M /trunk/rio/test/tc/copy-from.rb
|
|
883
|
+
M /trunk/rio/test/tc/copy-to.rb
|
|
884
|
+
M /trunk/rio/test/tc/copydir.rb
|
|
885
|
+
M /trunk/rio/test/tc/csv.rb
|
|
886
|
+
M /trunk/rio/test/tc/csv2.rb
|
|
887
|
+
M /trunk/rio/test/tc/misc.rb
|
|
888
|
+
M /trunk/rio/test/tc/nolines.rb
|
|
889
|
+
M /trunk/rio/test/tc/noqae.rb
|
|
890
|
+
M /trunk/rio/test/tc/overload.rb
|
|
891
|
+
M /trunk/rio/test/tc/riorl.rb
|
|
892
|
+
M /trunk/rio/test/tc/symlink.rb
|
|
893
|
+
M /trunk/rio/test/tc/symlink0.rb
|
|
894
|
+
M /trunk/rio/test/tc/testcase.rb
|
|
895
|
+
|
|
896
|
+
many changes
|
|
897
|
+
|
|
898
|
+
------------------------------------------------------------------------
|
|
899
|
+
r50 | rio4ruby | 2005-08-26 12:59:22 -0700 (Fri, 26 Aug 2005) | 2 lines
|
|
900
|
+
Changed paths:
|
|
901
|
+
M /trunk/rio/README
|
|
902
|
+
M /trunk/rio/test/runtests_gem.rb
|
|
818
903
|
|
|
819
|
-
|
|
820
|
-
------------------------------------------------------------------------
|
|
821
|
-
r54 | kit | 2005-08-10 18:34:27 -0700 (Wed, 10 Aug 2005) | 1 line
|
|
822
|
-
Changed paths:
|
|
823
|
-
M /rio/trunk/lib/rio/factory.rb
|
|
824
|
-
M /rio/trunk/lib/rio/scheme/path.rb
|
|
825
|
-
M /rio/trunk/lib/rio/scheme/tempfile.rb
|
|
904
|
+
Documented rubygems installation
|
|
826
905
|
|
|
827
|
-
Fix in tempfile
|
|
828
906
|
------------------------------------------------------------------------
|
|
829
|
-
|
|
830
|
-
Changed paths:
|
|
831
|
-
M /
|
|
832
|
-
M /
|
|
833
|
-
M /
|
|
834
|
-
M /
|
|
835
|
-
|
|
907
|
+
r49 | rio4ruby | 2005-08-26 12:04:54 -0700 (Fri, 26 Aug 2005) | 2 lines
|
|
908
|
+
Changed paths:
|
|
909
|
+
M /trunk/rio/README
|
|
910
|
+
M /trunk/rio/doc/ANNOUNCE
|
|
911
|
+
M /trunk/rio/ex/colx.rb
|
|
912
|
+
M /trunk/rio/ex/passwd_report.rb
|
|
913
|
+
M /trunk/rio/ex/riocat
|
|
914
|
+
M /trunk/rio/ex/riogunzip
|
|
915
|
+
M /trunk/rio/ex/riogzip
|
|
916
|
+
A /trunk/rio/ex/rioprompt.rb
|
|
917
|
+
M /trunk/rio/lib/rio/arycopy.rb
|
|
918
|
+
D /trunk/rio/lib/rio/context/chomp.rb
|
|
919
|
+
M /trunk/rio/lib/rio/context/methods.rb
|
|
920
|
+
M /trunk/rio/lib/rio/context.rb
|
|
921
|
+
M /trunk/rio/lib/rio/cp.rb
|
|
922
|
+
M /trunk/rio/lib/rio/doc/INTRO.rb
|
|
923
|
+
M /trunk/rio/lib/rio/doc/SYNOPSIS.rb
|
|
924
|
+
D /trunk/rio/lib/rio/filter/chomp.rb
|
|
925
|
+
A /trunk/rio/lib/rio/filter.rb
|
|
926
|
+
M /trunk/rio/lib/rio/if/basic.rb
|
|
927
|
+
M /trunk/rio/lib/rio/if/dir.rb
|
|
928
|
+
M /trunk/rio/lib/rio/if/grande.rb
|
|
929
|
+
M /trunk/rio/lib/rio/if/path.rb
|
|
930
|
+
M /trunk/rio/lib/rio/ops/path.rb
|
|
931
|
+
A /trunk/rio/lib/rio/prompt.rb
|
|
932
|
+
M /trunk/rio/lib/rio/rl/base.rb
|
|
933
|
+
M /trunk/rio/lib/rio/state.rb
|
|
934
|
+
M /trunk/rio/lib/rio/stream.rb
|
|
935
|
+
M /trunk/rio/test/tc/copy.rb
|
|
936
|
+
M /trunk/rio/test/tc/misc.rb
|
|
937
|
+
M /trunk/rio/test/tc/overload.rb
|
|
938
|
+
|
|
939
|
+
Documentation, removed copy, added (copy|append)_(to|from), changed + and =~ to use to_str
|
|
940
|
+
|
|
941
|
+
------------------------------------------------------------------------
|
|
942
|
+
r48 | rio4ruby | 2005-08-19 16:59:55 -0700 (Fri, 19 Aug 2005) | 2 lines
|
|
943
|
+
Changed paths:
|
|
944
|
+
M /trunk/rio/doc/ANNOUNCE
|
|
945
|
+
M /trunk/rio/doc/RELEASE_NOTES
|
|
946
|
+
A /trunk/rio/ex/passwd_report.rb
|
|
947
|
+
M /trunk/rio/lib/rio/version.rb
|
|
836
948
|
|
|
837
|
-
|
|
838
|
-
------------------------------------------------------------------------
|
|
839
|
-
r52 | kit | 2005-08-08 09:56:51 -0700 (Mon, 08 Aug 2005) | 1 line
|
|
840
|
-
Changed paths:
|
|
841
|
-
M /rio/trunk/lib/rio/context/methods.rb
|
|
842
|
-
M /rio/trunk/lib/rio/doc/HOWTO.rb
|
|
843
|
-
M /rio/trunk/lib/rio/doc/INTRO.rb
|
|
844
|
-
M /rio/trunk/lib/rio/doc/SYNOPSIS.rb
|
|
845
|
-
M /rio/trunk/lib/rio/stream/open.rb
|
|
949
|
+
Prepare for release
|
|
846
950
|
|
|
847
|
-
Channge noclose to noautoclose, and documentation
|
|
848
951
|
------------------------------------------------------------------------
|
|
849
|
-
|
|
850
|
-
Changed paths:
|
|
851
|
-
M /
|
|
952
|
+
r47 | rio4ruby | 2005-08-19 15:56:59 -0700 (Fri, 19 Aug 2005) | 2 lines
|
|
953
|
+
Changed paths:
|
|
954
|
+
M /trunk/rio/doc/ANNOUNCE
|
|
955
|
+
M /trunk/rio/ex/colx.rb
|
|
956
|
+
M /trunk/rio/lib/rio/argv.rb
|
|
957
|
+
M /trunk/rio/lib/rio/base.rb
|
|
958
|
+
M /trunk/rio/lib/rio/doc/INTRO.rb
|
|
959
|
+
M /trunk/rio/lib/rio/ext/csv.rb
|
|
960
|
+
M /trunk/rio/lib/rio/factory.rb
|
|
961
|
+
A /trunk/rio/lib/rio/if/csv.rb
|
|
962
|
+
M /trunk/rio/lib/rio/if/dir.rb
|
|
963
|
+
M /trunk/rio/lib/rio/if/fileordir.rb
|
|
964
|
+
M /trunk/rio/lib/rio/if/grande.rb
|
|
965
|
+
M /trunk/rio/lib/rio/if/internal.rb
|
|
966
|
+
M /trunk/rio/lib/rio/if/methods.rb
|
|
967
|
+
A /trunk/rio/lib/rio/if/string.rb
|
|
968
|
+
A /trunk/rio/lib/rio/if/temp.rb
|
|
969
|
+
M /trunk/rio/lib/rio/if.rb
|
|
970
|
+
M /trunk/rio/lib/rio/scheme/temp.rb
|
|
971
|
+
M /trunk/rio/lib/rio.rb
|
|
972
|
+
M /trunk/rio/test/tc/all.rb
|
|
973
|
+
M /trunk/rio/test/tc/copy-from.rb
|
|
974
|
+
A /trunk/rio/test/tc/csv2.rb
|
|
975
|
+
A /trunk/rio/test/tc/csv_columns.rb
|
|
976
|
+
A /trunk/rio/test/tc/csvutil.rb
|
|
977
|
+
M /trunk/rio/test/tc/ext.rb
|
|
978
|
+
M /trunk/rio/test/tc/methods.rb
|
|
979
|
+
M /trunk/rio/test/tc/tempfile.rb
|
|
852
980
|
|
|
853
|
-
|
|
854
|
-
------------------------------------------------------------------------
|
|
855
|
-
r50 | kit | 2005-08-07 14:49:26 -0700 (Sun, 07 Aug 2005) | 1 line
|
|
856
|
-
Changed paths:
|
|
857
|
-
M /rio/trunk/Rakefile
|
|
858
|
-
M /rio/trunk/lib/rio/doc/SYNOPSIS.rb
|
|
859
|
-
M /rio/trunk/lib/rio/if/basic.rb
|
|
860
|
-
M /rio/trunk/lib/rio/if/path.rb
|
|
861
|
-
M /rio/trunk/lib/rio/ops/path.rb
|
|
862
|
-
M /rio/trunk/lib/rio/rl/ioi.rb
|
|
863
|
-
M /rio/trunk/lib/rio/rl/path.rb
|
|
864
|
-
M /rio/trunk/lib/rio/rl/uri.rb
|
|
865
|
-
M /rio/trunk/lib/rio/scheme/cmdio.rb
|
|
866
|
-
M /rio/trunk/lib/rio/scheme/stdio.rb
|
|
867
|
-
M /rio/trunk/lib/rio/scheme/strio.rb
|
|
868
|
-
M /rio/trunk/lib/rio/scheme/sysio.rb
|
|
869
|
-
M /rio/trunk/lib/rio/scheme/tcp.rb
|
|
870
|
-
M /rio/trunk/lib/rio/scheme/tempfile.rb
|
|
981
|
+
CSV support and documentation for same
|
|
871
982
|
|
|
872
|
-
reworked the way base paths are handled
|
|
873
983
|
------------------------------------------------------------------------
|
|
874
|
-
|
|
984
|
+
r46 | rio4ruby | 2005-08-16 10:57:52 -0700 (Tue, 16 Aug 2005) | 2 lines
|
|
875
985
|
Changed paths:
|
|
876
|
-
M /rio/
|
|
877
|
-
M /rio/
|
|
986
|
+
M /trunk/rio/doc/ANNOUNCE
|
|
987
|
+
M /trunk/rio/doc/RELEASE_NOTES
|
|
878
988
|
|
|
879
|
-
|
|
880
|
-
------------------------------------------------------------------------
|
|
881
|
-
r41 | kit | 2005-08-06 08:52:58 -0700 (Sat, 06 Aug 2005) | 1 line
|
|
882
|
-
Changed paths:
|
|
883
|
-
M /rio/trunk/test/runtests.rb
|
|
884
|
-
M /rio/trunk/test/tc/abs.rb
|
|
885
|
-
M /rio/trunk/test/tc/all.rb
|
|
886
|
-
M /rio/trunk/test/tc/cd1.rb
|
|
887
|
-
M /rio/trunk/test/tc/clearsel.rb
|
|
888
|
-
M /rio/trunk/test/tc/closeoncopy.rb
|
|
889
|
-
M /rio/trunk/test/tc/closeoneof.rb
|
|
890
|
-
M /rio/trunk/test/tc/copy-from.rb
|
|
891
|
-
M /rio/trunk/test/tc/copy-to.rb
|
|
892
|
-
M /rio/trunk/test/tc/copy.rb
|
|
893
|
-
M /rio/trunk/test/tc/copyarray.rb
|
|
894
|
-
M /rio/trunk/test/tc/copydest.rb
|
|
895
|
-
M /rio/trunk/test/tc/copydir.rb
|
|
896
|
-
M /rio/trunk/test/tc/copydirlines.rb
|
|
897
|
-
M /rio/trunk/test/tc/copylines.rb
|
|
898
|
-
M /rio/trunk/test/tc/copynonex.rb
|
|
899
|
-
M /rio/trunk/test/tc/create.rb
|
|
900
|
-
M /rio/trunk/test/tc/csv.rb
|
|
901
|
-
M /rio/trunk/test/tc/dir.rb
|
|
902
|
-
M /rio/trunk/test/tc/dirautoclose.rb
|
|
903
|
-
M /rio/trunk/test/tc/dirent.rb
|
|
904
|
-
M /rio/trunk/test/tc/dirss.rb
|
|
905
|
-
M /rio/trunk/test/tc/each.rb
|
|
906
|
-
M /rio/trunk/test/tc/each_break.rb
|
|
907
|
-
M /rio/trunk/test/tc/edf.rb
|
|
908
|
-
M /rio/trunk/test/tc/entary.rb
|
|
909
|
-
M /rio/trunk/test/tc/eq.rb
|
|
910
|
-
M /rio/trunk/test/tc/expand_path.rb
|
|
911
|
-
M /rio/trunk/test/tc/ext.rb
|
|
912
|
-
M /rio/trunk/test/tc/fileno.rb
|
|
913
|
-
M /rio/trunk/test/tc/getrec.rb
|
|
914
|
-
M /rio/trunk/test/tc/lineno.rb
|
|
915
|
-
M /rio/trunk/test/tc/lines.rb
|
|
916
|
-
M /rio/trunk/test/tc/methods.rb
|
|
917
|
-
M /rio/trunk/test/tc/misc.rb
|
|
918
|
-
M /rio/trunk/test/tc/nolines.rb
|
|
919
|
-
M /rio/trunk/test/tc/noqae.rb
|
|
920
|
-
M /rio/trunk/test/tc/once.rb
|
|
921
|
-
M /rio/trunk/test/tc/overload.rb
|
|
922
|
-
M /rio/trunk/test/tc/pa.rb
|
|
923
|
-
M /rio/trunk/test/tc/pathop.rb
|
|
924
|
-
M /rio/trunk/test/tc/paths.rb
|
|
925
|
-
M /rio/trunk/test/tc/qae.rb
|
|
926
|
-
M /rio/trunk/test/tc/qae_riovar.rb
|
|
927
|
-
M /rio/trunk/test/tc/records.rb
|
|
928
|
-
M /rio/trunk/test/tc/rename.rb
|
|
929
|
-
M /rio/trunk/test/tc/rename_assign.rb
|
|
930
|
-
M /rio/trunk/test/tc/sub.rb
|
|
931
|
-
M /rio/trunk/test/tc/symlink.rb
|
|
932
|
-
M /rio/trunk/test/tc/symlink0.rb
|
|
933
|
-
M /rio/trunk/test/tc/symlink1.rb
|
|
934
|
-
M /rio/trunk/test/tc/testcase.rb
|
|
935
|
-
|
|
936
|
-
Fixed test cases to run alone
|
|
937
|
-
------------------------------------------------------------------------
|
|
938
|
-
r40 | kit | 2005-08-06 07:06:41 -0700 (Sat, 06 Aug 2005) | 1 line
|
|
939
|
-
Changed paths:
|
|
940
|
-
M /rio/trunk/Rakefile
|
|
989
|
+
ANNOUNCE & RELEASE_NOTES
|
|
941
990
|
|
|
942
|
-
Rakefile changes
|
|
943
991
|
------------------------------------------------------------------------
|
|
944
|
-
|
|
992
|
+
r45 | rio4ruby | 2005-08-16 10:53:15 -0700 (Tue, 16 Aug 2005) | 2 lines
|
|
945
993
|
Changed paths:
|
|
946
|
-
M /rio/
|
|
947
|
-
M /
|
|
948
|
-
M /rio/
|
|
949
|
-
A /rio/trunk/test/runtests_gem.rb
|
|
950
|
-
M /rio/trunk/test/tc/abs.rb
|
|
994
|
+
M /trunk/rio/doc/ANNOUNCE
|
|
995
|
+
M /trunk/rio/doc/RELEASE_NOTES
|
|
996
|
+
M /trunk/rio/lib/rio/state.rb
|
|
951
997
|
|
|
952
|
-
|
|
953
|
-
------------------------------------------------------------------------
|
|
954
|
-
r38 | kit | 2005-08-05 09:22:50 -0700 (Fri, 05 Aug 2005) | 1 line
|
|
955
|
-
Changed paths:
|
|
956
|
-
D /rio/trunk/README_MSWIN32.txt
|
|
957
|
-
D /rio/trunk/RELEASE_NOTES
|
|
958
|
-
A /rio/trunk/doc/README_MSWIN32.txt (from /rio/trunk/README_MSWIN32.txt:37)
|
|
959
|
-
A /rio/trunk/doc/RELEASE_NOTES (from /rio/trunk/RELEASE_NOTES:29)
|
|
998
|
+
ANNOUNCE and RELEASE_NOTES
|
|
960
999
|
|
|
961
|
-
Moved some files
|
|
962
1000
|
------------------------------------------------------------------------
|
|
963
|
-
|
|
1001
|
+
r44 | rio4ruby | 2005-08-15 14:55:07 -0700 (Mon, 15 Aug 2005) | 2 lines
|
|
964
1002
|
Changed paths:
|
|
965
|
-
|
|
966
|
-
M /rio/
|
|
967
|
-
M /rio/trunk/lib/rio/ops/path.rb
|
|
968
|
-
M /rio/trunk/lib/rio/rl/path.rb
|
|
969
|
-
A /rio/trunk/test/mswin32.rb
|
|
1003
|
+
M /trunk/rio/lib/rio/constructor.rb
|
|
1004
|
+
M /trunk/rio/lib/rio/doc/INTRO.rb
|
|
970
1005
|
|
|
971
|
-
|
|
972
|
-
------------------------------------------------------------------------
|
|
973
|
-
r30 | kit | 2005-08-04 19:18:23 -0700 (Thu, 04 Aug 2005) | 1 line
|
|
974
|
-
Changed paths:
|
|
975
|
-
M /rio/trunk/Rakefile
|
|
1006
|
+
Tempfile and Tempdir documentation
|
|
976
1007
|
|
|
977
|
-
minor change to Rakefile
|
|
978
1008
|
------------------------------------------------------------------------
|
|
979
|
-
|
|
980
|
-
Changed paths:
|
|
981
|
-
|
|
1009
|
+
r43 | rio4ruby | 2005-08-15 14:40:22 -0700 (Mon, 15 Aug 2005) | 2 lines
|
|
1010
|
+
Changed paths:
|
|
1011
|
+
M /trunk/rio/ex/findinruby
|
|
1012
|
+
M /trunk/rio/ex/findruby
|
|
1013
|
+
M /trunk/rio/lib/rio/argv.rb
|
|
1014
|
+
M /trunk/rio/lib/rio/context/dir.rb
|
|
1015
|
+
M /trunk/rio/lib/rio/context.rb
|
|
1016
|
+
M /trunk/rio/lib/rio/doc/HOWTO.rb
|
|
1017
|
+
M /trunk/rio/lib/rio/factory.rb
|
|
1018
|
+
M /trunk/rio/lib/rio/grande.rb
|
|
1019
|
+
M /trunk/rio/lib/rio/matchrecord.rb
|
|
1020
|
+
M /trunk/rio/lib/rio/ops/dir.rb
|
|
1021
|
+
M /trunk/rio/lib/rio/ops/stream/input.rb
|
|
1022
|
+
M /trunk/rio/lib/rio/rl/base.rb
|
|
1023
|
+
M /trunk/rio/lib/rio/rl/path.rb
|
|
1024
|
+
A /trunk/rio/lib/rio/scheme/temp.rb
|
|
1025
|
+
D /trunk/rio/lib/rio/scheme/tempdir.rb
|
|
1026
|
+
D /trunk/rio/lib/rio/scheme/tempfile.rb
|
|
1027
|
+
M /trunk/rio/lib/rio/version.rb
|
|
1028
|
+
M /trunk/rio/lib/rio.rb
|
|
1029
|
+
M /trunk/rio/test/tc/all.rb
|
|
1030
|
+
M /trunk/rio/test/tc/copylines.rb
|
|
1031
|
+
M /trunk/rio/test/tc/riorl.rb
|
|
1032
|
+
A /trunk/rio/test/tc/temp.rb
|
|
1033
|
+
A /trunk/rio/test/tc/tempdir.rb
|
|
1034
|
+
|
|
1035
|
+
Added tempdirs and changed tempfiles
|
|
1036
|
+
|
|
1037
|
+
------------------------------------------------------------------------
|
|
1038
|
+
r42 | rio4ruby | 2005-08-11 10:46:36 -0700 (Thu, 11 Aug 2005) | 2 lines
|
|
1039
|
+
Changed paths:
|
|
1040
|
+
A /trunk/rio/doc/ANNOUNCE
|
|
1041
|
+
M /trunk/rio/lib/rio/dir.rb
|
|
1042
|
+
M /trunk/rio/lib/rio/factory.rb
|
|
1043
|
+
A /trunk/rio/lib/rio/scheme/tempdir.rb
|
|
1044
|
+
A /trunk/rio/lib/rio/tempdir.rb
|
|
1045
|
+
M /trunk/rio/test/tc/all.rb
|
|
1046
|
+
A /trunk/rio/test/tc/riorl.rb
|
|
1047
|
+
A /trunk/rio/test/tc/tempfile.rb
|
|
982
1048
|
|
|
983
|
-
|
|
984
|
-
------------------------------------------------------------------------
|
|
985
|
-
r27 | kit | 2005-08-01 14:14:38 -0700 (Mon, 01 Aug 2005) | 1 line
|
|
986
|
-
Changed paths:
|
|
987
|
-
M /rio/trunk/Rakefile
|
|
1049
|
+
tempdir support
|
|
988
1050
|
|
|
989
|
-
renamed buildrdoc.rb to RUNME.1st.rb
|
|
990
1051
|
------------------------------------------------------------------------
|
|
991
|
-
|
|
1052
|
+
r41 | rio4ruby | 2005-08-10 18:31:43 -0700 (Wed, 10 Aug 2005) | 2 lines
|
|
992
1053
|
Changed paths:
|
|
993
|
-
M /rio/
|
|
1054
|
+
M /trunk/rio/lib/rio/factory.rb
|
|
1055
|
+
M /trunk/rio/lib/rio/scheme/path.rb
|
|
1056
|
+
M /trunk/rio/lib/rio/scheme/tempfile.rb
|
|
1057
|
+
M /trunk/rio/lib/rio/state.rb
|
|
1058
|
+
M /trunk/rio/lib/rio/stream.rb
|
|
1059
|
+
M /trunk/rio/test/tc/all.rb
|
|
994
1060
|
|
|
995
|
-
|
|
996
|
-
------------------------------------------------------------------------
|
|
997
|
-
r24 | kit | 2005-08-01 13:50:33 -0700 (Mon, 01 Aug 2005) | 1 line
|
|
998
|
-
Changed paths:
|
|
999
|
-
M /rio/trunk/README
|
|
1000
|
-
A /rio/trunk/RUNME.1st.rb (from /rio/trunk/buildrdoc.rb:17)
|
|
1001
|
-
D /rio/trunk/buildrdoc.rb
|
|
1002
|
-
M /rio/trunk/lib/rio/abstract_method.rb
|
|
1003
|
-
M /rio/trunk/lib/rio/argv.rb
|
|
1004
|
-
M /rio/trunk/lib/rio/arrayio.rb
|
|
1005
|
-
M /rio/trunk/lib/rio/arycopy.rb
|
|
1006
|
-
M /rio/trunk/lib/rio/assert.rb
|
|
1007
|
-
M /rio/trunk/lib/rio/base.rb
|
|
1008
|
-
M /rio/trunk/lib/rio/constructor.rb
|
|
1009
|
-
M /rio/trunk/lib/rio/context/chomp.rb
|
|
1010
|
-
M /rio/trunk/lib/rio/context/closeoneof.rb
|
|
1011
|
-
M /rio/trunk/lib/rio/context/cxx.rb
|
|
1012
|
-
M /rio/trunk/lib/rio/context/dir.rb
|
|
1013
|
-
M /rio/trunk/lib/rio/context/gzip.rb
|
|
1014
|
-
M /rio/trunk/lib/rio/context/methods.rb
|
|
1015
|
-
M /rio/trunk/lib/rio/context/stream.rb
|
|
1016
|
-
M /rio/trunk/lib/rio/context.rb
|
|
1017
|
-
M /rio/trunk/lib/rio/cp.rb
|
|
1018
|
-
M /rio/trunk/lib/rio/cxdir.rb
|
|
1019
|
-
M /rio/trunk/lib/rio/dir.rb
|
|
1020
|
-
M /rio/trunk/lib/rio/doc/HOWTO.rb
|
|
1021
|
-
M /rio/trunk/lib/rio/doc/INTRO.rb
|
|
1022
|
-
M /rio/trunk/lib/rio/doc/MISC.rb
|
|
1023
|
-
M /rio/trunk/lib/rio/doc/SYNOPSIS.rb
|
|
1024
|
-
M /rio/trunk/lib/rio/doc.rb
|
|
1025
|
-
M /rio/trunk/lib/rio/entrysel.rb
|
|
1026
|
-
M /rio/trunk/lib/rio/exception/copy.rb
|
|
1027
|
-
M /rio/trunk/lib/rio/exception/open.rb
|
|
1028
|
-
M /rio/trunk/lib/rio/exception/state.rb
|
|
1029
|
-
M /rio/trunk/lib/rio/exception.rb
|
|
1030
|
-
M /rio/trunk/lib/rio/ext/csv.rb
|
|
1031
|
-
M /rio/trunk/lib/rio/ext.rb
|
|
1032
|
-
M /rio/trunk/lib/rio/factory.rb
|
|
1033
|
-
M /rio/trunk/lib/rio/file.rb
|
|
1034
|
-
M /rio/trunk/lib/rio/filter/chomp.rb
|
|
1035
|
-
M /rio/trunk/lib/rio/filter/closeoneof.rb
|
|
1036
|
-
M /rio/trunk/lib/rio/filter/gzip.rb
|
|
1037
|
-
M /rio/trunk/lib/rio/ftp/conn.rb
|
|
1038
|
-
M /rio/trunk/lib/rio/ftp/ioh.rb
|
|
1039
|
-
M /rio/trunk/lib/rio/ftp.rb
|
|
1040
|
-
M /rio/trunk/lib/rio/grande.rb
|
|
1041
|
-
M /rio/trunk/lib/rio/handle.rb
|
|
1042
|
-
M /rio/trunk/lib/rio/if/basic.rb
|
|
1043
|
-
M /rio/trunk/lib/rio/if/dir.rb
|
|
1044
|
-
M /rio/trunk/lib/rio/if/file.rb
|
|
1045
|
-
M /rio/trunk/lib/rio/if/fileordir.rb
|
|
1046
|
-
M /rio/trunk/lib/rio/if/grande.rb
|
|
1047
|
-
M /rio/trunk/lib/rio/if/internal.rb
|
|
1048
|
-
M /rio/trunk/lib/rio/if/methods.rb
|
|
1049
|
-
M /rio/trunk/lib/rio/if/path.rb
|
|
1050
|
-
M /rio/trunk/lib/rio/if/stream.rb
|
|
1051
|
-
M /rio/trunk/lib/rio/if/test.rb
|
|
1052
|
-
M /rio/trunk/lib/rio/if.rb
|
|
1053
|
-
M /rio/trunk/lib/rio/impl/path.rb
|
|
1054
|
-
M /rio/trunk/lib/rio/ioh.rb
|
|
1055
|
-
M /rio/trunk/lib/rio/iomode.rb
|
|
1056
|
-
M /rio/trunk/lib/rio/kernel.rb
|
|
1057
|
-
M /rio/trunk/lib/rio/local.rb
|
|
1058
|
-
M /rio/trunk/lib/rio/match.rb
|
|
1059
|
-
M /rio/trunk/lib/rio/matchrecord.rb
|
|
1060
|
-
M /rio/trunk/lib/rio/open3.rb
|
|
1061
|
-
M /rio/trunk/lib/rio/ops/create.rb
|
|
1062
|
-
M /rio/trunk/lib/rio/ops/dir.rb
|
|
1063
|
-
M /rio/trunk/lib/rio/ops/either.rb
|
|
1064
|
-
M /rio/trunk/lib/rio/ops/file.rb
|
|
1065
|
-
M /rio/trunk/lib/rio/ops/path.rb
|
|
1066
|
-
M /rio/trunk/lib/rio/ops/stream/input.rb
|
|
1067
|
-
M /rio/trunk/lib/rio/ops/stream/output.rb
|
|
1068
|
-
M /rio/trunk/lib/rio/ops/stream/read.rb
|
|
1069
|
-
M /rio/trunk/lib/rio/ops/stream/write.rb
|
|
1070
|
-
M /rio/trunk/lib/rio/ops/stream.rb
|
|
1071
|
-
M /rio/trunk/lib/rio/ops/symlink.rb
|
|
1072
|
-
M /rio/trunk/lib/rio/path/reset.rb
|
|
1073
|
-
M /rio/trunk/lib/rio/path.rb
|
|
1074
|
-
M /rio/trunk/lib/rio/record.rb
|
|
1075
|
-
M /rio/trunk/lib/rio/rectype.rb
|
|
1076
|
-
M /rio/trunk/lib/rio/rl/base.rb
|
|
1077
|
-
M /rio/trunk/lib/rio/rl/builder.rb
|
|
1078
|
-
M /rio/trunk/lib/rio/rl/ioi.rb
|
|
1079
|
-
M /rio/trunk/lib/rio/rl/path.rb
|
|
1080
|
-
M /rio/trunk/lib/rio/rl/uri.rb
|
|
1081
|
-
M /rio/trunk/lib/rio/scheme/aryio.rb
|
|
1082
|
-
M /rio/trunk/lib/rio/scheme/cmdio.rb
|
|
1083
|
-
M /rio/trunk/lib/rio/scheme/fd.rb
|
|
1084
|
-
M /rio/trunk/lib/rio/scheme/ftp.rb
|
|
1085
|
-
M /rio/trunk/lib/rio/scheme/http.rb
|
|
1086
|
-
M /rio/trunk/lib/rio/scheme/path.rb
|
|
1087
|
-
M /rio/trunk/lib/rio/scheme/stderr.rb
|
|
1088
|
-
M /rio/trunk/lib/rio/scheme/stdio.rb
|
|
1089
|
-
M /rio/trunk/lib/rio/scheme/strio.rb
|
|
1090
|
-
M /rio/trunk/lib/rio/scheme/sysio.rb
|
|
1091
|
-
M /rio/trunk/lib/rio/scheme/tcp.rb
|
|
1092
|
-
M /rio/trunk/lib/rio/scheme/tempfile.rb
|
|
1093
|
-
M /rio/trunk/lib/rio/state/error.rb
|
|
1094
|
-
M /rio/trunk/lib/rio/state.rb
|
|
1095
|
-
M /rio/trunk/lib/rio/stream/base.rb
|
|
1096
|
-
M /rio/trunk/lib/rio/stream/duplex.rb
|
|
1097
|
-
M /rio/trunk/lib/rio/stream/open.rb
|
|
1098
|
-
M /rio/trunk/lib/rio/stream.rb
|
|
1099
|
-
M /rio/trunk/lib/rio/symantics.rb
|
|
1100
|
-
M /rio/trunk/lib/rio/to_rio.rb
|
|
1101
|
-
M /rio/trunk/lib/rio/uri/file.rb
|
|
1102
|
-
M /rio/trunk/lib/rio/version.rb
|
|
1103
|
-
M /rio/trunk/lib/rio.rb
|
|
1104
|
-
M /rio/trunk/misc/newheader
|
|
1105
|
-
M /rio/trunk/misc/oldheader
|
|
1106
|
-
|
|
1107
|
-
changed header and documentation
|
|
1108
|
-
------------------------------------------------------------------------
|
|
1109
|
-
r23 | kit | 2005-07-31 14:22:08 -0700 (Sun, 31 Jul 2005) | 1 line
|
|
1110
|
-
Changed paths:
|
|
1111
|
-
M /rio/trunk/lib/rio/doc/HOWTO.rb
|
|
1112
|
-
M /rio/trunk/lib/rio/ops/path.rb
|
|
1061
|
+
Fix in tempfile
|
|
1113
1062
|
|
|
1114
|
-
Documentation
|
|
1115
1063
|
------------------------------------------------------------------------
|
|
1116
|
-
|
|
1064
|
+
r40 | rio4ruby | 2005-08-08 09:54:49 -0700 (Mon, 08 Aug 2005) | 2 lines
|
|
1117
1065
|
Changed paths:
|
|
1118
|
-
M /rio/
|
|
1119
|
-
M /rio/
|
|
1120
|
-
M /rio/
|
|
1066
|
+
M /trunk/rio/lib/rio/context/methods.rb
|
|
1067
|
+
M /trunk/rio/lib/rio/doc/HOWTO.rb
|
|
1068
|
+
M /trunk/rio/lib/rio/doc/INTRO.rb
|
|
1069
|
+
M /trunk/rio/lib/rio/doc/SYNOPSIS.rb
|
|
1070
|
+
M /trunk/rio/lib/rio/stream/open.rb
|
|
1121
1071
|
|
|
1122
|
-
documentation
|
|
1123
|
-
------------------------------------------------------------------------
|
|
1124
|
-
r19 | kit | 2005-07-31 13:30:34 -0700 (Sun, 31 Jul 2005) | 1 line
|
|
1125
|
-
Changed paths:
|
|
1126
|
-
M /rio/trunk/lib/rio/version.rb
|
|
1072
|
+
Changed noclose to noautoclose, and documentation
|
|
1127
1073
|
|
|
1128
|
-
Changed versions
|
|
1129
1074
|
------------------------------------------------------------------------
|
|
1130
|
-
|
|
1075
|
+
r39 | rio4ruby | 2005-08-07 16:20:21 -0700 (Sun, 07 Aug 2005) | 2 lines
|
|
1131
1076
|
Changed paths:
|
|
1132
|
-
M /rio/
|
|
1133
|
-
M /rio/trunk/lib/rio/abstract_method.rb
|
|
1134
|
-
M /rio/trunk/lib/rio/argv.rb
|
|
1135
|
-
M /rio/trunk/lib/rio/arrayio.rb
|
|
1136
|
-
M /rio/trunk/lib/rio/arycopy.rb
|
|
1137
|
-
M /rio/trunk/lib/rio/assert.rb
|
|
1138
|
-
M /rio/trunk/lib/rio/base.rb
|
|
1139
|
-
M /rio/trunk/lib/rio/constructor.rb
|
|
1140
|
-
M /rio/trunk/lib/rio/context/chomp.rb
|
|
1141
|
-
M /rio/trunk/lib/rio/context/closeoneof.rb
|
|
1142
|
-
M /rio/trunk/lib/rio/context/cxx.rb
|
|
1143
|
-
M /rio/trunk/lib/rio/context/dir.rb
|
|
1144
|
-
M /rio/trunk/lib/rio/context/gzip.rb
|
|
1145
|
-
M /rio/trunk/lib/rio/context/methods.rb
|
|
1146
|
-
M /rio/trunk/lib/rio/context/stream.rb
|
|
1147
|
-
M /rio/trunk/lib/rio/context.rb
|
|
1148
|
-
M /rio/trunk/lib/rio/cp.rb
|
|
1149
|
-
M /rio/trunk/lib/rio/cxdir.rb
|
|
1150
|
-
M /rio/trunk/lib/rio/dir.rb
|
|
1151
|
-
M /rio/trunk/lib/rio/doc/HOWTO.rb
|
|
1152
|
-
M /rio/trunk/lib/rio/doc/INTRO.rb
|
|
1153
|
-
M /rio/trunk/lib/rio/doc/MISC.rb
|
|
1154
|
-
M /rio/trunk/lib/rio/doc/SYNOPSIS.rb
|
|
1155
|
-
M /rio/trunk/lib/rio/doc.rb
|
|
1156
|
-
M /rio/trunk/lib/rio/entrysel.rb
|
|
1157
|
-
M /rio/trunk/lib/rio/exception/copy.rb
|
|
1158
|
-
M /rio/trunk/lib/rio/exception/open.rb
|
|
1159
|
-
M /rio/trunk/lib/rio/exception/state.rb
|
|
1160
|
-
M /rio/trunk/lib/rio/exception.rb
|
|
1161
|
-
M /rio/trunk/lib/rio/ext/csv.rb
|
|
1162
|
-
M /rio/trunk/lib/rio/ext.rb
|
|
1163
|
-
M /rio/trunk/lib/rio/factory.rb
|
|
1164
|
-
M /rio/trunk/lib/rio/file.rb
|
|
1165
|
-
M /rio/trunk/lib/rio/filter/chomp.rb
|
|
1166
|
-
M /rio/trunk/lib/rio/filter/closeoneof.rb
|
|
1167
|
-
M /rio/trunk/lib/rio/filter/gzip.rb
|
|
1168
|
-
M /rio/trunk/lib/rio/ftp/conn.rb
|
|
1169
|
-
M /rio/trunk/lib/rio/ftp/ioh.rb
|
|
1170
|
-
M /rio/trunk/lib/rio/ftp.rb
|
|
1171
|
-
M /rio/trunk/lib/rio/grande.rb
|
|
1172
|
-
M /rio/trunk/lib/rio/handle.rb
|
|
1173
|
-
M /rio/trunk/lib/rio/if/basic.rb
|
|
1174
|
-
M /rio/trunk/lib/rio/if/dir.rb
|
|
1175
|
-
M /rio/trunk/lib/rio/if/file.rb
|
|
1176
|
-
M /rio/trunk/lib/rio/if/fileordir.rb
|
|
1177
|
-
M /rio/trunk/lib/rio/if/grande.rb
|
|
1178
|
-
M /rio/trunk/lib/rio/if/internal.rb
|
|
1179
|
-
M /rio/trunk/lib/rio/if/methods.rb
|
|
1180
|
-
M /rio/trunk/lib/rio/if/path.rb
|
|
1181
|
-
M /rio/trunk/lib/rio/if/stream.rb
|
|
1182
|
-
M /rio/trunk/lib/rio/if/test.rb
|
|
1183
|
-
M /rio/trunk/lib/rio/if.rb
|
|
1184
|
-
M /rio/trunk/lib/rio/impl/path.rb
|
|
1185
|
-
M /rio/trunk/lib/rio/ioh.rb
|
|
1186
|
-
M /rio/trunk/lib/rio/iomode.rb
|
|
1187
|
-
M /rio/trunk/lib/rio/kernel.rb
|
|
1188
|
-
M /rio/trunk/lib/rio/local.rb
|
|
1189
|
-
M /rio/trunk/lib/rio/match.rb
|
|
1190
|
-
M /rio/trunk/lib/rio/matchrecord.rb
|
|
1191
|
-
M /rio/trunk/lib/rio/open3.rb
|
|
1192
|
-
M /rio/trunk/lib/rio/ops/create.rb
|
|
1193
|
-
M /rio/trunk/lib/rio/ops/dir.rb
|
|
1194
|
-
M /rio/trunk/lib/rio/ops/either.rb
|
|
1195
|
-
M /rio/trunk/lib/rio/ops/file.rb
|
|
1196
|
-
M /rio/trunk/lib/rio/ops/path.rb
|
|
1197
|
-
M /rio/trunk/lib/rio/ops/stream/input.rb
|
|
1198
|
-
M /rio/trunk/lib/rio/ops/stream/output.rb
|
|
1199
|
-
M /rio/trunk/lib/rio/ops/stream/read.rb
|
|
1200
|
-
M /rio/trunk/lib/rio/ops/stream/write.rb
|
|
1201
|
-
M /rio/trunk/lib/rio/ops/stream.rb
|
|
1202
|
-
M /rio/trunk/lib/rio/ops/symlink.rb
|
|
1203
|
-
M /rio/trunk/lib/rio/path/reset.rb
|
|
1204
|
-
M /rio/trunk/lib/rio/path.rb
|
|
1205
|
-
M /rio/trunk/lib/rio/record.rb
|
|
1206
|
-
M /rio/trunk/lib/rio/rectype.rb
|
|
1207
|
-
M /rio/trunk/lib/rio/rl/base.rb
|
|
1208
|
-
M /rio/trunk/lib/rio/rl/builder.rb
|
|
1209
|
-
M /rio/trunk/lib/rio/rl/ioi.rb
|
|
1210
|
-
M /rio/trunk/lib/rio/rl/path.rb
|
|
1211
|
-
M /rio/trunk/lib/rio/rl/uri.rb
|
|
1212
|
-
M /rio/trunk/lib/rio/scheme/aryio.rb
|
|
1213
|
-
M /rio/trunk/lib/rio/scheme/cmdio.rb
|
|
1214
|
-
M /rio/trunk/lib/rio/scheme/fd.rb
|
|
1215
|
-
M /rio/trunk/lib/rio/scheme/ftp.rb
|
|
1216
|
-
M /rio/trunk/lib/rio/scheme/http.rb
|
|
1217
|
-
M /rio/trunk/lib/rio/scheme/path.rb
|
|
1218
|
-
M /rio/trunk/lib/rio/scheme/stderr.rb
|
|
1219
|
-
M /rio/trunk/lib/rio/scheme/stdio.rb
|
|
1220
|
-
M /rio/trunk/lib/rio/scheme/strio.rb
|
|
1221
|
-
M /rio/trunk/lib/rio/scheme/sysio.rb
|
|
1222
|
-
M /rio/trunk/lib/rio/scheme/tcp.rb
|
|
1223
|
-
M /rio/trunk/lib/rio/scheme/tempfile.rb
|
|
1224
|
-
M /rio/trunk/lib/rio/state/error.rb
|
|
1225
|
-
M /rio/trunk/lib/rio/state.rb
|
|
1226
|
-
M /rio/trunk/lib/rio/stream/base.rb
|
|
1227
|
-
M /rio/trunk/lib/rio/stream/duplex.rb
|
|
1228
|
-
M /rio/trunk/lib/rio/stream/open.rb
|
|
1229
|
-
M /rio/trunk/lib/rio/stream.rb
|
|
1230
|
-
M /rio/trunk/lib/rio/symantics.rb
|
|
1231
|
-
M /rio/trunk/lib/rio/to_rio.rb
|
|
1232
|
-
M /rio/trunk/lib/rio/uri/file.rb
|
|
1233
|
-
M /rio/trunk/lib/rio/version.rb
|
|
1234
|
-
M /rio/trunk/lib/rio.rb
|
|
1235
|
-
M /rio/trunk/misc/changeheader.rb
|
|
1236
|
-
M /rio/trunk/misc/newheader
|
|
1237
|
-
M /rio/trunk/misc/oldheader
|
|
1077
|
+
M /trunk/rio/lib/rio/doc/INTRO.rb
|
|
1238
1078
|
|
|
1239
1079
|
Documentation
|
|
1240
|
-
------------------------------------------------------------------------
|
|
1241
|
-
r17 | kit | 2005-07-31 12:46:56 -0700 (Sun, 31 Jul 2005) | 1 line
|
|
1242
|
-
Changed paths:
|
|
1243
|
-
M /rio/trunk/buildrdoc.rb
|
|
1244
|
-
M /rio/trunk/ex/findinruby
|
|
1245
|
-
A /rio/trunk/lib/rio/argv.rb
|
|
1246
1080
|
|
|
1247
|
-
argv experiment
|
|
1248
1081
|
------------------------------------------------------------------------
|
|
1249
|
-
|
|
1250
|
-
Changed paths:
|
|
1251
|
-
M /rio/trunk/doc/generators/template/html/rio.rb
|
|
1252
|
-
M /rio/trunk/lib/rio/abstract_method.rb
|
|
1253
|
-
M /rio/trunk/lib/rio/arrayio.rb
|
|
1254
|
-
M /rio/trunk/lib/rio/arycopy.rb
|
|
1255
|
-
M /rio/trunk/lib/rio/assert.rb
|
|
1256
|
-
M /rio/trunk/lib/rio/base.rb
|
|
1257
|
-
M /rio/trunk/lib/rio/constructor.rb
|
|
1258
|
-
M /rio/trunk/lib/rio/context/methods.rb
|
|
1259
|
-
M /rio/trunk/lib/rio/context.rb
|
|
1260
|
-
M /rio/trunk/lib/rio/cp.rb
|
|
1261
|
-
M /rio/trunk/lib/rio/cxdir.rb
|
|
1262
|
-
M /rio/trunk/lib/rio/dir.rb
|
|
1263
|
-
M /rio/trunk/lib/rio/doc/HOWTO.rb
|
|
1264
|
-
M /rio/trunk/lib/rio/doc/INTRO.rb
|
|
1265
|
-
M /rio/trunk/lib/rio/doc/SYNOPSIS.rb
|
|
1266
|
-
M /rio/trunk/lib/rio/entrysel.rb
|
|
1267
|
-
M /rio/trunk/lib/rio/exception.rb
|
|
1268
|
-
M /rio/trunk/lib/rio/ext.rb
|
|
1269
|
-
M /rio/trunk/lib/rio/factory.rb
|
|
1270
|
-
M /rio/trunk/lib/rio/file.rb
|
|
1271
|
-
M /rio/trunk/lib/rio/filter/chomp.rb
|
|
1272
|
-
M /rio/trunk/lib/rio/ftp.rb
|
|
1273
|
-
M /rio/trunk/lib/rio/grande.rb
|
|
1274
|
-
M /rio/trunk/lib/rio/handle.rb
|
|
1275
|
-
M /rio/trunk/lib/rio/if/grande.rb
|
|
1276
|
-
M /rio/trunk/lib/rio/impl/path.rb
|
|
1277
|
-
M /rio/trunk/lib/rio/ioh.rb
|
|
1278
|
-
M /rio/trunk/lib/rio/iomode.rb
|
|
1279
|
-
M /rio/trunk/lib/rio/local.rb
|
|
1280
|
-
M /rio/trunk/lib/rio/match.rb
|
|
1281
|
-
M /rio/trunk/lib/rio/matchrecord.rb
|
|
1282
|
-
M /rio/trunk/lib/rio/ops/path.rb
|
|
1283
|
-
M /rio/trunk/lib/rio/path.rb
|
|
1284
|
-
M /rio/trunk/lib/rio/record.rb
|
|
1285
|
-
M /rio/trunk/lib/rio/rectype.rb
|
|
1286
|
-
M /rio/trunk/lib/rio/rl/base.rb
|
|
1287
|
-
M /rio/trunk/lib/rio/scheme/aryio.rb
|
|
1288
|
-
M /rio/trunk/lib/rio/scheme/cmdio.rb
|
|
1289
|
-
M /rio/trunk/lib/rio/scheme/fd.rb
|
|
1290
|
-
M /rio/trunk/lib/rio/scheme/ftp.rb
|
|
1291
|
-
M /rio/trunk/lib/rio/scheme/http.rb
|
|
1292
|
-
M /rio/trunk/lib/rio/scheme/path.rb
|
|
1293
|
-
M /rio/trunk/lib/rio/scheme/stderr.rb
|
|
1294
|
-
M /rio/trunk/lib/rio/scheme/stdio.rb
|
|
1295
|
-
M /rio/trunk/lib/rio/scheme/strio.rb
|
|
1296
|
-
M /rio/trunk/lib/rio/scheme/sysio.rb
|
|
1297
|
-
M /rio/trunk/lib/rio/scheme/tcp.rb
|
|
1298
|
-
M /rio/trunk/lib/rio/scheme/tempfile.rb
|
|
1299
|
-
M /rio/trunk/lib/rio/state.rb
|
|
1300
|
-
M /rio/trunk/lib/rio/stream.rb
|
|
1301
|
-
M /rio/trunk/lib/rio/symantics.rb
|
|
1302
|
-
M /rio/trunk/lib/rio/to_rio.rb
|
|
1303
|
-
M /rio/trunk/lib/rio/uri/file.rb
|
|
1304
|
-
M /rio/trunk/lib/rio/version.rb
|
|
1305
|
-
M /rio/trunk/lib/rio.rb
|
|
1306
|
-
|
|
1307
|
-
Added :nodoc: to internal modules and classes
|
|
1308
|
-
------------------------------------------------------------------------
|
|
1309
|
-
r15 | kit | 2005-07-29 11:51:31 -0700 (Fri, 29 Jul 2005) | 1 line
|
|
1082
|
+
r38 | rio4ruby | 2005-08-07 14:48:23 -0700 (Sun, 07 Aug 2005) | 2 lines
|
|
1310
1083
|
Changed paths:
|
|
1311
|
-
M /rio/
|
|
1312
|
-
M /rio/
|
|
1084
|
+
M /trunk/rio/Rakefile
|
|
1085
|
+
M /trunk/rio/lib/rio/doc/SYNOPSIS.rb
|
|
1086
|
+
M /trunk/rio/lib/rio/if/basic.rb
|
|
1087
|
+
M /trunk/rio/lib/rio/if/path.rb
|
|
1088
|
+
M /trunk/rio/lib/rio/ops/path.rb
|
|
1089
|
+
M /trunk/rio/lib/rio/rl/ioi.rb
|
|
1090
|
+
M /trunk/rio/lib/rio/rl/path.rb
|
|
1091
|
+
M /trunk/rio/lib/rio/rl/uri.rb
|
|
1092
|
+
M /trunk/rio/lib/rio/scheme/cmdio.rb
|
|
1093
|
+
M /trunk/rio/lib/rio/scheme/stdio.rb
|
|
1094
|
+
M /trunk/rio/lib/rio/scheme/strio.rb
|
|
1095
|
+
M /trunk/rio/lib/rio/scheme/sysio.rb
|
|
1096
|
+
M /trunk/rio/lib/rio/scheme/tcp.rb
|
|
1097
|
+
M /trunk/rio/lib/rio/scheme/tempfile.rb
|
|
1313
1098
|
|
|
1314
|
-
|
|
1315
|
-
------------------------------------------------------------------------
|
|
1316
|
-
r13 | kit | 2005-07-29 10:36:54 -0700 (Fri, 29 Jul 2005) | 1 line
|
|
1317
|
-
Changed paths:
|
|
1318
|
-
M /rio/trunk/lib/rio/version.rb
|
|
1099
|
+
reworked the way base paths are handled
|
|
1319
1100
|
|
|
1320
|
-
changed version, aiming for first checkin to CVS
|
|
1321
1101
|
------------------------------------------------------------------------
|
|
1322
|
-
|
|
1102
|
+
r37 | rio4ruby | 2005-08-06 09:14:29 -0700 (Sat, 06 Aug 2005) | 2 lines
|
|
1323
1103
|
Changed paths:
|
|
1324
|
-
M /
|
|
1325
|
-
M /
|
|
1326
|
-
|
|
1327
|
-
|
|
1104
|
+
M /trunk/rio/README
|
|
1105
|
+
M /trunk/rio/doc/RELEASE_NOTES
|
|
1106
|
+
|
|
1107
|
+
Changed references to buildrdoc to RUNME.1st
|
|
1328
1108
|
|
|
1329
|
-
Documentation & added string operators +, sub and gsub to the interface
|
|
1330
1109
|
------------------------------------------------------------------------
|
|
1331
|
-
|
|
1332
|
-
Changed paths:
|
|
1333
|
-
M /rio/
|
|
1334
|
-
M /rio/
|
|
1110
|
+
r36 | rio4ruby | 2005-08-06 08:52:49 -0700 (Sat, 06 Aug 2005) | 2 lines
|
|
1111
|
+
Changed paths:
|
|
1112
|
+
M /trunk/rio/Rakefile
|
|
1113
|
+
M /trunk/rio/lib/rio/version.rb
|
|
1114
|
+
M /trunk/rio/test/runtests.rb
|
|
1115
|
+
A /trunk/rio/test/runtests_gem.rb
|
|
1116
|
+
M /trunk/rio/test/tc/abs.rb
|
|
1117
|
+
M /trunk/rio/test/tc/all.rb
|
|
1118
|
+
M /trunk/rio/test/tc/cd1.rb
|
|
1119
|
+
M /trunk/rio/test/tc/clearsel.rb
|
|
1120
|
+
M /trunk/rio/test/tc/closeoncopy.rb
|
|
1121
|
+
M /trunk/rio/test/tc/closeoneof.rb
|
|
1122
|
+
M /trunk/rio/test/tc/copy-from.rb
|
|
1123
|
+
M /trunk/rio/test/tc/copy-to.rb
|
|
1124
|
+
M /trunk/rio/test/tc/copy.rb
|
|
1125
|
+
M /trunk/rio/test/tc/copyarray.rb
|
|
1126
|
+
M /trunk/rio/test/tc/copydest.rb
|
|
1127
|
+
M /trunk/rio/test/tc/copydir.rb
|
|
1128
|
+
M /trunk/rio/test/tc/copydirlines.rb
|
|
1129
|
+
M /trunk/rio/test/tc/copylines.rb
|
|
1130
|
+
M /trunk/rio/test/tc/copynonex.rb
|
|
1131
|
+
M /trunk/rio/test/tc/create.rb
|
|
1132
|
+
M /trunk/rio/test/tc/csv.rb
|
|
1133
|
+
M /trunk/rio/test/tc/dir.rb
|
|
1134
|
+
M /trunk/rio/test/tc/dirautoclose.rb
|
|
1135
|
+
M /trunk/rio/test/tc/dirent.rb
|
|
1136
|
+
M /trunk/rio/test/tc/dirss.rb
|
|
1137
|
+
M /trunk/rio/test/tc/each.rb
|
|
1138
|
+
M /trunk/rio/test/tc/each_break.rb
|
|
1139
|
+
M /trunk/rio/test/tc/edf.rb
|
|
1140
|
+
M /trunk/rio/test/tc/entary.rb
|
|
1141
|
+
M /trunk/rio/test/tc/eq.rb
|
|
1142
|
+
M /trunk/rio/test/tc/expand_path.rb
|
|
1143
|
+
M /trunk/rio/test/tc/ext.rb
|
|
1144
|
+
M /trunk/rio/test/tc/fileno.rb
|
|
1145
|
+
M /trunk/rio/test/tc/getrec.rb
|
|
1146
|
+
M /trunk/rio/test/tc/lineno.rb
|
|
1147
|
+
M /trunk/rio/test/tc/lines.rb
|
|
1148
|
+
M /trunk/rio/test/tc/methods.rb
|
|
1149
|
+
M /trunk/rio/test/tc/misc.rb
|
|
1150
|
+
M /trunk/rio/test/tc/nolines.rb
|
|
1151
|
+
M /trunk/rio/test/tc/noqae.rb
|
|
1152
|
+
M /trunk/rio/test/tc/once.rb
|
|
1153
|
+
M /trunk/rio/test/tc/overload.rb
|
|
1154
|
+
M /trunk/rio/test/tc/pa.rb
|
|
1155
|
+
M /trunk/rio/test/tc/pathop.rb
|
|
1156
|
+
M /trunk/rio/test/tc/paths.rb
|
|
1157
|
+
M /trunk/rio/test/tc/qae.rb
|
|
1158
|
+
M /trunk/rio/test/tc/qae_riovar.rb
|
|
1159
|
+
M /trunk/rio/test/tc/records.rb
|
|
1160
|
+
M /trunk/rio/test/tc/rename.rb
|
|
1161
|
+
M /trunk/rio/test/tc/rename_assign.rb
|
|
1162
|
+
M /trunk/rio/test/tc/sub.rb
|
|
1163
|
+
M /trunk/rio/test/tc/symlink.rb
|
|
1164
|
+
M /trunk/rio/test/tc/symlink0.rb
|
|
1165
|
+
M /trunk/rio/test/tc/symlink1.rb
|
|
1166
|
+
M /trunk/rio/test/tc/testcase.rb
|
|
1167
|
+
|
|
1168
|
+
Changed test cases to run alone
|
|
1169
|
+
|
|
1170
|
+
------------------------------------------------------------------------
|
|
1171
|
+
r35 | rio4ruby | 2005-08-05 09:19:23 -0700 (Fri, 05 Aug 2005) | 2 lines
|
|
1172
|
+
Changed paths:
|
|
1173
|
+
D /trunk/rio/README_MSWIN32.txt
|
|
1174
|
+
D /trunk/rio/RELEASE_NOTES
|
|
1175
|
+
A /trunk/rio/doc/README_MSWIN32.txt
|
|
1176
|
+
A /trunk/rio/doc/RELEASE_NOTES
|
|
1335
1177
|
|
|
1178
|
+
Moved some files
|
|
1336
1179
|
|
|
1337
1180
|
------------------------------------------------------------------------
|
|
1338
|
-
|
|
1181
|
+
r34 | rio4ruby | 2005-08-05 09:09:49 -0700 (Fri, 05 Aug 2005) | 2 lines
|
|
1339
1182
|
Changed paths:
|
|
1340
|
-
|
|
1183
|
+
A /trunk/rio/README_MSWIN32.txt
|
|
1184
|
+
M /trunk/rio/Rakefile
|
|
1185
|
+
M /trunk/rio/lib/rio/ops/path.rb
|
|
1186
|
+
M /trunk/rio/lib/rio/rl/path.rb
|
|
1187
|
+
A /trunk/rio/test/mswin32.rb
|
|
1341
1188
|
|
|
1342
|
-
|
|
1343
|
-
------------------------------------------------------------------------
|
|
1344
|
-
r8 | kit | 2005-07-27 07:03:12 -0700 (Wed, 27 Jul 2005) | 1 line
|
|
1345
|
-
Changed paths:
|
|
1346
|
-
M /rio/trunk/buildrdoc.rb
|
|
1189
|
+
Partial crippled support for mswin32 paths
|
|
1347
1190
|
|
|
1348
|
-
buildrdoc.rb changed
|
|
1349
1191
|
------------------------------------------------------------------------
|
|
1350
|
-
|
|
1192
|
+
r33 | rio4ruby | 2005-08-04 19:17:06 -0700 (Thu, 04 Aug 2005) | 2 lines
|
|
1351
1193
|
Changed paths:
|
|
1352
|
-
M /rio/
|
|
1353
|
-
M /rio/trunk/lib/rio/version.rb
|
|
1194
|
+
M /trunk/rio/Rakefile
|
|
1354
1195
|
|
|
1355
|
-
|
|
1356
|
-
------------------------------------------------------------------------
|
|
1357
|
-
r5 | kit | 2005-07-26 11:34:40 -0700 (Tue, 26 Jul 2005) | 1 line
|
|
1358
|
-
Changed paths:
|
|
1359
|
-
D /rio/trunk/VERSION
|
|
1360
|
-
D /rio/trunk/ex/rgb.txt
|
|
1361
|
-
D /rio/trunk/ex/riogunzip2
|
|
1362
|
-
D /rio/trunk/ex/unchomp.rb
|
|
1196
|
+
Minor change to Rakefile
|
|
1363
1197
|
|
|
1364
|
-
Cleanup
|
|
1365
1198
|
------------------------------------------------------------------------
|
|
1366
|
-
|
|
1367
|
-
Changed paths:
|
|
1368
|
-
M /rio/trunk/VERSION
|
|
1369
|
-
M /rio/trunk/ex/colx.rb
|
|
1370
|
-
M /rio/trunk/ex/findinruby
|
|
1371
|
-
M /rio/trunk/ex/findruby
|
|
1372
|
-
M /rio/trunk/ex/prompt.rb
|
|
1373
|
-
M /rio/trunk/ex/rgb.txt
|
|
1374
|
-
A /rio/trunk/ex/rgb.txt.gz
|
|
1375
|
-
M /rio/trunk/ex/riocat
|
|
1376
|
-
M /rio/trunk/ex/riogunzip
|
|
1377
|
-
M /rio/trunk/ex/riogunzip2
|
|
1378
|
-
M /rio/trunk/ex/riogzip
|
|
1379
|
-
M /rio/trunk/ex/tolf
|
|
1380
|
-
M /rio/trunk/ex/unchomp.rb
|
|
1381
|
-
M /rio/trunk/lib/rio/rl/path.rb
|
|
1382
|
-
M /rio/trunk/lib/rio/version.rb
|
|
1383
|
-
M /rio/trunk/test/tc/csv.rb
|
|
1384
|
-
M /rio/trunk/test/tc/dir.rb
|
|
1385
|
-
M /rio/trunk/test/tc/ext.rb
|
|
1386
|
-
|
|
1387
|
-
Examples
|
|
1388
|
-
------------------------------------------------------------------------
|
|
1389
|
-
r3 | kit | 2005-07-26 11:06:07 -0700 (Tue, 26 Jul 2005) | 1 line
|
|
1199
|
+
r32 | rio4ruby | 2005-08-01 16:10:08 -0700 (Mon, 01 Aug 2005) | 2 lines
|
|
1390
1200
|
Changed paths:
|
|
1391
|
-
|
|
1392
|
-
M /rio/trunk/buildrdoc.rb
|
|
1393
|
-
M /rio/trunk/doc/generators/template/html/rio.rb
|
|
1394
|
-
M /rio/trunk/lib/rio/constructor.rb
|
|
1395
|
-
M /rio/trunk/lib/rio/doc/HOWTO.rb
|
|
1396
|
-
M /rio/trunk/lib/rio/if/grande.rb
|
|
1397
|
-
M /rio/trunk/lib/rio/if/methods.rb
|
|
1398
|
-
M /rio/trunk/lib/rio/ops/dir.rb
|
|
1399
|
-
M /rio/trunk/lib/rio.rb
|
|
1400
|
-
M /rio/trunk/test/tc/copy-from.rb
|
|
1201
|
+
A /trunk/rio/RELEASE_NOTES
|
|
1401
1202
|
|
|
1402
|
-
|
|
1403
|
-
------------------------------------------------------------------------
|
|
1404
|
-
r2 | kit | 2005-07-25 16:22:18 -0700 (Mon, 25 Jul 2005) | 1 line
|
|
1405
|
-
Changed paths:
|
|
1406
|
-
M /rio/trunk/lib/rio/if/grande.rb
|
|
1407
|
-
M /rio/trunk/test/tc/misc.rb
|
|
1203
|
+
Added RELEASE_NOTES
|
|
1408
1204
|
|
|
1409
|
-
Documentation
|
|
1410
1205
|
------------------------------------------------------------------------
|
|
1411
|
-
|
|
1412
|
-
Changed paths:
|
|
1413
|
-
A /rio
|
|
1414
|
-
A /rio/
|
|
1415
|
-
A /rio/
|
|
1416
|
-
A /rio/
|
|
1417
|
-
A /rio/
|
|
1418
|
-
A /rio/
|
|
1419
|
-
A /rio/
|
|
1420
|
-
A /rio/
|
|
1421
|
-
A /rio/
|
|
1422
|
-
A /rio/
|
|
1423
|
-
A /rio/
|
|
1424
|
-
A /rio/
|
|
1425
|
-
A /
|
|
1426
|
-
A /
|
|
1427
|
-
A /rio/
|
|
1428
|
-
A /rio/
|
|
1429
|
-
A /rio/
|
|
1430
|
-
A /rio/
|
|
1431
|
-
A /rio/
|
|
1432
|
-
A /rio/
|
|
1433
|
-
A /rio/
|
|
1434
|
-
A /rio/
|
|
1435
|
-
A /
|
|
1436
|
-
A /rio/
|
|
1437
|
-
A /rio/
|
|
1438
|
-
A /rio/
|
|
1439
|
-
A /rio/
|
|
1440
|
-
A /rio/
|
|
1441
|
-
A /rio/
|
|
1442
|
-
A /rio/
|
|
1443
|
-
A /rio/
|
|
1444
|
-
A /rio/
|
|
1445
|
-
A /rio/
|
|
1446
|
-
A /rio/
|
|
1447
|
-
A /rio/
|
|
1448
|
-
A /rio/
|
|
1449
|
-
A /rio/
|
|
1450
|
-
A /rio/
|
|
1451
|
-
A /rio/
|
|
1452
|
-
A /rio/
|
|
1453
|
-
A /rio/
|
|
1454
|
-
A /rio/
|
|
1455
|
-
A /rio/
|
|
1456
|
-
A /rio/
|
|
1457
|
-
A /rio/
|
|
1458
|
-
A /rio/
|
|
1459
|
-
A /rio/
|
|
1460
|
-
A /rio/
|
|
1461
|
-
A /rio/
|
|
1462
|
-
A /rio/
|
|
1463
|
-
A /rio/
|
|
1464
|
-
A /rio/
|
|
1465
|
-
A /rio/
|
|
1466
|
-
A /rio/
|
|
1467
|
-
A /rio/
|
|
1468
|
-
A /rio/
|
|
1469
|
-
A /rio/
|
|
1470
|
-
A /rio/
|
|
1471
|
-
A /rio/
|
|
1472
|
-
A /rio/
|
|
1473
|
-
A /rio/
|
|
1474
|
-
A /rio/
|
|
1475
|
-
A /rio/
|
|
1476
|
-
A /rio/
|
|
1477
|
-
A /rio/
|
|
1478
|
-
A /rio/
|
|
1479
|
-
A /rio/
|
|
1480
|
-
A /rio/
|
|
1481
|
-
A /rio/
|
|
1482
|
-
A /rio/
|
|
1483
|
-
A /rio/
|
|
1484
|
-
A /rio/
|
|
1485
|
-
A /rio/
|
|
1486
|
-
A /rio/
|
|
1487
|
-
A /rio/
|
|
1488
|
-
A /rio/
|
|
1489
|
-
A /rio/
|
|
1490
|
-
A /rio/
|
|
1491
|
-
A /rio/
|
|
1492
|
-
A /rio/
|
|
1493
|
-
A /rio/
|
|
1494
|
-
A /rio/
|
|
1495
|
-
A /rio/
|
|
1496
|
-
A /rio/
|
|
1497
|
-
A /rio/
|
|
1498
|
-
A /rio/
|
|
1499
|
-
A /rio/
|
|
1500
|
-
A /rio/
|
|
1501
|
-
A /rio/
|
|
1502
|
-
A /rio/
|
|
1503
|
-
A /rio/
|
|
1504
|
-
A /rio/
|
|
1505
|
-
A /rio/
|
|
1506
|
-
A /rio/
|
|
1507
|
-
A /rio/
|
|
1508
|
-
A /rio/
|
|
1509
|
-
A /rio/
|
|
1510
|
-
A /rio/
|
|
1511
|
-
A /rio/
|
|
1512
|
-
A /rio/
|
|
1513
|
-
A /rio/
|
|
1514
|
-
A /rio/
|
|
1515
|
-
A /rio/
|
|
1516
|
-
A /rio/
|
|
1517
|
-
A /rio/
|
|
1518
|
-
A /rio/
|
|
1519
|
-
A /rio/
|
|
1520
|
-
A /rio/
|
|
1521
|
-
A /rio/
|
|
1522
|
-
A /rio/
|
|
1523
|
-
A /rio/
|
|
1524
|
-
A /rio/
|
|
1525
|
-
A /rio/
|
|
1526
|
-
A /rio/
|
|
1527
|
-
A /rio/
|
|
1528
|
-
A /rio/
|
|
1529
|
-
A /rio/
|
|
1530
|
-
A /rio/
|
|
1531
|
-
A /rio/
|
|
1532
|
-
A /rio/
|
|
1533
|
-
A /rio/
|
|
1534
|
-
A /rio/
|
|
1535
|
-
A /rio/
|
|
1536
|
-
A /rio/
|
|
1537
|
-
A /rio/
|
|
1538
|
-
A /rio/
|
|
1539
|
-
A /rio/
|
|
1540
|
-
A /rio/
|
|
1541
|
-
A /rio/
|
|
1542
|
-
A /rio/
|
|
1543
|
-
A /rio/
|
|
1544
|
-
A /rio/
|
|
1545
|
-
A /rio/
|
|
1546
|
-
A /rio/
|
|
1547
|
-
A /rio/
|
|
1548
|
-
A /rio/
|
|
1549
|
-
A /rio/
|
|
1550
|
-
A /rio/
|
|
1551
|
-
A /rio/
|
|
1552
|
-
A /rio/
|
|
1553
|
-
A /rio/
|
|
1554
|
-
A /rio/
|
|
1555
|
-
A /
|
|
1556
|
-
A /
|
|
1557
|
-
A /
|
|
1558
|
-
A /
|
|
1559
|
-
A /rio/
|
|
1560
|
-
A /rio/
|
|
1561
|
-
A /rio/
|
|
1562
|
-
A /rio/
|
|
1563
|
-
A /
|
|
1564
|
-
A /
|
|
1565
|
-
A /rio/
|
|
1566
|
-
A /rio/
|
|
1567
|
-
A /rio/
|
|
1568
|
-
A /rio/
|
|
1569
|
-
A /rio/
|
|
1570
|
-
A /rio/
|
|
1571
|
-
A /rio/
|
|
1572
|
-
A /rio/
|
|
1573
|
-
A /rio/
|
|
1574
|
-
A /rio/
|
|
1575
|
-
A /rio/
|
|
1576
|
-
A /rio/
|
|
1577
|
-
A /rio/
|
|
1578
|
-
A /rio/
|
|
1579
|
-
A /rio/
|
|
1580
|
-
A /rio/
|
|
1581
|
-
A /rio/
|
|
1582
|
-
A /rio/
|
|
1583
|
-
A /rio/
|
|
1584
|
-
A /rio/
|
|
1585
|
-
A /rio/
|
|
1586
|
-
A /rio/
|
|
1587
|
-
A /rio/
|
|
1588
|
-
A /rio/
|
|
1589
|
-
A /rio/
|
|
1590
|
-
A /rio/
|
|
1591
|
-
A /rio/
|
|
1592
|
-
A /rio/
|
|
1593
|
-
A /rio/
|
|
1594
|
-
A /rio/
|
|
1595
|
-
A /rio/
|
|
1596
|
-
A /rio/
|
|
1597
|
-
A /rio/
|
|
1598
|
-
A /rio/
|
|
1599
|
-
A /rio/
|
|
1600
|
-
A /rio/
|
|
1601
|
-
A /rio/
|
|
1602
|
-
A /rio/
|
|
1603
|
-
A /rio/
|
|
1604
|
-
A /rio/
|
|
1605
|
-
A /rio/
|
|
1606
|
-
A /rio/
|
|
1607
|
-
A /rio/
|
|
1608
|
-
A /rio/
|
|
1609
|
-
A /rio/
|
|
1610
|
-
A /rio/
|
|
1611
|
-
A /rio/
|
|
1612
|
-
A /rio/
|
|
1613
|
-
A /rio/
|
|
1614
|
-
A /rio/
|
|
1615
|
-
A /rio/
|
|
1616
|
-
A /rio/
|
|
1617
|
-
A /rio/
|
|
1618
|
-
A /rio/
|
|
1619
|
-
A /rio/
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
A /rio/trunk/test/tc/symlink1.rb
|
|
1624
|
-
A /rio/trunk/test/tc/testcase.rb
|
|
1625
|
-
|
|
1626
|
-
Initial Import after svn corruption
|
|
1206
|
+
r27 | rio4ruby | 2005-08-01 14:57:59 -0700 (Mon, 01 Aug 2005) | 2 lines
|
|
1207
|
+
Changed paths:
|
|
1208
|
+
A /trunk/rio
|
|
1209
|
+
A /trunk/rio/COPYING
|
|
1210
|
+
A /trunk/rio/README
|
|
1211
|
+
A /trunk/rio/RUNME.1st.rb
|
|
1212
|
+
A /trunk/rio/Rakefile
|
|
1213
|
+
A /trunk/rio/doc
|
|
1214
|
+
A /trunk/rio/doc/generators
|
|
1215
|
+
A /trunk/rio/doc/generators/template
|
|
1216
|
+
A /trunk/rio/doc/generators/template/html
|
|
1217
|
+
A /trunk/rio/doc/generators/template/html/rio.rb
|
|
1218
|
+
A /trunk/rio/doc/rfc1738.txt
|
|
1219
|
+
A /trunk/rio/doc/rfc959.txt
|
|
1220
|
+
A /trunk/rio/ex
|
|
1221
|
+
A /trunk/rio/ex/colx.rb
|
|
1222
|
+
A /trunk/rio/ex/findinruby
|
|
1223
|
+
A /trunk/rio/ex/findruby
|
|
1224
|
+
A /trunk/rio/ex/prompt.rb
|
|
1225
|
+
A /trunk/rio/ex/rgb.txt.gz
|
|
1226
|
+
A /trunk/rio/ex/riocat
|
|
1227
|
+
A /trunk/rio/ex/riogunzip
|
|
1228
|
+
A /trunk/rio/ex/riogzip
|
|
1229
|
+
A /trunk/rio/ex/tolf
|
|
1230
|
+
A /trunk/rio/lib
|
|
1231
|
+
A /trunk/rio/lib/rio
|
|
1232
|
+
A /trunk/rio/lib/rio/abstract_method.rb
|
|
1233
|
+
A /trunk/rio/lib/rio/argv.rb
|
|
1234
|
+
A /trunk/rio/lib/rio/arrayio.rb
|
|
1235
|
+
A /trunk/rio/lib/rio/arycopy.rb
|
|
1236
|
+
A /trunk/rio/lib/rio/assert.rb
|
|
1237
|
+
A /trunk/rio/lib/rio/base.rb
|
|
1238
|
+
A /trunk/rio/lib/rio/constructor.rb
|
|
1239
|
+
A /trunk/rio/lib/rio/context
|
|
1240
|
+
A /trunk/rio/lib/rio/context/chomp.rb
|
|
1241
|
+
A /trunk/rio/lib/rio/context/closeoneof.rb
|
|
1242
|
+
A /trunk/rio/lib/rio/context/cxx.rb
|
|
1243
|
+
A /trunk/rio/lib/rio/context/dir.rb
|
|
1244
|
+
A /trunk/rio/lib/rio/context/gzip.rb
|
|
1245
|
+
A /trunk/rio/lib/rio/context/methods.rb
|
|
1246
|
+
A /trunk/rio/lib/rio/context/stream.rb
|
|
1247
|
+
A /trunk/rio/lib/rio/context.rb
|
|
1248
|
+
A /trunk/rio/lib/rio/cp.rb
|
|
1249
|
+
A /trunk/rio/lib/rio/cxdir.rb
|
|
1250
|
+
A /trunk/rio/lib/rio/dir.rb
|
|
1251
|
+
A /trunk/rio/lib/rio/doc
|
|
1252
|
+
A /trunk/rio/lib/rio/doc/HOWTO.rb
|
|
1253
|
+
A /trunk/rio/lib/rio/doc/INTRO.rb
|
|
1254
|
+
A /trunk/rio/lib/rio/doc/MISC.rb
|
|
1255
|
+
A /trunk/rio/lib/rio/doc/SYNOPSIS.rb
|
|
1256
|
+
A /trunk/rio/lib/rio/doc.rb
|
|
1257
|
+
A /trunk/rio/lib/rio/entrysel.rb
|
|
1258
|
+
A /trunk/rio/lib/rio/exception
|
|
1259
|
+
A /trunk/rio/lib/rio/exception/copy.rb
|
|
1260
|
+
A /trunk/rio/lib/rio/exception/open.rb
|
|
1261
|
+
A /trunk/rio/lib/rio/exception/state.rb
|
|
1262
|
+
A /trunk/rio/lib/rio/exception.rb
|
|
1263
|
+
A /trunk/rio/lib/rio/ext
|
|
1264
|
+
A /trunk/rio/lib/rio/ext/csv.rb
|
|
1265
|
+
A /trunk/rio/lib/rio/ext.rb
|
|
1266
|
+
A /trunk/rio/lib/rio/factory.rb
|
|
1267
|
+
A /trunk/rio/lib/rio/file.rb
|
|
1268
|
+
A /trunk/rio/lib/rio/filter
|
|
1269
|
+
A /trunk/rio/lib/rio/filter/chomp.rb
|
|
1270
|
+
A /trunk/rio/lib/rio/filter/closeoneof.rb
|
|
1271
|
+
A /trunk/rio/lib/rio/filter/gzip.rb
|
|
1272
|
+
A /trunk/rio/lib/rio/ftp
|
|
1273
|
+
A /trunk/rio/lib/rio/ftp/conn.rb
|
|
1274
|
+
A /trunk/rio/lib/rio/ftp/ioh.rb
|
|
1275
|
+
A /trunk/rio/lib/rio/ftp.rb
|
|
1276
|
+
A /trunk/rio/lib/rio/grande.rb
|
|
1277
|
+
A /trunk/rio/lib/rio/handle.rb
|
|
1278
|
+
A /trunk/rio/lib/rio/if
|
|
1279
|
+
A /trunk/rio/lib/rio/if/basic.rb
|
|
1280
|
+
A /trunk/rio/lib/rio/if/dir.rb
|
|
1281
|
+
A /trunk/rio/lib/rio/if/file.rb
|
|
1282
|
+
A /trunk/rio/lib/rio/if/fileordir.rb
|
|
1283
|
+
A /trunk/rio/lib/rio/if/grande.rb
|
|
1284
|
+
A /trunk/rio/lib/rio/if/internal.rb
|
|
1285
|
+
A /trunk/rio/lib/rio/if/methods.rb
|
|
1286
|
+
A /trunk/rio/lib/rio/if/path.rb
|
|
1287
|
+
A /trunk/rio/lib/rio/if/stream.rb
|
|
1288
|
+
A /trunk/rio/lib/rio/if/test.rb
|
|
1289
|
+
A /trunk/rio/lib/rio/if.rb
|
|
1290
|
+
A /trunk/rio/lib/rio/impl
|
|
1291
|
+
A /trunk/rio/lib/rio/impl/path.rb
|
|
1292
|
+
A /trunk/rio/lib/rio/ioh.rb
|
|
1293
|
+
A /trunk/rio/lib/rio/iomode.rb
|
|
1294
|
+
A /trunk/rio/lib/rio/kernel.rb
|
|
1295
|
+
A /trunk/rio/lib/rio/local.rb
|
|
1296
|
+
A /trunk/rio/lib/rio/match.rb
|
|
1297
|
+
A /trunk/rio/lib/rio/matchrecord.rb
|
|
1298
|
+
A /trunk/rio/lib/rio/open3.rb
|
|
1299
|
+
A /trunk/rio/lib/rio/ops
|
|
1300
|
+
A /trunk/rio/lib/rio/ops/create.rb
|
|
1301
|
+
A /trunk/rio/lib/rio/ops/dir.rb
|
|
1302
|
+
A /trunk/rio/lib/rio/ops/either.rb
|
|
1303
|
+
A /trunk/rio/lib/rio/ops/file.rb
|
|
1304
|
+
A /trunk/rio/lib/rio/ops/path.rb
|
|
1305
|
+
A /trunk/rio/lib/rio/ops/stream
|
|
1306
|
+
A /trunk/rio/lib/rio/ops/stream/input.rb
|
|
1307
|
+
A /trunk/rio/lib/rio/ops/stream/output.rb
|
|
1308
|
+
A /trunk/rio/lib/rio/ops/stream/read.rb
|
|
1309
|
+
A /trunk/rio/lib/rio/ops/stream/write.rb
|
|
1310
|
+
A /trunk/rio/lib/rio/ops/stream.rb
|
|
1311
|
+
A /trunk/rio/lib/rio/ops/symlink.rb
|
|
1312
|
+
A /trunk/rio/lib/rio/path
|
|
1313
|
+
A /trunk/rio/lib/rio/path/reset.rb
|
|
1314
|
+
A /trunk/rio/lib/rio/path.rb
|
|
1315
|
+
A /trunk/rio/lib/rio/record.rb
|
|
1316
|
+
A /trunk/rio/lib/rio/rectype.rb
|
|
1317
|
+
A /trunk/rio/lib/rio/rl
|
|
1318
|
+
A /trunk/rio/lib/rio/rl/base.rb
|
|
1319
|
+
A /trunk/rio/lib/rio/rl/builder.rb
|
|
1320
|
+
A /trunk/rio/lib/rio/rl/ioi.rb
|
|
1321
|
+
A /trunk/rio/lib/rio/rl/path.rb
|
|
1322
|
+
A /trunk/rio/lib/rio/rl/uri.rb
|
|
1323
|
+
A /trunk/rio/lib/rio/scheme
|
|
1324
|
+
A /trunk/rio/lib/rio/scheme/aryio.rb
|
|
1325
|
+
A /trunk/rio/lib/rio/scheme/cmdio.rb
|
|
1326
|
+
A /trunk/rio/lib/rio/scheme/fd.rb
|
|
1327
|
+
A /trunk/rio/lib/rio/scheme/ftp.rb
|
|
1328
|
+
A /trunk/rio/lib/rio/scheme/http.rb
|
|
1329
|
+
A /trunk/rio/lib/rio/scheme/path.rb
|
|
1330
|
+
A /trunk/rio/lib/rio/scheme/stderr.rb
|
|
1331
|
+
A /trunk/rio/lib/rio/scheme/stdio.rb
|
|
1332
|
+
A /trunk/rio/lib/rio/scheme/strio.rb
|
|
1333
|
+
A /trunk/rio/lib/rio/scheme/sysio.rb
|
|
1334
|
+
A /trunk/rio/lib/rio/scheme/tcp.rb
|
|
1335
|
+
A /trunk/rio/lib/rio/scheme/tempfile.rb
|
|
1336
|
+
A /trunk/rio/lib/rio/state
|
|
1337
|
+
A /trunk/rio/lib/rio/state/error.rb
|
|
1338
|
+
A /trunk/rio/lib/rio/state.rb
|
|
1339
|
+
A /trunk/rio/lib/rio/stream
|
|
1340
|
+
A /trunk/rio/lib/rio/stream/base.rb
|
|
1341
|
+
A /trunk/rio/lib/rio/stream/duplex.rb
|
|
1342
|
+
A /trunk/rio/lib/rio/stream/open.rb
|
|
1343
|
+
A /trunk/rio/lib/rio/stream.rb
|
|
1344
|
+
A /trunk/rio/lib/rio/symantics.rb
|
|
1345
|
+
A /trunk/rio/lib/rio/to_rio.rb
|
|
1346
|
+
A /trunk/rio/lib/rio/uri
|
|
1347
|
+
A /trunk/rio/lib/rio/uri/file.rb
|
|
1348
|
+
A /trunk/rio/lib/rio/version.rb
|
|
1349
|
+
A /trunk/rio/lib/rio.rb
|
|
1350
|
+
A /trunk/rio/misc
|
|
1351
|
+
A /trunk/rio/misc/addsrcheaders.rb
|
|
1352
|
+
A /trunk/rio/misc/changeheader.rb
|
|
1353
|
+
A /trunk/rio/misc/filegpl.txt
|
|
1354
|
+
A /trunk/rio/misc/geninfo.txt
|
|
1355
|
+
A /trunk/rio/misc/mktoc.rb
|
|
1356
|
+
A /trunk/rio/misc/newheader
|
|
1357
|
+
A /trunk/rio/misc/oldheader
|
|
1358
|
+
A /trunk/rio/setup.rb
|
|
1359
|
+
A /trunk/rio/test
|
|
1360
|
+
A /trunk/rio/test/1.rb
|
|
1361
|
+
A /trunk/rio/test/once.rb
|
|
1362
|
+
A /trunk/rio/test/runtests.rb
|
|
1363
|
+
A /trunk/rio/test/tc
|
|
1364
|
+
A /trunk/rio/test/tc/abs.rb
|
|
1365
|
+
A /trunk/rio/test/tc/all.rb
|
|
1366
|
+
A /trunk/rio/test/tc/cd1.rb
|
|
1367
|
+
A /trunk/rio/test/tc/clearsel.rb
|
|
1368
|
+
A /trunk/rio/test/tc/closeoncopy.rb
|
|
1369
|
+
A /trunk/rio/test/tc/closeoneof.rb
|
|
1370
|
+
A /trunk/rio/test/tc/copy-from.rb
|
|
1371
|
+
A /trunk/rio/test/tc/copy-to.rb
|
|
1372
|
+
A /trunk/rio/test/tc/copy.rb
|
|
1373
|
+
A /trunk/rio/test/tc/copyarray.rb
|
|
1374
|
+
A /trunk/rio/test/tc/copydest.rb
|
|
1375
|
+
A /trunk/rio/test/tc/copydir.rb
|
|
1376
|
+
A /trunk/rio/test/tc/copydirlines.rb
|
|
1377
|
+
A /trunk/rio/test/tc/copylines.rb
|
|
1378
|
+
A /trunk/rio/test/tc/copynonex.rb
|
|
1379
|
+
A /trunk/rio/test/tc/create.rb
|
|
1380
|
+
A /trunk/rio/test/tc/csv.rb
|
|
1381
|
+
A /trunk/rio/test/tc/dir.rb
|
|
1382
|
+
A /trunk/rio/test/tc/dirautoclose.rb
|
|
1383
|
+
A /trunk/rio/test/tc/dirent.rb
|
|
1384
|
+
A /trunk/rio/test/tc/dirss.rb
|
|
1385
|
+
A /trunk/rio/test/tc/each.rb
|
|
1386
|
+
A /trunk/rio/test/tc/each_break.rb
|
|
1387
|
+
A /trunk/rio/test/tc/edf.rb
|
|
1388
|
+
A /trunk/rio/test/tc/entary.rb
|
|
1389
|
+
A /trunk/rio/test/tc/eq.rb
|
|
1390
|
+
A /trunk/rio/test/tc/expand_path.rb
|
|
1391
|
+
A /trunk/rio/test/tc/ext.rb
|
|
1392
|
+
A /trunk/rio/test/tc/fileno.rb
|
|
1393
|
+
A /trunk/rio/test/tc/getrec.rb
|
|
1394
|
+
A /trunk/rio/test/tc/lineno.rb
|
|
1395
|
+
A /trunk/rio/test/tc/lines.rb
|
|
1396
|
+
A /trunk/rio/test/tc/methods.rb
|
|
1397
|
+
A /trunk/rio/test/tc/misc.rb
|
|
1398
|
+
A /trunk/rio/test/tc/nolines.rb
|
|
1399
|
+
A /trunk/rio/test/tc/noqae.rb
|
|
1400
|
+
A /trunk/rio/test/tc/once.rb
|
|
1401
|
+
A /trunk/rio/test/tc/overload.rb
|
|
1402
|
+
A /trunk/rio/test/tc/pa.rb
|
|
1403
|
+
A /trunk/rio/test/tc/pathop.rb
|
|
1404
|
+
A /trunk/rio/test/tc/paths.rb
|
|
1405
|
+
A /trunk/rio/test/tc/qae.rb
|
|
1406
|
+
A /trunk/rio/test/tc/qae_riovar.rb
|
|
1407
|
+
A /trunk/rio/test/tc/records.rb
|
|
1408
|
+
A /trunk/rio/test/tc/rename.rb
|
|
1409
|
+
A /trunk/rio/test/tc/rename_assign.rb
|
|
1410
|
+
A /trunk/rio/test/tc/sub.rb
|
|
1411
|
+
A /trunk/rio/test/tc/symlink.rb
|
|
1412
|
+
A /trunk/rio/test/tc/symlink0.rb
|
|
1413
|
+
A /trunk/rio/test/tc/symlink1.rb
|
|
1414
|
+
A /trunk/rio/test/tc/testcase.rb
|
|
1415
|
+
|
|
1416
|
+
Initial revision
|
|
1417
|
+
|
|
1627
1418
|
------------------------------------------------------------------------
|