<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -8,3 +8,4 @@
 /trunk/web
 /silverplatter-irc.xcodeproj
 /build/
+/docs/</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -26,6 +26,7 @@ Project.meta.feature_requests = 'http://'
 Project.meta.use_git          = true
 
 Project.manifest.ignore       = %w[web/**/*]
+Project.rdoc.exclude         += %w[lib/**/*.yaml ext/**/*]
 
 Project.rubyforge.project     = 'chronos'
 Project.rubyforge.path        = 'chronos'</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -13,6 +13,12 @@ int DAYS_UNTIL_MONTH1[] = {0,31,59,90,120,151,181,212,243,273,304,334,365};
 int DAYS_UNTIL_MONTH2[] = {0,31,60,91,121,152,182,213,244,274,305,335,366};
 
 VALUE
+datetime_gregorian__iso8601(VALUE self, VALUE string, VALUE language)
+{
+	
+}
+
+VALUE
 datetime_gregorian__components(int argc, VALUE *argv, VALUE self)
 {
 	long cyear, cday_number; // those should/will be a 64bit int</diff>
      <filename>ext/chronos_core/chronos_core.c</filename>
    </modified>
    <modified>
      <diff>@@ -102,7 +102,7 @@ module Chronos
 		end
 
 		# create a datetime with only the date part set to the current system date
-		#&#160;for timezone/language append a .in(timezone, language) or set a global
+		# for timezone/language append a .in(timezone, language) or set a global
 		# (see Chronos::Datetime)
 		def self.today(timezone=nil, language=nil)
 			# uses Chronos::Datetime::Gregorian::ordinal's code
@@ -115,7 +115,7 @@ module Chronos
 		end
 
 		# create a datetime with date and time part from a unix-epoch-stamp
-		#&#160;for timezone/language append a .in(timezone, language) or set a global
+		# for timezone/language append a .in(timezone, language) or set a global
 		# (see Chronos::Datetime)
 		def self.epoch(unix_epoch_time, timezone=nil, language=nil)
 			import(Time.at(unix_epoch_time), timezone, language)
@@ -232,7 +232,7 @@ module Chronos
 		end
 
 		# compare two datetimes.
-		#&#160;not allowed if only one of both doesn't have no date.
+		# not allowed if only one of both doesn't have no date.
 		# if only one of both doesn't have time, 0h 0m 0.0s is used as time.
 		def &lt;=&gt;(other)
 			return nil if @day_number.nil? ^ other.day_number.nil? # either both or none must be nil
@@ -283,8 +283,7 @@ module Chronos
 			sprintf Inspect, self.class, @day_number, @ps_number, @timezone, @language
 		end
 		
-		# :nodoc:
-		def eql?(other)
+		def eql?(other) # :nodoc:
 			@ps_number  == other.ps_number &amp;&amp;
 			@day_number == other.day_number &amp;&amp;
 			@timezone   == other.timezone &amp;&amp;</diff>
      <filename>lib/chronos/datetime.rb</filename>
    </modified>
    <modified>
      <diff>@@ -64,14 +64,14 @@ module Chronos
 			end
 	
 			# create a datetime with date part only from year, month and day_of_month
-			#&#160;for timezone/language append a .in(timezone, language) or set a global
+			# for timezone/language append a .in(timezone, language) or set a global
 			# (see Chronos::Datetime)
 			def self.civil(year, month, day_of_month)
 				new(date_components(year, month, nil, nil, day_of_month, nil), nil, nil, nil)
 			end
 	
 			# see Datetime#format
-			#&#160;for timezone/language append a .in(timezone, language) or set a global
+			# for timezone/language append a .in(timezone, language) or set a global
 			# (see Chronos::Datetime)
 			def self.commercial(year, week, day_of_week, year_is_commercial=true)
 				raise ArgumentError, &quot;Non commercial years are not yet supported&quot; unless year_is_commercial
@@ -79,7 +79,7 @@ module Chronos
 			end
 	
 			# create a datetime with date part only from year and day_of_year
-			#&#160;for timezone/language append a .in(timezone, language) or set a global
+			# for timezone/language append a .in(timezone, language) or set a global
 			# (see Chronos::Datetime)
 			def self.ordinal(year, day_of_year)
 				new(date_components(year, nil, nil, day_of_year, nil, nil), nil, nil, nil)
@@ -87,7 +87,7 @@ module Chronos
 
 			# create a datetime with time part only from hour, minute, second,
 			# fraction of second (alternatively you can use a float as second)
-			#&#160;for timezone/language append a .in(timezone, language) or set a global
+			# for timezone/language append a .in(timezone, language) or set a global
 			# (see Chronos::Datetime)
 			def self.at(hour, minute=0, second=0, fraction=0.0, timezone=nil, language=nil)
 				new(nil,picoseconds(h,m,s,f), timezone=nil, language=nil)</diff>
      <filename>lib/chronos/datetime/gregorian.rb</filename>
    </modified>
    <modified>
      <diff>@@ -29,6 +29,7 @@ module Chronos
 		@by_region = {}
 
 		# the UTC timezones, offset in seconds
+		#:stopdoc:
 		Offset	= {
 			:'UTC-12'    =&gt; -43200,
 			:'UTC-11'    =&gt; -39600,
@@ -72,6 +73,7 @@ module Chronos
 			:'UTC+13'    =&gt;  46800,
 			:'UTC+14'    =&gt;  50400,
 		}
+		#:startdoc:
 
 		# map old/military timezone names to UTC
 		# corresponding utc, isDST[BOOL]</diff>
      <filename>lib/chronos/zone.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>0ace7778586b5d2407a1ff056e71dff8c7777b8b</id>
    </parent>
  </parents>
  <author>
    <name>Stefan Rusterholz</name>
    <email>stefan@Fillmore.local</email>
  </author>
  <url>http://github.com/apeiros/chronos/commit/301f88395e22eccd7019e7dbb1840ba88894994b</url>
  <id>301f88395e22eccd7019e7dbb1840ba88894994b</id>
  <committed-date>2008-08-16T16:26:02-07:00</committed-date>
  <authored-date>2008-08-16T16:26:02-07:00</authored-date>
  <message>various</message>
  <tree>9791337f2db64df5c00b409869bc37191f92f26a</tree>
  <committer>
    <name>Stefan Rusterholz</name>
    <email>stefan@Fillmore.local</email>
  </committer>
</commit>
