<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Getting Started With Datejs</title>
	<atom:link href="http://www.datejs.com/2007/11/27/getting-started-with-datejs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.datejs.com/2007/11/27/getting-started-with-datejs/</link>
	<description>An open-source JavaScript Date Library</description>
	<lastBuildDate>Tue, 20 Jul 2010 22:24:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: Danny Smith</title>
		<link>http://www.datejs.com/2007/11/27/getting-started-with-datejs/comment-page-2/#comment-521</link>
		<dc:creator>Danny Smith</dc:creator>
		<pubDate>Tue, 20 Jul 2010 22:24:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.datejs.com/2007/11/27/getting-started-with-datejs/#comment-521</guid>
		<description>Damm. If only I&#039;d come across this two weeks ago. I s&#039;pose I can play with dates in JS the same way I do in Rails now :)

Thanks</description>
		<content:encoded><![CDATA[<p>Damm. If only I&#8217;d come across this two weeks ago. I s&#8217;pose I can play with dates in JS the same way I do in Rails now <img src='http://www.datejs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor</title>
		<link>http://www.datejs.com/2007/11/27/getting-started-with-datejs/comment-page-2/#comment-518</link>
		<dc:creator>Igor</dc:creator>
		<pubDate>Tue, 06 Jul 2010 23:55:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.datejs.com/2007/11/27/getting-started-with-datejs/#comment-518</guid>
		<description>Quick and clean jQuery DatePicker integration:

Modify DatePicker&#039;s parseDate function. After initial validation:

if (value == &#039;&#039;) return null;

Comment out the rest of the function. Replace with:

var dateJsParseAttemptDate = Date.parse(value);
if(dateJsParseAttemptDate) return dateJsParseAttemptDate;
throw &#039;Invalid date&#039;;</description>
		<content:encoded><![CDATA[<p>Quick and clean jQuery DatePicker integration:</p>
<p>Modify DatePicker&#8217;s parseDate function. After initial validation:</p>
<p>if (value == &#8221;) return null;</p>
<p>Comment out the rest of the function. Replace with:</p>
<p>var dateJsParseAttemptDate = Date.parse(value);<br />
if(dateJsParseAttemptDate) return dateJsParseAttemptDate;<br />
throw &#8216;Invalid date&#8217;;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Heath</title>
		<link>http://www.datejs.com/2007/11/27/getting-started-with-datejs/comment-page-2/#comment-517</link>
		<dc:creator>Heath</dc:creator>
		<pubDate>Wed, 23 Jun 2010 16:54:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.datejs.com/2007/11/27/getting-started-with-datejs/#comment-517</guid>
		<description>Disregard that, I&#039;m silly.</description>
		<content:encoded><![CDATA[<p>Disregard that, I&#8217;m silly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Heath</title>
		<link>http://www.datejs.com/2007/11/27/getting-started-with-datejs/comment-page-2/#comment-516</link>
		<dc:creator>Heath</dc:creator>
		<pubDate>Wed, 23 Jun 2010 16:47:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.datejs.com/2007/11/27/getting-started-with-datejs/#comment-516</guid>
		<description>Seems to have trouble converting &quot;12:00 PM&quot;:
2010-06-23 12:00 AM - parses correctly
2010-06-23 12:00 PM - parses as 12 AM
2010-06-23 01:00 AM - parses correctly
2010-06-23 01:00 PM - parses correctly</description>
		<content:encoded><![CDATA[<p>Seems to have trouble converting &#8220;12:00 PM&#8221;:<br />
2010-06-23 12:00 AM &#8211; parses correctly<br />
2010-06-23 12:00 PM &#8211; parses as 12 AM<br />
2010-06-23 01:00 AM &#8211; parses correctly<br />
2010-06-23 01:00 PM &#8211; parses correctly</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amit Srivastava</title>
		<link>http://www.datejs.com/2007/11/27/getting-started-with-datejs/comment-page-2/#comment-515</link>
		<dc:creator>Amit Srivastava</dc:creator>
		<pubDate>Thu, 18 Mar 2010 06:27:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.datejs.com/2007/11/27/getting-started-with-datejs/#comment-515</guid>
		<description>Some functions are not working properly

// Get a date 30 days after a user supplied date
var d1 = Date.parse(&#039;07.15.2007&#039;);
var d2 = (30).days().after(d1);


the function after give js error
Please check and let me inform

Regards
Amit srivastava</description>
		<content:encoded><![CDATA[<p>Some functions are not working properly</p>
<p>// Get a date 30 days after a user supplied date<br />
var d1 = Date.parse(&#8217;07.15.2007&#8242;);<br />
var d2 = (30).days().after(d1);</p>
<p>the function after give js error<br />
Please check and let me inform</p>
<p>Regards<br />
Amit srivastava</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: windstamp</title>
		<link>http://www.datejs.com/2007/11/27/getting-started-with-datejs/comment-page-1/#comment-514</link>
		<dc:creator>windstamp</dc:creator>
		<pubDate>Sat, 20 Feb 2010 08:57:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.datejs.com/2007/11/27/getting-started-with-datejs/#comment-514</guid>
		<description>it&#039;s very outstanding! but why not &#039;Date.friday();&#039; work?</description>
		<content:encoded><![CDATA[<p>it&#8217;s very outstanding! but why not &#8216;Date.friday();&#8217; work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor</title>
		<link>http://www.datejs.com/2007/11/27/getting-started-with-datejs/comment-page-1/#comment-513</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Thu, 18 Feb 2010 21:48:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.datejs.com/2007/11/27/getting-started-with-datejs/#comment-513</guid>
		<description>oops, guess not...sorry!!  :(</description>
		<content:encoded><![CDATA[<p>oops, guess not&#8230;sorry!!  <img src='http://www.datejs.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor</title>
		<link>http://www.datejs.com/2007/11/27/getting-started-with-datejs/comment-page-1/#comment-512</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Thu, 18 Feb 2010 21:48:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.datejs.com/2007/11/27/getting-started-with-datejs/#comment-512</guid>
		<description>Seriously....you actually deleted my comment?</description>
		<content:encoded><![CDATA[<p>Seriously&#8230;.you actually deleted my comment?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trevor</title>
		<link>http://www.datejs.com/2007/11/27/getting-started-with-datejs/comment-page-1/#comment-511</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Thu, 18 Feb 2010 02:41:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.datejs.com/2007/11/27/getting-started-with-datejs/#comment-511</guid>
		<description>As someone mentioned earlier:
&quot;45.You should probably update that download link up there with a newer version from SVN, it’s more than a year old now and many of the documented features (compare, isAfter, etc) are missing altogether.&quot;

This looks like a great library and I hate complaining about awesome free software, but your website lists code examples that are up to date with the post alpha release, but there seems to be nowhere to download it.

I think maybe it is available here:
http://code.google.com/p/datejs/source/browse/trunk/#trunk/build

...but, I&#039;m not sure.  I&#039;m trying to use the isAfter() function.  I wouldn&#039;t mind jumping through a few hoops to get to it, but a hint as to which hoops to jump through would be helpful.</description>
		<content:encoded><![CDATA[<p>As someone mentioned earlier:<br />
&#8220;45.You should probably update that download link up there with a newer version from SVN, it’s more than a year old now and many of the documented features (compare, isAfter, etc) are missing altogether.&#8221;</p>
<p>This looks like a great library and I hate complaining about awesome free software, but your website lists code examples that are up to date with the post alpha release, but there seems to be nowhere to download it.</p>
<p>I think maybe it is available here:<br />
<a href="http://code.google.com/p/datejs/source/browse/trunk/#trunk/build" rel="nofollow">http://code.google.com/p/datejs/source/browse/trunk/#trunk/build</a></p>
<p>&#8230;but, I&#8217;m not sure.  I&#8217;m trying to use the isAfter() function.  I wouldn&#8217;t mind jumping through a few hoops to get to it, but a hint as to which hoops to jump through would be helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dakkar</title>
		<link>http://www.datejs.com/2007/11/27/getting-started-with-datejs/comment-page-1/#comment-508</link>
		<dc:creator>Dakkar</dc:creator>
		<pubDate>Mon, 25 Jan 2010 21:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.datejs.com/2007/11/27/getting-started-with-datejs/#comment-508</guid>
		<description>Great work - thanks!

I too would like to see some way of supporting ISO 8601 dates - for me, I need a way to display Ordinal Dates. 
Although I need only two digits for the year. (i.e. 10_025 insead of 2010_025)

ISO 8601 dates were mentioned in another comment above with the following links:
http://en.wikipedia.org/wiki/ISO_8601

Hope there is a way for this, it would save me a headache!
Thanks!

Import and export.</description>
		<content:encoded><![CDATA[<p>Great work &#8211; thanks!</p>
<p>I too would like to see some way of supporting ISO 8601 dates &#8211; for me, I need a way to display Ordinal Dates.<br />
Although I need only two digits for the year. (i.e. 10_025 insead of 2010_025)</p>
<p>ISO 8601 dates were mentioned in another comment above with the following links:<br />
<a href="http://en.wikipedia.org/wiki/ISO_8601" rel="nofollow">http://en.wikipedia.org/wiki/ISO_8601</a></p>
<p>Hope there is a way for this, it would save me a headache!<br />
Thanks!</p>
<p>Import and export.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
