<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -50,9 +50,9 @@ framework to develop Jabber-related applications or scripts in Ruby.&lt;/p&gt;
 
 &lt;h3&gt;Current status&lt;/h3&gt;
 
-&lt;p&gt;You can basically do everything you want with XMPP4R. It fully supports XMPP, and also a wide range of extensions (JEPs). Also, it's very easy to extend.&lt;/p&gt;
+&lt;p&gt;You can basically do everything you want with XMPP4R. It fully supports XMPP, and also a wide range of extensions (XEPs). Also, it's very easy to extend.&lt;/p&gt;
 
-&lt;p&gt;A lot of examples are shipped with XMPP4R (see &lt;i&gt;/usr/share/doc/xmpp4r/examples/&lt;/i&gt; or &lt;i&gt;/usr/local/share/doc/xmpp4r/examples/&lt;/i&gt;, depending on how you installed XMPP4R).&lt;/p&gt;
+&lt;p&gt;A lot of examples are shipped with XMPP4R (If you installed from a linux package see &lt;code&gt;/usr/share/doc/xmpp4r/examples/&lt;/code&gt; or &lt;code&gt;/usr/local/share/doc/xmpp4r/examples/&lt;/code&gt;, or take a look in the &lt;code&gt;data/doc&lt;/code&gt; dir if you have a copy of the source code).&lt;/p&gt;
 
 &lt;a name=&quot;download&quot;&gt;&lt;/a&gt;
 &lt;h2&gt;Download and Installation&lt;/h2&gt;
@@ -63,18 +63,19 @@ framework to develop Jabber-related applications or scripts in Ruby.&lt;/p&gt;
 &lt;p&gt;Releases are available here: &lt;a href=&quot;http://download.gna.org/xmpp4r/&quot;&gt;http://download.gna.org/xmpp4r/&lt;/a&gt;.
 Untar the archive and run &lt;code&gt;./setup.rb&lt;/code&gt;&lt;/p&gt;
 
-&lt;h3&gt;Using Rubygems&lt;/h3&gt;
+&lt;h3&gt;Using RubyGems&lt;/h3&gt;
 &lt;p&gt;&lt;code&gt;gem install xmpp4r&lt;/code&gt;&lt;/p&gt;
 
 &lt;h3&gt;Using a package for your distribution&lt;/h3&gt;
 &lt;p&gt;There's a package available in Debian and Ubuntu. Just &lt;code&gt;apt-get install libxmpp4r-ruby&lt;/code&gt;. With Gentoo, XMPP4R can be installed via &lt;code&gt;emerge dev-ruby/xmpp4r&lt;/code&gt;.&lt;/p&gt;
 
-&lt;h3&gt;Using Rubygems to install from GitHub (development version)&lt;/h3&gt;
+&lt;h3&gt;Using RubyGems to install from GitHub (development version)&lt;/h3&gt;
+&lt;p&gt;You should be using RubyGems version 1.2.0+ to use this method&lt;/p&gt;
 &lt;p&gt;&lt;code&gt;gem sources -a http://gems.github.com&lt;/code&gt; (you only need to do this once!)&lt;br/&gt;
 &lt;code&gt;gem install ln-xmpp4r&lt;/code&gt;&lt;/p&gt;
 
-&lt;h3&gt;Using GIT to install the development version&lt;/h3&gt;
-&lt;p&gt;&lt;code&gt;git-clone git://github.com/ln/xmpp4r.git&lt;/code&gt; (see &lt;a href=&quot;http://github.com/ln/xmpp4r&quot;&gt;GitHub&lt;/a&gt;)&lt;/p&gt;
+&lt;h3&gt;Using Git to install the development version&lt;/h3&gt;
+&lt;p&gt;&lt;code&gt;git clone git://github.com/ln/xmpp4r.git&lt;/code&gt; (see &lt;a href=&quot;http://github.com/ln/xmpp4r&quot;&gt;GitHub&lt;/a&gt;)&lt;/p&gt;
 
 
 &lt;a name=&quot;related&quot;&gt;&lt;/a&gt;
@@ -115,25 +116,25 @@ a Ruby on Rails convenience framework like Action Mailer, only for instant messa
 &lt;ul&gt;&lt;li&gt;&lt;a href=&quot;https://mail.gna.org/listinfo/xmpp4r-devel/&quot;&gt;xmpp4r-devel Info Page&lt;/a&gt; (to subscribe/unsubscribe, etc)&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;https://mail.gna.org/public/xmpp4r-devel/&quot;&gt;xmpp4r-devel archives&lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
-&lt;p&gt;Bug can be reported to the mailing or on the &lt;a href=&quot;https://gna.org/projects/xmpp4r/&quot;&gt;GNA project page&lt;/a&gt;.&lt;/p&gt;
+&lt;p&gt;Bugs can be reported to the mailing list or on the &lt;a href=&quot;https://gna.org/projects/xmpp4r/&quot;&gt;GNA project page&lt;/a&gt;.&lt;/p&gt;
 &lt;p&gt;When reporting bugs, please provide as much information as possible:&lt;/p&gt;
 &lt;ul&gt;
   &lt;li&gt;Contact information&lt;/li&gt;
-  &lt;li&gt;XMPP4R version or GIT revision&lt;/li&gt;
+  &lt;li&gt;XMPP4R version or Git SHA1 commit&lt;/li&gt;
   &lt;li&gt;Use &lt;em&gt;Jabber::debug = true&lt;/em&gt; but remove any sensitive information&lt;/li&gt;
   &lt;li&gt;Describe your environment (Ruby version, OS, server software)&lt;/li&gt;
   &lt;li&gt;Cool hackers send test cases&lt;/li&gt;
 &lt;/ul&gt;
 
-&lt;p&gt;The main development branch is hosted on &lt;a href=&quot;http://github.com/ln/xmpp4r/tree/master&quot;&gt;Github&lt;/a&gt;&lt;/b&gt;. We encourage contributors to get familiarized with git, as git makes it very easy to get patches into the project, not just for the maintainer but also for the contributor himself. A few typical questions are answered on the &lt;a href=&quot;http://github.com/ln/xmpp4r/wikis/developer-faq&quot;&gt;GitHub FAQ Page&lt;/a&gt;.  Feel free to make a GitHub 'fork' of the project and send us pull requests or patches to the xmpp4r-devel mailing list.&lt;/p&gt;
+&lt;p&gt;The main development branch is hosted on &lt;a href=&quot;http://github.com/ln/xmpp4r/tree/master&quot;&gt;Github&lt;/a&gt;&lt;/b&gt;. We encourage contributors to get familiarized with Git, as Git makes it very easy to get patches into the project, not just for the maintainer but also for the contributor himself. A few typical questions are answered on the &lt;a href=&quot;http://github.com/ln/xmpp4r/wikis/developer-faq&quot;&gt;GitHub FAQ Page&lt;/a&gt;.  Feel free to make a GitHub 'fork' of the project and send us pull requests or patches to the xmpp4r-devel mailing list.&lt;/p&gt;
 
 &lt;p&gt;The SVN repository isn't updated anymore, but is still accessible at &lt;code&gt;svn co svn://svn.gna.org/svn/xmpp4r/trunk/xmpp4r&lt;/code&gt; for historical reasons.&lt;/p&gt;
 
-&lt;p&gt;The RDOC source code documentation is &lt;a href=&quot;rdoc/&quot;&gt;browseable here&lt;/a&gt;. It might not be update to date (but we try hard to make it be). You can generate your own using &lt;code&gt;rake rdoc&lt;/code&gt;&lt;/p&gt;
+&lt;p&gt;The RDOC source code documentation is &lt;a href=&quot;rdoc/&quot;&gt;browseable here&lt;/a&gt;. It might not be completely up-to-date (but we try hard to make it be). If you have the source code you can generate your own using docs using &lt;code&gt;rake rdoc&lt;/code&gt;&lt;/p&gt;
 
-&lt;h3&gt;Articles about developping with XMPP4R&lt;/h3&gt;
+&lt;h3&gt;Articles about developing with XMPP4R&lt;/h3&gt;
 
-&lt;p&gt;&lt;b&gt;Famundo Dev Blog&lt;/b&gt; has a series of introductionary articles about XMPP4R:&lt;/p&gt;
+&lt;p&gt;&lt;b&gt;Famundo Dev Blog&lt;/b&gt; has a series of introductory articles about XMPP4R:&lt;/p&gt;
 &lt;ul&gt;
   &lt;li&gt;&lt;a href=&quot;http://devblog.famundo.com/articles/2006/10/10/ruby-and-xmpp-jabber-a-multi-posts-series&quot;&gt;Ruby and XMPP/Jabber - a Multi Posts Series, Part 1&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;http://devblog.famundo.com/articles/2006/10/14/ruby-and-xmpp-jabber-part-2-logging-in-and-sending-simple-messages&quot;&gt;Ruby and XMPP/Jabber Part 2: Logging in and sending simple messages&lt;/a&gt;&lt;/li&gt;
@@ -148,7 +149,7 @@ a Ruby on Rails convenience framework like Action Mailer, only for instant messa
   Integration With XMPP4r : Part 2&lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
 
-&lt;p&gt;A german tutorial is available at the BSD-Crew Wiki: &lt;a href=&quot;http://wiki.bsd-crew.de/index.php/Jabberbots_mit_XMPP4R&quot;&gt;Jabberbots mit XMPP4R&lt;/a&gt;&lt;/p&gt;
+&lt;p&gt;A German tutorial is available at the BSD-Crew Wiki: &lt;a href=&quot;http://wiki.bsd-crew.de/index.php/Jabberbots_mit_XMPP4R&quot;&gt;Jabberbots mit XMPP4R&lt;/a&gt;&lt;/p&gt;
 
 &lt;/div&gt;
 </diff>
      <filename>website/index.html</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>8f64abec91b12736a79e93a4648145f2e7a24b03</id>
    </parent>
  </parents>
  <author>
    <name>Glenn Rempe</name>
    <email>glenn@rempe.us</email>
  </author>
  <url>http://github.com/ln/xmpp4r/commit/8e3f836c31a7f6d0b66cd1ffc50efb7633d7e03b</url>
  <id>8e3f836c31a7f6d0b66cd1ffc50efb7633d7e03b</id>
  <committed-date>2008-06-24T12:39:04-07:00</committed-date>
  <authored-date>2008-06-24T12:21:52-07:00</authored-date>
  <message>Website updates.

- Changed reference to JEP to XEP
- Updated locations for code samples to be more inclusive
- RubyGems (not rubygems or Rubygems) is the correct spelling
- Git (not GIT) is the correct spelling
- git-clone is the deprecated form.  It is 'git clone'.
- RubyGem installation of release version should assume RubyForge simple install not Gna.org.
- Miscellaneous spelling errors
- Git commits have SHA1 commit ID's not revisions.
- Germans like their country to be capitalized. :-)</message>
  <tree>da1c8e2b2a7fd4544ffd21f3d574d497f043654a</tree>
  <committer>
    <name>Glenn Rempe</name>
    <email>glenn@rempe.us</email>
  </committer>
</commit>
