<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Shared Points for SharePoint : Codeplex</title><link>http://blogs.msdn.com/mcsnoiwb/archive/tags/Codeplex/default.aspx</link><description>Tags: Codeplex</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Create Datasheet view missing</title><link>http://blogs.msdn.com/mcsnoiwb/archive/2009/03/19/create-datasheet-view-missing.aspx</link><pubDate>Thu, 19 Mar 2009 22:06:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9490900</guid><dc:creator>Stian Kirkeberg</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/mcsnoiwb/comments/9490900.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcsnoiwb/commentrss.aspx?PostID=9490900</wfw:commentRss><description>&lt;P&gt;The other the I got asked why the “Datasheet view” option was laking from “Create a new view”. It turned out to be a more troublesome way to find the solution than first expected.&lt;/P&gt;
&lt;P&gt;First I checked the users rights on the site collection, but that really did not give any answers. &lt;/P&gt;
&lt;P&gt;Secondly, I checked this on a virtual dev machine, with (more or less) the same configuration and features: No repro. Create datasheet view was available as it should be. So what could be the difference between these machines?&lt;/P&gt;
&lt;P&gt;Thirdly, I compared site features and site collection features, but this neither give any findings.&lt;/P&gt;
&lt;P&gt;OK, let’s see what happens in the ViewType.aspx which display this page: &lt;/P&gt;
&lt;P&gt;fHideGridViewOption = ListViewWebPart.RestrictedTemplateType(spList) || !spList.DoesUserHavePermissions(SPBasePermissions.UseClientIntegration);&lt;/P&gt;
&lt;P&gt;… and some more… but nothing really telling me why it might be hidden.&lt;/P&gt;
&lt;P&gt;So I asked and looked for suggestions elsewhere: A lot of search hits and problem related to the DataSheet view is client integration, that was a dead end here. From one client I could reproduce the problem on one server and not on another. And the problem is not viewing the view.&lt;/P&gt;
&lt;P&gt;Finally, I tried to open an existing datasheet view on the server with the problem. This gave the following error:&lt;/P&gt;
&lt;P&gt;"The standard view of your list is being displayed because your site configuration does not support the Datasheet" &lt;/P&gt;
&lt;P&gt;“Site configuration” – it should have said web application. Central Admin - application management - authentication providers - &amp;lt;your provider&amp;gt; – scroll to the bottom:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.msdn.com/blogfiles/mcsnoiwb/WindowsLiveWriter/ffe44c25c7f4_9EAC/image_2.png" mce_href="http://blogs.msdn.com/blogfiles/mcsnoiwb/WindowsLiveWriter/ffe44c25c7f4_9EAC/image_2.png"&gt;&lt;IMG style="BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; DISPLAY: inline; BORDER-TOP: 0px; BORDER-RIGHT: 0px" title=image border=0 alt=image src="http://blogs.msdn.com/blogfiles/mcsnoiwb/WindowsLiveWriter/ffe44c25c7f4_9EAC/image_thumb.png" width=484 height=158 mce_src="http://blogs.msdn.com/blogfiles/mcsnoiwb/WindowsLiveWriter/ffe44c25c7f4_9EAC/image_thumb.png"&gt;&lt;/A&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;“Enable client Integration” was set to “NO”.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;This was a setting long forgotten, since it is set to “YES” when you create a new web application in the GUI. However, one server had been set up using STSADM commands with the &lt;A href="http://sharepointpdeploy.codeplex.com/" target=_blank mce_href="http://sharepointpdeploy.codeplex.com/"&gt;SharePoint PowerShell Deploy&lt;/A&gt; from &lt;A href="http://www.codeplex.com/" target=_blank mce_href="http://www.codeplex.com/"&gt;Codeplex&lt;/A&gt; using EXTENDVS, so somehow I needed to compensate for this.&lt;/P&gt;
&lt;P&gt;The easiest way is to call another stsadm command after the extendvs, &lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;stsadm -o authentication&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; -url &amp;lt;URL name&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; -type &amp;lt;type&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; [-usebasic]&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; [-usewindowsintegrated]&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; [-exclusivelyusentlm]&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; [-membershipprovider] &amp;lt;membership provider name&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; [-rolemanager] &amp;lt;role manager name&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; [-enableclientintegration]&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; [-allowanonymous]&lt;/STRONG&gt;&lt;/P&gt;
&lt;H5&gt;ref. &lt;A title=http://technet.microsoft.com/en-us/library/cc263116.aspx href="http://technet.microsoft.com/en-us/library/cc263116.aspx" mce_href="http://technet.microsoft.com/en-us/library/cc263116.aspx"&gt;http://technet.microsoft.com/en-us/library/cc263116.aspx&lt;/A&gt;&lt;/H5&gt;
&lt;P&gt;and set the –enableclientintegration flag. &lt;/P&gt;
&lt;P&gt;Just another small annoying thing that take a little too long to figure out…&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9490900" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/MOSS/default.aspx">MOSS</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/SharePoint+development/default.aspx">SharePoint development</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Codeplex/default.aspx">Codeplex</category></item><item><title>New Version of SharePoint SiteConfigurator Feature Released!</title><link>http://blogs.msdn.com/mcsnoiwb/archive/2009/01/16/new-version-of-sharepoint-siteconfigurator-feature-released.aspx</link><pubDate>Fri, 16 Jan 2009 23:37:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9331007</guid><dc:creator>Stian Kirkeberg</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/mcsnoiwb/comments/9331007.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcsnoiwb/commentrss.aspx?PostID=9331007</wfw:commentRss><description>&lt;p&gt;We have just released a new version of the SharePoint &lt;a href="http://www.codeplex.com/spsiteconfigurator" target="_blank"&gt;SiteConfigurator feature on codeplex.com&lt;/a&gt;.&amp;#160; &lt;/p&gt;  &lt;p&gt;In this release we have focused on some new features and making sure the build is stable. This involved some refactoring as well as splitting the project in three parts, one for the code and logic, one part for the feature and one test project. This new structure will make it much easier and faster to reuse the project from farm to farm.&lt;/p&gt;  &lt;p&gt;As the release notes states, we also focused on: &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;split VS project in two for easier maintenance and upgrades&lt;/li&gt;    &lt;li&gt;added Type Mock project (simply remove that project from the solution if you don't use it)&lt;/li&gt;    &lt;li&gt;rewrote log functionality&lt;/li&gt;    &lt;li&gt;added verbose logging option&lt;/li&gt;    &lt;li&gt;fixed disabling of web part toolbar (still some minor issues here)&lt;/li&gt;    &lt;li&gt;made the complete solution independent of it's features names.&lt;/li&gt;    &lt;li&gt;Added provisioning of files and make it possible to choose welcome page based on xml parameter&lt;/li&gt;    &lt;li&gt;Added support for links with parameters in AddQuickLaunchLinks &lt;/li&gt;    &lt;li&gt;Created support for QuickLaunchHeading and&lt;/li&gt;    &lt;li&gt;DeleteQuickLaunchHeading elements.&lt;/li&gt;    &lt;li&gt;Rearranged and refactored the main project&lt;/li&gt;    &lt;li&gt;Fixed some bugs &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Enjoy the new release and please give us feedback so we can improve it further!&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9331007" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/developer/default.aspx">developer</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Sharepoint/default.aspx">Sharepoint</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/SharePoint+development/default.aspx">SharePoint development</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Codeplex/default.aspx">Codeplex</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/TypeMock/default.aspx">TypeMock</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Unit+testing/default.aspx">Unit testing</category></item><item><title>Announcing SharePoint Site Configurator Feature on CodePlex</title><link>http://blogs.msdn.com/mcsnoiwb/archive/2008/11/28/announcing-sharepoint-site-configurator-feature-on-codeplex.aspx</link><pubDate>Fri, 28 Nov 2008 12:32:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9150727</guid><dc:creator>Stian Kirkeberg</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/mcsnoiwb/comments/9150727.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcsnoiwb/commentrss.aspx?PostID=9150727</wfw:commentRss><description>It is an pleasure to announce the second of our two new SharePoint projects on Codeplex.com: Project Description SharePoint Site Configurator Feature is a small framework for taking care of all configurations, settings and featurestapling you need for...(&lt;a href="http://blogs.msdn.com/mcsnoiwb/archive/2008/11/28/announcing-sharepoint-site-configurator-feature-on-codeplex.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9150727" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/developer/default.aspx">developer</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Sharepoint/default.aspx">Sharepoint</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/SharePoint+development/default.aspx">SharePoint development</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Codeplex/default.aspx">Codeplex</category></item><item><title>Announcing SharePoint PowerShell Deploy on CodePlex</title><link>http://blogs.msdn.com/mcsnoiwb/archive/2008/11/28/announcing-sharepoint-powershell-deploy-on-codeplex.aspx</link><pubDate>Fri, 28 Nov 2008 12:31:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9150718</guid><dc:creator>Stian Kirkeberg</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/mcsnoiwb/comments/9150718.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcsnoiwb/commentrss.aspx?PostID=9150718</wfw:commentRss><description>It is an pleasure to announce the first of our two new SharePoint projects on Codeplex.com: Project Description SharePoint PowerShell Deploy is a set of PowerShell files to help you build, deploy, upgrade and destroy a SharePoint farm. It can be used...(&lt;a href="http://blogs.msdn.com/mcsnoiwb/archive/2008/11/28/announcing-sharepoint-powershell-deploy-on-codeplex.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9150718" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/developer/default.aspx">developer</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Sharepoint/default.aspx">Sharepoint</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/SharePoint+development/default.aspx">SharePoint development</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Codeplex/default.aspx">Codeplex</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/PowerShell/default.aspx">PowerShell</category></item><item><title>Estimate performance and capacity requirements for InfoPath Forms Services environments</title><link>http://blogs.msdn.com/mcsnoiwb/archive/2008/10/09/estimate-performance-and-capacity-requirements-for-infopath-forms-services-environments.aspx</link><pubDate>Thu, 09 Oct 2008 11:00:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8992568</guid><dc:creator>Stian Kirkeberg</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/mcsnoiwb/comments/8992568.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcsnoiwb/commentrss.aspx?PostID=8992568</wfw:commentRss><description>New document on performance published on Technet ; gives good guidance and recommendations for use of Forms Server and dataconnections. In this article: Key characteristics Test environment Test results Recommendations This performance and capacity planning...(&lt;a href="http://blogs.msdn.com/mcsnoiwb/archive/2008/10/09/estimate-performance-and-capacity-requirements-for-infopath-forms-services-environments.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8992568" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/developer/default.aspx">developer</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Sharepoint/default.aspx">Sharepoint</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Codeplex/default.aspx">Codeplex</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Forms/default.aspx">Forms</category></item><item><title>SharePoint 2007 Features project on CodePlex</title><link>http://blogs.msdn.com/mcsnoiwb/archive/2008/09/10/sharepoint-2007-features-project-on-codeplex.aspx</link><pubDate>Wed, 10 Sep 2008 09:38:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8939240</guid><dc:creator>Stian Kirkeberg</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/mcsnoiwb/comments/8939240.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcsnoiwb/commentrss.aspx?PostID=8939240</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;A project on CodePlex adding a lot of value for SharePoint projects is the "SharePoint 2007 features" project. It has grown considerable during it lifetime and it is absolutly worthwhile checking back from time to time. &lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Content Type Hierarchy Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Log Viewer Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Manage Form Users Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Presence Contact List Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Placeholder Master Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Print List Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Task Alert Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Task Mover Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Theme Changer Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Debugger Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Documentation" align="middle" src="http://www.codeplex.com/Images/Documentation.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Documentation June 11, 2008&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;All Features in a single download&lt;/a&gt; &lt;p&gt;&lt;img alt="Source Code" align="middle" src="http://www.codeplex.com/Images/SourceCode.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Features Source Code&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Window Links Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Debug Config Feature (separate download) &lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Manage Configuration Modifications (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Ajax Config Feature (separate download) &lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Manage Layouts Site Map Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Minimal Master (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Minimal Publishing Site (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Manage Hierarchical Object Store Feature&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Reset Theme Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Toolbar Manager (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Unique Column Policy Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Global Web.Config Feature (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;3.5 Web.Config Feature (separate download) &lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Regular Expression Validator (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Variation Labels Field (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;SharePoint Events Manager (separate download)&lt;/a&gt; &lt;p&gt;&lt;img alt="Application" align="middle" src="http://www.codeplex.com/Images/RuntimeBinary.gif"&gt; &lt;a href="http://www.codeplex.com/"&gt;Clean Web Part Error Feature (separate download)&lt;/a&gt; &lt;p&gt;&amp;nbsp; &lt;p&gt;As a developer you might specially apreaciate the "Debugger feature". It adds a link to your site actions menu:&lt;/p&gt; &lt;p&gt;&lt;img src="http://blogs.msdn.com/blogfiles/markarend/WindowsLiveWriter/DebuggingwebpartsandotherSharePointcusto_71E3/Attach%20Debugger_2.gif"&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp; &lt;p&gt;Mark Arend has an article about "&lt;a target="_blank" href="http://blogs.msdn.com/markarend/archive/2008/09/09/debugging-web-parts-and-other-sharepoint-custom-code.aspx"&gt;Debugging web parts and other SharePoint custom code&lt;/a&gt;" with some more information about this feature. &lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8939240" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/developer/default.aspx">developer</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Sharepoint/default.aspx">Sharepoint</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/SharePoint+development/default.aspx">SharePoint development</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Codeplex/default.aspx">Codeplex</category></item><item><title>Freebies to SharePoint</title><link>http://blogs.msdn.com/mcsnoiwb/archive/2007/12/03/freebies-to-sharepoint.aspx</link><pubDate>Mon, 03 Dec 2007 23:05:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6647101</guid><dc:creator>Jon Løken</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/mcsnoiwb/comments/6647101.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcsnoiwb/commentrss.aspx?PostID=6647101</wfw:commentRss><description>&lt;p&gt;SharePoint is a great platform, and there are several additional features available for free. I have collected some of the good things from the community and elsewhere&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Application templates and role-based templates&lt;br&gt;&lt;/font&gt;&lt;/strong&gt;40 application templates for SharePoint sites and 7 role-based templates for SharePoint MySite. Go get it at &lt;a title="http://www.microsoft.com/sharepoint/templates.mspx" href="http://www.microsoft.com/sharepoint/templates.mspx"&gt;http://www.microsoft.com/sharepoint/templates.mspx&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;CKS - Community Kit for SharePoint&lt;br&gt;&lt;/font&gt;&lt;/strong&gt;At &lt;a href="http://www.codeplex.com/"&gt;CodePlex&lt;/a&gt; (CodePlex is Microsoft's open source project hosting web site) there is a &lt;a href="http://www.codeplex.com/CKS/"&gt;Community Kit for SharePoint (CKS)&lt;/a&gt; that have many valuable elements. "The Community Kit for SharePoint is a set of best practices, templates, Web Parts, tools, and source code that enables practically anyone to create a community web site based on SharePoint technology for practically any group of people with a common interest."&lt;/p&gt; &lt;ul&gt; &lt;li&gt;Enhanced Blog Edition&lt;/li&gt; &lt;li&gt;Enhanced Wiki Edition&lt;/li&gt; &lt;li&gt;Corporate Intranet Edition + + + several other edition&lt;/li&gt; &lt;li&gt;Tag cloud&lt;/li&gt; &lt;li&gt;Taxonomy tagging&lt;/li&gt; &lt;li&gt;Virtual Earth maps on SharePoint&lt;/li&gt; &lt;li&gt;Solution Sharing Network (SSN)&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Governance related tools&lt;br&gt;&lt;/font&gt;&lt;/strong&gt;SharePoint governance and manageability in CodePlex (&lt;a title="http://www.codeplex.com/governance" href="http://www.codeplex.com/governance"&gt;http://www.codeplex.com/governance&lt;/a&gt;)&lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Faceted search&lt;br&gt;&lt;/font&gt;&lt;/strong&gt;Faceted search, or post filtered search, is a common request. MOSS 2007 doesn't have this feature out-of-the-box. There are several third party solutions for MOSS 2007 that target this request. In addition there is an option at CodePlex that might be good enough. The faceted search project available at &lt;a href="http://www.codeplex.com/FacetedSearch/"&gt;http://www.codeplex.com/FacetedSearch/&lt;/a&gt; &lt;/p&gt; &lt;p&gt;&lt;strong&gt;&lt;font color="#ff8000"&gt;Other CodePlex features&lt;br&gt;&lt;/font&gt;&lt;/strong&gt;The list is long, and there are several good features not mentioned in this blog post. Enjoy the whole list at &lt;a title="http://www.codeplex.com/Project/ProjectDirectory.aspx?TagName=Sharepoint" href="http://www.codeplex.com/Project/ProjectDirectory.aspx?TagName=Sharepoint"&gt;http://www.codeplex.com/Project/ProjectDirectory.aspx?TagName=Sharepoint&lt;/a&gt; &lt;img alt="smile_regular" src="http://spaces.live.com/rte/emoticons/smile_regular.gif"&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=6647101" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/developer/default.aspx">developer</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Sharepoint/default.aspx">Sharepoint</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/MOSS/default.aspx">MOSS</category><category domain="http://blogs.msdn.com/mcsnoiwb/archive/tags/Codeplex/default.aspx">Codeplex</category></item></channel></rss>