How to check SiteCore's serialisation tree into TFS - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T10:39:35Z http://stackoverflow.com/feeds/question/1030856 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1030856/how-to-check-sitecores-serialisation-tree-into-tfs 0 How to check SiteCore's serialisation tree into TFS Glenn Slaven 2009-06-23T06:11:40Z 2009-06-23T17:01:35Z <p>We're using Sitecore and to share the content between developers we're serialising the content tree to the filesystem then checking this into source control. This worked fine in the last project that used SVN, but this new project is using TFS.</p> <p>Unfortunately TFS won't accept paths that have a dollar sign in them, ie</p> <pre><code>\serialization\master\sitecore\templates\Branches\Calendar\Agenda View Settings\$name.item </code></pre> <p>and this is a very common file name for Sitecore's serialisation structure. Is there any way around this? Can Sitecore be changed to not put the $ in front of the file names or do we have to switch to SVN?</p> http://stackoverflow.com/questions/1030856/how-to-check-sitecores-serialisation-tree-into-tfs/1031057#1031057 0 Answer by AakashM for How to check SiteCore's serialisation tree into TFS AakashM 2009-06-23T07:13:47Z 2009-06-23T07:13:47Z <p>Is the workaround suggested <a href="http://msdn.microsoft.com/en-us/library/aa980550.aspx#SourceControl" rel="nofollow">here (in the 'Community Content' at the bottom of the page)</a> any use to you?</p> http://stackoverflow.com/questions/1030856/how-to-check-sitecores-serialisation-tree-into-tfs/1033855#1033855 0 Answer by Mark Cassidy for How to check SiteCore's serialisation tree into TFS Mark Cassidy 2009-06-23T16:57:37Z 2009-06-23T16:57:37Z <p>Hi Glenn,</p> <p>I did some digging around. It's doable, however not immediately straight forward.</p> <p>When serializing a tree, Sitecore invokes: Sitecore.Shell.Framework.Commands.Serialization.DumpTreeCommand. This is defined in /App_Config/Commands.config. When de-serializing, the equivalent .LoadTreeCommand is invoked.</p> <p>What these commands do, is little more than invoking:</p> <pre><code>protected override void Dump(Item item) { Sitecore.Data.Serialization.Manager.DumpTree(item); } </code></pre> <p>And unfortunately, to get to the functionality you need to override, it looks like you are going to have to 1) override the command in commands.config, and then create your own Serialization Manager (inheriting from Sitecore's).</p> <p>I'm not entirely sure how easy this would be, since most of the methods in this class are static members. The method you would need to override/re-implement is this one:</p> <pre><code>public static void DumpItem(string path, Item item) { Assert.ArgumentNotNullOrEmpty(path, "path"); Assert.ArgumentNotNull(item, "item"); Directory.CreateDirectory(Path.GetDirectoryName(path)); using (new SecurityDisabler()) { TextWriter writer = new StreamWriter(File.Create(path)); try { ItemSynchronization.WriteItem(item, writer); } catch { } writer.Close(); } } </code></pre> <p>The filename, as you can see, is based entirely on the Item's path. The assumption is, you could perhaps get away with something like .Replace("$", "!dollartoken!") and implement the reverse in your de-serializer.</p> <p>Seems a lot of work though, unfortunately.</p> http://stackoverflow.com/questions/1030856/how-to-check-sitecores-serialisation-tree-into-tfs/1033879#1033879 0 Answer by Mark Cassidy for How to check SiteCore's serialisation tree into TFS Mark Cassidy 2009-06-23T17:01:35Z 2009-06-23T17:01:35Z <p>Oh, and one more thing.</p> <p><a href="http://www.hhogdev.com/products/team-development-for-sitecore.aspx" rel="nofollow">http://www.hhogdev.com/products/team-development-for-sitecore.aspx</a></p> <p>I've not had the chance to test this tool myself yet, but it looks interesting and could potentially be the answer to your source control challenges.</p>