<?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/"
		xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: Evite to Google Calendar Greasemonkey Script v1.4</title>
	<atom:link href="http://blog.ryantoohil.com/2007/10/evite-to-google-calendar-greasemonkey-script-v14.php/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.ryantoohil.com/2007/10/evite-to-google-calendar-greasemonkey-script-v14.php</link>
	<description>Stuff.</description>
	<lastBuildDate>Fri, 10 Feb 2012 05:43:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: kmd</title>
		<link>http://blog.ryantoohil.com/2007/10/evite-to-google-calendar-greasemonkey-script-v14.php/comment-page-1#comment-15850</link>
		<dc:creator>kmd</dc:creator>
		<pubDate>Wed, 16 Apr 2008 09:07:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.ryantoohil.com/2007/10/evite-to-google-calendar-greasemonkey-script-v14.php#comment-15850</guid>
		<description>I just installed your script and it is probably the only option out there today for any remotely close to integrating evite with google calendar - and it does a darn good job too.

One thing I have observed is that the &quot;description&quot; doesnt get captured properly (only the first word is captured).

Other thing is I observed though is that Evite doesnt always have a &quot;outlook&quot; link under GUEST OPTIONS which is what this script looks for (&quot;outlookLI&quot;). So I made minor modification to it whereby it searches for the &quot;td&quot; with &quot;GUEST OPTIONS&quot; instead (yes a little more complicated but probably more failsafe) and it works better. At least it works on Firefox 2.

I basically changed the last few lines of the script to:

// Let&#039;s find the LI element with the Outlook Calendar link and add our link after it
var allLIs, outlookLI;
allLIs = document.getElementsByTagName(&#039;td&#039;);

for (var i = 0; i &lt; allLIs.length; i++) {
   
   var text  = allLIs[i].innerHTML;
   var regEx = /GUEST OPTIONS/;
   if (text.match(regEx)) {
      outlookLI = allLIs[i];
   }
}

outlookLI.parentNode.nextSibling.nextSibling.firstChild.nextSibling.firstChild.nextSibling.insertBefore(gCalLink, outlookLI.parentNode.nextSibling.nextSibling.firstChild.nextSibling.firstChild.nextSibling.firstChild.nextSibling);</description>
		<content:encoded><![CDATA[<p>I just installed your script and it is probably the only option out there today for any remotely close to integrating evite with google calendar &#8211; and it does a darn good job too.</p>
<p>One thing I have observed is that the &#8220;description&#8221; doesnt get captured properly (only the first word is captured).</p>
<p>Other thing is I observed though is that Evite doesnt always have a &#8220;outlook&#8221; link under GUEST OPTIONS which is what this script looks for (&#8220;outlookLI&#8221;). So I made minor modification to it whereby it searches for the &#8220;td&#8221; with &#8220;GUEST OPTIONS&#8221; instead (yes a little more complicated but probably more failsafe) and it works better. At least it works on Firefox 2.</p>
<p>I basically changed the last few lines of the script to:</p>
<p>// Let&#8217;s find the LI element with the Outlook Calendar link and add our link after it<br />
var allLIs, outlookLI;<br />
allLIs = document.getElementsByTagName(&#8216;td&#8217;);</p>
<p>for (var i = 0; i &lt; allLIs.length; i++) {</p>
<p>   var text  = allLIs[i].innerHTML;<br />
   var regEx = /GUEST OPTIONS/;<br />
   if (text.match(regEx)) {<br />
      outlookLI = allLIs[i];<br />
   }<br />
}</p>
<p>outlookLI.parentNode.nextSibling.nextSibling.firstChild.nextSibling.firstChild.nextSibling.insertBefore(gCalLink, outlookLI.parentNode.nextSibling.nextSibling.firstChild.nextSibling.firstChild.nextSibling.firstChild.nextSibling);</p>
]]></content:encoded>
	</item>
</channel>
</rss>

