<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Enhance Google Cal | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/13728</link>
    <description>Recent comments on userscript: Enhance Google Cal</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Archived Comments, replied by The Dot</title>
      <description>&lt;p&gt;@mattias: hi. thanks for reporting the problem. unfortunately i cannot reproduce this problem here. im also fairly sure that this script doesnt try to modify the displaying of the dates in any way.
&lt;br /&gt;if you are still having the same problem could you please post a list of any other scripts/extensions that you have installed? thank you.&lt;/p&gt;</description>
      <pubDate>Sun, 17 Feb 2008 06:13:48 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15062:61555</guid>
      <author>The Dot</author>
      <link>http://userscripts.org/posts/61555</link>
    </item>
    <item>
      <title>Archived Comments, replied by mattias davidsson</title>
      <description>&lt;p&gt;I can't make it work with 3 week or monthly view. I only see added scheduled tasks in the week or day mode. In 3week/custom/monthly mode only the tasks with no start time are seen.&lt;/p&gt;

&lt;p&gt;known bug?&lt;/p&gt;

&lt;p&gt;mattias&lt;/p&gt;</description>
      <pubDate>Mon, 11 Feb 2008 22:22:59 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15062:61556</guid>
      <author>mattias davidsson</author>
      <link>http://userscripts.org/posts/61556</link>
    </item>
    <item>
      <title>Archived Comments, replied by The Dot</title>
      <description>&lt;p&gt;Mattkolb has made a very nice addition to this script. it actually works very well. unfortunately due to some sort of formatting problem, it wont work if you directly copy and paste it. his addition is ideal for those who frequently use the 'Quick Add' option. the script with his addition is posted below. just copy this entire script over the original source.&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;
// ==UserScript==
// @name Enhance Google Cal
// @namespace http://exstodot.blogspot.com
// @description Cleans up Google Calendar. To be used with Enhance Google script
// @include http://www.google.com/calendar/*
// @include https://www.google.com/calendar/*
// ==/UserScript==

//-------------------------------------- USER OPTIONS ------------------------------------------//
// 1 means YES, 0 means NO

const HIDE_PRINT = 1;
const REARRANGE_NAV_BAR = 1;
const QUICK_ADD_AT_TOP = 1;

//-------------------------------------- DONT CHANGE ANYTHING BELOW THIS LINE ------------------------------------------//

var divs = document.evaluate('/html/body/div', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
for (var i = 0; i &amp;lt; divs.snapshotLength; i++) 
{
	divs.snapshotItem(i).style.display = 'none';
}

if (REARRANGE_NAV_BAR) 
{
	var cal = document.getElementById('mothertable').firstChild.firstChild;
	var nav = cal.firstChild.cloneNode(true);
	
	if (QUICK_ADD_AT_TOP) 
	{
		var quickadd = document.getElementById('open-quick-add').parentNode;
		var t1 = document.getElementById('t1');
		var t1tr = t1.firstChild.firstChild;
		t1tr.appendChild(quickadd);
	}
	
	cal.removeChild(cal.firstChild);
	cal = cal.parentNode;
	
	var tr = document.createElement('tr');
	
	tr.appendChild(nav);
	cal.appendChild(tr);
}

if (HIDE_PRINT) 
{
	document.getElementById('printlink').parentNode.removeChild(document.getElementById('printlink'));
}

&lt;/pre&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 13 Jan 2008 14:07:58 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15062:61557</guid>
      <author>The Dot</author>
      <link>http://userscripts.org/posts/61557</link>
    </item>
    <item>
      <title>Archived Comments, replied by mattkolb</title>
      <description>&lt;p&gt;This version adds a link to quick add to the top of the page so that it is more easily accessible.&lt;/p&gt;

&lt;p&gt;// ==UserScript==
&lt;br /&gt;// @name           Enhance Google Cal
&lt;br /&gt;// @namespace      &lt;a href=&quot;http://exstodot.blogspot.com&quot;&gt;http://exstodot.blogspot.com&lt;/a&gt;
&lt;br /&gt;// @description    Cleans up Google Calendar. To be used with Enhance Google script
&lt;br /&gt;// @include        &lt;a href=&quot;http://www.google.com/calendar/&quot;&gt;http://www.google.com/calendar/&lt;/a&gt;*
&lt;br /&gt;// @include        &lt;a href=&quot;https://www.google.com/calendar/&quot;&gt;https://www.google.com/calendar/&lt;/a&gt;*
&lt;br /&gt;// ==/UserScript==&lt;/p&gt;

&lt;p&gt;//-------------------------------------- USER OPTIONS ------------------------------------------//
&lt;br /&gt;// 1 means YES, 0 means NO&lt;/p&gt;

&lt;p&gt;const HIDE_PRINT=1;
&lt;br /&gt;const REARRANGE_NAV_BAR=1;
&lt;br /&gt;const QUICK_ADD_AT_TOP=1;&lt;/p&gt;

&lt;p&gt;//-------------------------------------- DONT CHANGE ANYTHING BELOW THIS LINE ------------------------------------------//&lt;/p&gt;

&lt;p&gt;var divs=document.evaluate('/html/body/div', document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
&lt;br /&gt;for(var i=0;i&amp;lt;divs&gt;&lt;br /&gt;{
&lt;br /&gt;	divs.snapshotItem(i).style.display='none';
&lt;br /&gt;}&lt;/p&gt;

&lt;p&gt;if(REARRANGE_NAV_BAR)
&lt;br /&gt;{
&lt;br /&gt;	var cal=document.getElementById('mothertable').firstChild.firstChild;
&lt;br /&gt;	var nav=cal.firstChild.cloneNode(true);&lt;/p&gt;

&lt;p&gt;	if (QUICK_ADD_AT_TOP) {
&lt;br /&gt;		var quickadd = document.getElementById('open-quick-add').parentNode;
&lt;br /&gt;		var t1 = document.getElementById('t1');
&lt;br /&gt;		var t1tr = t1.firstChild.firstChild;
&lt;br /&gt;		t1tr.appendChild(quickadd);
&lt;br /&gt;	}
&lt;br /&gt;	
&lt;br /&gt;	cal.removeChild(cal.firstChild);
&lt;br /&gt;	cal=cal.parentNode;&lt;/p&gt;

&lt;p&gt;	var tr=document.createElement('tr');&lt;/p&gt;

&lt;p&gt;	tr.appendChild(nav);
&lt;br /&gt;	cal.appendChild(tr);
&lt;br /&gt;}&lt;/p&gt;

&lt;p&gt;if(HIDE_PRINT)
&lt;br /&gt;{
&lt;br /&gt;	document.getElementById('printlink').parentNode.removeChild(document.getElementById('printlink'));
&lt;br /&gt;}&lt;/p&gt;</description>
      <pubDate>Fri, 11 Jan 2008 15:44:29 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15062:61558</guid>
      <author>mattkolb</author>
      <link>http://userscripts.org/posts/61558</link>
    </item>
    <item>
      <title>Archived Comments, replied by The Dot</title>
      <description>&lt;p&gt;Updated to work with &lt;a href=&quot;https://.&quot;&gt;https://.&lt;/a&gt;..&lt;/p&gt;</description>
      <pubDate>Sun, 11 Nov 2007 04:03:23 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15062:61559</guid>
      <author>The Dot</author>
      <link>http://userscripts.org/posts/61559</link>
    </item>
    <item>
      <title>Archived Comments, replied by James Deibele</title>
      <description>&lt;p&gt;Thanks for writing this.  It seems to me that the script should include the https:// link - &lt;a href=&quot;https://www.google.com/calendar/render&quot;&gt;https://www.google.com/calendar/render&lt;/a&gt; - by default.&lt;/p&gt;

&lt;p&gt;I use the &quot;better *&quot; collection from LifeHack and it makes it easy to switch everything to https://&lt;/p&gt;

&lt;p&gt;(Yeah, if somebody breaks into Google, I'm screwed but at least it keeps wireless connections secure.)&lt;/p&gt;</description>
      <pubDate>Sat, 10 Nov 2007 16:46:23 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15062:61560</guid>
      <author>James Deibele</author>
      <link>http://userscripts.org/posts/61560</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jesse Andrews</title>
      <description>&lt;p&gt;The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)&lt;/p&gt;</description>
      <pubDate>Wed, 17 Nov 2004 01:05:26 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:15062:61554</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/posts/61554</link>
    </item>
  </channel>
</rss>
