<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
  <title>aC forum: iCalendar to Google Calendar</title>
  <link>http://www.activecollab.com/forums/topic/1219/</link>
  <description>Recent posts on topic: iCalendar to Google Calendar</description>
  <dc:language>en-us</dc:language>
  <pubDate>Sun, 12 Oct 2008 06:03:58 UTC</pubDate>
  
  <item>
    <link>http://www.activecollab.com/forums/post/10614/#post10614</link>
    <guid>http://www.activecollab.com/forums/post/10614/#post10614</guid>
    <title>Post #18 by ideamarket</title>
    <dc:creator>ideamarket</dc:creator>
    <description><![CDATA[<p>Is this tutorial still relevant to the latest version of AC? I'm not seeing any links to iCalendar anywhere that I can then import into Google Calendar.</p>]]></description>
    <pubDate>Thu, 08 Nov 2007 16:31:01 UTC</pubDate>
  </item>
  <item>
    <link>http://www.activecollab.com/forums/post/9076/#post9076</link>
    <guid>http://www.activecollab.com/forums/post/9076/#post9076</guid>
    <title>Post #17 by rsleggett</title>
    <dc:creator>rsleggett</dc:creator>
    <description><![CDATA[<p>Link update http://www.focusedtutorials.com/misc/sync-your-activecollab-with-your-google-calendar/</p>]]></description>
    <pubDate>Mon, 01 Oct 2007 12:39:50 UTC</pubDate>
  </item>
  <item>
    <link>http://www.activecollab.com/forums/post/7715/#post7715</link>
    <guid>http://www.activecollab.com/forums/post/7715/#post7715</guid>
    <title>Post #16 by wobster.de</title>
    <dc:creator>wobster.de</dc:creator>
    <description><![CDATA[<p>Thanks for that great pice of code - both the big part and the smal part ;)<br />
Just wanted to let you know that the tutorial links seems to be dead - maybe you could supply the tutorial again?<br />
http://www.focusedtutorials.com/2006/12/29/sync-your-activecollab-with-your-google-calendar/<br />
<br />
<br />
greetings <br />
Sebastian</p>]]></description>
    <pubDate>Sat, 12 May 2007 21:19:14 UTC</pubDate>
  </item>
  <item>
    <link>http://www.activecollab.com/forums/post/5895/#post5895</link>
    <guid>http://www.activecollab.com/forums/post/5895/#post5895</guid>
    <title>Post #15 by tjsingleton</title>
    <dc:creator>tjsingleton</dc:creator>
    <description><![CDATA[<p>My bad. I forgot that I added a method to the model! <br />
<pre name="code" class="html">    /**
    * Return active milestones that are active
    *
    * @return array
    */
    static function getActiveMilestones() {
      return self::findAll(array(
        'conditions' =&gt; array('`completed_on` = ?', EMPTY_DATETIME),
        'order' =&gt; '`due_date`'
      )); // findAll
    } // getActiveMilestones</pre><br />
<br />
That was added to models/project_milestones/ProjectMilestones.class.php</p>]]></description>
    <pubDate>Fri, 12 Jan 2007 04:32:35 UTC</pubDate>
  </item>
  <item>
    <link>http://www.activecollab.com/forums/post/5732/#post5732</link>
    <guid>http://www.activecollab.com/forums/post/5732/#post5732</guid>
    <title>Post #14 by tjsingleton</title>
    <dc:creator>tjsingleton</dc:creator>
    <description><![CDATA[<p>Did anything change between .7.0 and .7.1 that would have effected this? for some odd reason it stopped working after I upgraded to .7.1 last night. I haven't had time to debug it yet, but was just curious. </p>]]></description>
    <pubDate>Wed, 03 Jan 2007 19:51:21 UTC</pubDate>
  </item>
  <item>
    <link>http://www.activecollab.com/forums/post/5723/#post5723</link>
    <guid>http://www.activecollab.com/forums/post/5723/#post5723</guid>
    <title>Post #13 by Ilija Studen</title>
    <dc:creator>Ilija Studen</dc:creator>
    <description><![CDATA[<p><div class="postQuote"><blockquote><div class="quoteAuthor">tjsingleton:</div>You make this too easy!</blockquote></div><br />
<br />
Things are not always that easy, but I try to make them as easy to use as possible :)</p>]]></description>
    <pubDate>Wed, 03 Jan 2007 06:47:25 UTC</pubDate>
  </item>
  <item>
    <link>http://www.activecollab.com/forums/post/5722/#post5722</link>
    <guid>http://www.activecollab.com/forums/post/5722/#post5722</guid>
    <title>Post #12 by tjsingleton</title>
    <dc:creator>tjsingleton</dc:creator>
    <description><![CDATA[<p>You make this too easy!<br />
<br />
Code with administrator check added.<br />
<pre name="code" class="html">
    /**
    * Show calendar for active milestones
    *
    * @param void
    * @return null
    */
    function active_ical() {
      $this-&gt;setLayout('ical');
      
      $user = $this-&gt;loginUserByToken();
      if(!($user instanceof User)) {
        header('HTTP/1.0 404 Not Found');
        die();
      } // if
      
      if(!$user-&gt;isAdministrator()) {
        header('HTTP/1.0 404 Not Found');
        die();      
      } // if
      
      $this-&gt;renderCalendar($user, lang('active milestones'), ProjectMilestones::getActiveMilestones());
    } // active_ical
</pre></p>]]></description>
    <pubDate>Wed, 03 Jan 2007 06:26:08 UTC</pubDate>
  </item>
  <item>
    <link>http://www.activecollab.com/forums/post/5660/#post5660</link>
    <guid>http://www.activecollab.com/forums/post/5660/#post5660</guid>
    <title>Post #11 by Ilija Studen</title>
    <dc:creator>Ilija Studen</dc:creator>
    <description><![CDATA[<p>Easy: just use <a href="http://code.activecollab.com/trac/browser/branches/REL0.7/application/models/users/User.class.php#L160" target="_blank" rel="nofollow">User::isAdministrator()</a> method to do the check.</p>]]></description>
    <pubDate>Sat, 30 Dec 2006 11:04:16 UTC</pubDate>
  </item>
  <item>
    <link>http://www.activecollab.com/forums/post/5655/#post5655</link>
    <guid>http://www.activecollab.com/forums/post/5655/#post5655</guid>
    <title>Post #10 by tjsingleton</title>
    <dc:creator>tjsingleton</dc:creator>
    <description><![CDATA[<p>One area I could improve would be to check if user is an administrator, to limit access to the feed.</p>]]></description>
    <pubDate>Sat, 30 Dec 2006 01:15:05 UTC</pubDate>
  </item>
  <item>
    <link>http://www.activecollab.com/forums/post/5654/#post5654</link>
    <guid>http://www.activecollab.com/forums/post/5654/#post5654</guid>
    <title>Post #9 by Ilija Studen</title>
    <dc:creator>Ilija Studen</dc:creator>
    <description><![CDATA[<p>Thanks for the tutorial!</p>]]></description>
    <pubDate>Fri, 29 Dec 2006 22:57:55 UTC</pubDate>
  </item>
</channel>
</rss>