<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>uComponents</title><link>http://ucomponents.codeplex.com/project/feeds/rss</link><description>A collaborative project for creating components for Umbraco including data types, XSLT extensions, controls and more.</description><item><title>Source code checked in, #2577098426fe</title><link>http://ucomponents.codeplex.com/SourceControl/changeset/changes/2577098426fe</link><description>Upgraded UmbracoCms.Core to v6.0.5</description><author>leekelleher</author><pubDate>Wed, 22 May 2013 09:49:57 GMT</pubDate><guid isPermaLink="false">Source code checked in, #2577098426fe 20130522094957A</guid></item><item><title>Commented Unassigned: uComponents.Legacy.dll breaking DynamicNodeList extension methods? [14832]</title><link>http://ucomponents.codeplex.com/workitem/14832</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve recently upgraded an Umbraco 4.7.2 site to 4.11.8, upgrading uComponents in the process.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m getting the following error in one of my macros &amp;#40;unfortunately the one that sits on every page&amp;#41;...&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;umbracoMacro&amp;#9;Error Loading Razor Script &amp;#40;file&amp;#58; Footer&amp;#41; &amp;#39;umbraco.MacroEngines.DynamicNodeList&amp;#39; does not contain a definition for &amp;#39;Split&amp;#39;    at CallSite.Target&amp;#40;Closure , CallSite , Object , Char &amp;#41;&lt;br /&gt;&amp;#35;  at ASP._Page_macroScripts_Footer_cshtml.Execute&amp;#40;&amp;#41; in d&amp;#58;&amp;#92;websites&amp;#92;site&amp;#92;Staging&amp;#92;wwwroot&amp;#92;macroScripts&amp;#92;Footer.cshtml&amp;#58;line 10&lt;br /&gt;  at System.Web.WebPages.WebPageBase.ExecutePageHierarchy&amp;#40;&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPage.ExecutePageHierarchy&amp;#40;IEnumerable&amp;#96;1 executors&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPage.ExecutePageHierarchy&amp;#40;&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPageBase.ExecutePageHierarchy&amp;#40;WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage&amp;#41;&lt;br /&gt;  at umbraco.MacroEngines.RazorMacroEngine.ExecuteRazor&amp;#40;MacroModel macro, INode currentPage&amp;#41;&lt;br /&gt;  at umbraco.MacroEngines.RazorMacroEngine.Execute&amp;#40;MacroModel macro, INode currentPage&amp;#41;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;If I remove the uComponents.Legacy.dll this error goes away... but I need it included to support a legacy control.&lt;br /&gt;&lt;br /&gt;Any idea why the DLL would be causing the extension method to break&amp;#63;&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Paul&lt;br /&gt;Comments: Hi guys,&amp;#10;&amp;#10;Thanks for the quick response. &amp;#10;&amp;#10;The line that&amp;#39;s causing issues is &amp;#34;&amp;#64;foreach&amp;#40;var idStr in footer.FooterLinks.Split&amp;#40;&amp;#39;,&amp;#39;&amp;#41;&amp;#41;&amp;#34; below, where FooterLinks is a DynamicNodeList and the control itself is a &amp;#34;uComponents-Legacy&amp;#58; Multi-Node Tree Picker&amp;#34;. &amp;#10;&amp;#10;Is it possible that the Multi-Node Tree Picker control itself has been updated between uComponents versions&amp;#63; Possibly from a control that supplied a comma-separated list of ID&amp;#39;s to one that supplies a list of nodes&amp;#63; Would explain why the .split no longer works&amp;#33;&amp;#10;&amp;#10;&amp;#96;&amp;#96;&amp;#96;&amp;#10;&amp;#64;using umbraco.MacroEngines&amp;#10;&amp;#64;inherits umbraco.MacroEngines.DynamicNodeContext&amp;#10;&amp;#10;&amp;#64;&amp;#123;&amp;#10;    var footer &amp;#61; Model.AncestorOrSelf&amp;#40;&amp;#34;Homepage&amp;#34;&amp;#41;.Descendants&amp;#40;&amp;#34;Footer&amp;#34;&amp;#41;&amp;#91;0&amp;#93;&amp;#59;&amp;#10;&amp;#125;&amp;#10;&amp;#10;&amp;#64;foreach&amp;#40;var idStr in footer.FooterLinks.Split&amp;#40;&amp;#39;,&amp;#39;&amp;#41;&amp;#41;&amp;#10;&amp;#123;&amp;#10;    var footerSection &amp;#61; Model.NodeById&amp;#40;int.Parse&amp;#40;idStr&amp;#41;&amp;#41;&amp;#59;&amp;#10;    &amp;#60;div class&amp;#61;&amp;#34;four-col&amp;#34;&amp;#62;&amp;#10;        &amp;#60;a href&amp;#61;&amp;#34;&amp;#64;footerSection.Url&amp;#34;&amp;#62;&amp;#60;h4 class&amp;#61;&amp;#34;title-bold-upper-white&amp;#34;&amp;#62;&amp;#64;footerSection.Name&amp;#60;&amp;#47;h4&amp;#62;&amp;#60;&amp;#47;a&amp;#62;&amp;#10;        &amp;#60;ul&amp;#62;&amp;#10;            &amp;#64;foreach &amp;#40;var item in &amp;#64;footerSection.Children.Where&amp;#40;&amp;#34;Visible&amp;#34;&amp;#41;&amp;#41;&amp;#10;            &amp;#123;&amp;#10;                &amp;#60;li&amp;#62;&amp;#60;a href&amp;#61;&amp;#34;&amp;#64;item.Url&amp;#34;&amp;#62;&amp;#64;item.Name&amp;#60;&amp;#47;a&amp;#62;&amp;#60;&amp;#47;li&amp;#62;&amp;#10;            &amp;#125;&amp;#10;            &amp;#64;if &amp;#40;footerSection.NodeTypeAlias &amp;#61;&amp;#61; &amp;#34;About&amp;#34;&amp;#41;&amp;#10;            &amp;#123;&amp;#10;                &amp;#60;li&amp;#62;&amp;#60;a href&amp;#61;&amp;#34;&amp;#47;blogs&amp;#47;news&amp;#47;&amp;#34;&amp;#62;News&amp;#60;&amp;#47;a&amp;#62;&amp;#60;&amp;#47;li&amp;#62;&amp;#10;            &amp;#125;&amp;#10;        &amp;#60;&amp;#47;ul&amp;#62;&amp;#10;    &amp;#60;&amp;#47;div&amp;#62;&amp;#10;&amp;#125;&amp;#10;&amp;#96;&amp;#96;&amp;#96;</description><author>paulaik</author><pubDate>Wed, 22 May 2013 08:32:43 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: uComponents.Legacy.dll breaking DynamicNodeList extension methods? [14832] 20130522083243A</guid></item><item><title>Commented Unassigned: uComponents.Legacy.dll breaking DynamicNodeList extension methods? [14832]</title><link>http://ucomponents.codeplex.com/workitem/14832</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve recently upgraded an Umbraco 4.7.2 site to 4.11.8, upgrading uComponents in the process.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m getting the following error in one of my macros &amp;#40;unfortunately the one that sits on every page&amp;#41;...&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;umbracoMacro&amp;#9;Error Loading Razor Script &amp;#40;file&amp;#58; Footer&amp;#41; &amp;#39;umbraco.MacroEngines.DynamicNodeList&amp;#39; does not contain a definition for &amp;#39;Split&amp;#39;    at CallSite.Target&amp;#40;Closure , CallSite , Object , Char &amp;#41;&lt;br /&gt;&amp;#35;  at ASP._Page_macroScripts_Footer_cshtml.Execute&amp;#40;&amp;#41; in d&amp;#58;&amp;#92;websites&amp;#92;site&amp;#92;Staging&amp;#92;wwwroot&amp;#92;macroScripts&amp;#92;Footer.cshtml&amp;#58;line 10&lt;br /&gt;  at System.Web.WebPages.WebPageBase.ExecutePageHierarchy&amp;#40;&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPage.ExecutePageHierarchy&amp;#40;IEnumerable&amp;#96;1 executors&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPage.ExecutePageHierarchy&amp;#40;&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPageBase.ExecutePageHierarchy&amp;#40;WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage&amp;#41;&lt;br /&gt;  at umbraco.MacroEngines.RazorMacroEngine.ExecuteRazor&amp;#40;MacroModel macro, INode currentPage&amp;#41;&lt;br /&gt;  at umbraco.MacroEngines.RazorMacroEngine.Execute&amp;#40;MacroModel macro, INode currentPage&amp;#41;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;If I remove the uComponents.Legacy.dll this error goes away... but I need it included to support a legacy control.&lt;br /&gt;&lt;br /&gt;Any idea why the DLL would be causing the extension method to break&amp;#63;&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Paul&lt;br /&gt;Comments: Hi Paul,&amp;#10;&amp;#10;There were major changes to Umbraco in the v4.8 upgrade that heavily impacted uComponents.&amp;#10;See here for more details&amp;#58; http&amp;#58;&amp;#47;&amp;#47;j.mp&amp;#47;umb48-breaks-ucomponents&amp;#10;&amp;#10;I found a similar post on the forum, maybe that could shed some light&amp;#63;&amp;#10;http&amp;#58;&amp;#47;&amp;#47;our.umbraco.org&amp;#47;forum&amp;#47;getting-started&amp;#47;installing-umbraco&amp;#47;36149-Upgrade-from-472-to-48-problem&amp;#10;&amp;#10;My gut feeling is the same as &amp;#64;Azzlack&amp;#39;s - it&amp;#39;s probably a reference to the &amp;#96;using&amp;#96; statements &amp;#40;related to &amp;#96;uQuery&amp;#96; maybe&amp;#63;&amp;#41; Difficult to know without seeing the razor script.&amp;#10;&amp;#10;Cheers, Lee.</description><author>leekelleher</author><pubDate>Wed, 22 May 2013 08:08:57 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: uComponents.Legacy.dll breaking DynamicNodeList extension methods? [14832] 20130522080857A</guid></item><item><title>Commented Unassigned: uComponents.Legacy.dll breaking DynamicNodeList extension methods? [14832]</title><link>http://ucomponents.codeplex.com/workitem/14832</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve recently upgraded an Umbraco 4.7.2 site to 4.11.8, upgrading uComponents in the process.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m getting the following error in one of my macros &amp;#40;unfortunately the one that sits on every page&amp;#41;...&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;umbracoMacro&amp;#9;Error Loading Razor Script &amp;#40;file&amp;#58; Footer&amp;#41; &amp;#39;umbraco.MacroEngines.DynamicNodeList&amp;#39; does not contain a definition for &amp;#39;Split&amp;#39;    at CallSite.Target&amp;#40;Closure , CallSite , Object , Char &amp;#41;&lt;br /&gt;&amp;#35;  at ASP._Page_macroScripts_Footer_cshtml.Execute&amp;#40;&amp;#41; in d&amp;#58;&amp;#92;websites&amp;#92;site&amp;#92;Staging&amp;#92;wwwroot&amp;#92;macroScripts&amp;#92;Footer.cshtml&amp;#58;line 10&lt;br /&gt;  at System.Web.WebPages.WebPageBase.ExecutePageHierarchy&amp;#40;&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPage.ExecutePageHierarchy&amp;#40;IEnumerable&amp;#96;1 executors&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPage.ExecutePageHierarchy&amp;#40;&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPageBase.ExecutePageHierarchy&amp;#40;WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage&amp;#41;&lt;br /&gt;  at umbraco.MacroEngines.RazorMacroEngine.ExecuteRazor&amp;#40;MacroModel macro, INode currentPage&amp;#41;&lt;br /&gt;  at umbraco.MacroEngines.RazorMacroEngine.Execute&amp;#40;MacroModel macro, INode currentPage&amp;#41;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;If I remove the uComponents.Legacy.dll this error goes away... but I need it included to support a legacy control.&lt;br /&gt;&lt;br /&gt;Any idea why the DLL would be causing the extension method to break&amp;#63;&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Paul&lt;br /&gt;Comments: Could you post the razor script&amp;#63; The first idea that pops into my head is that the function you are using has been moved to another dll, and the &amp;#34;using&amp;#34; statement needs to be updated.</description><author>Azzlack</author><pubDate>Tue, 21 May 2013 22:37:51 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: uComponents.Legacy.dll breaking DynamicNodeList extension methods? [14832] 20130521103751P</guid></item><item><title>Edited Unassigned: uComponents.Legacy.dll breaking DynamicNodeList extension methods? [14832]</title><link>http://ucomponents.codeplex.com/workitem/14832</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve recently upgraded an Umbraco 4.7.2 site to 4.11.8, upgrading uComponents in the process.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m getting the following error in one of my macros &amp;#40;unfortunately the one that sits on every page&amp;#41;...&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;umbracoMacro&amp;#9;Error Loading Razor Script &amp;#40;file&amp;#58; Footer&amp;#41; &amp;#39;umbraco.MacroEngines.DynamicNodeList&amp;#39; does not contain a definition for &amp;#39;Split&amp;#39;    at CallSite.Target&amp;#40;Closure , CallSite , Object , Char &amp;#41;&lt;br /&gt;&amp;#35;  at ASP._Page_macroScripts_Footer_cshtml.Execute&amp;#40;&amp;#41; in d&amp;#58;&amp;#92;websites&amp;#92;site&amp;#92;Staging&amp;#92;wwwroot&amp;#92;macroScripts&amp;#92;Footer.cshtml&amp;#58;line 10&lt;br /&gt;  at System.Web.WebPages.WebPageBase.ExecutePageHierarchy&amp;#40;&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPage.ExecutePageHierarchy&amp;#40;IEnumerable&amp;#96;1 executors&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPage.ExecutePageHierarchy&amp;#40;&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPageBase.ExecutePageHierarchy&amp;#40;WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage&amp;#41;&lt;br /&gt;  at umbraco.MacroEngines.RazorMacroEngine.ExecuteRazor&amp;#40;MacroModel macro, INode currentPage&amp;#41;&lt;br /&gt;  at umbraco.MacroEngines.RazorMacroEngine.Execute&amp;#40;MacroModel macro, INode currentPage&amp;#41;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;If I remove the uComponents.Legacy.dll this error goes away... but I need it included to support a legacy control.&lt;br /&gt;&lt;br /&gt;Any idea why the DLL would be causing the extension method to break&amp;#63;&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Paul&lt;br /&gt;</description><author>paulaik</author><pubDate>Tue, 21 May 2013 16:09:49 GMT</pubDate><guid isPermaLink="false">Edited Unassigned: uComponents.Legacy.dll breaking DynamicNodeList extension methods? [14832] 20130521040949P</guid></item><item><title>Created Unassigned: uComponents.Legacy.dll breaking DynamicNodeList extension methods? [14832]</title><link>http://ucomponents.codeplex.com/workitem/14832</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve recently upgraded an Umbraco 4.7.2 site to 4.11.8, upgrading uComponents in the process.&lt;br /&gt;&lt;br /&gt;I&amp;#39;m getting the following error in one of my macros &amp;#40;unfortunately the one that sits on every page&amp;#41;...&lt;br /&gt;&lt;br /&gt;umbracoMacro&amp;#9;Error Loading Razor Script &amp;#40;file&amp;#58; Footer&amp;#41; &amp;#39;umbraco.MacroEngines.DynamicNodeList&amp;#39; does not contain a definition for &amp;#39;Split&amp;#39;    at CallSite.Target&amp;#40;Closure , CallSite , Object , Char &amp;#41;&lt;br /&gt;&amp;#35;  at ASP._Page_macroScripts_Footer_cshtml.Execute&amp;#40;&amp;#41; in d&amp;#58;&amp;#92;websites&amp;#92;site&amp;#92;Staging&amp;#92;wwwroot&amp;#92;macroScripts&amp;#92;Footer.cshtml&amp;#58;line 10&lt;br /&gt;  at System.Web.WebPages.WebPageBase.ExecutePageHierarchy&amp;#40;&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPage.ExecutePageHierarchy&amp;#40;IEnumerable&amp;#96;1 executors&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPage.ExecutePageHierarchy&amp;#40;&amp;#41;&lt;br /&gt;  at System.Web.WebPages.WebPageBase.ExecutePageHierarchy&amp;#40;WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage&amp;#41;&lt;br /&gt;  at umbraco.MacroEngines.RazorMacroEngine.ExecuteRazor&amp;#40;MacroModel macro, INode currentPage&amp;#41;&lt;br /&gt;  at umbraco.MacroEngines.RazorMacroEngine.Execute&amp;#40;MacroModel macro, INode currentPage&amp;#41;&lt;br /&gt;&lt;br /&gt;If I remove the uComponents.Legacy.dll this error goes away... but I need it included to support a legacy control.&lt;br /&gt;&lt;br /&gt;Any idea why the DLL would be causing the extension method to break&amp;#63;&lt;br /&gt;&lt;br /&gt;Cheers,&lt;br /&gt;&lt;br /&gt;Paul&lt;br /&gt;</description><author>paulaik</author><pubDate>Tue, 21 May 2013 16:08:56 GMT</pubDate><guid isPermaLink="false">Created Unassigned: uComponents.Legacy.dll breaking DynamicNodeList extension methods? [14832] 20130521040856P</guid></item><item><title>Commented Issue: Multi Url Picker - Content Node selections [14824]</title><link>http://ucomponents.codeplex.com/workitem/14824</link><description>If I have a Multi Url Picker and pick items using the CMS content picker, then save&amp;#43;publish one of these picked content items with a new url, then this doesn&amp;#39;t trigger the Multi Url Picker items to have their Urls updated.&lt;br /&gt;&lt;br /&gt;has this been reported before&amp;#63;&lt;br /&gt;&lt;br /&gt;thanks&lt;br /&gt;&lt;br /&gt;Comments: &amp;#64;shearer3000 - Yes, the pull request has been merged in. We&amp;#39;ll put out a v5.4.2 release very soon &amp;#40;aiming for the end of this week&amp;#41;</description><author>leekelleher</author><pubDate>Tue, 21 May 2013 08:15:27 GMT</pubDate><guid isPermaLink="false">Commented Issue: Multi Url Picker - Content Node selections [14824] 20130521081527A</guid></item><item><title>Commented Issue: Multi Url Picker - Content Node selections [14824]</title><link>http://ucomponents.codeplex.com/workitem/14824</link><description>If I have a Multi Url Picker and pick items using the CMS content picker, then save&amp;#43;publish one of these picked content items with a new url, then this doesn&amp;#39;t trigger the Multi Url Picker items to have their Urls updated.&lt;br /&gt;&lt;br /&gt;has this been reported before&amp;#63;&lt;br /&gt;&lt;br /&gt;thanks&lt;br /&gt;&lt;br /&gt;Comments: hi guys - was this pull-request approved yet&amp;#63; thanks</description><author>shearer3000</author><pubDate>Mon, 20 May 2013 23:35:02 GMT</pubDate><guid isPermaLink="false">Commented Issue: Multi Url Picker - Content Node selections [14824] 20130520113502P</guid></item><item><title>Source code checked in, #784f0b468113</title><link>http://ucomponents.codeplex.com/SourceControl/changeset/changes/784f0b468113</link><description>Merge</description><author>diachedelic</author><pubDate>Fri, 17 May 2013 23:43:20 GMT</pubDate><guid isPermaLink="false">Source code checked in, #784f0b468113 20130517114320P</guid></item><item><title>Source code checked in, #8053437602d1</title><link>http://ucomponents.codeplex.com/SourceControl/changeset/changes/8053437602d1</link><description>Merge</description><author>diachedelic</author><pubDate>Mon, 13 May 2013 16:21:54 GMT</pubDate><guid isPermaLink="false">Source code checked in, #8053437602d1 20130513042154P</guid></item><item><title>Source code checked in, #25f776511ade</title><link>http://ucomponents.codeplex.com/SourceControl/changeset/changes/25f776511ade</link><description>Fixed Multi-URL picker issue &amp;#35;14819 by merging adam_jenkin&amp;#39;s pull request&amp;#10;https&amp;#58;&amp;#47;&amp;#47;ucomponents.codeplex.com&amp;#47;SourceControl&amp;#47;network&amp;#47;forks&amp;#47;adam_jenkin&amp;#47;urlpickerchangesforcontentnodes&amp;#47;contribution&amp;#47;4315</description><author>diachedelic</author><pubDate>Mon, 13 May 2013 13:22:47 GMT</pubDate><guid isPermaLink="false">Source code checked in, #25f776511ade 20130513012247P</guid></item><item><title>Commented Issue: Umapper throws error in Umbraco 4.11.6 and umbraco 6+ [14822]</title><link>http://ucomponents.codeplex.com/workitem/14822</link><description>In Umbraco 4.11.6 and umbraco 6&amp;#43; &lt;br /&gt;&lt;br /&gt;uMapper.CreateMap&amp;#60;HomePage&amp;#62;&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;falis with Reflection.AmbiguousMatchException&lt;br /&gt;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;&lt;br /&gt;uComponents.Mapping.Property.PropertyMapperBase..ctor&amp;#40;NodeMapper nodeMapper, PropertyInfo destinationProperty&amp;#41;&lt;br /&gt;   in uComponents.Mapping.Property.BasicPropertyMapper..ctor&amp;#40;Func&amp;#96;2 mapping, Type sourcePropertyType, NodeMapper nodeMapper, PropertyInfo destinationProperty, String sourcePropertyAlias&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMapper..ctor&amp;#40;NodeMappingEngine engine, Type destinationType, DocumentType sourceDocumentType&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMappingEngine.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;String documentTypeAlias&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMappingEngine.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   in uComponents.Mapping.uMapper.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   in ProjectName.MyStartupHandler.OnApplicationStarted&amp;#40;UmbracoApplication httpApplication, ApplicationContext applicationContext&amp;#41; in c&amp;#58;&amp;#92;Work&amp;#92;ProjectName&amp;#92;MyStartupHandler.cs&lt;br /&gt;Comments: Well ... to get started helping the open source&amp;#40;which I have used for many years now&amp;#41;, this seems to be a simple job to start helping.&amp;#10;&amp;#10;This solution seems to work for me.&amp;#10;&amp;#10;Please, add any comments on the issue. Want to give something back to the Open Source now.</description><author>syska</author><pubDate>Mon, 13 May 2013 09:10:50 GMT</pubDate><guid isPermaLink="false">Commented Issue: Umapper throws error in Umbraco 4.11.6 and umbraco 6+ [14822] 20130513091050A</guid></item><item><title>Commented Issue: Umapper throws error in Umbraco 4.11.6 and umbraco 6+ [14822]</title><link>http://ucomponents.codeplex.com/workitem/14822</link><description>In Umbraco 4.11.6 and umbraco 6&amp;#43; &lt;br /&gt;&lt;br /&gt;uMapper.CreateMap&amp;#60;HomePage&amp;#62;&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;falis with Reflection.AmbiguousMatchException&lt;br /&gt;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;&lt;br /&gt;uComponents.Mapping.Property.PropertyMapperBase..ctor&amp;#40;NodeMapper nodeMapper, PropertyInfo destinationProperty&amp;#41;&lt;br /&gt;   in uComponents.Mapping.Property.BasicPropertyMapper..ctor&amp;#40;Func&amp;#96;2 mapping, Type sourcePropertyType, NodeMapper nodeMapper, PropertyInfo destinationProperty, String sourcePropertyAlias&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMapper..ctor&amp;#40;NodeMappingEngine engine, Type destinationType, DocumentType sourceDocumentType&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMappingEngine.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;String documentTypeAlias&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMappingEngine.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   in uComponents.Mapping.uMapper.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   in ProjectName.MyStartupHandler.OnApplicationStarted&amp;#40;UmbracoApplication httpApplication, ApplicationContext applicationContext&amp;#41; in c&amp;#58;&amp;#92;Work&amp;#92;ProjectName&amp;#92;MyStartupHandler.cs&lt;br /&gt;Comments: Pull request send ... https&amp;#58;&amp;#47;&amp;#47;ucomponents.codeplex.com&amp;#47;SourceControl&amp;#47;network&amp;#47;forks&amp;#47;syska&amp;#47;uComponents14822&amp;#47;contribution&amp;#47;4707</description><author>syska</author><pubDate>Mon, 13 May 2013 08:58:19 GMT</pubDate><guid isPermaLink="false">Commented Issue: Umapper throws error in Umbraco 4.11.6 and umbraco 6+ [14822] 20130513085819A</guid></item><item><title>Commented Issue: Umapper throws error in Umbraco 4.11.6 and umbraco 6+ [14822]</title><link>http://ucomponents.codeplex.com/workitem/14822</link><description>In Umbraco 4.11.6 and umbraco 6&amp;#43; &lt;br /&gt;&lt;br /&gt;uMapper.CreateMap&amp;#60;HomePage&amp;#62;&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;falis with Reflection.AmbiguousMatchException&lt;br /&gt;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;&lt;br /&gt;uComponents.Mapping.Property.PropertyMapperBase..ctor&amp;#40;NodeMapper nodeMapper, PropertyInfo destinationProperty&amp;#41;&lt;br /&gt;   in uComponents.Mapping.Property.BasicPropertyMapper..ctor&amp;#40;Func&amp;#96;2 mapping, Type sourcePropertyType, NodeMapper nodeMapper, PropertyInfo destinationProperty, String sourcePropertyAlias&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMapper..ctor&amp;#40;NodeMappingEngine engine, Type destinationType, DocumentType sourceDocumentType&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMappingEngine.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;String documentTypeAlias&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMappingEngine.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   in uComponents.Mapping.uMapper.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   in ProjectName.MyStartupHandler.OnApplicationStarted&amp;#40;UmbracoApplication httpApplication, ApplicationContext applicationContext&amp;#41; in c&amp;#58;&amp;#92;Work&amp;#92;ProjectName&amp;#92;MyStartupHandler.cs&lt;br /&gt;Comments: Hey syska, I&amp;#39;ll fix this today or tomorrow, don&amp;#39;t worry about doing a pull request.&amp;#10;&amp;#10;Thanks for the bug and solution&amp;#33;&amp;#10;&amp;#10;James</description><author>diachedelic</author><pubDate>Mon, 13 May 2013 08:52:51 GMT</pubDate><guid isPermaLink="false">Commented Issue: Umapper throws error in Umbraco 4.11.6 and umbraco 6+ [14822] 20130513085251A</guid></item><item><title>Commented Issue: Umapper throws error in Umbraco 4.11.6 and umbraco 6+ [14822]</title><link>http://ucomponents.codeplex.com/workitem/14822</link><description>In Umbraco 4.11.6 and umbraco 6&amp;#43; &lt;br /&gt;&lt;br /&gt;uMapper.CreateMap&amp;#60;HomePage&amp;#62;&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;falis with Reflection.AmbiguousMatchException&lt;br /&gt;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;&lt;br /&gt;uComponents.Mapping.Property.PropertyMapperBase..ctor&amp;#40;NodeMapper nodeMapper, PropertyInfo destinationProperty&amp;#41;&lt;br /&gt;   in uComponents.Mapping.Property.BasicPropertyMapper..ctor&amp;#40;Func&amp;#96;2 mapping, Type sourcePropertyType, NodeMapper nodeMapper, PropertyInfo destinationProperty, String sourcePropertyAlias&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMapper..ctor&amp;#40;NodeMappingEngine engine, Type destinationType, DocumentType sourceDocumentType&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMappingEngine.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;String documentTypeAlias&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMappingEngine.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   in uComponents.Mapping.uMapper.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   in ProjectName.MyStartupHandler.OnApplicationStarted&amp;#40;UmbracoApplication httpApplication, ApplicationContext applicationContext&amp;#41; in c&amp;#58;&amp;#92;Work&amp;#92;ProjectName&amp;#92;MyStartupHandler.cs&lt;br /&gt;Comments: Changing line 17 in PropertyMapperBase.cs&amp;#10;from&amp;#10;private readonly static MethodInfo _getNodePropertyMethod &amp;#61; typeof&amp;#40;NodeExtensions&amp;#41;.GetMethod&amp;#40;&amp;#34;GetProperty&amp;#34;&amp;#41;&amp;#59;&amp;#10;to&amp;#10;private readonly static MethodInfo _getNodePropertyMethod &amp;#61; typeof&amp;#40;NodeExtensions&amp;#41;.GetMethod&amp;#40;&amp;#34;GetProperty&amp;#34;, new Type&amp;#91;&amp;#93; &amp;#123; typeof&amp;#40;Node&amp;#41;, typeof&amp;#40;string&amp;#41; &amp;#125;&amp;#41;&amp;#59;&amp;#10;&amp;#10;This should fix the problem. I will try and make a pull request tomorrow.</description><author>syska</author><pubDate>Mon, 13 May 2013 00:42:23 GMT</pubDate><guid isPermaLink="false">Commented Issue: Umapper throws error in Umbraco 4.11.6 and umbraco 6+ [14822] 20130513124223A</guid></item><item><title>Commented Issue: Umapper throws error in Umbraco 4.11.6 and umbraco 6+ [14822]</title><link>http://ucomponents.codeplex.com/workitem/14822</link><description>In Umbraco 4.11.6 and umbraco 6&amp;#43; &lt;br /&gt;&lt;br /&gt;uMapper.CreateMap&amp;#60;HomePage&amp;#62;&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;falis with Reflection.AmbiguousMatchException&lt;br /&gt;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;&lt;br /&gt;uComponents.Mapping.Property.PropertyMapperBase..ctor&amp;#40;NodeMapper nodeMapper, PropertyInfo destinationProperty&amp;#41;&lt;br /&gt;   in uComponents.Mapping.Property.BasicPropertyMapper..ctor&amp;#40;Func&amp;#96;2 mapping, Type sourcePropertyType, NodeMapper nodeMapper, PropertyInfo destinationProperty, String sourcePropertyAlias&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMapper..ctor&amp;#40;NodeMappingEngine engine, Type destinationType, DocumentType sourceDocumentType&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMappingEngine.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;String documentTypeAlias&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMappingEngine.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   in uComponents.Mapping.uMapper.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   in ProjectName.MyStartupHandler.OnApplicationStarted&amp;#40;UmbracoApplication httpApplication, ApplicationContext applicationContext&amp;#41; in c&amp;#58;&amp;#92;Work&amp;#92;ProjectName&amp;#92;MyStartupHandler.cs&lt;br /&gt;Comments: private readonly static MethodInfo _getNodePropertyMethod &amp;#61; typeof&amp;#40;NodeExtensions&amp;#41;.GetMethod&amp;#40;&amp;#34;GetProperty&amp;#34;&amp;#41;&amp;#59;&amp;#10;&amp;#10;Its trying to figure out to use&amp;#58; INode or Node. The &amp;#34;AmbiguousMatchException&amp;#34; part.&amp;#10;&amp;#10;Not that strong in reflection stuff ... so really no idea yet how to fix it.</description><author>syska</author><pubDate>Mon, 13 May 2013 00:23:25 GMT</pubDate><guid isPermaLink="false">Commented Issue: Umapper throws error in Umbraco 4.11.6 and umbraco 6+ [14822] 20130513122325A</guid></item><item><title>Commented Issue: Umapper throws error in Umbraco 4.11.6 and umbraco 6+ [14822]</title><link>http://ucomponents.codeplex.com/workitem/14822</link><description>In Umbraco 4.11.6 and umbraco 6&amp;#43; &lt;br /&gt;&lt;br /&gt;uMapper.CreateMap&amp;#60;HomePage&amp;#62;&amp;#40;&amp;#41;&lt;br /&gt;&lt;br /&gt;falis with Reflection.AmbiguousMatchException&lt;br /&gt;&lt;br /&gt;StackTrace&amp;#58;&lt;br /&gt;&lt;br /&gt;uComponents.Mapping.Property.PropertyMapperBase..ctor&amp;#40;NodeMapper nodeMapper, PropertyInfo destinationProperty&amp;#41;&lt;br /&gt;   in uComponents.Mapping.Property.BasicPropertyMapper..ctor&amp;#40;Func&amp;#96;2 mapping, Type sourcePropertyType, NodeMapper nodeMapper, PropertyInfo destinationProperty, String sourcePropertyAlias&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMapper..ctor&amp;#40;NodeMappingEngine engine, Type destinationType, DocumentType sourceDocumentType&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMappingEngine.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;String documentTypeAlias&amp;#41;&lt;br /&gt;   in uComponents.Mapping.NodeMappingEngine.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   in uComponents.Mapping.uMapper.CreateMap&amp;#91;TDestination&amp;#93;&amp;#40;&amp;#41;&lt;br /&gt;   in ProjectName.MyStartupHandler.OnApplicationStarted&amp;#40;UmbracoApplication httpApplication, ApplicationContext applicationContext&amp;#41; in c&amp;#58;&amp;#92;Work&amp;#92;ProjectName&amp;#92;MyStartupHandler.cs&lt;br /&gt;Comments: Same issue here ... &amp;#10;&amp;#10;mvh</description><author>syska</author><pubDate>Sun, 12 May 2013 23:22:16 GMT</pubDate><guid isPermaLink="false">Commented Issue: Umapper throws error in Umbraco 4.11.6 and umbraco 6+ [14822] 20130512112216P</guid></item><item><title>Closed Unassigned: DataType Grid: new Add do lost previous Add [14831]</title><link>http://ucomponents.codeplex.com/workitem/14831</link><description>The DataType Grid has this issue.&lt;br /&gt;I add a new row&amp;#58; click to Add button, type text, then click to Add to confirm.&lt;br /&gt;I look the new row inside the grid.&lt;br /&gt;Without click to save button, I try to add a new row clicking on Add button. I look a page refresh, then the previous row is lost.&lt;br /&gt;&lt;br /&gt;I can resolve the issue clicking Save button for every change.&lt;br /&gt;Comments: Duplicate&amp;#58; https&amp;#58;&amp;#47;&amp;#47;ucomponents.codeplex.com&amp;#47;workitem&amp;#47;14830</description><author>Azzlack</author><pubDate>Mon, 06 May 2013 12:53:19 GMT</pubDate><guid isPermaLink="false">Closed Unassigned: DataType Grid: new Add do lost previous Add [14831] 20130506125319P</guid></item><item><title>Created Unassigned: DataType Grid: new Add do lost previous Add [14831]</title><link>http://ucomponents.codeplex.com/workitem/14831</link><description>The DataType Grid has this issue.&lt;br /&gt;I add a new row&amp;#58; click to Add button, type text, then click to Add to confirm.&lt;br /&gt;I look the new row inside the grid.&lt;br /&gt;Without click to save button, I try to add a new row clicking on Add button. I look a page refresh, then the previous row is lost.&lt;br /&gt;&lt;br /&gt;I can resolve the issue clicking Save button for every change.&lt;br /&gt;</description><author>fspezi</author><pubDate>Mon, 06 May 2013 09:22:06 GMT</pubDate><guid isPermaLink="false">Created Unassigned: DataType Grid: new Add do lost previous Add [14831] 20130506092206A</guid></item><item><title>Commented Unassigned: DataTypeGrid does not persist changes between two Save or Publish [14830]</title><link>http://ucomponents.codeplex.com/workitem/14830</link><description>I creates a DataTypeGrid &amp;#40;DTG&amp;#41; datatype with two column&amp;#58; one textstring and one ContentPicker.&lt;br /&gt;I add a property of this new DTG type to a DocumentType.&lt;br /&gt;&lt;br /&gt;I want to edit a content that has this DTG type, but I can add only one row to the DTG property without Save or Publish the content, because it forgets the previous change.&lt;br /&gt;&lt;br /&gt;For example&amp;#58;&lt;br /&gt;&amp;#42; I add a new row&lt;br /&gt;&amp;#42; I click the add button. In this case the previously added row disappears&lt;br /&gt;&lt;br /&gt;Another scenario&amp;#58;&lt;br /&gt;&amp;#42; I add a new row&lt;br /&gt;&amp;#42; I click the Save button &amp;#40;on the content&amp;#41;&lt;br /&gt;&amp;#42; I click the add button. In this case my change does not disappear&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;uComponents version&amp;#58; 5.4.989.54899&lt;br /&gt;Umbraco version&amp;#58; 6.0.4&lt;br /&gt;Sql server&amp;#58; 2008 R2&lt;br /&gt;Comments: It is scheduled for release around the same time as Umbraco 6.1.</description><author>Azzlack</author><pubDate>Mon, 06 May 2013 07:17:38 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: DataTypeGrid does not persist changes between two Save or Publish [14830] 20130506071738A</guid></item></channel></rss>