<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>www/layout.html.erb</filename>
    </added>
    <added>
      <filename>www/make_www.rb</filename>
    </added>
    <added>
      <filename>www/pages/development</filename>
    </added>
    <added>
      <filename>www/pages/documentation</filename>
    </added>
    <added>
      <filename>www/pages/index</filename>
    </added>
    <added>
      <filename>www/pages/press</filename>
    </added>
    <added>
      <filename>www/public/css/application.css</filename>
    </added>
    <added>
      <filename>www/public/css/ruby.css</filename>
    </added>
    <added>
      <filename>www/public/images/ruby-sequel.png</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -2,3 +2,4 @@ spec/spec_config.rb
 rdoc
 pkg
 coverage
+www/public/*.html</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -6,6 +6,8 @@ Sequel is a lightweight database access toolkit for Ruby.
   for constructing database queries and table schemas.
 * Sequel also includes a lightweight but comprehensive ORM layer for
   mapping records to Ruby objects and handling associated records.
+* Sequel supports advanced database features such as prepared statements,
+  bound variables, master/slave configurations, and database sharding.
 * Sequel makes it easy to deal with multiple records without having
   to break your teeth on SQL.
 * Sequel currently has adapters for ADO, DB2, DBI, Informix, JDBC,
@@ -13,10 +15,11 @@ Sequel is a lightweight database access toolkit for Ruby.
 
 == Resources
 
+* {Website}[http://sequel.rubyforge.org]
 * {Source code}[http://github.com/jeremyevans/sequel]
 * {Bug tracking}[http://code.google.com/p/ruby-sequel/issues/list]
 * {Google group}[http://groups.google.com/group/sequel-talk]
-* {RDoc}[http://sequel.rubyforge.org]
+* {RDoc}[http://sequel.rubyforge.org/rdoc]
 
 To check out the source code:
   </diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -13,9 +13,8 @@ CLEAN.include [&quot;**/.*.sw?&quot;, &quot;pkg&quot;, &quot;.config&quot;, &quot;rdoc&quot;, &quot;coverage&quot;]
 RDOC_OPTS = [&quot;--quiet&quot;, &quot;--line-numbers&quot;, &quot;--inline-source&quot;, '--title', \
   'Sequel: The Database Toolkit for Ruby', '--main', 'README']
 
-##############################################################################
-# gem packaging and release
-##############################################################################
+# Gem Packaging and Release
+
 desc &quot;Packages sequel&quot;
 task :package=&gt;[:clean]
 spec = Gem::Specification.new do |s|
@@ -64,25 +63,26 @@ task :release=&gt;[:package] do
   sh %{rubyforge add_file sequel #{NAME} #{VERS} pkg/#{NAME}-#{VERS}.gem} 
 end
 
-##############################################################################
-# rdoc
-##############################################################################
+### RDoc
+
 Rake::RDocTask.new do |rdoc|
   rdoc.rdoc_dir = &quot;rdoc&quot;
   rdoc.options += RDOC_OPTS
   rdoc.rdoc_files.add %w&quot;README CHANGELOG COPYING lib/**/*.rb doc/*.rdoc&quot;
 end
 
-desc &quot;Update docs and upload to rubyforge.org&quot;
-task :doc_rforge =&gt; [:rdoc]
-task :doc_rforge do
-  sh %{chmod -R g+w rdoc/*}
-  sh %{scp -rp rdoc/* rubyforge.org:/var/www/gforge-projects/sequel}
+### Website
+
+desc &quot;Update sequel.rubyforge.org&quot;
+task :website =&gt; [:rdoc]
+task :website do
+  sh %{www/make_www.rb}
+  sh %{scp -r www/public/* rubyforge.org:/var/www/gforge-projects/sequel/}
+  sh %{scp -r rdoc/* rubyforge.org:/var/www/gforge-projects/sequel/rdoc/}
 end
 
-##############################################################################
-# specs
-##############################################################################
+### Specs
+
 lib_dir = File.join(File.dirname(__FILE__), 'lib')
 fixRUBYLIB = Proc.new{ENV['RUBYLIB'] ? (ENV['RUBYLIB'] += &quot;:#{lib_dir}&quot;) : (ENV['RUBYLIB'] = lib_dir)}
 sequel_core_specs = &quot;spec/sequel_core/*_spec.rb&quot;
@@ -141,9 +141,7 @@ task :dcov do
   sh %{find lib -name '*.rb' | xargs dcov}
 end
 
-##############################################################################
-# Statistics
-##############################################################################
+### Statistics
 
 STATS_DIRECTORIES = [
   %w(Code   lib/),</diff>
      <filename>Rakefile</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>7aeea22dd348f55341cb2bb99b462ee6d5ab564d</id>
    </parent>
  </parents>
  <author>
    <name>Jeremy Evans</name>
    <email>code@jeremyevans.net</email>
  </author>
  <url>http://github.com/jeremyevans/sequel/commit/189fe30158496a103a8a3a13eafe728717db95be</url>
  <id>189fe30158496a103a8a3a13eafe728717db95be</id>
  <committed-date>2008-08-05T14:11:52-07:00</committed-date>
  <authored-date>2008-08-05T13:25:50-07:00</authored-date>
  <message>Use boof's website design for sequel.rubyforge.org

Instead of just hosting the RDoc at sequel.rubyforge.org, have an
actual website, based on boof's design for www.ruby-sequel.org.
However, drop the Rails project and instead create a plain html site
generated with a simple script, a single template, and ERB.

Also, add a fifth main feature to the README, showing off the
improvements coming in 2.4.0.</message>
  <tree>91a436984362f462938cfaf7116cb2ae5084f660</tree>
  <committer>
    <name>Jeremy Evans</name>
    <email>code@jeremyevans.net</email>
  </committer>
</commit>
