libxml4r 0.0.0 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
- data/.autotest +30 -0
- data/README.rdoc +113 -9
- data/Rakefile +2 -1
- data/VERSION +1 -1
- data/lib/libxml4r.rb +229 -0
- data/libxml4r.gemspec +98 -0
- data/test/test_helper.rb +39 -0
- data/test/test_libxml4r.rb +34 -3
- data/test/test_xml_modifiers.rb +57 -0
- data/test/test_xml_outputters.rb +53 -0
- data/test/test_xml_readers.rb +59 -0
- data/test/xml/atom.xml +13 -0
- data/test/xml/books.xml +146 -0
- data/test/xml/breakfast_menu.xml +38 -0
- data/test/xml/document.xml +49 -0
- data/test/xml/merge_bug_data.xml +58 -0
- data/test/xml/namespaces.xml +22 -0
- data/test/xml/parts_system.xml +31 -0
- data/test/xml/plant_catalog.xml +336 -0
- data/test/xml/recipie.xml +18 -0
- data/test/xml/rss1.xml +58 -0
- data/test/xml/rss2.xml +56 -0
- data/test/xml/ruby_lang.xhtml +238 -0
- data/test/xml/rubynet.xml +79 -0
- data/test/xml/shiporder.xls +86 -0
- data/test/xml/shiporder.xml +23 -0
- data/test/xml/shiporder.xsd +31 -0
- data/test/xml/soap_create_path.xml +15 -0
- data/test/xml/soap_create_path_response.xml +16 -0
- data/test/xml/soap_create_reservation.xml +25 -0
- data/test/xml/soap_create_reservation_response.xml +64 -0
- data/test/xml/soap_get_price.xml +11 -0
- data/test/xml/soap_get_price_response.xml +11 -0
- data/test/xml/soap_manufacturer_names_response.xml +27 -0
- data/test/xml/soap_order_item.xml +17 -0
- data/test/xml/soap_order_item_response.xml +10 -0
- data/test/xml/soap_refresh_path.xml +15 -0
- data/test/xml/soap_refresh_path_response.xml +16 -0
- data/test/xml/soap_teardown_path.xml +15 -0
- data/test/xml/soap_teardown_path_response.xml +16 -0
- metadata +52 -3
@@ -0,0 +1,18 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- http://en.wikipedia.org/wiki/XML -->
|
3
|
+
<recipe name="bread" prep_time="5 mins" cook_time="3 hours">
|
4
|
+
<title>Basic bread</title>
|
5
|
+
<ingredient amount="8" unit="dL">Flour</ingredient>
|
6
|
+
<ingredient amount="10" unit="grams">Yeast</ingredient>
|
7
|
+
<ingredient amount="4" unit="dL" state="warm">Water</ingredient>
|
8
|
+
<ingredient amount="1" unit="teaspoon">Salt</ingredient>
|
9
|
+
<instructions>
|
10
|
+
<step>Mix all ingredients together.</step>
|
11
|
+
<step>Knead thoroughly.</step>
|
12
|
+
<step>Cover with a cloth, and leave for one hour in warm room.</step>
|
13
|
+
<step>Knead again.</step>
|
14
|
+
<step>Place in a bread baking tin.</step>
|
15
|
+
<step>Cover with a cloth, and leave for one hour in warm room.</step>
|
16
|
+
<step>Bake in the oven at 180(degrees)C for 30 minutes.</step>
|
17
|
+
</instructions>
|
18
|
+
</recipe>
|
data/test/xml/rss1.xml
ADDED
@@ -0,0 +1,58 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- http://en.wikipedia.org/wiki/RSS -->
|
3
|
+
|
4
|
+
<rdf:RDF
|
5
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
6
|
+
xmlns="http://purl.org/rss/1.0/">
|
7
|
+
|
8
|
+
<channel rdf:about="http://www.xml.com/xml/news.rss">
|
9
|
+
<title>XML.com</title>
|
10
|
+
<link>http://xml.com/pub</link>
|
11
|
+
<description>
|
12
|
+
XML.com features a rich mix of information and services
|
13
|
+
for the XML community.
|
14
|
+
</description>
|
15
|
+
<image rdf:resource="http://xml.com/universal/images/xml_tiny.gif" />
|
16
|
+
|
17
|
+
<items>
|
18
|
+
<rdf:Seq>
|
19
|
+
<rdf:li rdf:resource="http://xml.com/pub/2000/08/09/xslt/xslt.html" />
|
20
|
+
<rdf:li rdf:resource="http://xml.com/pub/2000/08/09/rdfdb/index.html" />
|
21
|
+
</rdf:Seq>
|
22
|
+
</items>
|
23
|
+
<textinput rdf:resource="http://search.xml.com" />
|
24
|
+
</channel>
|
25
|
+
|
26
|
+
<image rdf:about="http://xml.com/universal/images/xml_tiny.gif">
|
27
|
+
<title>XML.com</title>
|
28
|
+
<link>http://www.xml.com</link>
|
29
|
+
<url>http://xml.com/universal/images/xml_tiny.gif</url>
|
30
|
+
</image>
|
31
|
+
|
32
|
+
<item rdf:about="http://xml.com/pub/2000/08/09/xslt/xslt.html">
|
33
|
+
<title>Processing Inclusions with XSLT</title>
|
34
|
+
<link>http://xml.com/pub/2000/08/09/xslt/xslt.html</link>
|
35
|
+
<description>
|
36
|
+
Processing document inclusions with general XML tools can be
|
37
|
+
problematic. This article proposes a way of preserving inclusion
|
38
|
+
information through SAX-based processing.
|
39
|
+
</description>
|
40
|
+
</item>
|
41
|
+
|
42
|
+
<item rdf:about="http://xml.com/pub/2000/08/09/rdfdb/index.html">
|
43
|
+
<title>Putting RDF to Work</title>
|
44
|
+
<link>http://xml.com/pub/2000/08/09/rdfdb/index.html</link>
|
45
|
+
<description>
|
46
|
+
Tool and API support for the Resource Description Framework
|
47
|
+
is slowly coming of age. Edd Dumbill takes a look at RDFDB,
|
48
|
+
one of the most exciting new RDF toolkits.
|
49
|
+
</description>
|
50
|
+
</item>
|
51
|
+
|
52
|
+
<textinput rdf:about="http://search.xml.com">
|
53
|
+
<title>Search XML.com</title>
|
54
|
+
<description>Search XML.com's XML collection</description>
|
55
|
+
<name>s</name>
|
56
|
+
<link>http://search.xml.com</link>
|
57
|
+
</textinput>
|
58
|
+
</rdf:RDF>
|
data/test/xml/rss2.xml
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- http://en.wikipedia.org/wiki/RSS -->
|
3
|
+
<rss version="2.0">
|
4
|
+
<channel>
|
5
|
+
<title>Lift Off News</title>
|
6
|
+
<link>http://liftoff.msfc.nasa.gov/</link>
|
7
|
+
<description>Liftoff to Space Exploration.</description>
|
8
|
+
<language>en-us</language>
|
9
|
+
<pubDate>Tue, 10 Jun 2003 04:00:00 GMT</pubDate>
|
10
|
+
<lastBuildDate>Tue, 10 Jun 2003 09:41:01 GMT</lastBuildDate>
|
11
|
+
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
|
12
|
+
<generator>Weblog Editor 2.0</generator>
|
13
|
+
<managingEditor>editor@example.com</managingEditor>
|
14
|
+
<webMaster>webmaster@example.com</webMaster>
|
15
|
+
<ttl>5</ttl>
|
16
|
+
|
17
|
+
<item>
|
18
|
+
<title>Star City</title>
|
19
|
+
<link>http://liftoff.msfc.nasa.gov/news/2003/news-starcity.asp</link>
|
20
|
+
<description>How do Americans get ready to work with Russians aboard the
|
21
|
+
International Space Station? They take a crash course in culture, language
|
22
|
+
and protocol at Russia's Star City.</description>
|
23
|
+
<pubDate>Tue, 03 Jun 2003 09:39:21 GMT</pubDate>
|
24
|
+
<guid>http://liftoff.msfc.nasa.gov/2003/06/03.html#item573</guid>
|
25
|
+
</item>
|
26
|
+
|
27
|
+
<item>
|
28
|
+
<title>Space Exploration</title>
|
29
|
+
<link>http://liftoff.msfc.nasa.gov/</link>
|
30
|
+
<description>Sky watchers in Europe, Asia, and parts of Alaska and Canada
|
31
|
+
will experience a partial eclipse of the Sun on Saturday, May 31.</description>
|
32
|
+
<pubDate>Fri, 30 May 2003 11:06:42 GMT</pubDate>
|
33
|
+
<guid>http://liftoff.msfc.nasa.gov/2003/05/30.html#item572</guid>
|
34
|
+
</item>
|
35
|
+
|
36
|
+
<item>
|
37
|
+
<title>The Engine That Does More</title>
|
38
|
+
<link>http://liftoff.msfc.nasa.gov/news/2003/news-VASIMR.asp</link>
|
39
|
+
<description>Before man travels to Mars, NASA hopes to design new engines
|
40
|
+
that will let us fly through the Solar System more quickly. The proposed
|
41
|
+
VASIMR engine would do that.</description>
|
42
|
+
<pubDate>Tue, 27 May 2003 08:37:32 GMT</pubDate>
|
43
|
+
<guid>http://liftoff.msfc.nasa.gov/2003/05/27.html#item571</guid>
|
44
|
+
</item>
|
45
|
+
|
46
|
+
<item>
|
47
|
+
<title>Astronauts' Dirty Laundry</title>
|
48
|
+
<link>http://liftoff.msfc.nasa.gov/news/2003/news-laundry.asp</link>
|
49
|
+
<description>Compared to earlier spacecraft, the International Space
|
50
|
+
Station has many luxuries, but laundry facilities are not one of them.
|
51
|
+
Instead, astronauts have other options.</description>
|
52
|
+
<pubDate>Tue, 20 May 2003 08:56:02 GMT</pubDate>
|
53
|
+
<guid>http://liftoff.msfc.nasa.gov/2003/05/20.html#item570</guid>
|
54
|
+
</item>
|
55
|
+
</channel>
|
56
|
+
</rss>
|
@@ -0,0 +1,238 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
+
<head>
|
5
|
+
<title>Ruby Programming Language</title>
|
6
|
+
<link rel="stylesheet" type="text/css" href="/stylesheets/low.css" />
|
7
|
+
<link rel="stylesheet" type="text/css" href="/stylesheets/screen.css" media="screen" />
|
8
|
+
<link rel="stylesheet" type="text/css" href="/stylesheets/print.css" media="print" />
|
9
|
+
<link title="Low vision" rel="alternate stylesheet" type="text/css" href="/stylesheets/low_vision_screen.css" media="screen" />
|
10
|
+
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
|
11
|
+
<link href="/en/feeds/news.rss" rel="alternate" title="RSS" type="application/rss+xml" />
|
12
|
+
|
13
|
+
</head>
|
14
|
+
<body id="home-page-layout">
|
15
|
+
<div id="page">
|
16
|
+
<div id="header">
|
17
|
+
<div id="logo"><img src="/images/logo.gif" width="331" height="119" alt="Ruby - A Programmer's Best Friend" title="" /></div>
|
18
|
+
<div class="site-links">
|
19
|
+
<a href="/en/downloads/">Downloads</a><span class="separator"> | </span><a href="/en/documentation/">Documentation</a><span class="separator"> | </span><a href="/en/libraries/">Libraries</a><span class="separator"> | </span><a href="/en/community/">Community</a><span class="separator"> | </span><a href="/en/news/">News</a><span class="separator"> | </span><a href="/en/security/">Security</a><span class="separator"> | </span><a href="/en/about/">About Ruby</a>
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
<hr class="hidden-modern" />
|
23
|
+
<div id="main-wrapper">
|
24
|
+
<div id="main">
|
25
|
+
<div id="content-wrapper">
|
26
|
+
<div id="head-wrapper-1">
|
27
|
+
<div id="head-wrapper-2">
|
28
|
+
<div id="head">
|
29
|
+
|
30
|
+
<div id="intro">
|
31
|
+
<h1>Ruby is…</h1>
|
32
|
+
<p>A dynamic, open source programming language with a focus on
|
33
|
+
simplicity and productivity. It has an elegant syntax that is
|
34
|
+
natural to read and easy to write.</p>
|
35
|
+
<p><a href="about/">Read More…</a></p>
|
36
|
+
</div>
|
37
|
+
<div id="code">
|
38
|
+
|
39
|
+
<div class="comment"># The Greeter class</div>
|
40
|
+
<div><span class="keyword">class</span> Greeter</div>
|
41
|
+
<div> <span class="keyword">def</span> initialize<span class="op">(</span>name<span class="op">)</span></div>
|
42
|
+
<div> @name <span class="op">=</span> name<span class="op">.</span>capitalize</div>
|
43
|
+
<div> <span class="keyword">end</span></div>
|
44
|
+
<div class="blank-line"> </div>
|
45
|
+
<div> <span class="keyword">def</span> salute</div>
|
46
|
+
<div> puts <span class="string">"Hello #{</span><span class="op">@</span>name<span class="string">}!"</span></div>
|
47
|
+
<div> <span class="keyword">end</span></div>
|
48
|
+
<div><span class="keyword">end</span></div>
|
49
|
+
<div class="blank-line"> </div>
|
50
|
+
<div class="comment"># Create a new object</div>
|
51
|
+
<div>g <span class="op">=</span> Greeter<span class="op">.</span>new<span class="op">(</span><span class="string">"world"</span><span class="op">)</span></div>
|
52
|
+
<div class="blank-line"> </div>
|
53
|
+
<div class="comment"># Output "Hello World!"</div>
|
54
|
+
<div>g<span class="op">.</span>salute</div>
|
55
|
+
|
56
|
+
|
57
|
+
</div>
|
58
|
+
</div>
|
59
|
+
</div>
|
60
|
+
</div>
|
61
|
+
<div id="content">
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
<div class="post">
|
67
|
+
<h3><a href="/en/news/2008/11/10/scotland-on-rails-2009/">Scotland on Rails 2009</a></h3>
|
68
|
+
|
69
|
+
<p><a href="http://scotlandonrails.com">Scotland on Rails</a> is pleased to announce that Conference2009 will be held March 26-28 in Edinburgh, Scotland.</p>
|
70
|
+
|
71
|
+
|
72
|
+
<p>We are now accepting submissions. The closing date for submissions is December 1st 2008, so there’s still time! Please mail your plaintext proposals for 45 minute sessions to <a href="mailto:submissions@scotlandonrails.com">submissions@scotlandonrails.com</a>.</p>
|
73
|
+
|
74
|
+
|
75
|
+
<p>Alternatively, if you are interested in sponsoring the conference, please mail <a href="mailto:sponsorship@scotlandonrails.com">sponsorship@scotlandonrails.com</a> for a prospectus.</p>
|
76
|
+
|
77
|
+
|
78
|
+
<p>Lastly, if you wish to be notified when we open for registration, you can sign up on the site.</p>
|
79
|
+
|
80
|
+
|
81
|
+
<p>Come and enjoy all that Edinburgh has to offer (whisky! castle! volcano! ruby! whisky!) in March. We hope to see you there.</p>
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
<p class="post-info">Posted by James Edward Gray II on 10 Nov 2008</p>
|
86
|
+
</div>
|
87
|
+
|
88
|
+
|
89
|
+
<div class="post">
|
90
|
+
<h3><a href="/en/news/2008/11/08/mountainwest-rubyconf-2009-dates-and-cfp/">MountainWest RubyConf 2009 dates and CFP</a></h3>
|
91
|
+
|
92
|
+
<p><a href="http://mtnwestrubyconf.org">MountainWest RubyConf 2009</a> will be held March 13-14, 2009, in Salt Lake City, Utah, <span class="caps">USA</span>.</p>
|
93
|
+
|
94
|
+
|
95
|
+
<p>Proposals to speak at this regional conference are now being accepted. Please send your proposal to proposals@mtnwestrubyconf.org.</p>
|
96
|
+
|
97
|
+
|
98
|
+
<p>The submission deadline is midnight (MST) on December 31st, 2008.</p>
|
99
|
+
|
100
|
+
|
101
|
+
<p>There are sponsorship opportunities available as well. Please contact sponsorship@mtnwestruby.org if you are interested.</p>
|
102
|
+
|
103
|
+
|
104
|
+
<p>Please see <a href="http://mtnwestrubyconf.org">mtnwestrubyconf.org/</a> for more details as they become available.</p>
|
105
|
+
|
106
|
+
<p><a href="/en/news/2008/11/08/mountainwest-rubyconf-2009-dates-and-cfp/">Continue Reading…</a></p>
|
107
|
+
|
108
|
+
<p class="post-info">Posted by james on 08 Nov 2008</p>
|
109
|
+
</div>
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
<div id="news">
|
114
|
+
<h3><a href="/en/news/">Other News</a></h3>
|
115
|
+
<ul>
|
116
|
+
<li><a href="/en/news/2008/10/28/ruby-1-9-1-preview-1-released/"> Ruby 1.9.1-preview 1 released</a>
|
117
|
+
<span class="post-info">Posted by james on 28 Oct 2008</span></li>
|
118
|
+
<li><a href="/en/news/2008/10/02/rubyconf-2008-is-sold-out/">RubyConf 2008 is Sold-out</a>
|
119
|
+
<span class="post-info">Posted by james on 02 Oct 2008</span></li>
|
120
|
+
<li><a href="/en/news/2008/09/09/voices-that-matter-2008/">Voices That Matter 2008</a>
|
121
|
+
<span class="post-info">Posted by James Edward Gray II on 09 Sep 2008</span></li>
|
122
|
+
</ul>
|
123
|
+
<ul>
|
124
|
+
<li><a href="/en/news/2008/08/23/dos-vulnerability-in-rexml/">DoS vulnerability in REXML</a>
|
125
|
+
<span class="post-info">Posted by Shugo Maeda on 23 Aug 2008</span></li>
|
126
|
+
<li><a href="/en/news/2008/08/11/ruby-1-8-7-p72-and-1-8-6-p287-released/">Ruby 1.8.7-p72 and 1.8.6-p287 released</a>
|
127
|
+
<span class="post-info">Posted by Shugo Maeda on 11 Aug 2008</span></li>
|
128
|
+
<li><a href="/en/news/2008/08/08/multiple-vulnerabilities-in-ruby/">Multiple vulnerabilities in Ruby</a>
|
129
|
+
<span class="post-info">Posted by Shugo Maeda on 08 Aug 2008</span></li>
|
130
|
+
</ul>
|
131
|
+
<p class="more"><a href="/en/news/">More News…</a></p>
|
132
|
+
</div>
|
133
|
+
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
</div>
|
138
|
+
</div>
|
139
|
+
<hr class="hidden-modern" />
|
140
|
+
<div id="sidebar-wrapper">
|
141
|
+
<div id="sidebar">
|
142
|
+
|
143
|
+
<div class="navigation"><a href="/en/downloads/"><img src="/images/download.gif" alt="Download Ruby" title="" /></a></div>
|
144
|
+
|
145
|
+
|
146
|
+
<div class="navigation">
|
147
|
+
<h3><strong>Get Started,</strong> it’s easy!</h3>
|
148
|
+
<ul class="menu">
|
149
|
+
<li><a href="http://tryruby.hobix.com/">Try Ruby! (in your browser)</a></li>
|
150
|
+
|
151
|
+
<li><a href="/en/documentation/quickstart/">Ruby in Twenty Minutes</a></li>
|
152
|
+
<li><a href="/en/documentation/ruby-from-other-languages/">Ruby from Other Languages</a></li>
|
153
|
+
</ul>
|
154
|
+
</div>
|
155
|
+
|
156
|
+
<div class="navigation">
|
157
|
+
<h3><strong>Explore</strong> a new world…</h3>
|
158
|
+
<ul class="menu">
|
159
|
+
<li><a href="/en/documentation/">Documentation</a></li>
|
160
|
+
<li><a href="http://www.amazon.com">Books</a></li>
|
161
|
+
<li><a href="/en/libraries/">Libraries</a></li>
|
162
|
+
<li><a href="/en/documentation/success-stories/">Success Stories</a></li>
|
163
|
+
</ul>
|
164
|
+
</div>
|
165
|
+
|
166
|
+
<div class="navigation">
|
167
|
+
<h3><strong>Participate</strong> in a friendly and growing community.</h3>
|
168
|
+
<ul>
|
169
|
+
<li><a href="/en/community/mailing-lists/">Mailing Lists</a>: Talk about Ruby with programmers from all around the world.</li>
|
170
|
+
<li><a href="/en/community/user-groups/">User Groups</a>: Get in contact with Rubyists in your area.</li>
|
171
|
+
<li><a href="/en/community/weblogs/">Weblogs</a>: Read about what’s happening right now in the Ruby community.</li>
|
172
|
+
<li><a href="/en/community/ruby-core/">Ruby Core</a>: Help polish the rough edges of the latest Ruby.</li>
|
173
|
+
<li><a href="http://redmine.ruby-lang.org/">Issue Tracking</a>: Report or help solve issues in Ruby.</li>
|
174
|
+
</ul>
|
175
|
+
</div>
|
176
|
+
|
177
|
+
|
178
|
+
<h3>Top Ruby Projects</h3>
|
179
|
+
|
180
|
+
<ul>
|
181
|
+
<li><a href="http://rubyforge.org/projects/instantrails/" title="Instant Rails is a one-stop Rails runtime solution containing Ruby, Rails, Apache, and MySQL, all pre-configured and ready to run. No installer, you simply drop it into the directory of your choice and run it. It does not modify your system environment. ">Instant Rails</a></li>
|
182
|
+
|
183
|
+
<li><a href="http://rubyforge.org/projects/ruby/" title="Main Ruby language project for providing a mirror of the Ruby releases, tracking bugs, etc.">Ruby</a></li>
|
184
|
+
|
185
|
+
<li><a href="http://rubyforge.org/projects/nitro/" title="Nitro is an efficient, yet simple engine for developing professional Web Applications using the Ruby language.">Nitro</a></li>
|
186
|
+
|
187
|
+
<li><a href="http://rubyforge.org/projects/activesupport/" title="Utility classes and extension to the standard library that were required by Rails, but found of general use.">Active Support</a></li>
|
188
|
+
|
189
|
+
<li><a href="http://rubyforge.org/projects/typo/" title="Typo is a lean weblogging engine powered by rails. It supports XMLRPC posting, ping/trackback, comments, textile, markdown, categories, all common exports, fulltext search and so on.">typo</a></li>
|
190
|
+
|
191
|
+
</ul>
|
192
|
+
<p class="more"><a href="/en/libraries/top-projects/">More…</a></p>
|
193
|
+
|
194
|
+
|
195
|
+
<h3>Syndicate</h3>
|
196
|
+
<p><a href="/en/feeds/news.rss">Recent News (RSS)</a></p>
|
197
|
+
</div>
|
198
|
+
</div>
|
199
|
+
<hr class="hidden-modern" />
|
200
|
+
<div class="foot">
|
201
|
+
<div class="site-links">
|
202
|
+
<a href="/en/downloads/">Downloads</a><span class="separator"> | </span><a href="/en/documentation/">Documentation</a><span class="separator"> | </span><a href="/en/libraries/">Libraries</a><span class="separator"> | </span><a href="/en/community/">Community</a><span class="separator"> | </span><a href="/en/news/">News</a><span class="separator"> | </span><a href="/en/security/">Security</a><span class="separator"> | </span><a href="/en/about/">About Ruby</a>
|
203
|
+
</div>
|
204
|
+
</div>
|
205
|
+
</div>
|
206
|
+
</div>
|
207
|
+
<div id="search-box">
|
208
|
+
<form id="search-form" action="/en/search/">
|
209
|
+
<table class="fieldset">
|
210
|
+
<tr>
|
211
|
+
<td>
|
212
|
+
<input class="field" type="text" name="q" />
|
213
|
+
</td>
|
214
|
+
<td>
|
215
|
+
<input class="button" type="submit" value="Search" />
|
216
|
+
</td>
|
217
|
+
</tr>
|
218
|
+
</table>
|
219
|
+
</form>
|
220
|
+
</div>
|
221
|
+
<div id="footer">
|
222
|
+
<div class="fine-print">
|
223
|
+
<p>Content available in <a href="/en/">English</a>, <a href="/fr/">French</a>, <a href="/ja/">Japanese</a>, <a href="/ko/">Korean</a>, <a href="/pl/">Polish</a>, <a href="/es/">Spanish</a>, <a href="/pt/">Portuguese</a>, <a href="/zh_CN/">Simplified Chinese</a>, <a href="/zh_TW/">Traditional Chinese</a>, <a href="/id/">Bahasa Indonesia</a>, <a href="/de/">German</a> and <a href="/it/">Italian</a>.</p>
|
224
|
+
<p>This website is made with Ruby and powered by <a href="http://radiantcms.org">Radiant CMS</a>.
|
225
|
+
It is proudly maintained by <a href="http://rubyidentity.org">members of the Ruby community</a>. Please contact
|
226
|
+
our <a href="mailto:webmaster@ruby-lang.org">webmaster</a> for questions or comments
|
227
|
+
concerning this website.</p>
|
228
|
+
</div>
|
229
|
+
</div>
|
230
|
+
</div>
|
231
|
+
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
232
|
+
</script>
|
233
|
+
<script type="text/javascript">
|
234
|
+
_uacct = "UA-620926-1";
|
235
|
+
urchinTracker();
|
236
|
+
</script>
|
237
|
+
</body>
|
238
|
+
</html>
|
@@ -0,0 +1,79 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<rubynet xmlns:xlink="http://www.w3.org/1999/xlink">
|
3
|
+
<pkg version="1.0">
|
4
|
+
<meta>
|
5
|
+
<pkgname>REXML</pkgname>
|
6
|
+
<authors>
|
7
|
+
<author>
|
8
|
+
<name>Aaron Malone</name>
|
9
|
+
<email>aaron@munge.net</email>
|
10
|
+
<irc_network>irc.opentprojects.org</irc_network>
|
11
|
+
<irc_channel>#ruby-lang</irc_channel>
|
12
|
+
<irc_handle>AAmalone</irc_handle>
|
13
|
+
</author>
|
14
|
+
</authors>
|
15
|
+
<maintainers>
|
16
|
+
<maintainer>
|
17
|
+
<name>Tools Team</name>
|
18
|
+
<email>tools@gentoo.org</email>
|
19
|
+
<irc_network>irc.opentprojects.org</irc_network>
|
20
|
+
<irc_channel>#ruby-lang</irc_channel>
|
21
|
+
<irc_handle>TinyT</irc_handle>
|
22
|
+
</maintainer>
|
23
|
+
</maintainers>
|
24
|
+
<categories>
|
25
|
+
|
26
|
+
<!-- For pieces of data that are repeated constnatly, could we
|
27
|
+
use XLink to centralize some of these definitions? If we move
|
28
|
+
stuff around on rubynet.org, we don't want to have to do a
|
29
|
+
search/replace: just update the entity, IMHO. -->
|
30
|
+
|
31
|
+
<major_category xlink:type="simple" xlink:href="http://www.rubynet.org/category/xml/">XML</major_category>
|
32
|
+
<minor_category xlink:type="simple" xlink:href="http://www.rubynet.org/category/text%20processing/">Text Processing</minor_category>
|
33
|
+
<minor_category xlink:type="simple" xlink:href="http://www.rubynet.org/category/storage/">Storage</minor_category>
|
34
|
+
</categories>
|
35
|
+
<version>
|
36
|
+
<major_version>1</major_version>
|
37
|
+
<minor_version>2</minor_version>
|
38
|
+
<micro_version>3</micro_version>
|
39
|
+
</version>
|
40
|
+
<copyright>1999-2002 Gentoo Technologies,Inc.</copyright>
|
41
|
+
<license>Ruby</license>
|
42
|
+
<status>Stable</status>
|
43
|
+
<full_name>Ruby Electric XML</full_name>
|
44
|
+
<description>Pure Ruby parser, blah blah. Based of Electrice XML</description>
|
45
|
+
<homepage xlink:type="simple" xlink:href="http://www.germane-software.com/~ser/Software/rexml/">REXML Home</homepage>
|
46
|
+
<download xlink:type="simple" xlink:href="http://www.germane-software.com/~ser/Software/rexml/rexml-1.2.3.bz2/">REXML Download</download>
|
47
|
+
</meta>
|
48
|
+
<dependencies>
|
49
|
+
<dependency name="ruby" uri="http://www.rubynet.org/packages/ruby/">
|
50
|
+
<required_version restriction="no-lower-than">
|
51
|
+
<version>
|
52
|
+
<major_version>1</major_version>
|
53
|
+
<minor_version>6</minor_version>
|
54
|
+
<micro_version>0</micro_version>
|
55
|
+
</version>
|
56
|
+
</required_version>
|
57
|
+
</dependency>
|
58
|
+
</dependencies>
|
59
|
+
<files>
|
60
|
+
<file>
|
61
|
+
<filename>uga.rb</filename>
|
62
|
+
<mode>0444</mode>
|
63
|
+
<content encoding="xml">... the file here</content>
|
64
|
+
</file>
|
65
|
+
<file>
|
66
|
+
<filename>booga.h</filename>
|
67
|
+
<mode>0444</mode>
|
68
|
+
<content encoding="xml">... the file here</content>
|
69
|
+
</file>
|
70
|
+
<file>
|
71
|
+
<filename>foo.so</filename>
|
72
|
+
<mode>0555</mode>
|
73
|
+
<!-- Encode routine: str.to_a.pack('m')
|
74
|
+
Decode routine: str.unpack('m') -->
|
75
|
+
<content encoding="mime64">Li4uIHRoZSBmaWxlIGhlcmU=\n</content>
|
76
|
+
</file>
|
77
|
+
</files>
|
78
|
+
</pkg>
|
79
|
+
</rubynet>
|