<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Clint</title>
	<atom:link href="http://vspug.com/clint/feed/" rel="self" type="application/rss+xml" />
	<link>http://vspug.com/clint</link>
	<description>Just another VSPUG - Virtual SharePoint User Group weblog</description>
	<lastBuildDate>Wed, 24 Jun 2009 05:51:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SharePoint and FIPS Compliance</title>
		<link>http://vspug.com/clint/2009/06/24/sharepoint-and-fips-compliance/</link>
		<comments>http://vspug.com/clint/2009/06/24/sharepoint-and-fips-compliance/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 05:51:00 +0000</pubDate>
		<dc:creator>Clint</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[I while back (about 18 months ago I think) my team ran into an issue while working on a system for the Department of Defense. The issue occurs when the &#34;System cryptography: Use FIPS compliant algorithms for encryption, hashing and signing&#34; security setting is enabled through Group Policy or Local Security Policy on a WSS [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-family:verdana,geneva;"><span style="font-size:x-small;">I while back (about 18 months ago I think) my team ran into an issue while working on a system for the Department of Defense. The issue occurs when the &quot;System cryptography: Use FIPS compliant algorithms for encryption, hashing and signing&quot; security setting is enabled through Group Policy or Local Security Policy on a WSS or MOSS server. After much research and gnashing of teeth, we finally traced the issue back to the fact that the .NET Framework uses AES encryption as the default. Unfortunately, at least in Windows Server 2003, the Microsoft implementation of AES had not been FIPS validated and the application immediately threw an error when it tried to use the algorithm. We were able to resolve this issue by specifying a &quot;validation&quot; attribute as well as a &quot;decryption&quot; attribute in the SharePoint web.config files for all Content web applications as well as SharePoint Central Administration. We used 3DES as the value of the attribute. Any of Windows Validated FIPS Compliant algorithms should work in this setting. SharePoint specifies an encryptionKey and decryptionKey under the machineKey element but other than that, once the attributes are added, you should have a machineKey element that looks something like </span></span></p>
<p style="PADDING-LEFT:60px;">
<span style="font-family:arial,helvetica,sans-serif;"><span style="font-size:x-small;"><span style="color:black;">&lt;machineKey validationKey=&quot;21F090935F6E49C2C797F69BBAAD8402ABD2EE0B667A8B44EA7DD4374267A75D7</span><span style="color:black;"> AD972A119482D15A4127461DB1DC347C1A63AE5F1CCFAACFF1B72A7F0A281B&quot; decryptionKey=&quot;ABAA84D7EC4BB56D75D217CECFFB9628809BDB8BF91CFCD64568A145BE59719F&quot; </span><span style="color:black;">validation=&quot;3DES&quot; decryption=&quot;3DES&quot;/&gt; </span></span></span></p>
<p>&nbsp;This same fix would apply to any ASP.NET application that is using View State Encryption and displays the &quot;This Implementation is Not part of the Windows Validated FIPS Compliant Algorithms&quot; error message when trying to view a page. </p>
<p>So&hellip; why am I just now writing about this? Yesterday, a friend of mine sends me an email that says &quot;Remember when we hit that encryption issue with SharePoint&#8230; How did we solve that?&quot; Luckily, I still had a demo server that had the modified machineKey element and I remembered enough to know where to look. I also know that there are some other articles out there about this issue now, but I can never find them when I need them. </p>
<p>Here are a couple of related references: <a href="http://support.microsoft.com/kb/911722">http://support.microsoft.com/kb/911722</a>, <a href="http://www.dscoduc.com/post/2008/05/03/FIPS-Compliant-Algorithms-and-IIS.aspx">http://www.dscoduc.com/post/2008/05/03/FIPS-Compliant-Algorithms-and-IIS.aspx</a>, <a href="http://stevesps.blogspot.com/2008_10_01_archive.html">http://stevesps.blogspot.com/2008_10_01_archive.html</a>, <a href="http://msdn.microsoft.com/en-us/library/ms998288.aspx">http://msdn.microsoft.com/en-us/library/ms998288.aspx</a>. </p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/clint/2009/06/24/sharepoint-and-fips-compliance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Issues with Content Types</title>
		<link>http://vspug.com/clint/2007/12/03/issues-with-content-types/</link>
		<comments>http://vspug.com/clint/2007/12/03/issues-with-content-types/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 01:55:00 +0000</pubDate>
		<dc:creator>Clint</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[&#160;
I have been doing a lot of work with custom content types and content type event receivers lately.&#160; I have run in to a few bugs that I think are worth noting.&#160; Before I get in to the details, I would like to say that some of the issues that I experienced were, quite simply, [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>I have been doing a lot of work with custom content types and content type event receivers lately.&nbsp; I have run in to a few bugs that I think are worth noting.&nbsp; Before I get in to the details, I would like to say that some of the issues that I experienced were, quite simply, because of&nbsp;a&nbsp;lack of attention to detail on my part.&nbsp; That&nbsp;being said, I&#39;m quite sure that I&#39;m not the only person that has ever experienced these issues.</p>
<p>&nbsp;First of all, here are the steps to recreate the problem:</p>
<ul>
<li>1. Create a new set of site columns using the Microsoft Feature 12TEMPLATEFEATURESfields as a template. (see fig. A)</li>
<li>2. Create a new content type that uses these fields (see fig. B)</li>
<li>3. Apply these fields to a custom list definition see fig. C)</li>
<li>4. Add the list to a site, when you try to add a new item there should be fields missing from the newform.aspx page. </li>
</ul>
<p>Fig. A)</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Field ID=&quot;{76d8a613-d5b1-4c80-a5c4-b0ad2c159743}&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Type=&quot;Text&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; DisplayName=&quot;Field1&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Description=&quot;Test Field 1&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Required=&quot;FALSE&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Group=&quot;Custom Columns&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; StaticName=&quot;Field1&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Name=&quot;Field1&quot;&gt;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/Field&gt;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Field ID=&quot;{F4C72115-5BAF-47ce-BD10-1344277DCB01}&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Type=&quot;Text&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; DisplayName=&quot;Field2&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Description=&quot;Test Field 2&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Required=&quot;TRUE&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Group=&quot;Custom Columns&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; StaticName=&quot;Field2&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; Name=&quot;Field2&quot;&gt;</p>
<p>&lt;/Field&gt;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Fig. B)</p>
<p>&lt;ContentType ID=&quot;0&#215;0100ff35ff607de941ff85edc7e2e52d5ba4&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Name=&quot;TestType&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Group=&quot;Test&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Description=&quot;Test Type 1&quot;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Version=&quot;0&quot;&gt;</p>
<p>&nbsp;&nbsp;&nbsp; &lt;FieldRefs&gt;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;FieldRef ID=&quot;{76d8a613-d5b1-4c80-a5c4-b0ad2c159743}&quot; Name=&quot;Field&quot; /&gt;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;FieldRef ID=&quot;{F4C72115-5BAF-47ce-BD10-1344277DCB01}&quot; Name=&quot;Field2&quot; /&gt;</p>
<p>&nbsp;&nbsp;&nbsp; &lt;/FieldRefs&gt;</p>
<p>&nbsp;&lt;/ContentType&gt;</p>
<p>&nbsp;</p>
<p>Fig. C)</p>
<p>Fields:</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Field ID=&quot;{F4C72115-5BAF-47ce-BD10-1344277DCB01}&quot; Type=&quot;Text&quot; DisplayName=&quot;Some Text&quot; Description=&quot;&quot; Required=&quot;FALSE&quot; Group=&quot;Custom Columns&quot; StaticName=&quot;Field2&quot; Name=&quot;Field2&quot; Customization=&quot;&quot; SourceID=&quot;{5405662c-cce9-45d2-a057-9389a9b8e8f1}&quot; ColName=&quot;nvarchar12&quot; RowOrdinal=&quot;0&quot; /&gt;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;Field ID=&quot;{76d8a613-d5b1-4c80-a5c4-b0ad2c159743}&quot; Type=&quot;Text&quot; DisplayName=&quot;Some Text&quot; Description=&quot;&quot; Required=&quot;FALSE&quot; Group=&quot;Custom Columns&quot; StaticName=&quot;Field1&quot; Name=&quot;Field1&quot; Customization=&quot;&quot; SourceID=&quot;{5405662c-cce9-45d2-a057-9389a9b8e8f1}&quot; ColName=&quot;nvarchar13&quot; RowOrdinal=&quot;0&quot; /&gt;</p>
<p>So why are these fields not showing up on your forms?&nbsp; Well, it may seem a little bit nitpicky on the part of SharePoint, but for some reason all of the fields have to match exactly what you defined in the xml file that created the site columns.&nbsp; For instance, Field2 doesn&#39;t show up because the column definition says that it is required but the list schema says that it is optional.&nbsp; Field1 won&#39;t show up because the &quot;Name&quot; property doesn&#39;t match in the column definition and in the FieldRef of the content type.&nbsp; In fact it won&#39;t even show up in the content type.&nbsp; If you delete and re-add the content type, through the interface, it creates a new content type that inherits from your content type and fixes some of the issues that were initially present.&nbsp; This is why all of the fields will show up the second time around (except the fields that are incorrect in the content type definition).&nbsp; </p>
<p>So, be careful when developing content types.&nbsp; And remember, with the exception of the display name, all field properties have to match, exactly, in the three places where they are used.</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/clint/2007/12/03/issues-with-content-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Apologies</title>
		<link>http://vspug.com/clint/2007/11/05/my-apologies/</link>
		<comments>http://vspug.com/clint/2007/11/05/my-apologies/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 21:07:00 +0000</pubDate>
		<dc:creator>Clint</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello Everyone,
I&#39;m very sorry for the long delay between posts.&#160; I&#39;m in the process of moving right now and will try to catch up with you shortly.
&#160;Thanks
]]></description>
			<content:encoded><![CDATA[<p>Hello Everyone,</p>
<p>I&#39;m very sorry for the long delay between posts.&nbsp; I&#39;m in the process of moving right now and will try to catch up with you shortly.</p>
<p>&nbsp;Thanks</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/clint/2007/11/05/my-apologies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feature Inheritance for new sites</title>
		<link>http://vspug.com/clint/2007/10/16/feature-inheritance-for-new-sites/</link>
		<comments>http://vspug.com/clint/2007/10/16/feature-inheritance-for-new-sites/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 04:17:00 +0000</pubDate>
		<dc:creator>Clint</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have seen several questions, posted in various newsgroups and forums, regarding activating features when a new site is added to the site collection.&#160; Anyone who has built features for a WSS v3 site has probably experienced the frustration of realizing that their features are not activated for any new sites that they create.&#160; There [...]]]></description>
			<content:encoded><![CDATA[<p>I have seen several questions, posted in various newsgroups and forums, regarding activating features when a new site is added to the site collection.&nbsp; Anyone who has built features for a WSS v3 site has probably experienced the frustration of realizing that their features are not activated for any new sites that they create.&nbsp; There are a couple of different ways to deal with this including <a title="Feature Stapling" href="http://blogs.msdn.com/cjohnson/archive/2006/11/01/feature-stapling-in-wss-v3.aspx" target="_blank">Feature Stapling</a>&nbsp;and Feature Event Receivers.&nbsp; However, a project that I am working on required a similar function but needed to work with lists and list data at site provisioning time (the following article will explain why Feature Stapling is not ideal for this: <a href="http://www.portalsolutions.net/Blog/Lists/Posts/Post.aspx?ID=19" target="_blank">Controlling Site Provisioning Process with a Custom Provider</a>).&nbsp; To solve this I used a Site Provisioning Provider.&nbsp; Since I was already creating it for another purpose I just added a method to activate all custom features when the new site is provisioned.&nbsp; Here is how I did it:</p>
<p>1. &nbsp;Create the SPSiteProvisioningProvider</p>
<p><font color="#0000ff" size="2"></font><font size="2"></font></font><font size="2"></p>
<p>class SiteAction : SPWebProvisioningProvider</p>
<p>&nbsp;&nbsp;&nbsp; {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public override void Provision(SPWebProvisioningProperties props)</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; using (SPWeb web = props.Web)</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; web.ApplyWebTemplate(&quot;STS#1&quot;); //if you don&#39;t apply a template you will be prompted to select one upon creation</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPFeatureDefinitionCollection coll = SPFarm.Local.FeatureDefinitions;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPFeatureCollection featcoll = web.Features;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; foreach (SPFeatureDefinition fd in coll)</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //get only the features whose scope is web, who are not hidden, and who are not already activated</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if ((fd.Scope == SPFeatureScope.Web) &amp;&amp; (!fd.Hidden) &amp;&amp; (featcoll[fd.Id] == null))</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; web.Features.Add(fd.Id);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; web.Update(); </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp; }</p>
<p></font></p>
<p>2. Create the webtempl*.xml file</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp; &lt;Templates xmlns:ows=&quot;Microsoft SharePoint&quot;&gt;<br />&nbsp;&lt;Template Name=&quot;Newsts&quot; ID=&quot;10001&quot;&gt;<br />&nbsp;&nbsp;&lt;Configuration <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ID=&quot;0&quot; Title=&quot;Provisioned Team Site&quot; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Hidden=&quot;FALSE&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ImageUrl=&quot;/_layouts/images/stsprev.png&quot;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Description=&quot;A site for teams to quickly organize, author, and share information. It provides a document library, and lists for managing announcements, calendar items, tasks, and discussions.&quot; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DisplayCategory=&quot;Collaboration&quot; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ProvisionAssembly=&quot;Provisioner, Version=1.0.0.0, Culture=Neutral, PublicKeyToken=9f4da00116c38ec5&quot; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ProvisionClass=&quot;Provisioner.SiteAction&quot; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ProvisionData=&quot; &quot;&gt;&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&lt;/Configuration&gt;<br />&nbsp;&lt;/Template&gt;<br />&lt;/Templates&gt;</p>
<p>&nbsp;Virtually any action, that you can write code for, can be executed using this model.&nbsp;&nbsp;Next time, I&#39;ll show some other ways in which I have used this.</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/clint/2007/10/16/feature-inheritance-for-new-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
