sdl4r 0.9.4 → 0.9.5

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.
Files changed (47) hide show
  1. data/CHANGELOG +28 -0
  2. data/README +9 -0
  3. data/Rakefile +3 -2
  4. data/TODO +78 -0
  5. data/doc/classes/SDL4R.html +207 -53
  6. data/doc/classes/SDL4R/Parser.html +111 -49
  7. data/doc/classes/SDL4R/SdlBinary.html +125 -65
  8. data/doc/classes/SDL4R/SdlParseError.html +52 -30
  9. data/doc/classes/SDL4R/SdlTimeSpan.html +497 -279
  10. data/doc/classes/SDL4R/Tag.html +866 -514
  11. data/doc/created.rid +1 -1
  12. data/doc/files/CHANGELOG.html +52 -25
  13. data/doc/files/LICENSE.html +43 -52
  14. data/doc/files/README.html +52 -43
  15. data/doc/files/lib/sdl4r/parser/reader_rb.html +16 -27
  16. data/doc/files/lib/sdl4r/parser/time_span_with_zone_rb.html +17 -21
  17. data/doc/files/lib/sdl4r/parser/token_rb.html +17 -21
  18. data/doc/files/lib/sdl4r/parser/tokenizer_rb.html +17 -21
  19. data/doc/files/lib/sdl4r/parser_rb.html +21 -22
  20. data/doc/files/lib/sdl4r/sdl4r_rb.html +25 -25
  21. data/doc/files/lib/sdl4r/sdl_binary_rb.html +17 -21
  22. data/doc/files/lib/sdl4r/sdl_parse_error_rb.html +17 -21
  23. data/doc/files/lib/sdl4r/sdl_time_span_rb.html +17 -21
  24. data/doc/files/lib/sdl4r/tag_rb.html +25 -24
  25. data/doc/files/lib/sdl4r_rb.html +17 -21
  26. data/doc/fr_class_index.html +15 -12
  27. data/doc/fr_file_index.html +23 -12
  28. data/doc/fr_method_index.html +176 -91
  29. data/doc/index.html +7 -10
  30. data/doc/rdoc-style.css +210 -119
  31. data/lib/sdl4r.rb +3 -0
  32. data/lib/sdl4r/parser.rb +3 -5
  33. data/lib/sdl4r/parser/reader.rb +3 -3
  34. data/lib/sdl4r/parser/time_span_with_zone.rb +3 -0
  35. data/lib/sdl4r/parser/token.rb +3 -0
  36. data/lib/sdl4r/parser/tokenizer.rb +3 -0
  37. data/lib/sdl4r/sdl4r.rb +20 -8
  38. data/lib/sdl4r/sdl_binary.rb +3 -0
  39. data/lib/sdl4r/sdl_parse_error.rb +3 -0
  40. data/lib/sdl4r/sdl_time_span.rb +3 -0
  41. data/lib/sdl4r/tag.rb +18 -4
  42. data/test/sdl4r/parser_test.rb +7 -2
  43. data/test/sdl4r/sdl4r_test.rb +6 -2
  44. data/test/sdl4r/sdl_test.rb +3 -0
  45. data/test/sdl4r/tag_test.rb +3 -0
  46. metadata +72 -74
  47. data/TODO.txt +0 -177
@@ -1,12 +1,9 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!DOCTYPE html
3
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
-
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
6
3
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
4
  <head>
8
- <title>File: sdl4r.rb</title>
9
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5
+ <title>File: sdl4r.rb [RDoc: Simple Declarative Language for Ruby]</title>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
10
7
  <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
8
  <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
12
9
  <script type="text/javascript">
@@ -25,7 +22,7 @@
25
22
  return false;
26
23
 
27
24
  elemStyle = elem.style;
28
-
25
+
29
26
  if ( elemStyle.display != "block" ) {
30
27
  elemStyle.display = "block"
31
28
  } else {
@@ -34,10 +31,10 @@
34
31
 
35
32
  return true;
36
33
  }
37
-
34
+
38
35
  // Make codeblocks hidden by default
39
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
-
36
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }<\/style>" )
37
+
41
38
  // ]]>
42
39
  </script>
43
40
 
@@ -45,18 +42,18 @@
45
42
  <body>
46
43
 
47
44
 
48
-
49
45
  <div id="fileHeader">
50
46
  <h1>sdl4r.rb</h1>
51
47
  <table class="header-table">
52
48
  <tr class="top-aligned-row">
53
49
  <td><strong>Path:</strong></td>
54
50
  <td>lib/sdl4r/sdl4r.rb
51
+
55
52
  </td>
56
53
  </tr>
57
54
  <tr class="top-aligned-row">
58
55
  <td><strong>Last Update:</strong></td>
59
- <td>Thu Aug 05 23:38:52 +0900 2010</td>
56
+ <td>2010-08-07 00:35:38 +0900</td>
60
57
  </tr>
61
58
  </table>
62
59
  </div>
@@ -64,19 +61,26 @@
64
61
 
65
62
  <div id="bodyContent">
66
63
 
67
-
68
-
69
64
  <div id="contextContent">
70
65
 
66
+ <div id="description">
67
+ <p>
68
+ encoding: UTF-8
69
+ </p>
70
+
71
+ </div>
71
72
 
72
73
  <div id="requires-list">
73
74
  <h3 class="section-bar">Required files</h3>
74
75
 
75
76
  <div class="name-list">
76
- jcode&nbsp;&nbsp;
77
- base64&nbsp;&nbsp;
78
- bigdecimal&nbsp;&nbsp;
79
- date&nbsp;&nbsp;
77
+
78
+ base64&nbsp;&nbsp;
79
+
80
+ bigdecimal&nbsp;&nbsp;
81
+
82
+ date&nbsp;&nbsp;
83
+
80
84
  </div>
81
85
  </div>
82
86
 
@@ -85,7 +89,6 @@
85
89
 
86
90
  </div>
87
91
 
88
-
89
92
  <!-- if includes -->
90
93
 
91
94
  <div id="section">
@@ -93,19 +96,16 @@
93
96
 
94
97
 
95
98
 
96
-
97
-
99
+ <!-- if method_list -->
98
100
 
99
101
 
100
- <!-- if method_list -->
101
102
 
102
103
 
103
104
  </div>
104
105
 
105
-
106
106
  <div id="validator-badges">
107
107
  <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
108
108
  </div>
109
109
 
110
110
  </body>
111
- </html>
111
+ </html>
@@ -1,12 +1,9 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!DOCTYPE html
3
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
-
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
6
3
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
4
  <head>
8
- <title>File: sdl_binary.rb</title>
9
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5
+ <title>File: sdl_binary.rb [RDoc: Simple Declarative Language for Ruby]</title>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
10
7
  <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
8
  <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
12
9
  <script type="text/javascript">
@@ -25,7 +22,7 @@
25
22
  return false;
26
23
 
27
24
  elemStyle = elem.style;
28
-
25
+
29
26
  if ( elemStyle.display != "block" ) {
30
27
  elemStyle.display = "block"
31
28
  } else {
@@ -34,10 +31,10 @@
34
31
 
35
32
  return true;
36
33
  }
37
-
34
+
38
35
  // Make codeblocks hidden by default
39
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
-
36
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }<\/style>" )
37
+
41
38
  // ]]>
42
39
  </script>
43
40
 
@@ -45,18 +42,18 @@
45
42
  <body>
46
43
 
47
44
 
48
-
49
45
  <div id="fileHeader">
50
46
  <h1>sdl_binary.rb</h1>
51
47
  <table class="header-table">
52
48
  <tr class="top-aligned-row">
53
49
  <td><strong>Path:</strong></td>
54
50
  <td>lib/sdl4r/sdl_binary.rb
51
+
55
52
  </td>
56
53
  </tr>
57
54
  <tr class="top-aligned-row">
58
55
  <td><strong>Last Update:</strong></td>
59
- <td>Sat Jul 31 17:22:32 +0900 2010</td>
56
+ <td>2010-08-06 23:12:38 +0900</td>
60
57
  </tr>
61
58
  </table>
62
59
  </div>
@@ -64,18 +61,20 @@
64
61
 
65
62
  <div id="bodyContent">
66
63
 
67
-
68
-
69
64
  <div id="contextContent">
70
65
 
66
+ <div id="description">
67
+ <p>
68
+ encoding: UTF-8
69
+ </p>
71
70
 
71
+ </div>
72
72
 
73
73
  </div>
74
74
 
75
75
 
76
76
  </div>
77
77
 
78
-
79
78
  <!-- if includes -->
80
79
 
81
80
  <div id="section">
@@ -83,19 +82,16 @@
83
82
 
84
83
 
85
84
 
86
-
87
-
85
+ <!-- if method_list -->
88
86
 
89
87
 
90
- <!-- if method_list -->
91
88
 
92
89
 
93
90
  </div>
94
91
 
95
-
96
92
  <div id="validator-badges">
97
93
  <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
98
94
  </div>
99
95
 
100
96
  </body>
101
- </html>
97
+ </html>
@@ -1,12 +1,9 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!DOCTYPE html
3
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
-
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
6
3
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
4
  <head>
8
- <title>File: sdl_parse_error.rb</title>
9
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5
+ <title>File: sdl_parse_error.rb [RDoc: Simple Declarative Language for Ruby]</title>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
10
7
  <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
8
  <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
12
9
  <script type="text/javascript">
@@ -25,7 +22,7 @@
25
22
  return false;
26
23
 
27
24
  elemStyle = elem.style;
28
-
25
+
29
26
  if ( elemStyle.display != "block" ) {
30
27
  elemStyle.display = "block"
31
28
  } else {
@@ -34,10 +31,10 @@
34
31
 
35
32
  return true;
36
33
  }
37
-
34
+
38
35
  // Make codeblocks hidden by default
39
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
-
36
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }<\/style>" )
37
+
41
38
  // ]]>
42
39
  </script>
43
40
 
@@ -45,18 +42,18 @@
45
42
  <body>
46
43
 
47
44
 
48
-
49
45
  <div id="fileHeader">
50
46
  <h1>sdl_parse_error.rb</h1>
51
47
  <table class="header-table">
52
48
  <tr class="top-aligned-row">
53
49
  <td><strong>Path:</strong></td>
54
50
  <td>lib/sdl4r/sdl_parse_error.rb
51
+
55
52
  </td>
56
53
  </tr>
57
54
  <tr class="top-aligned-row">
58
55
  <td><strong>Last Update:</strong></td>
59
- <td>Sat Jul 31 15:37:54 +0900 2010</td>
56
+ <td>2010-08-06 23:12:40 +0900</td>
60
57
  </tr>
61
58
  </table>
62
59
  </div>
@@ -64,18 +61,20 @@
64
61
 
65
62
  <div id="bodyContent">
66
63
 
67
-
68
-
69
64
  <div id="contextContent">
70
65
 
66
+ <div id="description">
67
+ <p>
68
+ encoding: UTF-8
69
+ </p>
71
70
 
71
+ </div>
72
72
 
73
73
  </div>
74
74
 
75
75
 
76
76
  </div>
77
77
 
78
-
79
78
  <!-- if includes -->
80
79
 
81
80
  <div id="section">
@@ -83,19 +82,16 @@
83
82
 
84
83
 
85
84
 
86
-
87
-
85
+ <!-- if method_list -->
88
86
 
89
87
 
90
- <!-- if method_list -->
91
88
 
92
89
 
93
90
  </div>
94
91
 
95
-
96
92
  <div id="validator-badges">
97
93
  <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
98
94
  </div>
99
95
 
100
96
  </body>
101
- </html>
97
+ </html>
@@ -1,12 +1,9 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!DOCTYPE html
3
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
-
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
6
3
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
4
  <head>
8
- <title>File: sdl_time_span.rb</title>
9
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5
+ <title>File: sdl_time_span.rb [RDoc: Simple Declarative Language for Ruby]</title>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
10
7
  <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
8
  <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
12
9
  <script type="text/javascript">
@@ -25,7 +22,7 @@
25
22
  return false;
26
23
 
27
24
  elemStyle = elem.style;
28
-
25
+
29
26
  if ( elemStyle.display != "block" ) {
30
27
  elemStyle.display = "block"
31
28
  } else {
@@ -34,10 +31,10 @@
34
31
 
35
32
  return true;
36
33
  }
37
-
34
+
38
35
  // Make codeblocks hidden by default
39
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
-
36
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }<\/style>" )
37
+
41
38
  // ]]>
42
39
  </script>
43
40
 
@@ -45,18 +42,18 @@
45
42
  <body>
46
43
 
47
44
 
48
-
49
45
  <div id="fileHeader">
50
46
  <h1>sdl_time_span.rb</h1>
51
47
  <table class="header-table">
52
48
  <tr class="top-aligned-row">
53
49
  <td><strong>Path:</strong></td>
54
50
  <td>lib/sdl4r/sdl_time_span.rb
51
+
55
52
  </td>
56
53
  </tr>
57
54
  <tr class="top-aligned-row">
58
55
  <td><strong>Last Update:</strong></td>
59
- <td>Fri Aug 06 00:17:42 +0900 2010</td>
56
+ <td>2010-08-06 23:12:42 +0900</td>
60
57
  </tr>
61
58
  </table>
62
59
  </div>
@@ -64,18 +61,20 @@
64
61
 
65
62
  <div id="bodyContent">
66
63
 
67
-
68
-
69
64
  <div id="contextContent">
70
65
 
66
+ <div id="description">
67
+ <p>
68
+ encoding: UTF-8
69
+ </p>
71
70
 
71
+ </div>
72
72
 
73
73
  </div>
74
74
 
75
75
 
76
76
  </div>
77
77
 
78
-
79
78
  <!-- if includes -->
80
79
 
81
80
  <div id="section">
@@ -83,19 +82,16 @@
83
82
 
84
83
 
85
84
 
86
-
87
-
85
+ <!-- if method_list -->
88
86
 
89
87
 
90
- <!-- if method_list -->
91
88
 
92
89
 
93
90
  </div>
94
91
 
95
-
96
92
  <div id="validator-badges">
97
93
  <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
98
94
  </div>
99
95
 
100
96
  </body>
101
- </html>
97
+ </html>
@@ -1,12 +1,9 @@
1
- <?xml version="1.0" encoding="iso-8859-1"?>
2
- <!DOCTYPE html
3
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
-
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
6
3
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
4
  <head>
8
- <title>File: tag.rb</title>
9
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
5
+ <title>File: tag.rb [RDoc: Simple Declarative Language for Ruby]</title>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
10
7
  <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
8
  <link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
12
9
  <script type="text/javascript">
@@ -25,7 +22,7 @@
25
22
  return false;
26
23
 
27
24
  elemStyle = elem.style;
28
-
25
+
29
26
  if ( elemStyle.display != "block" ) {
30
27
  elemStyle.display = "block"
31
28
  } else {
@@ -34,10 +31,10 @@
34
31
 
35
32
  return true;
36
33
  }
37
-
34
+
38
35
  // Make codeblocks hidden by default
39
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
-
36
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }<\/style>" )
37
+
41
38
  // ]]>
42
39
  </script>
43
40
 
@@ -45,18 +42,18 @@
45
42
  <body>
46
43
 
47
44
 
48
-
49
45
  <div id="fileHeader">
50
46
  <h1>tag.rb</h1>
51
47
  <table class="header-table">
52
48
  <tr class="top-aligned-row">
53
49
  <td><strong>Path:</strong></td>
54
50
  <td>lib/sdl4r/tag.rb
51
+
55
52
  </td>
56
53
  </tr>
57
54
  <tr class="top-aligned-row">
58
55
  <td><strong>Last Update:</strong></td>
59
- <td>Thu Aug 05 23:39:32 +0900 2010</td>
56
+ <td>2010-08-06 23:37:04 +0900</td>
60
57
  </tr>
61
58
  </table>
62
59
  </div>
@@ -64,18 +61,26 @@
64
61
 
65
62
  <div id="bodyContent">
66
63
 
67
-
68
-
69
64
  <div id="contextContent">
70
65
 
66
+ <div id="description">
67
+ <p>
68
+ encoding: UTF-8
69
+ </p>
70
+
71
+ </div>
71
72
 
72
73
  <div id="requires-list">
73
74
  <h3 class="section-bar">Required files</h3>
74
75
 
75
76
  <div class="name-list">
76
- pathname&nbsp;&nbsp;
77
- open-uri&nbsp;&nbsp;
78
- stringio&nbsp;&nbsp;
77
+
78
+ pathname&nbsp;&nbsp;
79
+
80
+ open-uri&nbsp;&nbsp;
81
+
82
+ stringio&nbsp;&nbsp;
83
+
79
84
  </div>
80
85
  </div>
81
86
 
@@ -84,7 +89,6 @@
84
89
 
85
90
  </div>
86
91
 
87
-
88
92
  <!-- if includes -->
89
93
 
90
94
  <div id="section">
@@ -92,19 +96,16 @@
92
96
 
93
97
 
94
98
 
95
-
96
-
99
+ <!-- if method_list -->
97
100
 
98
101
 
99
- <!-- if method_list -->
100
102
 
101
103
 
102
104
  </div>
103
105
 
104
-
105
106
  <div id="validator-badges">
106
107
  <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
107
108
  </div>
108
109
 
109
110
  </body>
110
- </html>
111
+ </html>