rbcdio 0.01

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. data/AUTHORS +1 -0
  2. data/COPYING +340 -0
  3. data/ChangeLog +315 -0
  4. data/INSTALL +236 -0
  5. data/Makefile.am +163 -0
  6. data/Makefile.in +557 -0
  7. data/NEWS +5 -0
  8. data/README +75 -0
  9. data/Rakefile +234 -0
  10. data/THANKS +3 -0
  11. data/VERSION +1 -0
  12. data/VERSION.in +1 -0
  13. data/config.guess +1473 -0
  14. data/config.sub +1576 -0
  15. data/configure +4802 -0
  16. data/configure.ac +158 -0
  17. data/data/copying.iso +0 -0
  18. data/data/isofs-m1.bin +0 -0
  19. data/data/isofs-m1.cue +3 -0
  20. data/doc/created.rid +1 -0
  21. data/doc/fr_class_index.html +42 -0
  22. data/doc/fr_file_index.html +40 -0
  23. data/doc/fr_method_index.html +133 -0
  24. data/doc/index.html +24 -0
  25. data/doc/rdoc-style.css +208 -0
  26. data/example/COPYING +340 -0
  27. data/example/README +47 -0
  28. data/example/audio.rb +186 -0
  29. data/example/cd-read.rb +167 -0
  30. data/example/copying +340 -0
  31. data/example/device.rb +91 -0
  32. data/example/drivers.rb +63 -0
  33. data/example/drives.rb +63 -0
  34. data/example/eject.rb +69 -0
  35. data/example/iso1.rb +89 -0
  36. data/example/iso2.rb +106 -0
  37. data/example/iso3.rb +111 -0
  38. data/example/tracks.rb +83 -0
  39. data/ext/cdio/Makefile +139 -0
  40. data/ext/cdio/extconf.rb +9 -0
  41. data/ext/cdio/rubycdio_wrap.c +3410 -0
  42. data/ext/iso9660/Makefile +139 -0
  43. data/ext/iso9660/extconf.rb +10 -0
  44. data/ext/iso9660/rubyiso9660_wrap.c +3005 -0
  45. data/install-sh +323 -0
  46. data/lib/Makefile +7 -0
  47. data/lib/cdio.rb +1000 -0
  48. data/lib/iso9660.rb +566 -0
  49. data/missing +360 -0
  50. data/rubycdio.m4 +14 -0
  51. data/swig/Makefile +7 -0
  52. data/swig/audio.swg +63 -0
  53. data/swig/compat.swg +104 -0
  54. data/swig/device.swg +513 -0
  55. data/swig/device_const.swg +144 -0
  56. data/swig/disc.swg +96 -0
  57. data/swig/read.swg +164 -0
  58. data/swig/rubycdio.swg +86 -0
  59. data/swig/rubyiso9660.swg +827 -0
  60. data/swig/track.swg +206 -0
  61. data/swig/types.swg +65 -0
  62. data/test/Makefile +7 -0
  63. data/test/Rakefile +8 -0
  64. data/test/cdda.bin +0 -0
  65. data/test/cdda.cue +7 -0
  66. data/test/cdda.toc +14 -0
  67. data/test/cdiotest.rb +228 -0
  68. data/test/isocopy.rb +394 -0
  69. data/test/isotest.rb +187 -0
  70. metadata +116 -0
data/configure.ac ADDED
@@ -0,0 +1,158 @@
1
+ # Copyright (C) 2006 Rocky Bernstein <rocky@panix.com>
2
+
3
+ # This program is free software; you can redistribute it and/or modify
4
+ # it under the terms of the GNU General Public License as published by
5
+ # the Free Software Foundation; either version 2, or (at your option)
6
+ # any later version.
7
+
8
+ # This program is distributed in the hope that it will be useful,
9
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
+ # GNU General Public License for more details.
12
+
13
+ # You should have received a copy of the GNU General Public License
14
+ # along with this program; if not, write to the Free Software
15
+ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
16
+ # 02111-1307, USA.
17
+
18
+ ## Note: the version number (the 2nd parameter in AC_INIT)
19
+ ## is picked up inside the Python debugger script.
20
+
21
+ AC_INIT([rubycdio],[0.01],[libcdio-rubycdio-devel@gnu.org])
22
+
23
+ ##
24
+ ## Check for Python interpreter and make we have a recent version.
25
+ ##
26
+ AC_REVISION([$Id: configure.ac,v 1.4 2006/12/08 12:21:53 rocky Exp $])dnl
27
+
28
+ ##
29
+ ## In maintainer mode we produce a ChangeLog
30
+ ##
31
+ AM_MAINTAINER_MODE
32
+
33
+ ##
34
+ ## make sure we are using a recent autoconf version
35
+ ##
36
+ AC_PREREQ(2.53)
37
+
38
+ AC_ARG_PROGRAM
39
+ AC_PROG_CC
40
+ AM_INIT_AUTOMAKE
41
+
42
+ #
43
+ # There are a number of compiler warnings that gcc produces via SWIG code.
44
+ # Turn off warnings that are to be expected.
45
+ wall=''
46
+ AC_TRY_CFLAGS("-Wno-strict-aliasing", cflgs="-Wno-strict-aliasing",)
47
+ AC_TRY_CFLAGS("-Wno-unused-function", cflgs="$cflgs -Wno-unused-function",)
48
+ CFLAGS="$CFLAGS $cflgs"
49
+
50
+ ##
51
+ ## cvs2cl is used to create the ChangeLog when we create a distribution
52
+ ##
53
+ AM_MISSING_PROG(CVS2CL, cvs2cl, $missing_dir)
54
+
55
+ ##
56
+ ## SWIG is essential - test for it.
57
+ ##
58
+ AC_PATH_PROG(SWIG, swig, no)
59
+ if test "$SWIG" = no ; then
60
+ AC_MSG_WARN([Can't find SWIG installed; using C wrapper from distributor.])
61
+ AC_MSG_WARN([Check http://www.swig.org if you want to install SWIG])
62
+ fi
63
+
64
+ PKG_CHECK_MODULES(libcdio, libcdio >= 0.76, [],
65
+ [AC_MSG_WARN([Required libcdio library, version 0.76 or greater, not found.])
66
+ AC_MSG_ERROR([Please get libcdio from http://www.gnu.org/software/libcdio/ and install it.])])
67
+
68
+ PKG_CHECK_MODULES(libiso9660, libiso9660 >= 0.76, [],
69
+ [AC_MSG_WARN([Required libiso9660 library, version 0.76 greater not found.])
70
+ AC_MSG_ERROR([Please get libcdio from http://www.gnu.org/software/libcdio/ and install it.])])
71
+
72
+
73
+ ##
74
+ ## A symbolic links is used to link a name in users PATH to the python
75
+ ## script.
76
+ ##
77
+ AC_PROG_LN_S
78
+
79
+ ##
80
+ ## Automake doesn't get Python's install path correct. So we
81
+ ## figure it out and set it ourself.
82
+ ##
83
+ AC_ARG_WITH(site-packages,
84
+ AC_HELP_STRING([--with-site-packages],
85
+ [place to install module]),
86
+ PY_PKGDIR)
87
+
88
+ AC_ARG_WITH(ruby,
89
+ AC_HELP_STRING([--with-ruby],
90
+ [set path to Ruby]),
91
+ RUBY=$withval,[RUBY=`ruby -e 'require "mkmf"; puts $ruby'`])
92
+
93
+ AC_SUBST(RUBY)dnl
94
+
95
+ RUBY_INC=`$RUBY -e 'puts "-I " + $:.join(" -I ")'`
96
+ AC_SUBST(RUBY_INC)dnl
97
+
98
+ AC_CANONICAL_HOST
99
+ case $host_os in
100
+ cygwin* | mingw* | pw32*)
101
+ SO='.dll'
102
+ CFLAGS="$CFLAGS -DUSE_DL_IMPORT"
103
+ # Should we check the 32-ness?
104
+ SWIG_FLAGS=-DNEED_LONG
105
+ if test "$GCC" = yes; then
106
+ LDSHARED="$CC -shared -Wl,--enable-auto-image-base"
107
+ else
108
+ if test "cl" = $CC ; then
109
+ # Microsoft Visual C++ (MSVC)
110
+ LDSHARED="$CC -nologo -LD"
111
+ else
112
+ # Unknown compiler try gcc approach
113
+ LDSHARED="$CC -shared"
114
+ fi
115
+ fi
116
+ ;;
117
+ linux*)
118
+ SO=.so
119
+ LDSHARED="gcc -shared"
120
+ ;;
121
+ darwin6*|darwin7*|darwin8*)
122
+ SO=.so
123
+ LDSHARED="cc -bundle -undefined suppress -flat_namespace"
124
+ ;;
125
+ solaris*)
126
+ SO=.so
127
+ LDSHARED="gcc -shared"
128
+ AC_TRY_CFLAGS("-fPIC", cflgs="$cflgs -fPIC",)
129
+ CFLAGS="$CFLAGS $cflgs"
130
+ ;;
131
+ *)
132
+ AC_TRY_CFLAGS("-fPIC", cflgs="$cflgs -fPIC",)
133
+ CFLAGS="$CFLAGS $cflgs"
134
+ SO='.so'
135
+ PYTHON_LIBS=
136
+ esac
137
+ AC_SUBST(SO)
138
+ AC_SUBST(RUBY_LIBS)
139
+ AC_SUBST(LDSHARED)
140
+ AC_SUBST(SWIG_FLAGS)
141
+
142
+ ##
143
+ ## Test program needs location of pycdio shared library
144
+ ## This is a hack, but I at present I'm not sure what the best thing to
145
+ ## do is.
146
+ RUBYCDIO_LIBDIR=`pwd`
147
+ AC_SUBST(RUBYCDIO_LIBDIR)dnl
148
+
149
+ ##
150
+ ## Produced derived files.
151
+ ##
152
+ AC_CONFIG_FILES([Makefile])
153
+ AC_CONFIG_FILES([VERSION])
154
+
155
+ AC_OUTPUT
156
+ chmod +x test/*.rb
157
+ chmod +x example/*.rb
158
+
data/data/copying.iso ADDED
Binary file
data/data/isofs-m1.bin ADDED
Binary file
data/data/isofs-m1.cue ADDED
@@ -0,0 +1,3 @@
1
+ FILE "ISOFS-M1.BIN" BINARY
2
+ TRACK 01 MODE1/2352
3
+ INDEX 01 00:00:00
data/doc/created.rid ADDED
@@ -0,0 +1 @@
1
+ Thu Dec 21 18:45:11 EST 2006
@@ -0,0 +1,42 @@
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>
@@ -0,0 +1,40 @@
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/device_rb.html">example/device.rb</a><br />
28
+ <a href="files/example/drivers_rb.html">example/drivers.rb</a><br />
29
+ <a href="files/example/drives_rb.html">example/drives.rb</a><br />
30
+ <a href="files/example/eject_rb.html">example/eject.rb</a><br />
31
+ <a href="files/example/iso1_rb.html">example/iso1.rb</a><br />
32
+ <a href="files/example/iso2_rb.html">example/iso2.rb</a><br />
33
+ <a href="files/example/iso3_rb.html">example/iso3.rb</a><br />
34
+ <a href="files/example/tracks_rb.html">example/tracks.rb</a><br />
35
+ <a href="files/lib/cdio_rb.html">lib/cdio.rb</a><br />
36
+ <a href="files/lib/iso9660_rb.html">lib/iso9660.rb</a><br />
37
+ </div>
38
+ </div>
39
+ </body>
40
+ </html>
@@ -0,0 +1,133 @@
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 ADDED
@@ -0,0 +1,24 @@
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>
@@ -0,0 +1,208 @@
1
+
2
+ body {
3
+ font-family: Verdana,Arial,Helvetica,sans-serif;
4
+ font-size: 90%;
5
+ margin: 0;
6
+ margin-left: 40px;
7
+ padding: 0;
8
+ background: white;
9
+ }
10
+
11
+ h1,h2,h3,h4 { margin: 0; color: #efefef; background: transparent; }
12
+ h1 { font-size: 150%; }
13
+ h2,h3,h4 { margin-top: 1em; }
14
+
15
+ a { background: #eef; color: #039; text-decoration: none; }
16
+ a:hover { background: #039; color: #eef; }
17
+
18
+ /* Override the base stylesheet's Anchor inside a table cell */
19
+ td > a {
20
+ background: transparent;
21
+ color: #039;
22
+ text-decoration: none;
23
+ }
24
+
25
+ /* and inside a section title */
26
+ .section-title > a {
27
+ background: transparent;
28
+ color: #eee;
29
+ text-decoration: none;
30
+ }
31
+
32
+ /* === Structural elements =================================== */
33
+
34
+ div#index {
35
+ margin: 0;
36
+ margin-left: -40px;
37
+ padding: 0;
38
+ font-size: 90%;
39
+ }
40
+
41
+
42
+ div#index a {
43
+ margin-left: 0.7em;
44
+ }
45
+
46
+ div#index .section-bar {
47
+ margin-left: 0px;
48
+ padding-left: 0.7em;
49
+ background: #ccc;
50
+ font-size: small;
51
+ }
52
+
53
+
54
+ div#classHeader, div#fileHeader {
55
+ width: auto;
56
+ color: white;
57
+ padding: 0.5em 1.5em 0.5em 1.5em;
58
+ margin: 0;
59
+ margin-left: -40px;
60
+ border-bottom: 3px solid #006;
61
+ }
62
+
63
+ div#classHeader a, div#fileHeader a {
64
+ background: inherit;
65
+ color: white;
66
+ }
67
+
68
+ div#classHeader td, div#fileHeader td {
69
+ background: inherit;
70
+ color: white;
71
+ }
72
+
73
+
74
+ div#fileHeader {
75
+ background: #057;
76
+ }
77
+
78
+ div#classHeader {
79
+ background: #048;
80
+ }
81
+
82
+
83
+ .class-name-in-header {
84
+ font-size: 180%;
85
+ font-weight: bold;
86
+ }
87
+
88
+
89
+ div#bodyContent {
90
+ padding: 0 1.5em 0 1.5em;
91
+ }
92
+
93
+ div#description {
94
+ padding: 0.5em 1.5em;
95
+ background: #efefef;
96
+ border: 1px dotted #999;
97
+ }
98
+
99
+ div#description h1,h2,h3,h4,h5,h6 {
100
+ color: #125;;
101
+ background: transparent;
102
+ }
103
+
104
+ div#validator-badges {
105
+ text-align: center;
106
+ }
107
+ div#validator-badges img { border: 0; }
108
+
109
+ div#copyright {
110
+ color: #333;
111
+ background: #efefef;
112
+ font: 0.75em sans-serif;
113
+ margin-top: 5em;
114
+ margin-bottom: 0;
115
+ padding: 0.5em 2em;
116
+ }
117
+
118
+
119
+ /* === Classes =================================== */
120
+
121
+ table.header-table {
122
+ color: white;
123
+ font-size: small;
124
+ }
125
+
126
+ .type-note {
127
+ font-size: small;
128
+ color: #DEDEDE;
129
+ }
130
+
131
+ .xxsection-bar {
132
+ background: #eee;
133
+ color: #333;
134
+ padding: 3px;
135
+ }
136
+
137
+ .section-bar {
138
+ color: #333;
139
+ border-bottom: 1px solid #999;
140
+ margin-left: -20px;
141
+ }
142
+
143
+
144
+ .section-title {
145
+ background: #79a;
146
+ color: #eee;
147
+ padding: 3px;
148
+ margin-top: 2em;
149
+ margin-left: -30px;
150
+ border: 1px solid #999;
151
+ }
152
+
153
+ .top-aligned-row { vertical-align: top }
154
+ .bottom-aligned-row { vertical-align: bottom }
155
+
156
+ /* --- Context section classes ----------------------- */
157
+
158
+ .context-row { }
159
+ .context-item-name { font-family: monospace; font-weight: bold; color: black; }
160
+ .context-item-value { font-size: small; color: #448; }
161
+ .context-item-desc { color: #333; padding-left: 2em; }
162
+
163
+ /* --- Method classes -------------------------- */
164
+ .method-detail {
165
+ background: #efefef;
166
+ padding: 0;
167
+ margin-top: 0.5em;
168
+ margin-bottom: 1em;
169
+ border: 1px dotted #ccc;
170
+ }
171
+ .method-heading {
172
+ color: black;
173
+ background: #ccc;
174
+ border-bottom: 1px solid #666;
175
+ padding: 0.2em 0.5em 0 0.5em;
176
+ }
177
+ .method-signature { color: black; background: inherit; }
178
+ .method-name { font-weight: bold; }
179
+ .method-args { font-style: italic; }
180
+ .method-description { padding: 0 0.5em 0 0.5em; }
181
+
182
+ /* --- Source code sections -------------------- */
183
+
184
+ a.source-toggle { font-size: 90%; }
185
+ div.method-source-code {
186
+ background: #262626;
187
+ color: #ffdead;
188
+ margin: 1em;
189
+ padding: 0.5em;
190
+ border: 1px dashed #999;
191
+ overflow: hidden;
192
+ }
193
+
194
+ div.method-source-code pre { color: #ffdead; overflow: hidden; }
195
+
196
+ /* --- Ruby keyword styles --------------------- */
197
+
198
+ .standalone-code { background: #221111; color: #ffdead; overflow: hidden; }
199
+
200
+ .ruby-constant { color: #7fffd4; background: transparent; }
201
+ .ruby-keyword { color: #00ffff; background: transparent; }
202
+ .ruby-ivar { color: #eedd82; background: transparent; }
203
+ .ruby-operator { color: #00ffee; background: transparent; }
204
+ .ruby-identifier { color: #ffdead; background: transparent; }
205
+ .ruby-node { color: #ffa07a; background: transparent; }
206
+ .ruby-comment { color: #b22222; font-weight: bold; background: transparent; }
207
+ .ruby-regexp { color: #ffa07a; background: transparent; }
208
+ .ruby-value { color: #7fffd4; background: transparent; }