<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Molten Core</title>
	<atom:link href="http://mcore.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mcore.wordpress.com</link>
	<description>Commenting Sitecore...</description>
	<lastBuildDate>Wed, 09 Dec 2009 18:09:02 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Sitecores Lucene integration by Jens Mikkelsen</title>
		<link>http://mcore.wordpress.com/2008/11/05/sitecores-lucene-integration/#comment-295</link>
		<dc:creator>Jens Mikkelsen</dc:creator>
		<pubDate>Wed, 09 Dec 2009 18:09:02 +0000</pubDate>
		<guid isPermaLink="false">http://mcore.wordpress.com/?p=65#comment-295</guid>
		<description>Hi John,

I also replied you on the SDN, but here is the link to the 3 part articleseries on LearnSitecore again: http://learnsitecore.cmsuniverse.net//Developers/Articles/2009/06/LuceneQuery3.aspx</description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>I also replied you on the SDN, but here is the link to the 3 part articleseries on LearnSitecore again: <a href="http://learnsitecore.cmsuniverse.net//Developers/Articles/2009/06/LuceneQuery3.aspx" rel="nofollow">http://learnsitecore.cmsuniverse.net//Developers/Articles/2009/06/LuceneQuery3.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dedicated image server and Sitecore by Jens Mikkelsen</title>
		<link>http://mcore.wordpress.com/2009/11/02/dedicated-image-server-and-sitecore/#comment-294</link>
		<dc:creator>Jens Mikkelsen</dc:creator>
		<pubDate>Wed, 09 Dec 2009 17:52:56 +0000</pubDate>
		<guid isPermaLink="false">http://mcore.wordpress.com/?p=202#comment-294</guid>
		<description>Hi Max,

I just tried it out. The problem is that the ExpandLinks processor is called just before the GetMediaField processor. Therefore it won&#039;t expand the links correctly. You can switch the two processors around:

        
        

Also you need to replacen /~/media in the imagefields, so the code for replacing the links should look like this instead:

Regex regex = new Regex(&quot;/?~/media/&quot;);
return regex.Replace(baseExpands, ImageUrl);

Hope that makes sense... And sorry for the late reply :)</description>
		<content:encoded><![CDATA[<p>Hi Max,</p>
<p>I just tried it out. The problem is that the ExpandLinks processor is called just before the GetMediaField processor. Therefore it won&#8217;t expand the links correctly. You can switch the two processors around:</p>
<p>Also you need to replacen /~/media in the imagefields, so the code for replacing the links should look like this instead:</p>
<p>Regex regex = new Regex(&#8220;/?~/media/&#8221;);<br />
return regex.Replace(baseExpands, ImageUrl);</p>
<p>Hope that makes sense&#8230; And sorry for the late reply <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sitecores Lucene integration by John Bubriski</title>
		<link>http://mcore.wordpress.com/2008/11/05/sitecores-lucene-integration/#comment-293</link>
		<dc:creator>John Bubriski</dc:creator>
		<pubDate>Tue, 08 Dec 2009 21:30:32 +0000</pubDate>
		<guid isPermaLink="false">http://mcore.wordpress.com/?p=65#comment-293</guid>
		<description>How exactly would you save the path in a field?  Right now I am trying to limit the index to only items under /sitecore/content/ but the only way I find to do it is to filter the hit results in my for loop.

How can I filter the index exactly?  I don&#039;t know how to add the path field as an indexed field in the web.config.

Thanks.</description>
		<content:encoded><![CDATA[<p>How exactly would you save the path in a field?  Right now I am trying to limit the index to only items under /sitecore/content/ but the only way I find to do it is to filter the hit results in my for loop.</p>
<p>How can I filter the index exactly?  I don&#8217;t know how to add the path field as an indexed field in the web.config.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dedicated image server and Sitecore by Max</title>
		<link>http://mcore.wordpress.com/2009/11/02/dedicated-image-server-and-sitecore/#comment-291</link>
		<dc:creator>Max</dc:creator>
		<pubDate>Wed, 02 Dec 2009 15:08:47 +0000</pubDate>
		<guid isPermaLink="false">http://mcore.wordpress.com/?p=202#comment-291</guid>
		<description>Would that be overridden in the CustomLinkProvider class or elsewhere?
Thanks,
Max.</description>
		<content:encoded><![CDATA[<p>Would that be overridden in the CustomLinkProvider class or elsewhere?<br />
Thanks,<br />
Max.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dedicated image server and Sitecore by Jens Mikkelsen</title>
		<link>http://mcore.wordpress.com/2009/11/02/dedicated-image-server-and-sitecore/#comment-290</link>
		<dc:creator>Jens Mikkelsen</dc:creator>
		<pubDate>Wed, 02 Dec 2009 14:45:22 +0000</pubDate>
		<guid isPermaLink="false">http://mcore.wordpress.com/?p=202#comment-290</guid>
		<description>Ahh, right you are! I only tested it for the rich text field. 

With out having tested it yet, I guess you&#039;ll have to override the renderField processor GetImageFieldValue as well. I&#039;ll try it out this weekend and update the post. 

Let me know if you get it to work.

Cheers
Jens</description>
		<content:encoded><![CDATA[<p>Ahh, right you are! I only tested it for the rich text field. </p>
<p>With out having tested it yet, I guess you&#8217;ll have to override the renderField processor GetImageFieldValue as well. I&#8217;ll try it out this weekend and update the post. </p>
<p>Let me know if you get it to work.</p>
<p>Cheers<br />
Jens</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dedicated image server and Sitecore by Max S.</title>
		<link>http://mcore.wordpress.com/2009/11/02/dedicated-image-server-and-sitecore/#comment-289</link>
		<dc:creator>Max S.</dc:creator>
		<pubDate>Wed, 02 Dec 2009 14:20:04 +0000</pubDate>
		<guid isPermaLink="false">http://mcore.wordpress.com/?p=202#comment-289</guid>
		<description>6.1.  
Nothing custom.  
Alex Shyba tried this as well and told me that this works for rich text fields, but not for Image fields.</description>
		<content:encoded><![CDATA[<p>6.1.<br />
Nothing custom.<br />
Alex Shyba tried this as well and told me that this works for rich text fields, but not for Image fields.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dedicated image server and Sitecore by Jens Mikkelsen</title>
		<link>http://mcore.wordpress.com/2009/11/02/dedicated-image-server-and-sitecore/#comment-288</link>
		<dc:creator>Jens Mikkelsen</dc:creator>
		<pubDate>Wed, 02 Dec 2009 12:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://mcore.wordpress.com/?p=202#comment-288</guid>
		<description>Hi Max,

What version of Sitecore are you using? Do you have any other custom pipelines or something of the sort?

Cheers
Jens</description>
		<content:encoded><![CDATA[<p>Hi Max,</p>
<p>What version of Sitecore are you using? Do you have any other custom pipelines or something of the sort?</p>
<p>Cheers<br />
Jens</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dedicated image server and Sitecore by Max S.</title>
		<link>http://mcore.wordpress.com/2009/11/02/dedicated-image-server-and-sitecore/#comment-287</link>
		<dc:creator>Max S.</dc:creator>
		<pubDate>Tue, 01 Dec 2009 22:21:56 +0000</pubDate>
		<guid isPermaLink="false">http://mcore.wordpress.com/?p=202#comment-287</guid>
		<description>Hi Jens,

I implemented this and can trap the entering and executing of the ExpandDynamicLinks method when I attach to the w3wp.exe process, but it has no effect - the image still generates locally, whether I append my server name or even return an empty string.

I followed all of the directions verbatim.  Any idea what&#039;s wrong?

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi Jens,</p>
<p>I implemented this and can trap the entering and executing of the ExpandDynamicLinks method when I attach to the w3wp.exe process, but it has no effect &#8211; the image still generates locally, whether I append my server name or even return an empty string.</p>
<p>I followed all of the directions verbatim.  Any idea what&#8217;s wrong?</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Will dynamics in .NET 4 change the way we do Sitecore? by briancaos</title>
		<link>http://mcore.wordpress.com/2009/11/12/will-dynamics-in-net-4-change-the-way-we-do-sitecore/#comment-284</link>
		<dc:creator>briancaos</dc:creator>
		<pubDate>Fri, 13 Nov 2009 08:23:24 +0000</pubDate>
		<guid isPermaLink="false">http://mcore.wordpress.com/?p=208#comment-284</guid>
		<description>I share the worries with Alex that the average developer will not be able to keep up with the new features of .NET. I myself is still new to LINQ, and link is old news now.

But that souldn&#039;t keep Sitecore from adopting the dynamic language support, as long as you keep the old interfaces as well.
I am looking forward to seeing a DynamicObject implementation in the next release of Sitecore :-)</description>
		<content:encoded><![CDATA[<p>I share the worries with Alex that the average developer will not be able to keep up with the new features of .NET. I myself is still new to LINQ, and link is old news now.</p>
<p>But that souldn&#8217;t keep Sitecore from adopting the dynamic language support, as long as you keep the old interfaces as well.<br />
I am looking forward to seeing a DynamicObject implementation in the next release of Sitecore <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Will dynamics in .NET 4 change the way we do Sitecore? by Eldblom</title>
		<link>http://mcore.wordpress.com/2009/11/12/will-dynamics-in-net-4-change-the-way-we-do-sitecore/#comment-283</link>
		<dc:creator>Eldblom</dc:creator>
		<pubDate>Fri, 13 Nov 2009 08:22:02 +0000</pubDate>
		<guid isPermaLink="false">http://mcore.wordpress.com/?p=208#comment-283</guid>
		<description>Anders: thanks, ill try to keep up the good work;-)
Lars &amp; Alex: good to hear that we can expect something like this from Sitecore. The point i&#039;m trying to make here is that we are all doing &quot;late-binding&quot; today, specifying fields in strings. The dynamics in .net 4, as described in the example, will not give change the Sitecore code actually running - therefore there will be no performance penalty aside from the one given from using the dynamic keyword. This penalty will most likely be very very minimal, since its mostly about a few extra method calls.
The cool feature - if implementing IDynamicMetaObjectProvider in the Sitecore Item class - is that the class can be used both as a static class (as today, preserving backwards compatibility) AND as a dynamic type. In my view, it really solves the adoption problem, as it does not force the developer.</description>
		<content:encoded><![CDATA[<p>Anders: thanks, ill try to keep up the good work;-)<br />
Lars &amp; Alex: good to hear that we can expect something like this from Sitecore. The point i&#8217;m trying to make here is that we are all doing &#8220;late-binding&#8221; today, specifying fields in strings. The dynamics in .net 4, as described in the example, will not give change the Sitecore code actually running &#8211; therefore there will be no performance penalty aside from the one given from using the dynamic keyword. This penalty will most likely be very very minimal, since its mostly about a few extra method calls.<br />
The cool feature &#8211; if implementing IDynamicMetaObjectProvider in the Sitecore Item class &#8211; is that the class can be used both as a static class (as today, preserving backwards compatibility) AND as a dynamic type. In my view, it really solves the adoption problem, as it does not force the developer.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
