<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: MyMacWorld Calendar, Outlook Compatible</title>
	<link>http://www.brunerd.com/blog/2008/01/09/mymacworld-calendar-outlook-compatible/</link>
	<description>things i think of</description>
	<pubDate>Wed, 09 Jul 2008 12:01:36 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>

	<item>
		<title>By: Rick</title>
		<link>http://www.brunerd.com/blog/2008/01/09/mymacworld-calendar-outlook-compatible/#comment-275</link>
		<author>Rick</author>
		<pubDate>Fri, 11 Jan 2008 00:52:01 +0000</pubDate>
		<guid>http://www.brunerd.com/blog/2008/01/09/mymacworld-calendar-outlook-compatible/#comment-275</guid>
					<description>Very very coooool! But understand MS: they want both CR and LF to make sure both operations are performed. ;)</description>
		<content:encoded><![CDATA[<p>Very very coooool! But understand MS: they want both CR and LF to make sure both operations are performed. <img src='http://www.brunerd.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Don Mahoney</title>
		<link>http://www.brunerd.com/blog/2008/01/09/mymacworld-calendar-outlook-compatible/#comment-276</link>
		<author>Don Mahoney</author>
		<pubDate>Fri, 11 Jan 2008 15:00:09 +0000</pubDate>
		<guid>http://www.brunerd.com/blog/2008/01/09/mymacworld-calendar-outlook-compatible/#comment-276</guid>
					<description>Thanks for the post - which brought this situation to our attention.  We routinely monitor blogs and other communications in order to stay on top of user experiences (and the opinions they express!), and to quickly catch and address things that may inadvertently fall through the cracks.  This was unfortunately one of them.  My personal regrets and apologies to those negatively affected by this one.

Armed with the benefit of this poster's legwork, we've pushed through a build which fixes this problem.  You should find that your MyMacWorld portal will now properly support iCal.

Thanks again for the post - and for those converging on MacWorld... have a great show!

Don Mahoney
COO - BDMetrics, Inc.</description>
		<content:encoded><![CDATA[<p>Thanks for the post - which brought this situation to our attention.  We routinely monitor blogs and other communications in order to stay on top of user experiences (and the opinions they express!), and to quickly catch and address things that may inadvertently fall through the cracks.  This was unfortunately one of them.  My personal regrets and apologies to those negatively affected by this one.</p>
<p>Armed with the benefit of this poster&#8217;s legwork, we&#8217;ve pushed through a build which fixes this problem.  You should find that your MyMacWorld portal will now properly support iCal.</p>
<p>Thanks again for the post - and for those converging on MacWorld&#8230; have a great show!</p>
<p>Don Mahoney<br />
COO - BDMetrics, Inc.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Sean</title>
		<link>http://www.brunerd.com/blog/2008/01/09/mymacworld-calendar-outlook-compatible/#comment-277</link>
		<author>Sean</author>
		<pubDate>Fri, 11 Jan 2008 18:04:40 +0000</pubDate>
		<guid>http://www.brunerd.com/blog/2008/01/09/mymacworld-calendar-outlook-compatible/#comment-277</guid>
					<description>I find it a little strange that a site that caters to Maccies is run on an ASP platform.</description>
		<content:encoded><![CDATA[<p>I find it a little strange that a site that caters to Maccies is run on an ASP platform.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: phasorburn</title>
		<link>http://www.brunerd.com/blog/2008/01/09/mymacworld-calendar-outlook-compatible/#comment-278</link>
		<author>phasorburn</author>
		<pubDate>Fri, 11 Jan 2008 18:52:13 +0000</pubDate>
		<guid>http://www.brunerd.com/blog/2008/01/09/mymacworld-calendar-outlook-compatible/#comment-278</guid>
					<description>Isn't perl a little heavy for this?  How about a purpose built stream editor, and keeping it in one process instead of using two and pipes?

Something more like this :

sed -E -e 's/VERSION:1.0/VERSION:2.0/g' ShowCalendar.ics  -e 's/(\r\n&#124;\n&#124;\r)/\r\n/g' &#62; newShowCalendar.ics

Just call me an unix hack that never learned that new fangled perl :-)</description>
		<content:encoded><![CDATA[<p>Isn&#8217;t perl a little heavy for this?  How about a purpose built stream editor, and keeping it in one process instead of using two and pipes?</p>
<p>Something more like this :</p>
<p>sed -E -e &#8217;s/VERSION:1.0/VERSION:2.0/g&#8217; ShowCalendar.ics  -e &#8217;s/(\r\n|\n|\r)/\r\n/g&#8217; &gt; newShowCalendar.ics</p>
<p>Just call me an unix hack that never learned that new fangled perl <img src='http://www.brunerd.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: phasorburn</title>
		<link>http://www.brunerd.com/blog/2008/01/09/mymacworld-calendar-outlook-compatible/#comment-279</link>
		<author>phasorburn</author>
		<pubDate>Fri, 11 Jan 2008 18:54:13 +0000</pubDate>
		<guid>http://www.brunerd.com/blog/2008/01/09/mymacworld-calendar-outlook-compatible/#comment-279</guid>
					<description>craptastic, I  misfired on the copy/paste, had the original .ics in the wrong spot.

sed -E -e ’s/VERSION:1.0/VERSION:2.0/g’ -e ’s/(\r\n&#124;\n&#124;\r)/\r\n/g’ ShowCalendar.ics &#62; newShowCalendar.ics</description>
		<content:encoded><![CDATA[<p>craptastic, I  misfired on the copy/paste, had the original .ics in the wrong spot.</p>
<p>sed -E -e ’s/VERSION:1.0/VERSION:2.0/g’ -e ’s/(\r\n|\n|\r)/\r\n/g’ ShowCalendar.ics &gt; newShowCalendar.ics</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: brunerd</title>
		<link>http://www.brunerd.com/blog/2008/01/09/mymacworld-calendar-outlook-compatible/#comment-282</link>
		<author>brunerd</author>
		<pubDate>Sat, 12 Jan 2008 16:08:04 +0000</pubDate>
		<guid>http://www.brunerd.com/blog/2008/01/09/mymacworld-calendar-outlook-compatible/#comment-282</guid>
					<description>Thanks, for everyone's contributions. It was late and I just wanted the darn thing to work, and I had some false starts in awk and sed, so when I found the perl regexp example I just piped them together... I had tried multiple -e expressions in perl but it didn't like that, so thanks for the tip. And thank you BD Metrics for correcting the misstep, nice to see such a fast response I honestly didn't who you guys were or if you'd be responsive, so I cooked up a fix, glad it was a temporary one. Thanks all, glad to have more comments than fake pharma spam :D</description>
		<content:encoded><![CDATA[<p>Thanks, for everyone&#8217;s contributions. It was late and I just wanted the darn thing to work, and I had some false starts in awk and sed, so when I found the perl regexp example I just piped them together&#8230; I had tried multiple -e expressions in perl but it didn&#8217;t like that, so thanks for the tip. And thank you BD Metrics for correcting the misstep, nice to see such a fast response I honestly didn&#8217;t who you guys were or if you&#8217;d be responsive, so I cooked up a fix, glad it was a temporary one. Thanks all, glad to have more comments than fake pharma spam <img src='http://www.brunerd.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
</channel>
</rss>
