rbcdio 0.03 → 0.04

Sign up to get free protection for your applications and to get access to all the features.
data/test/isotest.rb CHANGED
@@ -34,129 +34,148 @@ class ISO9660Tests < Test::Unit::TestCase
34
34
 
35
35
  # ACHAR and DCHAR
36
36
  def test_chars()
37
- bad = 0
38
- c = ?A
39
- while c<= ?Z
40
- if not ISO9660.dchar?(c)
41
- puts "Failed ISO9660.achar? test on %c" % c
42
- bad += 1
43
- end
44
- if not ISO9660.achar?(c):
45
- puts "Failed ISO9660.achar? test on %c" % c
46
- bad += 1
47
- end
48
- c += 1
37
+ bad = 0
38
+
39
+ if 'A'.respond_to?(:ord)
40
+ # Ruby 1.9
41
+ c = 'A'.ord
42
+ zed = 'Z'.ord
43
+ zero = '0'.ord
44
+ nine = '9'.ord
45
+ puts zed
46
+ else
47
+ # Ruby 1.8
48
+ c = ?A
49
+ zed = ?Z
50
+ zero = ?0
51
+ nine = ?9
52
+ end
53
+
54
+ while c <= zed
55
+ if not ISO9660.dchar?(c)
56
+ puts "Failed ISO9660.achar? test on %c" % c
57
+ bad += 1
49
58
  end
50
-
51
- assert_equal(true, bad==0, 'dchar? & achar? A..Z')
52
- bad=0
53
- c= ?0
54
- while c<= ?9
55
- if not ISO9660.dchar?(c)
56
- puts "Failed ISO9660.dchar? test on %c" % c
57
- bad += 1
58
- end
59
- if not ISO9660.achar?(c)
60
- puts "Failed ISO9660.achar? test on %c" % c
61
- bad += 1
62
- end
63
- c += 1
59
+ if not ISO9660.achar?(c)
60
+ puts "Failed ISO9660.achar? test on %c" % c
61
+ bad += 1
64
62
  end
65
- assert_equal(true, bad==0, 'dchar? & achar? 0..9')
66
-
67
- bad=0
68
- i=0
69
- while i<=13
70
- c = @@achars[i][0]
71
- if ISO9660.dchar?(c)
72
- puts "Should not pass dchar? test on %c" % c
73
- bad += 1
74
- end
75
- if not ISO9660.achar?(c)
76
- puts "Failed achar? test on symbol %c" % c
77
- bad += 1
78
- end
79
- i += 1
63
+ c += 1
64
+ end
65
+
66
+ assert_equal(true, bad==0, 'dchar? & achar? A..Z')
67
+ bad=0
68
+ c = zero
69
+ while c<= nine
70
+ if not ISO9660.dchar?(c)
71
+ puts "Failed ISO9660.dchar? test on %c" % c
72
+ bad += 1
80
73
  end
81
-
82
- assert_equal(true, bad==0, 'dchar? & achar? symbols')
74
+ if not ISO9660.achar?(c)
75
+ puts "Failed ISO9660.achar? test on %c" % c
76
+ bad += 1
77
+ end
78
+ c += 1
79
+ end
80
+ assert_equal(true, bad==0, 'dchar? & achar? 0..9')
81
+
82
+ bad=0
83
+ i=0
84
+ while i<=13
85
+ if @@achars[i][0].respond_to?(:ord)
86
+ c = @@achars[i][0].ord
87
+ else
88
+ c = @@achars[i][0]
89
+ end
90
+ if ISO9660.dchar?(c)
91
+ puts "Should not pass dchar? test on %c" % c
92
+ bad += 1
93
+ end
94
+ if not ISO9660.achar?(c)
95
+ puts "Failed achar? test on symbol %c" % c
96
+ bad += 1
97
+ end
98
+ i += 1
99
+ end
100
+
101
+ assert_equal(true, bad==0, 'dchar? & achar? symbols')
83
102
  end # test_chars
84
-
103
+
85
104
  # Test ISO9660.strncpy_pad
86
105
  def test_strncpy_pad()
87
-
88
- dst = ISO9660.strncpy_pad("1_3", 5, :dchars)
89
- assert_equal(dst, "1_3 ", "strncpy_pad DCHARS")
90
-
91
- dst = ISO9660.strncpy_pad("ABC!123", 2, :achars)
92
- assert_equal(dst, "AB", "strncpy_pad ACHARS truncation")
106
+
107
+ dst = ISO9660.strncpy_pad("1_3", 5, :dchars)
108
+ assert_equal(dst, "1_3 ", "strncpy_pad DCHARS")
109
+
110
+ dst = ISO9660.strncpy_pad("ABC!123", 2, :achars)
111
+ assert_equal(dst, "AB", "strncpy_pad ACHARS truncation")
93
112
  end
94
-
113
+
95
114
  # Test ISO9660.dirname_valid?
96
115
  def test_dirname()
97
-
98
- assert_equal(false, ISO9660.dirname_valid?("/NOGOOD"),
99
- "dirname_valid? - /NOGOOD is no good.")
100
-
101
- assert_equal(false,
102
- ISO9660.dirname_valid?("LONGDIRECTORY/NOGOOD"),
103
- "pyiso9660.dirname_valid? - too long directory")
104
-
105
- assert_equal(true, ISO9660.dirname_valid?("OKAY/DIR"),
106
- "dirname_valid? - OKAY/DIR should pass ")
107
-
108
- assert_equal(false, ISO9660.dirname_valid?("OKAY/FILE.EXT"),
109
- "dirname_valid? - OKAY/FILENAME.EXT")
116
+
117
+ assert_equal(false, ISO9660.dirname_valid?("/NOGOOD"),
118
+ "dirname_valid? - /NOGOOD is no good.")
119
+
120
+ assert_equal(false,
121
+ ISO9660.dirname_valid?("LONGDIRECTORY/NOGOOD"),
122
+ "pyiso9660.dirname_valid? - too long directory")
123
+
124
+ assert_equal(true, ISO9660.dirname_valid?("OKAY/DIR"),
125
+ "dirname_valid? - OKAY/DIR should pass ")
126
+
127
+ assert_equal(false, ISO9660.dirname_valid?("OKAY/FILE.EXT"),
128
+ "dirname_valid? - OKAY/FILENAME.EXT")
110
129
  end # test_dirname
111
-
130
+
112
131
  # Test retrieving image information
113
132
  def test_image_info()
114
-
115
- # The test ISO 9660 image
116
- image_path= Mypath + "/../data"
117
- image_fname=image_path + "/copying.iso"
118
- iso = ISO9660::IFS::new(image_fname)
119
- assert(iso != nil, "Opening %s" % image_fname)
120
-
121
- assert_equal(iso.application_id(),
122
- "MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING",
123
- "get_application_id()")
124
-
125
- assert_equal(iso.system_id(), "LINUX",
126
- "get_system_id() eq 'LINUX'")
127
- assert_equal(iso.volume_id(), "CDROM",
128
- "get_volume_id() eq 'CDROM'")
129
-
130
- file_stats = iso.readdir('/')
131
-
132
- okay_stats = [
133
- {"size"=>2048, "type"=>2, "secsize"=>1, "lsn"=>23,
134
- "filename"=>"."},
135
- {"size"=>2048, "type"=>2, "secsize"=>1, "lsn"=>23,
136
- "filename"=>".."},
137
- {"size"=>17992, "type"=>1, "secsize"=>9, "lsn"=>24,
138
- "filename"=>"COPYING.;1"}
139
- ]
140
- assert_equal(file_stats, okay_stats, "file stat info")
133
+
134
+ # The test ISO 9660 image
135
+ image_path= Mypath + "/../data"
136
+ image_fname=image_path + "/copying.iso"
137
+ iso = ISO9660::IFS::new(image_fname)
138
+ assert(iso != nil, "Opening %s" % image_fname)
139
+
140
+ assert_equal(iso.application_id(),
141
+ "MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING",
142
+ "get_application_id()")
143
+
144
+ assert_equal(iso.system_id(), "LINUX",
145
+ "get_system_id() eq 'LINUX'")
146
+ assert_equal(iso.volume_id(), "CDROM",
147
+ "get_volume_id() eq 'CDROM'")
148
+
149
+ file_stats = iso.readdir('/')
150
+
151
+ okay_stats = [
152
+ {"size"=>2048, "type"=>2, "secsize"=>1, "lsn"=>23,
153
+ "filename"=>"."},
154
+ {"size"=>2048, "type"=>2, "secsize"=>1, "lsn"=>23,
155
+ "filename"=>".."},
156
+ {"size"=>17992, "type"=>1, "secsize"=>9, "lsn"=>24,
157
+ "filename"=>"COPYING.;1"}
158
+ ]
159
+ assert_equal(file_stats, okay_stats, "file stat info")
141
160
  end # test_image_info
142
-
161
+
143
162
  # Test pathname_valid?
144
163
  def test_pathname_valid()
145
- # require "debug"
146
- assert_equal(true, ISO9660.pathname_valid?("OKAY/FILE.EXT"),
147
- "pyiso9660.dirname_valid? - OKAY/FILE.EXT ")
148
- assert_equal(false,
149
- ISO9660.pathname_valid?("OKAY/FILENAMELONG.EXT"),
150
- 'invalid pathname, long basename')
151
-
152
- assert_equal(false,
153
- ISO9660.pathname_valid?("OKAY/FILE.LONGEXT"),
154
- "pathname_valid? - long extension" )
155
-
156
- dst = ISO9660.pathname_isofy("this/file.ext", 1)
157
- assert(dst != "this/file.ext1", "ISO9660.pathname_isofy")
164
+ # require "debug"
165
+ assert_equal(true, ISO9660.pathname_valid?("OKAY/FILE.EXT"),
166
+ "pyiso9660.dirname_valid? - OKAY/FILE.EXT ")
167
+ assert_equal(false,
168
+ ISO9660.pathname_valid?("OKAY/FILENAMELONG.EXT"),
169
+ 'invalid pathname, long basename')
170
+
171
+ assert_equal(false,
172
+ ISO9660.pathname_valid?("OKAY/FILE.LONGEXT"),
173
+ "pathname_valid? - long extension" )
174
+
175
+ dst = ISO9660.pathname_isofy("this/file.ext", 1)
176
+ assert(dst != "this/file.ext1", "ISO9660.pathname_isofy")
158
177
  end # test_pathname_valid
159
-
178
+
160
179
  # # Test time
161
180
  # def test_time()
162
181
  # import time
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbcdio
3
3
  version: !ruby/object:Gem::Version
4
- version: "0.03"
4
+ version: "0.04"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rocky Bernstein
@@ -9,7 +9,7 @@ autorequire: rubycdio
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-09-22 00:00:00 -04:00
12
+ date: 2009-05-18 00:00:00 -04:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -40,30 +40,20 @@ files:
40
40
  - configure
41
41
  - configure.ac
42
42
  - data/copying.iso
43
- - data/isofs-m1.bin
44
43
  - data/isofs-m1.cue
45
- - doc/rdoc-style.css
46
- - doc/files
47
- - doc/classes
48
- - doc/fr_file_index.html
49
- - doc/fr_class_index.html
50
- - doc/fr_method_index.html
51
- - doc/index.html
52
- - doc/created.rid
44
+ - data/isofs-m1.bin
53
45
  - example/device.rb
54
- - example/audio.rb
55
- - example/copying
56
- - example/drives.rb
57
- - example/README
58
- - example/cd-read.rb
59
- - example/drivers.rb
60
- - example/eject.rb
61
- - example/COPYING
62
- - example/tracks.rb
46
+ - example/iso3.rb
47
+ - example/cdtext.rb
63
48
  - example/iso1.rb
64
49
  - example/iso2.rb
65
- - example/iso3.rb
50
+ - example/drives.rb
51
+ - example/audio.rb
66
52
  - example/cdchange.rb
53
+ - example/eject.rb
54
+ - example/cd-read.rb
55
+ - example/tracks.rb
56
+ - example/README
67
57
  - ext/cdio/rubycdio_wrap.c
68
58
  - ext/iso9660/rubyiso9660_wrap.c
69
59
  - ext/cdio/Makefile
@@ -76,20 +66,22 @@ files:
76
66
  - lib/Makefile
77
67
  - missing
78
68
  - rubycdio.m4
79
- - swig/compat.swg
80
- - swig/device.swg
81
- - swig/disc.swg
82
- - swig/types.swg
83
69
  - swig/audio.swg
84
- - swig/rubycdio.swg
85
- - swig/rubyiso9660.swg
86
70
  - swig/read.swg
71
+ - swig/rubycdio.swg
72
+ - swig/types.swg
87
73
  - swig/track.swg
74
+ - swig/cdtext.swg
88
75
  - swig/device_const.swg
76
+ - swig/disc.swg
77
+ - swig/rubyiso9660.swg
78
+ - swig/device.swg
79
+ - swig/compat.swg
89
80
  - swig/Makefile
90
81
  - test/cdiotest.rb
91
- - test/isocopy.rb
82
+ - test/cdtext.rb
92
83
  - test/isotest.rb
84
+ - test/isocopy.rb
93
85
  - test/Makefile
94
86
  - test/Rakefile
95
87
  - test/cdda.bin
@@ -117,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
109
  requirements: []
118
110
 
119
111
  rubyforge_project: rbcdio
120
- rubygems_version: 1.0.1
112
+ rubygems_version: 1.3.1
121
113
  signing_key:
122
114
  specification_version: 2
123
115
  summary: Ruby to libcdio (CD Input and Control library)
data/doc/created.rid DELETED
@@ -1 +0,0 @@
1
- Mon, 25 Aug 2008 17:22:45 -0400
@@ -1,42 +0,0 @@
1
-
2
- <?xml version="1.0" encoding="iso-8859-1"?>
3
- <!DOCTYPE html
4
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
-
7
- <!--
8
-
9
- Classes
10
-
11
- -->
12
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
- <head>
14
- <title>Classes</title>
15
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
- <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
- <base target="docwin" />
18
- </head>
19
- <body>
20
- <div id="index">
21
- <h1 class="section-bar">Classes</h1>
22
- <div id="index-entries">
23
- <a href="classes/Cdio.html">Cdio</a><br />
24
- <a href="classes/Cdio/Device.html">Cdio::Device</a><br />
25
- <a href="classes/Cdio/DeviceException.html">Cdio::DeviceException</a><br />
26
- <a href="classes/Cdio/DriverBadParameterError.html">Cdio::DriverBadParameterError</a><br />
27
- <a href="classes/Cdio/DriverBadPointerError.html">Cdio::DriverBadPointerError</a><br />
28
- <a href="classes/Cdio/DriverError.html">Cdio::DriverError</a><br />
29
- <a href="classes/Cdio/DriverNotPermittedError.html">Cdio::DriverNotPermittedError</a><br />
30
- <a href="classes/Cdio/DriverUninitError.html">Cdio::DriverUninitError</a><br />
31
- <a href="classes/Cdio/DriverUnsupportedError.html">Cdio::DriverUnsupportedError</a><br />
32
- <a href="classes/Cdio/NoDriverError.html">Cdio::NoDriverError</a><br />
33
- <a href="classes/Cdio/Track.html">Cdio::Track</a><br />
34
- <a href="classes/Cdio/TrackError.html">Cdio::TrackError</a><br />
35
- <a href="classes/DeviceException.html">DeviceException</a><br />
36
- <a href="classes/ISO9660.html">ISO9660</a><br />
37
- <a href="classes/ISO9660/FS.html">ISO9660::FS</a><br />
38
- <a href="classes/ISO9660/IFS.html">ISO9660::IFS</a><br />
39
- </div>
40
- </div>
41
- </body>
42
- </html>
@@ -1,41 +0,0 @@
1
-
2
- <?xml version="1.0" encoding="iso-8859-1"?>
3
- <!DOCTYPE html
4
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
-
7
- <!--
8
-
9
- Files
10
-
11
- -->
12
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
- <head>
14
- <title>Files</title>
15
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
- <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
- <base target="docwin" />
18
- </head>
19
- <body>
20
- <div id="index">
21
- <h1 class="section-bar">Files</h1>
22
- <div id="index-entries">
23
- <a href="files/README.html">README</a><br />
24
- <a href="files/example/README.html">example/README</a><br />
25
- <a href="files/example/audio_rb.html">example/audio.rb</a><br />
26
- <a href="files/example/cd-read_rb.html">example/cd-read.rb</a><br />
27
- <a href="files/example/cdchange_rb.html">example/cdchange.rb</a><br />
28
- <a href="files/example/device_rb.html">example/device.rb</a><br />
29
- <a href="files/example/drivers_rb.html">example/drivers.rb</a><br />
30
- <a href="files/example/drives_rb.html">example/drives.rb</a><br />
31
- <a href="files/example/eject_rb.html">example/eject.rb</a><br />
32
- <a href="files/example/iso1_rb.html">example/iso1.rb</a><br />
33
- <a href="files/example/iso2_rb.html">example/iso2.rb</a><br />
34
- <a href="files/example/iso3_rb.html">example/iso3.rb</a><br />
35
- <a href="files/example/tracks_rb.html">example/tracks.rb</a><br />
36
- <a href="files/lib/cdio_rb.html">lib/cdio.rb</a><br />
37
- <a href="files/lib/iso9660_rb.html">lib/iso9660.rb</a><br />
38
- </div>
39
- </div>
40
- </body>
41
- </html>
@@ -1,133 +0,0 @@
1
-
2
- <?xml version="1.0" encoding="iso-8859-1"?>
3
- <!DOCTYPE html
4
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
5
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
-
7
- <!--
8
-
9
- Methods
10
-
11
- -->
12
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
13
- <head>
14
- <title>Methods</title>
15
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
16
- <link rel="stylesheet" href="rdoc-style.css" type="text/css" />
17
- <base target="docwin" />
18
- </head>
19
- <body>
20
- <div id="index">
21
- <h1 class="section-bar">Methods</h1>
22
- <div id="index-entries">
23
- <a href="classes/Cdio/Device.html#M000075">ATAPI? (Cdio::Device)</a><br />
24
- <a href="classes/ISO9660.html#M000015">achar? (ISO9660)</a><br />
25
- <a href="classes/ISO9660/IFS.html#M000024">application_id (ISO9660::IFS)</a><br />
26
- <a href="classes/Cdio/Device.html#M000083">arg (Cdio::Device)</a><br />
27
- <a href="classes/Cdio/Track.html#M000064">audio_channels (Cdio::Track)</a><br />
28
- <a href="classes/Cdio/Device.html#M000076">audio_pause (Cdio::Device)</a><br />
29
- <a href="classes/Cdio/Device.html#M000077">audio_play_lsn (Cdio::Device)</a><br />
30
- <a href="classes/Cdio/Device.html#M000078">audio_resume (Cdio::Device)</a><br />
31
- <a href="classes/Cdio/Device.html#M000079">audio_stop (Cdio::Device)</a><br />
32
- <a href="classes/Cdio.html#M000055">binfile? (Cdio)</a><br />
33
- <a href="classes/Cdio/Device.html#M000106">blocksize= (Cdio::Device)</a><br />
34
- <a href="classes/ISO9660.html#M000013">check_types (ISO9660)</a><br />
35
- <a href="classes/Cdio/Device.html#M000080">close (Cdio::Device)</a><br />
36
- <a href="classes/ISO9660/IFS.html#M000022">close (ISO9660::IFS)</a><br />
37
- <a href="classes/Cdio.html#M000048">close_tray (Cdio)</a><br />
38
- <a href="files/example/audio_rb.html#M000005">command_line_options (example/audio.rb)</a><br />
39
- <a href="files/example/cd-read_rb.html#M000011">command_line_options (example/cd-read.rb)</a><br />
40
- <a href="classes/Cdio.html#M000060">convert_drive_cap_misc (Cdio)</a><br />
41
- <a href="classes/Cdio.html#M000061">convert_drive_cap_read (Cdio)</a><br />
42
- <a href="classes/Cdio.html#M000062">convert_drive_cap_write (Cdio)</a><br />
43
- <a href="classes/Cdio/Track.html#M000065">copy_permit? (Cdio::Track)</a><br />
44
- <a href="classes/Cdio.html#M000056">cuefile? (Cdio)</a><br />
45
- <a href="classes/ISO9660.html#M000016">dchar? (ISO9660)</a><br />
46
- <a href="classes/Cdio.html#M000049">default_device_driver (Cdio)</a><br />
47
- <a href="classes/Cdio/Device.html#M000084">device (Cdio::Device)</a><br />
48
- <a href="classes/Cdio.html#M000057">device? (Cdio)</a><br />
49
- <a href="classes/Cdio.html#M000050">devices (Cdio)</a><br />
50
- <a href="classes/Cdio.html#M000051">devices_ret (Cdio)</a><br />
51
- <a href="classes/Cdio.html#M000052">devices_with_cap (Cdio)</a><br />
52
- <a href="classes/Cdio.html#M000053">devices_with_cap_ret (Cdio)</a><br />
53
- <a href="classes/ISO9660.html#M000014">dirname_valid? (ISO9660)</a><br />
54
- <a href="classes/Cdio/Device.html#M000085">disc_last_lsn (Cdio::Device)</a><br />
55
- <a href="classes/Cdio/Device.html#M000086">disc_mode (Cdio::Device)</a><br />
56
- <a href="classes/Cdio/Device.html#M000087">drive_cap (Cdio::Device)</a><br />
57
- <a href="classes/Cdio/Device.html#M000088">drive_cap_dev (Cdio::Device)</a><br />
58
- <a href="classes/Cdio.html#M000054">driver? (Cdio)</a><br />
59
- <a href="files/example/device_rb.html#M000002">driver_availability (example/device.rb)</a><br />
60
- <a href="classes/Cdio/Device.html#M000090">driver_id (Cdio::Device)</a><br />
61
- <a href="classes/Cdio/Device.html#M000089">driver_name (Cdio::Device)</a><br />
62
- <a href="classes/Cdio.html#M000046">drivers (Cdio)</a><br />
63
- <a href="classes/Cdio/Device.html#M000081">eject_media (Cdio::Device)</a><br />
64
- <a href="classes/Cdio/Device.html#M000082">eject_media_drive (Cdio::Device)</a><br />
65
- <a href="classes/ISO9660/FS.html#M000040">find_lsn (ISO9660::FS)</a><br />
66
- <a href="classes/ISO9660/IFS.html#M000023">find_lsn (ISO9660::IFS)</a><br />
67
- <a href="classes/Cdio/Device.html#M000091">first_track (Cdio::Device)</a><br />
68
- <a href="classes/Cdio/Track.html#M000066">format (Cdio::Track)</a><br />
69
- <a href="classes/Cdio/Track.html#M000073">green? (Cdio::Track)</a><br />
70
- <a href="files/example/cd-read_rb.html#M000008">help (example/cd-read.rb)</a><br />
71
- <a href="files/example/audio_rb.html#M000004">help (example/audio.rb)</a><br />
72
- <a href="files/example/cd-read_rb.html#M000010">hexdump (example/cd-read.rb)</a><br />
73
- <a href="classes/Cdio/Device.html#M000092">hwinfo (Cdio::Device)</a><br />
74
- <a href="files/example/cd-read_rb.html#M000009">isprint (example/cd-read.rb)</a><br />
75
- <a href="classes/Cdio/Device.html#M000093">joliet_level (Cdio::Device)</a><br />
76
- <a href="classes/Cdio/Track.html#M000067">last_lsn (Cdio::Track)</a><br />
77
- <a href="classes/Cdio/Device.html#M000094">last_session (Cdio::Device)</a><br />
78
- <a href="classes/Cdio/Device.html#M000095">last_track (Cdio::Device)</a><br />
79
- <a href="classes/Cdio/Track.html#M000068">lba (Cdio::Track)</a><br />
80
- <a href="classes/Cdio/Device.html#M000101">lseek (Cdio::Device)</a><br />
81
- <a href="classes/Cdio/Track.html#M000069">lsn (Cdio::Track)</a><br />
82
- <a href="classes/Cdio/Device.html#M000096">mcn (Cdio::Device)</a><br />
83
- <a href="classes/Cdio/Device.html#M000097">media_changed? (Cdio::Device)</a><br />
84
- <a href="classes/Cdio/Track.html#M000070">msf (Cdio::Track)</a><br />
85
- <a href="classes/ISO9660.html#M000019">name_translate (ISO9660)</a><br />
86
- <a href="classes/Cdio/Track.html#M000063">new (Cdio::Track)</a><br />
87
- <a href="classes/ISO9660/IFS.html#M000021">new (ISO9660::IFS)</a><br />
88
- <a href="classes/Cdio/Device.html#M000074">new (Cdio::Device)</a><br />
89
- <a href="classes/Cdio.html#M000058">nrg? (Cdio)</a><br />
90
- <a href="classes/Cdio/Device.html#M000098">num_tracks (Cdio::Device)</a><br />
91
- <a href="classes/Cdio/Device.html#M000102">open (Cdio::Device)</a><br />
92
- <a href="classes/ISO9660/IFS.html#M000032">open (ISO9660::IFS)</a><br />
93
- <a href="classes/ISO9660/IFS.html#M000031">open? (ISO9660::IFS)</a><br />
94
- <a href="classes/ISO9660/IFS.html#M000033">open_fuzzy (ISO9660::IFS)</a><br />
95
- <a href="classes/ISO9660.html#M000018">pathname_isofy (ISO9660)</a><br />
96
- <a href="classes/ISO9660.html#M000017">pathname_valid? (ISO9660)</a><br />
97
- <a href="classes/Cdio.html#M000045">possibly_raise_exception__ (Cdio)</a><br />
98
- <a href="classes/Cdio/Track.html#M000071">preemphasis (Cdio::Track)</a><br />
99
- <a href="classes/ISO9660/IFS.html#M000025">preparer_id (ISO9660::IFS)</a><br />
100
- <a href="files/example/drives_rb.html#M000006">print_drive_class (example/drives.rb)</a><br />
101
- <a href="files/example/drivers_rb.html#M000012">print_drive_class (example/drivers.rb)</a><br />
102
- <a href="classes/ISO9660/IFS.html#M000026">publisher_id (ISO9660::IFS)</a><br />
103
- <a href="classes/Cdio/Device.html#M000103">read (Cdio::Device)</a><br />
104
- <a href="classes/Cdio/Device.html#M000104">read_data_blocks (Cdio::Device)</a><br />
105
- <a href="classes/ISO9660/IFS.html#M000034">read_fuzzy_superblock (ISO9660::IFS)</a><br />
106
- <a href="classes/Cdio.html#M000047">read_mode2blocksize (Cdio)</a><br />
107
- <a href="classes/ISO9660/FS.html#M000042">read_pvd (ISO9660::FS)</a><br />
108
- <a href="classes/ISO9660/IFS.html#M000036">read_pvd (ISO9660::IFS)</a><br />
109
- <a href="classes/Cdio/Device.html#M000105">read_sectors (Cdio::Device)</a><br />
110
- <a href="classes/ISO9660/FS.html#M000043">read_superblock (ISO9660::FS)</a><br />
111
- <a href="classes/ISO9660/IFS.html#M000037">read_superblock (ISO9660::IFS)</a><br />
112
- <a href="classes/ISO9660/IFS.html#M000035">readdir (ISO9660::IFS)</a><br />
113
- <a href="classes/ISO9660/FS.html#M000041">readdir (ISO9660::FS)</a><br />
114
- <a href="classes/ISO9660/IFS.html#M000027">root_lsn (ISO9660::IFS)</a><br />
115
- <a href="classes/Cdio/Track.html#M000072">sec_count (Cdio::Track)</a><br />
116
- <a href="classes/ISO9660/IFS.html#M000038">seek_read (ISO9660::IFS)</a><br />
117
- <a href="files/example/device_rb.html#M000001">sort_dict_keys (example/device.rb)</a><br />
118
- <a href="classes/Cdio/Device.html#M000107">speed= (Cdio::Device)</a><br />
119
- <a href="classes/ISO9660/FS.html#M000044">stat (ISO9660::FS)</a><br />
120
- <a href="classes/ISO9660/IFS.html#M000039">stat (ISO9660::IFS)</a><br />
121
- <a href="classes/ISO9660.html#M000020">strncpy_pad (ISO9660)</a><br />
122
- <a href="classes/ISO9660/IFS.html#M000028">system_id (ISO9660::IFS)</a><br />
123
- <a href="classes/Cdio.html#M000059">tocfile? (Cdio)</a><br />
124
- <a href="classes/Cdio/Device.html#M000099">track (Cdio::Device)</a><br />
125
- <a href="classes/Cdio/Device.html#M000100">track_for_lsn (Cdio::Device)</a><br />
126
- <a href="files/example/cd-read_rb.html#M000007">usage (example/cd-read.rb)</a><br />
127
- <a href="files/example/audio_rb.html#M000003">usage (example/audio.rb)</a><br />
128
- <a href="classes/ISO9660/IFS.html#M000029">volume_id (ISO9660::IFS)</a><br />
129
- <a href="classes/ISO9660/IFS.html#M000030">volumeset_id (ISO9660::IFS)</a><br />
130
- </div>
131
- </div>
132
- </body>
133
- </html>
data/doc/index.html DELETED
@@ -1,24 +0,0 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!DOCTYPE html
3
- PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
5
-
6
- <!--
7
-
8
- rbcdio-debug
9
-
10
- -->
11
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
12
- <head>
13
- <title>rbcdio-debug</title>
14
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
15
- </head>
16
- <frameset rows="20%, 80%">
17
- <frameset cols="25%,35%,45%">
18
- <frame src="fr_file_index.html" title="Files" name="Files" />
19
- <frame src="fr_class_index.html" name="Classes" />
20
- <frame src="fr_method_index.html" name="Methods" />
21
- </frameset>
22
- <frame src="files/README.html" name="docwin" />
23
- </frameset>
24
- </html>