<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Nair&#039;s Blog</title>
	<atom:link href="http://pnair74.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pnair74.wordpress.com</link>
	<description>Another block on the wall..</description>
	<lastBuildDate>Wed, 14 Dec 2011 12:52:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='pnair74.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Nair&#039;s Blog</title>
		<link>http://pnair74.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://pnair74.wordpress.com/osd.xml" title="Nair&#039;s Blog" />
	<atom:link rel='hub' href='http://pnair74.wordpress.com/?pushpress=hub'/>
		<item>
		<title>SharePoint : Item Level Permisioning (Successful/Failed Scenario)</title>
		<link>http://pnair74.wordpress.com/2011/12/14/sharepoint-item-level-permisioning-successfulfailed-scenario/</link>
		<comments>http://pnair74.wordpress.com/2011/12/14/sharepoint-item-level-permisioning-successfulfailed-scenario/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 12:52:16 +0000</pubDate>
		<dc:creator>pradeepnair74</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://pnair74.wordpress.com/?p=62</guid>
		<description><![CDATA[Let say you have a list or document library. Once you break the permission inheritance SharePoint OOB copies all the permissions from Site to the list for consistence. This is true when you create a item level permission by breaking the permission inheritance. Another drawback with the item level permission is that whenever you add&#160;&#8230; <a href="http://pnair74.wordpress.com/2011/12/14/sharepoint-item-level-permisioning-successfulfailed-scenario/">Read&#160;more</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=62&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Let say you have a list or document library. Once you break the permission inheritance SharePoint OOB copies all the permissions from Site to the list for consistence. This is true when you create a item level permission by breaking the permission inheritance. Another drawback with the item level permission is that whenever you add a item level permission to an item the same permission gets copied to the parent list with Limited Access permission level. Same is true for List/document library. You add a permission level to the list/document library, same permission set gets copied at the top level site with Limited permission.</p>
<p>So, the question is how did it affected our solutions.</p>
<p>Solution 1 :<br />
• Create a list template with 60 document.<br />
• Used the above template to create the 200 document library with each library having 60 document for 20 products.<br />
• Individually breaking the item level permission and then adding the custom SharePoint group created for each client X product group, i.e., Client_1_Product_1 to Client_200_Product_20. Which comes to 4000 SharePoint groups.<br />
Problem with Solution 1:<br />
• Whenever we are breaking the item level permission for each item the permission set of the document library was getting copied to the item and as we are adding custom permission to the item, it was getting copied to the list with limited permission.<br />
• So, next time when we were breaking permission for the second item, number of permission were getting incremented with each item.<br />
• As we were not deleting these limited access permission at item level, the drawback is when these item get queried at CQWP it will take lot of time to load the item on the page as SharePoint has to iterate throw all the permission set.</p>
<p>Solution 2 : In the second approach we thought of removing the limited access permission which was getting copied to the item. For this purpose we followed the following path<br />
• Created the list template with 60 document.<br />
• Used the above template to create the 200 document library with each library having 60 document.<br />
• But this time while creating the document library we broke the permission inheritance of the document library and removed all the permission level which was getting copied from Site to the list.<br />
• For item level we were breaking the permission inheritance and checking and deleting any copied permission at item level, before assigning the custom SharePoint group.<br />
Problem with Solution 2:<br />
• Now when we broke the item level permission inheritance nothing from list was getting copied for the first item in the list. But as soon as we add a custom permission to the item the same permission was getting copied to the list holding the item with Limited Access. As we are doing this for one item within the list at a time, with every breaking of permission inheritance at item level and adding of custom permission to the item, it was adding an additional limited Access permission at List level. So, as we were removing the copied permission at item level before assigning the custom permission, with every iteration the number of permission for deletion was getting incremented for each item with each document library.<br />
• This increased the operation time.</p>
<p>Solution 3 : Usage of Temp folder<br />
• Create doc library.<br />
• Break the doc library inheritance to the site. This will copy all the default permissions to the doc library.<br />
• Delete the permission set associated with the doc library.<br />
• Create a temp folder inside the doc library, and break the permission inheritance of that folder.<br />
• Create the list item (document) inside the temp folder. This I am doing to avoid the permission inheritance from the parent list.<br />
• Move the list item from the temp folder to the parent list and this item will have no inherited limited permission because it’s moved from the folder which don’t have any permission.<br />
• Assign the custom SharePoint Group which I have created to the moved list item. This action copies that SharePoint group to the list (SharePoint Feature) with limited access permission.<br />
• After all the documents are created, moved and assigned permission, delete the temp folder.<br />
Problem with Solution 3:<br />
• When we are moving the first item created in the temp folder to the parent list no permission is associated with the item, and as we add a custom permission to the item after breaking the permission inheritance, and that permission getting copied to the list with limited access, the next time we move the second item from temp folder and tried to do the same thing, the limited access permission from list is getting copied to the newly moved list item.<br />
• And with every item moved from the temp folder and process been repeated the number of permission for deletion at time level are getting incremented.<br />
• This increased the operation time.</p>
<p>In all the above scenario we have already created the custom SharePoint Group. This is because for item level permission we want that permission to he available for assignment.</p>
<p>Solution 4 : The successful one. Here we avoided the creation for SharePoint Group beforehand.<br />
• Create doc library.<br />
• Break the doc library inheritance to the site. This will copy all the default permissions to the doc library.<br />
• Delete the permission set associated with the doc library.<br />
• Create a temp folder inside the doc library, and break the permission inheritance of that folder.<br />
• Create the list item (document) inside the temp folder.<br />
• And this process we did for all the 200 document library. Now we had 200 document, with each having on Temp Folder with 60 document without any inherited permission set.<br />
• Now, after the above step we created 4000 custom SharePoint group.<br />
• We picked individual document library, went inside the temp folder, moved the item to the parent list, broke the inheritance, check the copied permission, if there removed it.<br />
• So, for each list we only had 20 permission sets to be removed to a max, starting with zero for the first item.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pnair74.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pnair74.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pnair74.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pnair74.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pnair74.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pnair74.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pnair74.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pnair74.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pnair74.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pnair74.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pnair74.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pnair74.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pnair74.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pnair74.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=62&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pnair74.wordpress.com/2011/12/14/sharepoint-item-level-permisioning-successfulfailed-scenario/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1504a049e8744db14528c7453eb55d29?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepnair74</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating SharePoint Server Setup</title>
		<link>http://pnair74.wordpress.com/2011/07/16/creating-sharepoint-server-setup/</link>
		<comments>http://pnair74.wordpress.com/2011/07/16/creating-sharepoint-server-setup/#comments</comments>
		<pubDate>Sat, 16 Jul 2011 02:40:02 +0000</pubDate>
		<dc:creator>pradeepnair74</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://pnair74.wordpress.com/?p=89</guid>
		<description><![CDATA[Following links provided by @Andrew Connell about how to setup Server for Small Business and Home Office http://www.andrewconnell.com/blog/archive/2008/07/09/The-Saga-of-an-Ultimate-Virtualization-Rig-Part-1.aspx http://www.andrewconnell.com/blog/archive/2008/07/09/The-Saga-of-an-Ultimate-Virtualization-Rig-Part-2.aspx http://www.andrewconnell.com/blog/archive/2008/07/10/The-Saga-of-an-Ultimate-Virtualization-Rig-Part-3.aspx Creating Custom Quite Virtulization Machine :- http://www.andrewconnell.com/blog/articles/creatingcustomquietvirtualizationrigwithhyperv.aspx http://www.andrewconnell.com/blog/archive/2009/11/03/doing-sharepoint-2010-development-ndash-whatrsquos-in-your-rig.aspx http://www.andrewconnell.com/blog/archive/2009/07/23/a-nice-upgrade-to-my-virtualization-rig-ndash-look-mahellip.aspx http://www.andrewconnell.com/blog/archive/2011/07/10/sharepoint-2010-developmentndashwhatrsquos-in-your-rig.aspx?utm_source=feedburner&#38;utm_medium=email&#38;utm_campaign=Feed%3A+AndrewConnell+%28Andrew+Connell+%5BMVP+SharePoint%5D%29<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=89&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Following links provided by @Andrew Connell about how to setup Server for Small Business and Home Office</p>
<p>http://www.andrewconnell.com/blog/archive/2008/07/09/The-Saga-of-an-Ultimate-Virtualization-Rig-Part-1.aspx</p>
<p><a href="http://www.andrewconnell.com/blog/archive/2008/07/09/The-Saga-of-an-Ultimate-Virtualization-Rig-Part-2.aspx">http://www.andrewconnell.com/blog/archive/2008/07/09/The-Saga-of-an-Ultimate-Virtualization-Rig-Part-2.aspx</a></p>
<p><a href="http://www.andrewconnell.com/blog/archive/2008/07/10/The-Saga-of-an-Ultimate-Virtualization-Rig-Part-3.aspx">http://www.andrewconnell.com/blog/archive/2008/07/10/The-Saga-of-an-Ultimate-Virtualization-Rig-Part-3.aspx</a></p>
<p>Creating Custom Quite Virtulization Machine :- <a href="http://www.andrewconnell.com/blog/articles/creatingcustomquietvirtualizationrigwithhyperv.aspx">http://www.andrewconnell.com/blog/articles/creatingcustomquietvirtualizationrigwithhyperv.aspx</a></p>
<p><a href="http://www.andrewconnell.com/blog/archive/2009/11/03/doing-sharepoint-2010-development-ndash-whatrsquos-in-your-rig.aspx">http://www.andrewconnell.com/blog/archive/2009/11/03/doing-sharepoint-2010-development-ndash-whatrsquos-in-your-rig.aspx</a></p>
<p><a href="http://www.andrewconnell.com/blog/archive/2009/07/23/a-nice-upgrade-to-my-virtualization-rig-ndash-look-mahellip.aspx">http://www.andrewconnell.com/blog/archive/2009/07/23/a-nice-upgrade-to-my-virtualization-rig-ndash-look-mahellip.aspx</a></p>
<p><a href="http://www.andrewconnell.com/blog/archive/2011/07/10/sharepoint-2010-developmentndashwhatrsquos-in-your-rig.aspx?utm_source=feedburner&amp;utm_medium=email&amp;utm_campaign=Feed%3A+AndrewConnell+%28Andrew+Connell+%5BMVP+SharePoint%5D%29">http://www.andrewconnell.com/blog/archive/2011/07/10/sharepoint-2010-developmentndashwhatrsquos-in-your-rig.aspx?utm_source=feedburner&amp;utm_medium=email&amp;utm_campaign=Feed%3A+AndrewConnell+%28Andrew+Connell+%5BMVP+SharePoint%5D%29</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pnair74.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pnair74.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pnair74.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pnair74.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pnair74.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pnair74.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pnair74.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pnair74.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pnair74.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pnair74.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pnair74.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pnair74.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pnair74.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pnair74.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=89&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pnair74.wordpress.com/2011/07/16/creating-sharepoint-server-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1504a049e8744db14528c7453eb55d29?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepnair74</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint 2007 : Mobile page Customization Link</title>
		<link>http://pnair74.wordpress.com/2011/02/10/sharepoint-2007-mobile-page-customization/</link>
		<comments>http://pnair74.wordpress.com/2011/02/10/sharepoint-2007-mobile-page-customization/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 07:26:21 +0000</pubDate>
		<dc:creator>pradeepnair74</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://pnair74.wordpress.com/?p=85</guid>
		<description><![CDATA[Nice blog : http://blogs.msdn.com/b/carloshm/archive/2008/12/30/inside-sharepoint-customize-the-mobile-home-page.aspx<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=85&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Nice blog : http://blogs.msdn.com/b/carloshm/archive/2008/12/30/inside-sharepoint-customize-the-mobile-home-page.aspx</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pnair74.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pnair74.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pnair74.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pnair74.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pnair74.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pnair74.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pnair74.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pnair74.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pnair74.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pnair74.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pnair74.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pnair74.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pnair74.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pnair74.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=85&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pnair74.wordpress.com/2011/02/10/sharepoint-2007-mobile-page-customization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1504a049e8744db14528c7453eb55d29?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepnair74</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint : Content Types</title>
		<link>http://pnair74.wordpress.com/2010/06/13/sharepoint-content-types/</link>
		<comments>http://pnair74.wordpress.com/2010/06/13/sharepoint-content-types/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 11:59:59 +0000</pubDate>
		<dc:creator>pradeepnair74</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SP2010]]></category>

		<guid isPermaLink="false">http://pnair74.wordpress.com/?p=82</guid>
		<description><![CDATA[Content Type IDs : http://msdn.microsoft.com/en-us/library/aa543822.aspx Content Type Definition : http://msdn.microsoft.com/en-us/library/ms463449.aspx Base Content Type hierarchy : http://msdn.microsoft.com/en-us/library/ms452896.aspx Content Types : - SP 2010 : http://msdn.microsoft.com/en-us/library/ms479905(v=office.14).aspx - MOSS 2007 : http://msdn.microsoft.com/en-us/library/ms479905(v=office.12).aspx<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=82&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Content Type IDs : http://msdn.microsoft.com/en-us/library/aa543822.aspx</p>
<p>Content Type Definition : http://msdn.microsoft.com/en-us/library/ms463449.aspx</p>
<p>Base Content Type hierarchy : http://msdn.microsoft.com/en-us/library/ms452896.aspx</p>
<p>Content Types :</p>
<p>- SP 2010 : http://msdn.microsoft.com/en-us/library/ms479905(v=office.14).aspx</p>
<p>- MOSS 2007 : http://msdn.microsoft.com/en-us/library/ms479905(v=office.12).aspx</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pnair74.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pnair74.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pnair74.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pnair74.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pnair74.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pnair74.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pnair74.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pnair74.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pnair74.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pnair74.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pnair74.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pnair74.wordpress.com/82/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pnair74.wordpress.com/82/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pnair74.wordpress.com/82/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=82&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pnair74.wordpress.com/2010/06/13/sharepoint-content-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1504a049e8744db14528c7453eb55d29?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepnair74</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint 2010 : List of Books on SP2010</title>
		<link>http://pnair74.wordpress.com/2010/06/13/sharepoint-2010-list-of-books-on-sp2010/</link>
		<comments>http://pnair74.wordpress.com/2010/06/13/sharepoint-2010-list-of-books-on-sp2010/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 07:43:18 +0000</pubDate>
		<dc:creator>pradeepnair74</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SP2010]]></category>

		<guid isPermaLink="false">http://pnair74.wordpress.com/?p=75</guid>
		<description><![CDATA[Nice Link from Joel.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=75&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Nice Link from <a title="SP 2010 Books Lists" href="http://www.sharepointjoel.com/Lists/Posts/Post.aspx?List=0cd1a63d-183c-4fc2-8320-ba5369008acb&amp;ID=342&amp;utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A%20JoelsSharepointLand%20(Joel%20Oleson%27s%20SharePoint%20Land)" target="_blank">Joel</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pnair74.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pnair74.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pnair74.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pnair74.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pnair74.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pnair74.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pnair74.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pnair74.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pnair74.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pnair74.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pnair74.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pnair74.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pnair74.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pnair74.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=75&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pnair74.wordpress.com/2010/06/13/sharepoint-2010-list-of-books-on-sp2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1504a049e8744db14528c7453eb55d29?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepnair74</media:title>
		</media:content>
	</item>
		<item>
		<title>UX Patterns</title>
		<link>http://pnair74.wordpress.com/2010/05/05/ux-patterns/</link>
		<comments>http://pnair74.wordpress.com/2010/05/05/ux-patterns/#comments</comments>
		<pubDate>Wed, 05 May 2010 13:01:20 +0000</pubDate>
		<dc:creator>pradeepnair74</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pnair74.wordpress.com/?p=73</guid>
		<description><![CDATA[http://professionalaspnet.com/archive/2010/05/04/5-UX-Resources-for-Developers.aspx<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=73&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>http://professionalaspnet.com/archive/2010/05/04/5-UX-Resources-for-Developers.aspx</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pnair74.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pnair74.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pnair74.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pnair74.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pnair74.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pnair74.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pnair74.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pnair74.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pnair74.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pnair74.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pnair74.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pnair74.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pnair74.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pnair74.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=73&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pnair74.wordpress.com/2010/05/05/ux-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1504a049e8744db14528c7453eb55d29?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepnair74</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint Feature Lists</title>
		<link>http://pnair74.wordpress.com/2010/04/29/sharepoint-feature-lists/</link>
		<comments>http://pnair74.wordpress.com/2010/04/29/sharepoint-feature-lists/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 05:38:39 +0000</pubDate>
		<dc:creator>pradeepnair74</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://pnair74.wordpress.com/?p=71</guid>
		<description><![CDATA[WSS Feature • Real-Time Presence and Collaboration Office Communicator and Live Communication Server also help facilitate Online Presence. • Consistent User interface – A consistent look and feel can be achieved using OOB Themes and skins and also with custom Theme, which can be easily uploaded to sharepoint. • Collaboration Site Templates – WSS 3.0&#160;&#8230; <a href="http://pnair74.wordpress.com/2010/04/29/sharepoint-feature-lists/">Read&#160;more</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=71&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>WSS Feature<br />
•	Real-Time Presence and Collaboration Office Communicator and Live Communication Server also help facilitate Online Presence.<br />
•	Consistent User interface – A consistent look and feel can be achieved using OOB Themes and skins and also with custom Theme, which can be easily uploaded to sharepoint.<br />
•	Collaboration Site Templates – WSS 3.0 includes easy-to-use, easy-to-create team sites, document workspaces, meeting workspaces, blogs, wikis, and even blank sites.<br />
•	Wikis – WSS 3.0 support creation of Wiki Site.<br />
•	Blogs – WSS 3.0 support creation of Blog Site.<br />
•	People and Groups List &#8211; Find people, add users, manage permissions, and create groups.<br />
•	Calendars – Enhanced for WSS 3.0, calendars allow shared views of events; supporting recurring events, all day events, and richer calendar views.<br />
•	Email Integration – SharePoint’s incoming email can integrate with Active Directory and Exchange 2003 to create contacts for list and libraries, as well as SharePoint group distribution lists.<br />
•	Task Coordination &#8211; Enhanced with a Gantt Chart view for project tasks, the Tasks list supports lightweight task management with task assignment, scheduling, prioritizing, task relationships, and status.<br />
•	Surveys &#8211; Can be used to collect statistical data that is generated by user responses to custom lists of questions. Support graphical views and branching logic.<br />
•	Document Collaboration &#8211; Document libraries support required check out, versioning (major and minor), multiple content types, Explorer view, and workflows.<br />
•	Issue Tracking &#8211; Issue assignment, status, priority, issue relationship, and scheduling. It also comes with a default, three-part workflow, and category assignment.<br />
•	Mobile Device Support &#8211; WSS 3.0 can support page rendering on international and North American web-enabled phones. Alternate page rendered specifically for Mobile Device user access.<br />
•	Office Integration – WSS 3.0 has a tight integration with Office 2007 Suite.<br />
•	Search<br />
•	Content Management – Enhanced content management (integrated between Office 2007 and WSS 3.0) offers a content panel that makes it easier for users to edit the document properties while working on the document in Word.<br />
•	Alerts Users can set alerts for changes in any list or library, and they can be notified by email when those changes occur, eliminating the need to check the list or library manually.<br />
•	Task Notification &#8211; Users to receive email notification if a task is assigned to them. Further, there is a new web part that can be used to display all tasks assigned to a user when they log in.<br />
•	RSS Feeds – Every lists and library within WSS are RSS Feed enabled.<br />
•	Recycle Bin – Two level of recycle bin is available where in anything deleted within sites can be restored.<br />
•	Backup and Restore (with VSS &#8211; Volume Shadow Copy technology) – Backing up and restoring SharePoint is another new feature available in the administrative interface for WSS 3.0.<br />
•	List Indexing Another new addition to WSS 3.0, this feature improves performance and capacity of large lists through the indexing of specific list columns.<br />
•	Content Types – They list item templates, and can be associated with their own workflows and metadata and used in any list or library.<br />
•	Workflows – Customizable structured workflows are supported for document libraries and lists. Workflows are a process management feature that triggers actions based on the status of library or list items.<br />
•	Folder Organization – Allow items to be organized in folders in documents libraries and lists in WSS 3.0. Make huge libraries or lists easier to view and manage or comfort users who are more familiar with file shares.<br />
•	Item Level Security – Each Item can have its own Access Control List, which offers more granular security.<br />
•	Centralized Configuration Management – Using ASP.NET 2.0, SharePoint supports a central administrative site.<br />
•	Site Management – Sites can be easily deployed using site templates and definitions. They are easily customized, and they can be saved as templates to be used elsewhere. Also, new to WSS 3.0, site hierarchies can be reorganized, which means that subsites can be moved from under one site and placed under another.<br />
•	Alternate Access Mapping and Zones This allows SharePoint to respond to alternate addresses and apply the correct authentication requirements depending on the address’s zone.<br />
•	Monitoring This feature provides usage analysis and diagnostic logging to enable administrators to better manage SharePoint resources.</p>
<p>MOSS Feature<br />
•	Portal Site Templates – Additional site templates are especially geared toward centralizing user access to other locations and applications: Enterprise, Corporate Internet presence site, Application Portal Site, and a Roll Up portal site. Enhanced CSS support is also available for extensive corporate branding of portal sites.<br />
•	Socialization and Personalization – Offers personalized public My Sites for each user. As well as web parts, such as the SharePoint sites and documents roll up web part (which can list colleagues, friends, and members of a common distribution group), and a social networking web part (which uses information from colleagues’ my site information to aggregate common interests). Convenient content authoring and publishing for users is also available through the browser.<br />
•	Enhanced Search – MOSS offers more robust search capabilities across enterprise content sources (sources beyond a single site collection, such as file shares, websites, other SharePoint servers, public folders, and Lotus Notes databases) and supports 200 different file types, relevance ranking, people search, and extensive search indexing administration and control.<br />
•	Business Document Management – With additional workflow features built-in (approvals, feedback, and signature collection), MOSS has enhanced document management sites with document libraries that enforce information rights policies with integrated rights management, auditing and retention policies, and legal document processing, as well as record repositories for archiving inactive documents.<br />
•	Business Processes and Forms – The enterprise version of MOSS offers enhanced support for business form use and management. Users can fill out Office InfoPath forms from the browser. Integrated heavily with InfoPath 2007, MOSS supports design-once development. It has a Form Import Wizard and centralized forms management and control.<br />
•	Business Intelligence – MOSS features an integrated business dashboard that assembles and displays information from different sources. The Enterprise version also offers integrated spreadsheet publishing and management, Excel services, data connection library, business data catalogs, business data web part and actions, a Report Center, and Key Performance Indicators.<br />
•	Single Sign-On – This feature integrates with Microsoft systems and line of business applications. It requires a separate credentials database. It allows users to log on to a portal site and have their credentials passed to other backend applications.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pnair74.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pnair74.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pnair74.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pnair74.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pnair74.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pnair74.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pnair74.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pnair74.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pnair74.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pnair74.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pnair74.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pnair74.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pnair74.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pnair74.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=71&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pnair74.wordpress.com/2010/04/29/sharepoint-feature-lists/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1504a049e8744db14528c7453eb55d29?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepnair74</media:title>
		</media:content>
	</item>
		<item>
		<title>MOSS : Top Navigation customization with css</title>
		<link>http://pnair74.wordpress.com/2010/04/22/moss-top-navigation-customization-with-css/</link>
		<comments>http://pnair74.wordpress.com/2010/04/22/moss-top-navigation-customization-with-css/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 11:33:10 +0000</pubDate>
		<dc:creator>pradeepnair74</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://pnair74.wordpress.com/?p=65</guid>
		<description><![CDATA[Nice article on EndUserSharepoing .com<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=65&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Nice article on<a href="http://www.endusersharepoint.com/2010/04/08/moss-2007-css-and-you-the-non-developer-%E2%80%93-part-5-the-topnavigation-and-the-siteactions-menus/" target="_blank"> EndUserSharepoing </a>.com</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pnair74.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pnair74.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pnair74.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pnair74.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pnair74.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pnair74.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pnair74.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pnair74.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pnair74.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pnair74.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pnair74.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pnair74.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pnair74.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pnair74.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=65&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pnair74.wordpress.com/2010/04/22/moss-top-navigation-customization-with-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1504a049e8744db14528c7453eb55d29?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepnair74</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint : Quick Launch page name and their functions</title>
		<link>http://pnair74.wordpress.com/2010/03/22/sharepoint-quick-launch-page-name-and-their-functions/</link>
		<comments>http://pnair74.wordpress.com/2010/03/22/sharepoint-quick-launch-page-name-and-their-functions/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 08:04:38 +0000</pubDate>
		<dc:creator>pradeepnair74</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://pnair74.wordpress.com/2010/03/22/sharepoint-quick-launch-page-name-and-their-functions/</guid>
		<description><![CDATA[If you want to directly access the Quick Launch menu without going to Site Settings you can do that using the following url. I assume you know what goes before _layouts. _layouts/quiklnch.aspx &#8211; Add/Remove/Update the item on the Quick Launch Bar _layouts/qlreord.aspx &#8211; To change the order of the Quick Launch Item. _layouts/editnav.aspx?ID= &#8211; To&#160;&#8230; <a href="http://pnair74.wordpress.com/2010/03/22/sharepoint-quick-launch-page-name-and-their-functions/">Read&#160;more</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=60&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you want to directly access the Quick Launch menu without going to Site Settings you can do that using the following url. I assume you know what goes before _layouts. </p>
<p>_layouts/quiklnch.aspx &#8211; Add/Remove/Update the item on the Quick Launch Bar<br />
_layouts/qlreord.aspx &#8211; To change the order of the Quick Launch Item.<br />
_layouts/editnav.aspx?ID= &#8211; To delete or update the url and the description</p>
<p>MSDN Link &#8211; http://msdn.microsoft.com/en-us/library/ms471078.aspx</p>
<p>Regards,<br />
Pradeep Nair</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pnair74.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pnair74.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pnair74.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pnair74.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pnair74.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pnair74.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pnair74.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pnair74.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pnair74.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pnair74.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pnair74.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pnair74.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pnair74.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pnair74.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=60&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pnair74.wordpress.com/2010/03/22/sharepoint-quick-launch-page-name-and-their-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1504a049e8744db14528c7453eb55d29?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepnair74</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharepoint : CQWP</title>
		<link>http://pnair74.wordpress.com/2010/03/18/sharepoint-cqwp/</link>
		<comments>http://pnair74.wordpress.com/2010/03/18/sharepoint-cqwp/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 18:25:41 +0000</pubDate>
		<dc:creator>pradeepnair74</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://pnair74.wordpress.com/2010/03/18/sharepoint-cqwp/</guid>
		<description><![CDATA[http://msdn.microsoft.com/en-us/library/ff380147.aspx http://blogs.msdn.com/b/ecm/archive/2010/05/14/what-s-new-with-the-content-query-web-part.aspx<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=59&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://msdn.microsoft.com/en-us/library/ff380147.aspx">http://msdn.microsoft.com/en-us/library/ff380147.aspx</a></p>
<p>http://blogs.msdn.com/b/ecm/archive/2010/05/14/what-s-new-with-the-content-query-web-part.aspx</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/pnair74.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/pnair74.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/pnair74.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/pnair74.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/pnair74.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/pnair74.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/pnair74.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/pnair74.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/pnair74.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/pnair74.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/pnair74.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/pnair74.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/pnair74.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/pnair74.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pnair74.wordpress.com&amp;blog=11170125&amp;post=59&amp;subd=pnair74&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://pnair74.wordpress.com/2010/03/18/sharepoint-cqwp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1504a049e8744db14528c7453eb55d29?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">pradeepnair74</media:title>
		</media:content>
	</item>
	</channel>
</rss>
