<?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>SharePoint of the Day &#187; Sites and webs</title>
	<atom:link href="http://www.understandingsharepoint.com/spotd/tag/sites-and-webs/feed" rel="self" type="application/rss+xml" />
	<link>http://www.understandingsharepoint.com/spotd</link>
	<description>Your daily dose of SharePoint - From Spot D</description>
	<lastBuildDate>Fri, 26 Jun 2009 02:21:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SharePoint of the Day #58</title>
		<link>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-58</link>
		<comments>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-58#comments</comments>
		<pubDate>Fri, 19 Jun 2009 03:26:11 +0000</pubDate>
		<dc:creator>spotd</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Sites and webs]]></category>

		<guid isPermaLink="false">http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-58</guid>
		<description><![CDATA[When creating your own site definitions you can set the ProvisionAssembly and ProvisionClass to have .NET code fired when a new site is created. your class should inherit from the SPWebProvisioningProvider class. 
This is useful for example if you want to create a site hierarchy as part of the site creation. In MOSS, the Publishing [...]]]></description>
			<content:encoded><![CDATA[<p>When creating your own site definitions you can set the ProvisionAssembly and ProvisionClass to have .NET code fired when a new site is created. your class should inherit from the SPWebProvisioningProvider class. </p>
<p>This is useful for example if you want to create a site hierarchy as part of the site creation. In MOSS, the Publishing portal is set up using the ProvisionAssembly and ProvisionClass. </p>
<p>You can also optionally set the ProvisionData, which will be passed to the ProvisionClass. Here is some example code:</p>
<p>public class MySiteSetup : SPWebProvisioningProvider<br />
{<br />
    public override void Provision(SPWebProvisioningProperties props)<br />
    {<br />
        string data = props.Data;<br />
    }<br />
}</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=spotd+SharePoint+of+the+Day+%2358+http://is.gd/46dRn" title="Post to Twitter"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-twitter-big1.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-58&amp;title=SharePoint+of+the+Day+%2358" title="Post to Delicious"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-58&amp;title=SharePoint+of+the+Day+%2358" title="Post to Delicious">Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-58&amp;title=SharePoint+of+the+Day+%2358" title="Post to Digg"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-58&amp;title=SharePoint+of+the+Day+%2358" title="Post to Digg">Digg This Post</a></p><hr />
<p style="font-weight: bolder;">
You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I will bark all night outside your window and chase your cat up in a tree.
</p>
<p><small>© spotd for <a href="http://www.understandingsharepoint.com/spotd">SharePoint of the Day</a>, 2009. <br/>
<a href="http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-58">Permalink</a> | <a href="http://twitter.com/home/?status=#spotd+SharePoint of the Day #58">Tweet SharePoint of the Day #58</a> | 
<a href="http://del.icio.us/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-58&title=SharePoint of the Day #58">Add to del.icio.us</a> | 
<a href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-58&title=SharePoint of the Day #58">Digg this</a>
<br/>
Post tags: <a href="http://www.understandingsharepoint.com/spotd/tag/sites-and-webs" rel="tag">Sites and webs</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-58/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SharePoint of the Day #57</title>
		<link>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-57</link>
		<comments>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-57#comments</comments>
		<pubDate>Thu, 18 Jun 2009 03:26:11 +0000</pubDate>
		<dc:creator>spotd</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Sites and webs]]></category>

		<guid isPermaLink="false">http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-57</guid>
		<description><![CDATA[You can check the SPWeb.LastItemModifiedDate property to see when something was last changed in a site. 
  Delicious  Digg This Post

You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I will bark all night outside your window [...]]]></description>
			<content:encoded><![CDATA[<p>You can check the SPWeb.LastItemModifiedDate property to see when something was last changed in a site. </p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=spotd+SharePoint+of+the+Day+%2357+http://is.gd/46dRo" title="Post to Twitter"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-twitter-big1.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-57&amp;title=SharePoint+of+the+Day+%2357" title="Post to Delicious"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-57&amp;title=SharePoint+of+the+Day+%2357" title="Post to Delicious">Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-57&amp;title=SharePoint+of+the+Day+%2357" title="Post to Digg"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-57&amp;title=SharePoint+of+the+Day+%2357" title="Post to Digg">Digg This Post</a></p><hr />
<p style="font-weight: bolder;">
You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I will bark all night outside your window and chase your cat up in a tree.
</p>
<p><small>© spotd for <a href="http://www.understandingsharepoint.com/spotd">SharePoint of the Day</a>, 2009. <br/>
<a href="http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-57">Permalink</a> | <a href="http://twitter.com/home/?status=#spotd+SharePoint of the Day #57">Tweet SharePoint of the Day #57</a> | 
<a href="http://del.icio.us/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-57&title=SharePoint of the Day #57">Add to del.icio.us</a> | 
<a href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-57&title=SharePoint of the Day #57">Digg this</a>
<br/>
Post tags: <a href="http://www.understandingsharepoint.com/spotd/tag/sites-and-webs" rel="tag">Sites and webs</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-57/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint of the Day #55</title>
		<link>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-55</link>
		<comments>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-55#comments</comments>
		<pubDate>Tue, 16 Jun 2009 03:26:11 +0000</pubDate>
		<dc:creator>spotd</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Sites and webs]]></category>

		<guid isPermaLink="false">http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-55</guid>
		<description><![CDATA[When you are creating a custom site definition you can set the ExecuteUrl of the onet.xml Project element to a site-relative URL. When users create new sites from the definition they will be sent to the ExecuteUrl instead of the home page when the site is first created.
You can use this to send your users [...]]]></description>
			<content:encoded><![CDATA[<p>When you are creating a custom site definition you can set the ExecuteUrl of the onet.xml Project element to a site-relative URL. When users create new sites from the definition they will be sent to the ExecuteUrl instead of the home page when the site is first created.</p>
<p>You can use this to send your users to a custom page to setup more advanced features of your site.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=spotd+SharePoint+of+the+Day+%2355+http://is.gd/46dRt" title="Post to Twitter"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-twitter-big1.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-55&amp;title=SharePoint+of+the+Day+%2355" title="Post to Delicious"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-55&amp;title=SharePoint+of+the+Day+%2355" title="Post to Delicious">Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-55&amp;title=SharePoint+of+the+Day+%2355" title="Post to Digg"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-55&amp;title=SharePoint+of+the+Day+%2355" title="Post to Digg">Digg This Post</a></p><hr />
<p style="font-weight: bolder;">
You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I will bark all night outside your window and chase your cat up in a tree.
</p>
<p><small>© spotd for <a href="http://www.understandingsharepoint.com/spotd">SharePoint of the Day</a>, 2009. <br/>
<a href="http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-55">Permalink</a> | <a href="http://twitter.com/home/?status=#spotd+SharePoint of the Day #55">Tweet SharePoint of the Day #55</a> | 
<a href="http://del.icio.us/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-55&title=SharePoint of the Day #55">Add to del.icio.us</a> | 
<a href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-55&title=SharePoint of the Day #55">Digg this</a>
<br/>
Post tags: <a href="http://www.understandingsharepoint.com/spotd/tag/sites-and-webs" rel="tag">Sites and webs</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-55/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SharePoint of the Day #16</title>
		<link>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-16</link>
		<comments>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-16#comments</comments>
		<pubDate>Wed, 22 Apr 2009 03:26:11 +0000</pubDate>
		<dc:creator>spotd</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Sites and webs]]></category>

		<guid isPermaLink="false">http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-16</guid>
		<description><![CDATA[If you want to keep your designers on a leech you can set the DisableWebDesignFeatures in your site definition&#8217;s onet.xml file. Set the attribute in the Project element to one or more values from the following list:
wdfbackup   Disable Web site backup.
wdfrestore   Disable Web site restore.
wdfpackageimport   Disable Web site package [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to keep your designers on a leech you can set the DisableWebDesignFeatures in your site definition&#8217;s onet.xml file. Set the attribute in the Project element to one or more values from the following list:</p>
<p><strong>wdfbackup</strong>   Disable Web site backup.<br />
<strong>wdfrestore</strong>   Disable Web site restore.<br />
<strong>wdfpackageimport</strong>   Disable Web site package import.<br />
<strong>wdfpackageexport</strong>   Disable Web site package export.<br />
<strong>wdfthemeweb</strong>   Disable theme support for the Web site.<br />
<strong>wdfthemepage</strong>   Disable theme support for individual pages.<br />
<strong>wdfnavigationbars</strong>   Disable support for navigation bars.<br />
<strong>wdfnavigationview</strong>   Disable the Navigation view for the Web site.<br />
<strong>wdfpublishview</strong>   Disable the Remote Web site view for the Web site.<br />
<strong>wdfpublishselectedfile</strong>   Do not allow the selected file to be published.<br />
<strong>wdfopensite</strong>   Disable access to the entire Web site.<br />
<strong>wdfnewsubsite</strong>   Do not allow the creation of a new subsite.</p>
<p>(source: <a href="http://msdn.microsoft.com/en-us/library/ms438080.aspx" rel="nofollow">MSDN</a>)</p>
<p>If you want to set more values, use a semicolon to separate the values.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=spotd+SharePoint+of+the+Day+%2316+http://is.gd/4fuVz" title="Post to Twitter"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-twitter-big1.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-16&amp;title=SharePoint+of+the+Day+%2316" title="Post to Delicious"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-16&amp;title=SharePoint+of+the+Day+%2316" title="Post to Delicious">Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-16&amp;title=SharePoint+of+the+Day+%2316" title="Post to Digg"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-16&amp;title=SharePoint+of+the+Day+%2316" title="Post to Digg">Digg This Post</a></p><hr />
<p style="font-weight: bolder;">
You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I will bark all night outside your window and chase your cat up in a tree.
</p>
<p><small>© spotd for <a href="http://www.understandingsharepoint.com/spotd">SharePoint of the Day</a>, 2009. <br/>
<a href="http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-16">Permalink</a> | <a href="http://twitter.com/home/?status=#spotd+SharePoint of the Day #16">Tweet SharePoint of the Day #16</a> | 
<a href="http://del.icio.us/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-16&title=SharePoint of the Day #16">Add to del.icio.us</a> | 
<a href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-16&title=SharePoint of the Day #16">Digg this</a>
<br/>
Post tags: <a href="http://www.understandingsharepoint.com/spotd/tag/sites-and-webs" rel="tag">Sites and webs</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-16/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint of the Day #13</title>
		<link>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-13</link>
		<comments>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-13#comments</comments>
		<pubDate>Fri, 17 Apr 2009 03:26:11 +0000</pubDate>
		<dc:creator>spotd</dc:creator>
				<category><![CDATA[End User]]></category>
		<category><![CDATA[Sites and webs]]></category>

		<guid isPermaLink="false">http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-13</guid>
		<description><![CDATA[When you modify any fle or page in SharePoint, for example using SharePoint Designer, that file becomes Customized. In practice, this creates a copy of the original file and stores the copy in the database along with your changes. Changes to the original source file will no longer affect your customized file.
You can revert your [...]]]></description>
			<content:encoded><![CDATA[<p>When you modify any fle or page in SharePoint, for example using SharePoint Designer, that file becomes Customized. In practice, this creates a copy of the original file and stores the copy in the database along with your changes. Changes to the original source file will no longer affect your customized file.</p>
<p>You can revert your customized files and pages, either through the Site Settings page (Look and Feel->Reset to site definition) or using a tool such as SharePoint Designer.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=spotd+SharePoint+of+the+Day+%2313+http://is.gd/4fQBR" title="Post to Twitter"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-twitter-big1.png" alt="Post to Twitter" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-13&amp;title=SharePoint+of+the+Day+%2313" title="Post to Delicious"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-delicious-big4.png" alt="Post to Delicious" /></a> <a class="tt" href="http://delicious.com/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-13&amp;title=SharePoint+of+the+Day+%2313" title="Post to Delicious">Delicious</a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-13&amp;title=SharePoint+of+the+Day+%2313" title="Post to Digg"><img class="nothumb" src="http://www.understandingsharepoint.com/spotd/wp-content/plugins/tweet-this/icons/tt-digg-big4.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-13&amp;title=SharePoint+of+the+Day+%2313" title="Post to Digg">Digg This Post</a></p><hr />
<p style="font-weight: bolder;">
You are free to use this tip if you give proper credit to me by linking back to the site at http://www.understandingsharepoint.com/spotd. If you don't, I will bark all night outside your window and chase your cat up in a tree.
</p>
<p><small>© spotd for <a href="http://www.understandingsharepoint.com/spotd">SharePoint of the Day</a>, 2009. <br/>
<a href="http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-13">Permalink</a> | <a href="http://twitter.com/home/?status=#spotd+SharePoint of the Day #13">Tweet SharePoint of the Day #13</a> | 
<a href="http://del.icio.us/post?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-13&title=SharePoint of the Day #13">Add to del.icio.us</a> | 
<a href="http://digg.com/submit?url=http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-13&title=SharePoint of the Day #13">Digg this</a>
<br/>
Post tags: <a href="http://www.understandingsharepoint.com/spotd/tag/sites-and-webs" rel="tag">Sites and webs</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.understandingsharepoint.com/spotd/sharepoint-of-the-day-13/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

