Project

General

Profile

« Previous | Next » 

Revision 3132

Added by perry over 17 years ago

Initial import of Chad Burt's ruby metacat client

View differences:

src/ruby/doc/classes/Eml.src/M000049.html
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

  
6
<html>
7
<head>
8
  <title>title (Eml)</title>
9
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
  <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
</head>
12
<body class="standalone-code">
13
  <pre><span class="ruby-comment cmt"># File lib/eml.rb, line 141</span>
14
  <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">title</span>
15
    <span class="ruby-ivar">@doc</span>.<span class="ruby-identifier">root</span>.<span class="ruby-identifier">elements</span>[<span class="ruby-value str">&quot;dataset/title&quot;</span>].<span class="ruby-identifier">text</span>
16
  <span class="ruby-keyword kw">end</span></pre>
17
</body>
18
</html>
0 19

  
src/ruby/doc/classes/EmlTest.src/M000002.html
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

  
6
<html>
7
<head>
8
  <title>teardown (EmlTest)</title>
9
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
  <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
</head>
12
<body class="standalone-code">
13
  <pre><span class="ruby-comment cmt"># File test/eml_test.rb, line 13</span>
14
  <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">teardown</span>
15
  <span class="ruby-keyword kw">end</span></pre>
16
</body>
17
</html>
0 18

  
src/ruby/doc/classes/EmlTest.src/M000005.html
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

  
6
<html>
7
<head>
8
  <title>test_largest_of_one_data_table (EmlTest)</title>
9
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
  <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
</head>
12
<body class="standalone-code">
13
  <pre><span class="ruby-comment cmt"># File test/eml_test.rb, line 26</span>
14
  <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">test_largest_of_one_data_table</span>
15
    <span class="ruby-identifier">assert_kind_of</span>  <span class="ruby-constant">DataTable</span>, <span class="ruby-ivar">@eml</span>.<span class="ruby-identifier">largest_data_table</span>
16
  <span class="ruby-keyword kw">end</span></pre>
17
</body>
18
</html>
0 19

  
src/ruby/doc/classes/EmlTest.src/M000008.html
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

  
6
<html>
7
<head>
8
  <title>test_has_xml_doc (EmlTest)</title>
9
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
  <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
</head>
12
<body class="standalone-code">
13
  <pre><span class="ruby-comment cmt"># File test/eml_test.rb, line 40</span>
14
  <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">test_has_xml_doc</span>
15
    <span class="ruby-identifier">assert_kind_of</span>  <span class="ruby-constant">REXML</span><span class="ruby-operator">::</span><span class="ruby-constant">Document</span>, <span class="ruby-ivar">@eml</span>.<span class="ruby-identifier">doc</span>
16
  <span class="ruby-keyword kw">end</span></pre>
17
</body>
18
</html>
0 19

  
src/ruby/doc/classes/Net.html
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

  
6
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
<head>
8
  <title>Module: Net</title>
9
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
  <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
  <link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
12
  <script type="text/javascript">
13
  // <![CDATA[
14

  
15
  function popupCode( url ) {
16
    window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
  }
18

  
19
  function toggleCode( id ) {
20
    if ( document.getElementById )
21
      elem = document.getElementById( id );
22
    else if ( document.all )
23
      elem = eval( "document.all." + id );
24
    else
25
      return false;
26

  
27
    elemStyle = elem.style;
28
    
29
    if ( elemStyle.display != "block" ) {
30
      elemStyle.display = "block"
31
    } else {
32
      elemStyle.display = "none"
33
    }
34

  
35
    return true;
36
  }
37
  
38
  // Make codeblocks hidden by default
39
  document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
  
41
  // ]]>
42
  </script>
43

  
44
</head>
45
<body>
46

  
47

  
48

  
49
    <div id="classHeader">
50
        <table class="header-table">
51
        <tr class="top-aligned-row">
52
          <td><strong>Module</strong></td>
53
          <td class="class-name-in-header">Net</td>
54
        </tr>
55
        <tr class="top-aligned-row">
56
            <td><strong>In:</strong></td>
57
            <td>
58
            </td>
59
        </tr>
60

  
61
        </table>
62
    </div>
63
  <!-- banner header -->
64

  
65
  <div id="bodyContent">
66

  
67

  
68

  
69
  <div id="contextContent">
70

  
71

  
72

  
73
   </div>
74

  
75

  
76
  </div>
77

  
78

  
79
    <!-- if includes -->
80

  
81
    <div id="section">
82

  
83
    <div id="class-list">
84
      <h3 class="section-bar">Classes and Modules</h3>
85

  
86
      Class <a href="Net/BufferedIO.html" class="link">Net::BufferedIO</a><br />
87

  
88
    </div>
89

  
90

  
91

  
92

  
93
      
94

  
95

  
96
    <!-- if method_list -->
97

  
98

  
99
  </div>
100

  
101

  
102
<div id="validator-badges">
103
  <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
104
</div>
105

  
106
</body>
107
</html>
0 108

  
src/ruby/doc/classes/Eml.src/M000042.html
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

  
6
<html>
7
<head>
8
  <title>new (Eml)</title>
9
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
  <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
</head>
12
<body class="standalone-code">
13
  <pre><span class="ruby-comment cmt"># File lib/eml.rb, line 67</span>
14
  <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">metadata</span>)
15
    <span class="ruby-keyword kw">if</span>(<span class="ruby-identifier">metadata</span>.<span class="ruby-identifier">class</span> <span class="ruby-operator">!=</span> <span class="ruby-constant">REXML</span><span class="ruby-operator">::</span><span class="ruby-constant">Document</span> <span class="ruby-operator">||</span> <span class="ruby-identifier">metadata</span>.<span class="ruby-identifier">root</span>.<span class="ruby-identifier">name</span> <span class="ruby-operator">!=</span> <span class="ruby-value str">'eml'</span>)
16
      <span class="ruby-identifier">raise</span> <span class="ruby-constant">ArgumentError</span>, <span class="ruby-value str">'Must initialize with REXML::Document representation of EML metadata'</span>
17
    <span class="ruby-keyword kw">else</span>
18
      <span class="ruby-ivar">@doc</span> = <span class="ruby-identifier">metadata</span>
19
      <span class="ruby-ivar">@docid</span> = <span class="ruby-ivar">@doc</span>.<span class="ruby-identifier">root</span>.<span class="ruby-identifier">attributes</span>[<span class="ruby-value str">'packageId'</span>]
20
    <span class="ruby-keyword kw">end</span>
21
  <span class="ruby-keyword kw">end</span></pre>
22
</body>
23
</html>
0 24

  
src/ruby/doc/classes/Eml.src/M000044.html
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

  
6
<html>
7
<head>
8
  <title>data_tables (Eml)</title>
9
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
  <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
</head>
12
<body class="standalone-code">
13
  <pre><span class="ruby-comment cmt"># File lib/eml.rb, line 80</span>
14
  <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">data_tables</span>
15
    <span class="ruby-identifier">tables</span> = []
16
    <span class="ruby-ivar">@doc</span>.<span class="ruby-identifier">root</span>.<span class="ruby-identifier">elements</span>.<span class="ruby-identifier">each</span>(<span class="ruby-value str">&quot;dataset/dataTable&quot;</span>) { <span class="ruby-operator">|</span><span class="ruby-identifier">element</span><span class="ruby-operator">|</span>  
17
      <span class="ruby-identifier">tables</span>.<span class="ruby-identifier">push</span>(<span class="ruby-constant">DataTable</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">element</span>, <span class="ruby-keyword kw">self</span>))
18
    }
19
    <span class="ruby-keyword kw">return</span> <span class="ruby-identifier">tables</span>
20
  <span class="ruby-keyword kw">end</span></pre>
21
</body>
22
</html>
0 23

  
src/ruby/doc/classes/Eml.src/M000046.html
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

  
6
<html>
7
<head>
8
  <title>temporal_coverage (Eml)</title>
9
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
  <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
11
</head>
12
<body class="standalone-code">
13
  <pre><span class="ruby-comment cmt"># File lib/eml.rb, line 109</span>
14
  <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">temporal_coverage</span>
15
    <span class="ruby-identifier">beginDates</span> = <span class="ruby-identifier">endDates</span> = <span class="ruby-constant">Array</span>.<span class="ruby-identifier">new</span>()
16
    <span class="ruby-identifier">path</span> = <span class="ruby-value str">&quot;dataset/coverage/temporalCoverage/rangeOfDates&quot;</span>
17
    <span class="ruby-ivar">@doc</span>.<span class="ruby-identifier">root</span>.<span class="ruby-identifier">elements</span>.<span class="ruby-identifier">each</span>(<span class="ruby-identifier">path</span>){ <span class="ruby-operator">|</span><span class="ruby-identifier">range</span><span class="ruby-operator">|</span>  
18
      <span class="ruby-identifier">beginDates</span>.<span class="ruby-identifier">push</span>(
19
        <span class="ruby-constant">Date</span>.<span class="ruby-identifier">strptime</span>(<span class="ruby-identifier">range</span>.<span class="ruby-identifier">elements</span>[<span class="ruby-value str">&quot;beginDate&quot;</span>].<span class="ruby-identifier">elements</span>[<span class="ruby-value">1</span>].<span class="ruby-identifier">text</span>)
20
      )
21
      <span class="ruby-identifier">endDates</span>.<span class="ruby-identifier">push</span>(
22
        <span class="ruby-constant">Date</span>.<span class="ruby-identifier">strptime</span>(<span class="ruby-identifier">range</span>.<span class="ruby-identifier">elements</span>[<span class="ruby-value str">&quot;endDate&quot;</span>].<span class="ruby-identifier">elements</span>[<span class="ruby-value">1</span>].<span class="ruby-identifier">text</span>)
23
      )
24
    }
25
    <span class="ruby-keyword kw">return</span> <span class="ruby-identifier">beginDates</span>.<span class="ruby-identifier">min</span>, <span class="ruby-identifier">endDates</span>.<span class="ruby-identifier">max</span>
26
  <span class="ruby-keyword kw">end</span></pre>
27
</body>
28
</html>
0 29

  
src/ruby/test/metacat_test.rb
1
$:.unshift File.join(File.dirname(__FILE__), "..", "lib")
2
require "metacat.rb"
3
require "test/unit"
4

  
5
class MetacatTest < Test::Unit::TestCase
6

  
7
  def setup
8
    # This test case is setup for use against the ucsb/msi metacat server
9
    # You need a valid login to run the test case as well as an squery, eml-docid,
10
    # and datatable docid that will all return documents
11
    @username = 'uid=cburt,o=PISCO,dc=ecoinformatics,dc=org'
12
    @password = '7lobster'
13
    @metacat = Metacat.new("http://data.piscoweb.org/catalog/metacat")
14
    #must return at least one eml document
15
    @squery = '<?xml version="1.0"?>
16
                 <pathquery version="1.2">
17
                   <returndoctype>eml://ecoinformatics.org/eml-2.0.1</returndoctype>
18
                   <returndoctype>eml://ecoinformatics.org/eml-2.0.0</returndoctype>
19
                   <returnfield>dataset/title</returnfield>
20
                   <returnfield>dataTable/entityName</returnfield>
21
                   <returnfield>creator/individualName/surName</returnfield>
22
                   <returnfield>creator/organizationName</returnfield>
23
                   <returnfield>dataTable/physical/distribution/online/url</returnfield>
24
                   <querygroup operator="INTERSECT">
25
                     <queryterm casesensitive="false" searchmode="starts-with">
26
                       <value>PISCO:</value>
27
                       <pathexpr>title</pathexpr>
28
                     </queryterm>
29
                     <querygroup operator="INTERSECT">
30
                       <queryterm casesensitive="true" searchmode="equals">
31
                         <value>Subtidal Community Survey Data</value>
32
                         <pathexpr>keywordSet/keyword</pathexpr>
33
                       </queryterm>
34
                       <queryterm casesensitive="true" searchmode="equals">
35
                         <value>PISCO Categories</value>
36
                         <pathexpr>keywordSet/keywordThesaurus</pathexpr>
37
                       </queryterm>
38
                     </querygroup>
39
                   </querygroup>
40
                 </pathquery>'
41
    @data_table_docid = 'HMS001_020ADCP019R00_20060612.40.1'
42
    @eml_docid = 'HMS001_020ADCP019R00_20060612.50.1'
43
    # Not accessable to user Public
44
    @locked_docid = 'chad.1.1'
45
  end
46
  
47
  def teardown
48
  end
49
  
50
  # Metacat.new
51
  def test_new
52
    assert_kind_of Metacat, Metacat.new("http://data.piscoweb.org/catalog/metacat")
53
  end
54
  
55
  def test_initial_login
56
    metacat = Metacat.new("http://data.piscoweb.org/catalog/metacat", 
57
    'username' => @username, 'password' => @password)
58
    assert metacat
59
    assert metacat.logged_in?
60
  end
61
  
62
  def test_login_and_yield
63
    Metacat.new("http://data.piscoweb.org/catalog/metacat", 
64
    'username' => @username, 'password' => @password) do |metacat|
65
      assert metacat.logged_in?
66
    end
67
  end
68
  
69
  # Metacat.find()
70
  def test_error_if_docid_and_squery_set?
71
    assert_raises ArgumentError do
72
      @metacat.find(
73
      :docid => @eml_docid, 
74
      :squery => 'bs'
75
      )
76
    end
77
  end
78
    
79
  def test_nil_if_document_does_not_exist?
80
    assert_nil @metacat.find(:docid => 'bs_docid.80.9')
81
  end
82
  
83
  def test_permission_denied
84
    assert_raise(MetacatPermissionDenied) { @metacat.find(:docid  =>  @locked_docid) }
85
  end
86
  
87
  def test_returns_eml?
88
    assert_kind_of Eml, 
89
    @metacat.find(:docid => @eml_docid)  
90
  end
91
  
92
  def test_will_not_return_data_table
93
    assert_nil @metacat.find(:docid => @data_table_docid)
94
  end
95
  
96
  def test_returns_array_of_eml_objects?
97
    results = @metacat.find(:squery => @squery)
98
    assert_kind_of Array, results
99
    assert_kind_of Eml, results[0]
100
  end
101
  
102
  # Metacat.login/logout
103
  def test_login
104
    assert @metacat.login(@username, @password)
105
    assert @metacat.logged_in?
106
  end
107
  
108
  def test_logout
109
    assert @metacat.login(@username, @password)
110
    assert @metacat.logout
111
    assert_equal false, @metacat.logged_in?
112
  end  
113
  
114
  def test_failed_login
115
    assert_raise(MetacatPermissionDenied) do
116
      @metacat.login('bleh', @password)
117
    end
118
  end
119
  
120
  # Metacat.read
121
  def test_read_eml
122
    doc = @metacat.read(@eml_docid)
123
    assert_kind_of(REXML::Document, doc)
124
    assert_equal doc.root.name, 'eml'
125
  end
126
  
127
  def test_read_xml
128
    # not sure how to search for this yet
129
  end
130
  
131
  def test_read_data_table
132
    file = File.open('tmp.data_table', 'w+')
133
    @metacat.read(@data_table_docid) do |buffer|
134
      file.write(buffer)
135
    end
136
    file.close
137
    assert_equal(File.size('tmp.data_table'), File.size(File.dirname(__FILE__)+'/example.data_table'))
138
    File.delete('tmp.data_table')
139
  end
140
  
141
  # Metacat.squery
142
  def test_returns_xml
143
    doc = REXML::Document.new(@metacat.squery(@squery))    
144
    assert doc
145
    assert_equal 'resultset', doc.root.name
146
  end
147
  
148
  # Metacat.insert
149
  
150
  # Metacat.update
151
  
152
  # query_string
153
  def test_string_formatting
154
    hash = {
155
      'genus'     =>  'Caranx',
156
      'species'   =>  'melampygus'
157
    }
158
    assert_equal  '?genus=Caranx&species=melampygus', @metacat.send(:query_string, hash)
159
  end
160
end
0 161

  
src/ruby/test/data_table_test.rb
1
$:.unshift File.join(File.dirname(__FILE__), "..", "lib")
2

  
3
require 'test/unit'
4
require 'eml.rb'
5
require 'metacat.rb'
6
require 'data_table.rb'
7

  
8
class DataTableTest < Test::Unit::TestCase
9

  
10
  def setup
11
    @eml = Metacat.find(:docid => 'HMS001_020ADCP019R00_20060612.50.1')
12
    @data_table = @eml.largest_data_table
13
  end
14
  
15
  def teardown
16
  end
17

  
18
  # Replace this with your real tests.
19
  def test_id
20
    assert_equal  @data_table.docid, @data_table.id
21
  end
22
  
23
  def test_docid
24
    assert_equal  'HMS001_020ADCP019R00_20060612.40.1', @data_table.docid
25
  end
26
  
27
  def test_location
28
    assert_equal  'ecogrid://knb/HMS001_020ADCP019R00_20060612.40.1', 
29
                    @data_table.location
30
  end
31
  
32
  def test_size
33
    assert_equal @data_table.size, 158041130
34
  end
35
  
36
  def test_physical
37
    assert_kind_of  REXML::Element, @data_table.physical
38
  end
39
  
40
  def test_data_format
41
    assert_equal 'textFormat', @data_table.data_format
42
  end
43
  
44
  def test_text_format
45
    assert_kind_of REXML::Element, @data_table.text_format
46
  end
47
  
48
  def test_simple_delimited
49
    assert_kind_of REXML::Element, @data_table.simple_delimited
50
  end
51
  
52
  def test_field_delimiter
53
    assert_kind_of  String, @data_table.field_delimiter
54
  end
55
  
56
  def test_num_headers
57
    assert_equal 1, @data_table.num_headers
58
  end
59
  
60
  def test_record_delimiter
61
    assert_equal '#x0A', @data_table.record_delimiter
62
  end
63
    
64
  def test_metadata_attr_reader
65
    assert_kind_of  REXML::Element, @data_table.metadata
66
  end
67
  
68
  def test_read
69
    f1 = File.new("tmp/#{@data_table.docid}", "w+")
70
    @data_table.read do |buffer|
71
      f1.write buffer
72
    end
73
    f1.close
74
    assert_equal  File.size("test/fixtures/#{@data_table.id}"),
75
                    File.size("tmp/#{@data_table.id}")
76
  end
77

  
78
end
0 79

  
src/ruby/test/eml_test.rb
1
$:.unshift File.join(File.dirname(__FILE__), "..", "lib")
2
require 'test/unit'
3
require 'eml.rb'
4
require 'metacat.rb'
5

  
6
class EmlTest < Test::Unit::TestCase
7
  
8
  def setup
9
    @metacat = Metacat.new('http://data.piscoweb.org/catalog/metacat')
10
    @eml = @metacat.find(:docid => 'HMS001_020ADCP019R00_20060612.50.1')
11
  end
12
  
13
  def teardown
14
  end
15

  
16
  def test_temporal_coverage
17
    assert_equal [Date.strptime('2006-06-12'), Date.strptime('2006-08-30')] ,       
18
                  @eml.temporal_coverage
19
  end
20
  
21
  def test_has_data_tables
22
    assert_kind_of  Array, @eml.data_tables
23
    assert_kind_of  DataTable, @eml.data_tables[0]
24
  end
25
  
26
  def test_largest_of_one_data_table
27
    assert_kind_of  DataTable, @eml.largest_data_table
28
  end
29

  
30
  def test_largest_of_many_data_table
31
    eml = @metacat.find(:docid => 'pisco_subtidal.12.3')
32
    assert_kind_of  DataTable, eml.largest_data_table
33
    assert_equal    'pisco_subtidal.14.1', eml.largest_data_table.docid
34
  end
35

  
36
  def test_to_s
37
    assert_kind_of  String, @eml.to_s
38
  end
39
  
40
  def test_has_xml_doc
41
    assert_kind_of  REXML::Document, @eml.doc
42
  end
43
  
44
  def test_correct_docid
45
    assert_equal  'HMS001_020ADCP019R00_20060612.50.1', @eml.docid
46
  end
47
  
48
  def text_to_xml
49
    # While the method is to_xml, this method outputs the xml as a string,
50
    # not a REXML DOM object
51
    assert_kind_of  String, @eml.to_xml
52
  end
53
  
54
end
0 55

  
src/ruby/LICENSE
1
		    GNU GENERAL PUBLIC LICENSE
2
		       Version 2, June 1991
3

  
4
 Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
5
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6
 Everyone is permitted to copy and distribute verbatim copies
7
 of this license document, but changing it is not allowed.
8

  
9
			    Preamble
10

  
11
  The licenses for most software are designed to take away your
12
freedom to share and change it.  By contrast, the GNU General Public
13
License is intended to guarantee your freedom to share and change free
14
software--to make sure the software is free for all its users.  This
15
General Public License applies to most of the Free Software
16
Foundation's software and to any other program whose authors commit to
17
using it.  (Some other Free Software Foundation software is covered by
18
the GNU Lesser General Public License instead.)  You can apply it to
19
your programs, too.
20

  
21
  When we speak of free software, we are referring to freedom, not
22
price.  Our General Public Licenses are designed to make sure that you
23
have the freedom to distribute copies of free software (and charge for
24
this service if you wish), that you receive source code or can get it
25
if you want it, that you can change the software or use pieces of it
26
in new free programs; and that you know you can do these things.
27

  
28
  To protect your rights, we need to make restrictions that forbid
29
anyone to deny you these rights or to ask you to surrender the rights.
30
These restrictions translate to certain responsibilities for you if you
31
distribute copies of the software, or if you modify it.
32

  
33
  For example, if you distribute copies of such a program, whether
34
gratis or for a fee, you must give the recipients all the rights that
35
you have.  You must make sure that they, too, receive or can get the
36
source code.  And you must show them these terms so they know their
37
rights.
38

  
39
  We protect your rights with two steps: (1) copyright the software, and
40
(2) offer you this license which gives you legal permission to copy,
41
distribute and/or modify the software.
42

  
43
  Also, for each author's protection and ours, we want to make certain
44
that everyone understands that there is no warranty for this free
45
software.  If the software is modified by someone else and passed on, we
46
want its recipients to know that what they have is not the original, so
47
that any problems introduced by others will not reflect on the original
48
authors' reputations.
49

  
50
  Finally, any free program is threatened constantly by software
51
patents.  We wish to avoid the danger that redistributors of a free
52
program will individually obtain patent licenses, in effect making the
53
program proprietary.  To prevent this, we have made it clear that any
54
patent must be licensed for everyone's free use or not licensed at all.
55

  
56
  The precise terms and conditions for copying, distribution and
57
modification follow.
58

  
59
		    GNU GENERAL PUBLIC LICENSE
60
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61

  
62
  0. This License applies to any program or other work which contains
63
a notice placed by the copyright holder saying it may be distributed
64
under the terms of this General Public License.  The "Program", below,
65
refers to any such program or work, and a "work based on the Program"
66
means either the Program or any derivative work under copyright law:
67
that is to say, a work containing the Program or a portion of it,
68
either verbatim or with modifications and/or translated into another
69
language.  (Hereinafter, translation is included without limitation in
70
the term "modification".)  Each licensee is addressed as "you".
71

  
72
Activities other than copying, distribution and modification are not
73
covered by this License; they are outside its scope.  The act of
74
running the Program is not restricted, and the output from the Program
75
is covered only if its contents constitute a work based on the
76
Program (independent of having been made by running the Program).
77
Whether that is true depends on what the Program does.
78

  
79
  1. You may copy and distribute verbatim copies of the Program's
80
source code as you receive it, in any medium, provided that you
81
conspicuously and appropriately publish on each copy an appropriate
82
copyright notice and disclaimer of warranty; keep intact all the
83
notices that refer to this License and to the absence of any warranty;
84
and give any other recipients of the Program a copy of this License
85
along with the Program.
86

  
87
You may charge a fee for the physical act of transferring a copy, and
88
you may at your option offer warranty protection in exchange for a fee.
89

  
90
  2. You may modify your copy or copies of the Program or any portion
91
of it, thus forming a work based on the Program, and copy and
92
distribute such modifications or work under the terms of Section 1
93
above, provided that you also meet all of these conditions:
94

  
95
    a) You must cause the modified files to carry prominent notices
96
    stating that you changed the files and the date of any change.
97

  
98
    b) You must cause any work that you distribute or publish, that in
99
    whole or in part contains or is derived from the Program or any
100
    part thereof, to be licensed as a whole at no charge to all third
101
    parties under the terms of this License.
102

  
103
    c) If the modified program normally reads commands interactively
104
    when run, you must cause it, when started running for such
105
    interactive use in the most ordinary way, to print or display an
106
    announcement including an appropriate copyright notice and a
107
    notice that there is no warranty (or else, saying that you provide
108
    a warranty) and that users may redistribute the program under
109
    these conditions, and telling the user how to view a copy of this
110
    License.  (Exception: if the Program itself is interactive but
111
    does not normally print such an announcement, your work based on
112
    the Program is not required to print an announcement.)
113

  
114
These requirements apply to the modified work as a whole.  If
115
identifiable sections of that work are not derived from the Program,
116
and can be reasonably considered independent and separate works in
117
themselves, then this License, and its terms, do not apply to those
118
sections when you distribute them as separate works.  But when you
119
distribute the same sections as part of a whole which is a work based
120
on the Program, the distribution of the whole must be on the terms of
121
this License, whose permissions for other licensees extend to the
122
entire whole, and thus to each and every part regardless of who wrote it.
123

  
124
Thus, it is not the intent of this section to claim rights or contest
125
your rights to work written entirely by you; rather, the intent is to
126
exercise the right to control the distribution of derivative or
127
collective works based on the Program.
128

  
129
In addition, mere aggregation of another work not based on the Program
130
with the Program (or with a work based on the Program) on a volume of
131
a storage or distribution medium does not bring the other work under
132
the scope of this License.
133

  
134
  3. You may copy and distribute the Program (or a work based on it,
135
under Section 2) in object code or executable form under the terms of
136
Sections 1 and 2 above provided that you also do one of the following:
137

  
138
    a) Accompany it with the complete corresponding machine-readable
139
    source code, which must be distributed under the terms of Sections
140
    1 and 2 above on a medium customarily used for software interchange; or,
141

  
142
    b) Accompany it with a written offer, valid for at least three
143
    years, to give any third party, for a charge no more than your
144
    cost of physically performing source distribution, a complete
145
    machine-readable copy of the corresponding source code, to be
146
    distributed under the terms of Sections 1 and 2 above on a medium
147
    customarily used for software interchange; or,
148

  
149
    c) Accompany it with the information you received as to the offer
150
    to distribute corresponding source code.  (This alternative is
151
    allowed only for noncommercial distribution and only if you
152
    received the program in object code or executable form with such
153
    an offer, in accord with Subsection b above.)
154

  
155
The source code for a work means the preferred form of the work for
156
making modifications to it.  For an executable work, complete source
157
code means all the source code for all modules it contains, plus any
158
associated interface definition files, plus the scripts used to
159
control compilation and installation of the executable.  However, as a
160
special exception, the source code distributed need not include
161
anything that is normally distributed (in either source or binary
162
form) with the major components (compiler, kernel, and so on) of the
163
operating system on which the executable runs, unless that component
164
itself accompanies the executable.
165

  
166
If distribution of executable or object code is made by offering
167
access to copy from a designated place, then offering equivalent
168
access to copy the source code from the same place counts as
169
distribution of the source code, even though third parties are not
170
compelled to copy the source along with the object code.
171

  
172
  4. You may not copy, modify, sublicense, or distribute the Program
173
except as expressly provided under this License.  Any attempt
174
otherwise to copy, modify, sublicense or distribute the Program is
175
void, and will automatically terminate your rights under this License.
176
However, parties who have received copies, or rights, from you under
177
this License will not have their licenses terminated so long as such
178
parties remain in full compliance.
179

  
180
  5. You are not required to accept this License, since you have not
181
signed it.  However, nothing else grants you permission to modify or
182
distribute the Program or its derivative works.  These actions are
183
prohibited by law if you do not accept this License.  Therefore, by
184
modifying or distributing the Program (or any work based on the
185
Program), you indicate your acceptance of this License to do so, and
186
all its terms and conditions for copying, distributing or modifying
187
the Program or works based on it.
188

  
189
  6. Each time you redistribute the Program (or any work based on the
190
Program), the recipient automatically receives a license from the
191
original licensor to copy, distribute or modify the Program subject to
192
these terms and conditions.  You may not impose any further
193
restrictions on the recipients' exercise of the rights granted herein.
194
You are not responsible for enforcing compliance by third parties to
195
this License.
196

  
197
  7. If, as a consequence of a court judgment or allegation of patent
198
infringement or for any other reason (not limited to patent issues),
199
conditions are imposed on you (whether by court order, agreement or
200
otherwise) that contradict the conditions of this License, they do not
201
excuse you from the conditions of this License.  If you cannot
202
distribute so as to satisfy simultaneously your obligations under this
203
License and any other pertinent obligations, then as a consequence you
204
may not distribute the Program at all.  For example, if a patent
205
license would not permit royalty-free redistribution of the Program by
206
all those who receive copies directly or indirectly through you, then
207
the only way you could satisfy both it and this License would be to
208
refrain entirely from distribution of the Program.
209

  
210
If any portion of this section is held invalid or unenforceable under
211
any particular circumstance, the balance of the section is intended to
212
apply and the section as a whole is intended to apply in other
213
circumstances.
214

  
215
It is not the purpose of this section to induce you to infringe any
216
patents or other property right claims or to contest validity of any
217
such claims; this section has the sole purpose of protecting the
218
integrity of the free software distribution system, which is
219
implemented by public license practices.  Many people have made
220
generous contributions to the wide range of software distributed
221
through that system in reliance on consistent application of that
222
system; it is up to the author/donor to decide if he or she is willing
223
to distribute software through any other system and a licensee cannot
224
impose that choice.
225

  
226
This section is intended to make thoroughly clear what is believed to
227
be a consequence of the rest of this License.
228

  
229
  8. If the distribution and/or use of the Program is restricted in
230
certain countries either by patents or by copyrighted interfaces, the
231
original copyright holder who places the Program under this License
232
may add an explicit geographical distribution limitation excluding
233
those countries, so that distribution is permitted only in or among
234
countries not thus excluded.  In such case, this License incorporates
235
the limitation as if written in the body of this License.
236

  
237
  9. The Free Software Foundation may publish revised and/or new versions
238
of the General Public License from time to time.  Such new versions will
239
be similar in spirit to the present version, but may differ in detail to
240
address new problems or concerns.
241

  
242
Each version is given a distinguishing version number.  If the Program
243
specifies a version number of this License which applies to it and "any
244
later version", you have the option of following the terms and conditions
245
either of that version or of any later version published by the Free
246
Software Foundation.  If the Program does not specify a version number of
247
this License, you may choose any version ever published by the Free Software
248
Foundation.
249

  
250
  10. If you wish to incorporate parts of the Program into other free
251
programs whose distribution conditions are different, write to the author
252
to ask for permission.  For software which is copyrighted by the Free
253
Software Foundation, write to the Free Software Foundation; we sometimes
254
make exceptions for this.  Our decision will be guided by the two goals
255
of preserving the free status of all derivatives of our free software and
256
of promoting the sharing and reuse of software generally.
257

  
258
			    NO WARRANTY
259

  
260
  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
262
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
266
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
267
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
REPAIR OR CORRECTION.
269

  
270
  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
POSSIBILITY OF SUCH DAMAGES.
279

  
280
		     END OF TERMS AND CONDITIONS
281

  
282
	    How to Apply These Terms to Your New Programs
283

  
284
  If you develop a new program, and you want it to be of the greatest
285
possible use to the public, the best way to achieve this is to make it
286
free software which everyone can redistribute and change under these terms.
287

  
288
  To do so, attach the following notices to the program.  It is safest
289
to attach them to the start of each source file to most effectively
290
convey the exclusion of warranty; and each file should have at least
291
the "copyright" line and a pointer to where the full notice is found.
292

  
293
    <one line to give the program's name and a brief idea of what it does.>
294
    Copyright (C) <year>  <name of author>
295

  
296
    This program is free software; you can redistribute it and/or modify
297
    it under the terms of the GNU General Public License as published by
298
    the Free Software Foundation; either version 2 of the License, or
299
    (at your option) any later version.
300

  
301
    This program is distributed in the hope that it will be useful,
302
    but WITHOUT ANY WARRANTY; without even the implied warranty of
303
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
304
    GNU General Public License for more details.
305

  
306
    You should have received a copy of the GNU General Public License along
307
    with this program; if not, write to the Free Software Foundation, Inc.,
308
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
309

  
310
Also add information on how to contact you by electronic and paper mail.
311

  
312
If the program is interactive, make it output a short notice like this
313
when it starts in an interactive mode:
314

  
315
    Gnomovision version 69, Copyright (C) year name of author
316
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
317
    This is free software, and you are welcome to redistribute it
318
    under certain conditions; type `show c' for details.
319

  
320
The hypothetical commands `show w' and `show c' should show the appropriate
321
parts of the General Public License.  Of course, the commands you use may
322
be called something other than `show w' and `show c'; they could even be
323
mouse-clicks or menu items--whatever suits your program.
324

  
325
You should also get your employer (if you work as a programmer) or your
326
school, if any, to sign a "copyright disclaimer" for the program, if
327
necessary.  Here is a sample; alter the names:
328

  
329
  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
330
  `Gnomovision' (which makes passes at compilers) written by James Hacker.
331

  
332
  <signature of Ty Coon>, 1 April 1989
333
  Ty Coon, President of Vice
334

  
335
This General Public License does not permit incorporating your program into
336
proprietary programs.  If your program is a subroutine library, you may
337
consider it more useful to permit linking proprietary applications with the
338
library.  If this is what you want to do, use the GNU Lesser General
339
Public License instead of this License.
0 340

  
src/ruby/Rakefile
1
require 'rake'
2
require 'rake/testtask'
3

  
4
task :default => [:test_units]
5

  
6
desc "Run all unit test"
7
Rake::TestTask.new("test_units") do |t|
8
  t.pattern = 'test/*_test.rb'
9
  t.verbose = true
10
  t.warning = true
11
end
0 12

  
src/ruby/doc/fr_file_index.html
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/lib/data_table_rb.html">lib/data_table.rb</a><br />
24
    <a href="files/lib/eml_rb.html">lib/eml.rb</a><br />
25
    <a href="files/lib/metacat_rb.html">lib/metacat.rb</a><br />
26
    <a href="files/test/data_table_test_rb.html">test/data_table_test.rb</a><br />
27
    <a href="files/test/eml_test_rb.html">test/eml_test.rb</a><br />
28
    <a href="files/test/metacat_test_rb.html">test/metacat_test.rb</a><br />
29
  </div>
30
</div>
31
</body>
32
</html>
0 33

  
src/ruby/doc/fr_method_index.html
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/DataTable.html#M000039">columns (DataTable)</a><br />
24
    <a href="classes/Eml.html#M000048">coverage (Eml)</a><br />
25
    <a href="classes/DataTable.html#M000032">data_format (DataTable)</a><br />
26
    <a href="classes/Eml.html#M000044">data_tables (Eml)</a><br />
27
    <a href="classes/DataTable.html#M000027">docid (DataTable)</a><br />
28
    <a href="classes/DataTable.html#M000040">entity_name (DataTable)</a><br />
29
    <a href="classes/DataTable.html#M000038">field_delimiter (DataTable)</a><br />
30
    <a href="classes/DataTable.html#M000033">field_delimiter (DataTable)</a><br />
31
    <a href="classes/Metacat.html#M000072">find (Metacat)</a><br />
32
    <a href="classes/Eml.html#M000047">geographic_coverage (Eml)</a><br />
33
    <a href="classes/DataTable.html#M000028">id (DataTable)</a><br />
34
    <a href="classes/Eml.html#M000045">largest_data_table (Eml)</a><br />
35
    <a href="classes/DataTable.html#M000029">location (DataTable)</a><br />
36
    <a href="classes/Metacat.html#M000071">logged_in? (Metacat)</a><br />
37
    <a href="classes/Metacat.html#M000073">login (Metacat)</a><br />
38
    <a href="classes/Metacat.html#M000074">logout (Metacat)</a><br />
39
    <a href="classes/Eml.html#M000042">new (Eml)</a><br />
40
    <a href="classes/DataTable.html#M000026">new (DataTable)</a><br />
41
    <a href="classes/Metacat.html#M000070">new (Metacat)</a><br />
42
    <a href="classes/DataTable.html#M000036">num_headers (DataTable)</a><br />
43
    <a href="classes/DataTable.html#M000030">physical (DataTable)</a><br />
44
    <a href="classes/Net/BufferedIO.html#M000077">rbuf_fill (Net::BufferedIO)</a><br />
45
    <a href="classes/Metacat.html#M000075">read (Metacat)</a><br />
46
    <a href="classes/DataTable.html#M000041">read (DataTable)</a><br />
47
    <a href="classes/DataTable.html#M000037">record_delimiter (DataTable)</a><br />
48
    <a href="classes/MetacatTest.html#M000051">setup (MetacatTest)</a><br />
49
    <a href="classes/DataTableTest.html#M000011">setup (DataTableTest)</a><br />
50
    <a href="classes/EmlTest.html#M000001">setup (EmlTest)</a><br />
51
    <a href="classes/Eml.html#M000050">short_name (Eml)</a><br />
52
    <a href="classes/DataTable.html#M000035">simple_delimited (DataTable)</a><br />
53
    <a href="classes/DataTable.html#M000031">size (DataTable)</a><br />
54
    <a href="classes/Metacat.html#M000076">squery (Metacat)</a><br />
55
    <a href="classes/EmlTest.html#M000002">teardown (EmlTest)</a><br />
56
    <a href="classes/MetacatTest.html#M000052">teardown (MetacatTest)</a><br />
57
    <a href="classes/DataTableTest.html#M000012">teardown (DataTableTest)</a><br />
58
    <a href="classes/Eml.html#M000046">temporal_coverage (Eml)</a><br />
59
    <a href="classes/EmlTest.html#M000009">test_correct_docid (EmlTest)</a><br />
60
    <a href="classes/DataTableTest.html#M000018">test_data_format (DataTableTest)</a><br />
61
    <a href="classes/DataTableTest.html#M000014">test_docid (DataTableTest)</a><br />
62
    <a href="classes/MetacatTest.html#M000056">test_error_if_docid_and_squery_set? (MetacatTest)</a><br />
63
    <a href="classes/MetacatTest.html#M000064">test_failed_login (MetacatTest)</a><br />
64
    <a href="classes/DataTableTest.html#M000021">test_field_delimiter (DataTableTest)</a><br />
65
    <a href="classes/EmlTest.html#M000004">test_has_data_tables (EmlTest)</a><br />
66
    <a href="classes/EmlTest.html#M000008">test_has_xml_doc (EmlTest)</a><br />
67
    <a href="classes/DataTableTest.html#M000013">test_id (DataTableTest)</a><br />
68
    <a href="classes/MetacatTest.html#M000054">test_initial_login (MetacatTest)</a><br />
69
    <a href="classes/EmlTest.html#M000006">test_largest_of_many_data_table (EmlTest)</a><br />
70
    <a href="classes/EmlTest.html#M000005">test_largest_of_one_data_table (EmlTest)</a><br />
71
    <a href="classes/DataTableTest.html#M000015">test_location (DataTableTest)</a><br />
72
    <a href="classes/MetacatTest.html#M000062">test_login (MetacatTest)</a><br />
73
    <a href="classes/MetacatTest.html#M000055">test_login_and_yield (MetacatTest)</a><br />
74
    <a href="classes/MetacatTest.html#M000063">test_logout (MetacatTest)</a><br />
75
    <a href="classes/DataTableTest.html#M000024">test_metadata_attr_reader (DataTableTest)</a><br />
76
    <a href="classes/MetacatTest.html#M000053">test_new (MetacatTest)</a><br />
77
    <a href="classes/MetacatTest.html#M000057">test_nil_if_document_does_not_exist? (MetacatTest)</a><br />
78
    <a href="classes/DataTableTest.html#M000022">test_num_headers (DataTableTest)</a><br />
79
    <a href="classes/MetacatTest.html#M000058">test_permission_denied (MetacatTest)</a><br />
80
    <a href="classes/DataTableTest.html#M000017">test_physical (DataTableTest)</a><br />
81
    <a href="classes/DataTableTest.html#M000025">test_read (DataTableTest)</a><br />
82
    <a href="classes/MetacatTest.html#M000067">test_read_data_table (MetacatTest)</a><br />
83
    <a href="classes/MetacatTest.html#M000065">test_read_eml (MetacatTest)</a><br />
84
    <a href="classes/MetacatTest.html#M000066">test_read_xml (MetacatTest)</a><br />
85
    <a href="classes/DataTableTest.html#M000023">test_record_delimiter (DataTableTest)</a><br />
86
    <a href="classes/MetacatTest.html#M000061">test_returns_array_of_eml_objects? (MetacatTest)</a><br />
87
    <a href="classes/MetacatTest.html#M000059">test_returns_eml? (MetacatTest)</a><br />
88
    <a href="classes/MetacatTest.html#M000068">test_returns_xml (MetacatTest)</a><br />
89
    <a href="classes/DataTableTest.html#M000020">test_simple_delimited (DataTableTest)</a><br />
90
    <a href="classes/DataTableTest.html#M000016">test_size (DataTableTest)</a><br />
91
    <a href="classes/MetacatTest.html#M000069">test_string_formatting (MetacatTest)</a><br />
92
    <a href="classes/EmlTest.html#M000003">test_temporal_coverage (EmlTest)</a><br />
93
    <a href="classes/DataTableTest.html#M000019">test_text_format (DataTableTest)</a><br />
94
    <a href="classes/EmlTest.html#M000007">test_to_s (EmlTest)</a><br />
95
    <a href="classes/MetacatTest.html#M000060">test_will_not_return_data_table (MetacatTest)</a><br />
96
    <a href="classes/DataTable.html#M000034">text_format (DataTable)</a><br />
97
    <a href="classes/EmlTest.html#M000010">text_to_xml (EmlTest)</a><br />
98
    <a href="classes/Eml.html#M000049">title (Eml)</a><br />
99
    <a href="classes/Eml.html#M000043">to_s (Eml)</a><br />
100
  </div>
101
</div>
102
</body>
103
</html>
0 104

  
src/ruby/doc/files/test/eml_test_rb.html
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

  
6
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
<head>
8
  <title>File: eml_test.rb</title>
9
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
  <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
  <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
12
  <script type="text/javascript">
13
  // <![CDATA[
14

  
15
  function popupCode( url ) {
16
    window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
  }
18

  
19
  function toggleCode( id ) {
20
    if ( document.getElementById )
21
      elem = document.getElementById( id );
22
    else if ( document.all )
23
      elem = eval( "document.all." + id );
24
    else
25
      return false;
26

  
27
    elemStyle = elem.style;
28
    
29
    if ( elemStyle.display != "block" ) {
30
      elemStyle.display = "block"
31
    } else {
32
      elemStyle.display = "none"
33
    }
34

  
35
    return true;
36
  }
37
  
38
  // Make codeblocks hidden by default
39
  document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
  
41
  // ]]>
42
  </script>
43

  
44
</head>
45
<body>
46

  
47

  
48

  
49
  <div id="fileHeader">
50
    <h1>eml_test.rb</h1>
51
    <table class="header-table">
52
    <tr class="top-aligned-row">
53
      <td><strong>Path:</strong></td>
54
      <td>test/eml_test.rb
55
      </td>
56
    </tr>
57
    <tr class="top-aligned-row">
58
      <td><strong>Last Update:</strong></td>
59
      <td>Mon Dec 18 16:53:24 PST 2006</td>
60
    </tr>
61
    </table>
62
  </div>
63
  <!-- banner header -->
64

  
65
  <div id="bodyContent">
66

  
67

  
68

  
69
  <div id="contextContent">
70

  
71

  
72
    <div id="requires-list">
73
      <h3 class="section-bar">Required files</h3>
74

  
75
      <div class="name-list">
76
      test/unit&nbsp;&nbsp;
77
      eml.rb&nbsp;&nbsp;
78
      metacat.rb&nbsp;&nbsp;
79
      </div>
80
    </div>
81

  
82
   </div>
83

  
84

  
85
  </div>
86

  
87

  
88
    <!-- if includes -->
89

  
90
    <div id="section">
91

  
92

  
93

  
94

  
95

  
96
      
97

  
98

  
99
    <!-- if method_list -->
100

  
101

  
102
  </div>
103

  
104

  
105
<div id="validator-badges">
106
  <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
107
</div>
108

  
109
</body>
110
</html>
0 111

  
src/ruby/doc/files/test/metacat_test_rb.html
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

  
6
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
<head>
8
  <title>File: metacat_test.rb</title>
9
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
  <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
  <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
12
  <script type="text/javascript">
13
  // <![CDATA[
14

  
15
  function popupCode( url ) {
16
    window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
  }
18

  
19
  function toggleCode( id ) {
20
    if ( document.getElementById )
21
      elem = document.getElementById( id );
22
    else if ( document.all )
23
      elem = eval( "document.all." + id );
24
    else
25
      return false;
26

  
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff