<?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: Adding Events to Secondary Google Calendars</title>
	<atom:link href="http://67central.com/bc/2008/09/01/adding-events-to-secondary-google-calendars/feed/" rel="self" type="application/rss+xml" />
	<link>http://67central.com/bc/2008/09/01/adding-events-to-secondary-google-calendars/</link>
	<description>Exploring Calendars, Time Lines, Timekeeping and Scheduling Tools</description>
	<lastBuildDate>Thu, 15 Mar 2012 17:31:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Alex</title>
		<link>http://67central.com/bc/2008/09/01/adding-events-to-secondary-google-calendars/comment-page-1/#comment-46</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Fri, 15 May 2009 20:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://67central.com/bc/?p=20#comment-46</guid>
		<description>Thanks for the post!  Really helped

this is what I had to do when using the java/groovy client.  It may not be the best way, but it works.

&lt;pre&gt;
      def list = calendar.getEditLink().getHref().split(&quot;/&quot;)
      URL postURL = new URL(&quot;http://www.google.com/calendar/feeds/&quot; + list[list.length-1].replace(&quot;%40&quot;,&quot;@&quot;) + &quot;/private/full&quot;);
&lt;/pre&gt;
may be a bit late for hugues93. but others might find it useful.</description>
		<content:encoded><![CDATA[<p>Thanks for the post!  Really helped</p>
<p>this is what I had to do when using the java/groovy client.  It may not be the best way, but it works.</p>
<pre>
      def list = calendar.getEditLink().getHref().split("/")
      URL postURL = new URL("http://www.google.com/calendar/feeds/" + list[list.length-1].replace("%40","@") + "/private/full");
</pre>
<p>may be a bit late for hugues93. but others might find it useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yesteray</title>
		<link>http://67central.com/bc/2008/09/01/adding-events-to-secondary-google-calendars/comment-page-1/#comment-36</link>
		<dc:creator>yesteray</dc:creator>
		<pubDate>Sat, 13 Dec 2008 05:34:35 +0000</pubDate>
		<guid isPermaLink="false">http://67central.com/bc/?p=20#comment-36</guid>
		<description>hugeus93,

A CalendarEntry object has a getEditLink method which returns a Link. Link has an href method.

Put those together, and you should be able to do something like:

calendar.getEditLink().href to the the URI that you would post to to add an event to the calendar that you have created.

Ray</description>
		<content:encoded><![CDATA[<p>hugeus93,</p>
<p>A CalendarEntry object has a getEditLink method which returns a Link. Link has an href method.</p>
<p>Put those together, and you should be able to do something like:</p>
<p>calendar.getEditLink().href to the the URI that you would post to to add an event to the calendar that you have created.</p>
<p>Ray</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hugues93</title>
		<link>http://67central.com/bc/2008/09/01/adding-events-to-secondary-google-calendars/comment-page-1/#comment-35</link>
		<dc:creator>hugues93</dc:creator>
		<pubDate>Fri, 12 Dec 2008 07:02:24 +0000</pubDate>
		<guid isPermaLink="false">http://67central.com/bc/?p=20#comment-35</guid>
		<description>Thanks!
But i&#039;m writing in Java, and I heard that there is a method with getHref().
For exemple, i create a calendar by this way:

private static CalendarEntry createCalendar(CalendarService service) throws IOException, ServiceException {
		    System.out.println(&quot;Creating a secondary calendar&quot;);
		
		    // Create the calendar
		    CalendarEntry calendar = new CalendarEntry();
		    calendar.setTitle(new PlainTextConstruct(&quot;My secondary calendar&quot;));
		    calendar.setSummary(new PlainTextConstruct(&quot;this is my project&quot;));
		
		    // Insert the calendar
		    return service.insert(owncalendarsFeedUrl, calendar);
		   }

And i don&#039;t know if i can do &quot;calendar.getHref()&quot;, or something like this. (i know that calendar.getHref() isn&#039;t working, but it&#039;s the idea :p)

Thanks again!!</description>
		<content:encoded><![CDATA[<p>Thanks!<br />
But i&#8217;m writing in Java, and I heard that there is a method with getHref().<br />
For exemple, i create a calendar by this way:</p>
<p>private static CalendarEntry createCalendar(CalendarService service) throws IOException, ServiceException {<br />
		    System.out.println(&#8220;Creating a secondary calendar&#8221;);</p>
<p>		    // Create the calendar<br />
		    CalendarEntry calendar = new CalendarEntry();<br />
		    calendar.setTitle(new PlainTextConstruct(&#8220;My secondary calendar&#8221;));<br />
		    calendar.setSummary(new PlainTextConstruct(&#8220;this is my project&#8221;));</p>
<p>		    // Insert the calendar<br />
		    return service.insert(owncalendarsFeedUrl, calendar);<br />
		   }</p>
<p>And i don&#8217;t know if i can do &#8220;calendar.getHref()&#8221;, or something like this. (i know that calendar.getHref() isn&#8217;t working, but it&#8217;s the idea :p)</p>
<p>Thanks again!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boundary Conditions &#187; Blog Archive &#187; Adding Events to Secondary Google Calendars in Python</title>
		<link>http://67central.com/bc/2008/09/01/adding-events-to-secondary-google-calendars/comment-page-1/#comment-26</link>
		<dc:creator>Boundary Conditions &#187; Blog Archive &#187; Adding Events to Secondary Google Calendars in Python</dc:creator>
		<pubDate>Sun, 28 Sep 2008 21:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://67central.com/bc/?p=20#comment-26</guid>
		<description>[...] writing, I assumed that I would need to refer any reader to the introductory post of this series on adding events to secondary calendars. Depending on your skill level and [...]</description>
		<content:encoded><![CDATA[<p>[...] writing, I assumed that I would need to refer any reader to the introductory post of this series on adding events to secondary calendars. Depending on your skill level and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph</title>
		<link>http://67central.com/bc/2008/09/01/adding-events-to-secondary-google-calendars/comment-page-1/#comment-25</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Fri, 19 Sep 2008 15:41:53 +0000</pubDate>
		<guid isPermaLink="false">http://67central.com/bc/?p=20#comment-25</guid>
		<description>Looks good, I am looking forward to the Python version.</description>
		<content:encoded><![CDATA[<p>Looks good, I am looking forward to the Python version.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

