<?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 Insight</title>
	<atom:link href="http://www.sharepoint-insight.com/wp-404-handler.php?404;http://www.sharepoint-insight.com:80/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sharepoint-insight.com</link>
	<description>Sharepoint Tips, Tricks and inside knowledge from real world experience by Namwar Rizvi</description>
	<lastBuildDate>Tue, 21 Feb 2012 21:40:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>Correct way of generating Source parameter value in your SharePoint Link</title>
		<link>http://www.sharepoint-insight.com/2012/02/21/correct-way-of-generating-source-parameter-value-in-your-sharepoint-link/</link>
		<comments>http://www.sharepoint-insight.com/2012/02/21/correct-way-of-generating-source-parameter-value-in-your-sharepoint-link/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 21:40:39 +0000</pubDate>
		<dc:creator>namwar</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[WSS 3]]></category>

		<guid isPermaLink="false">http://www.sharepoint-insight.com/?p=488</guid>
		<description><![CDATA[As you may already know that SharePoint uses Source parameter in query string to take you back to the page from where you came. The value of the Source paramter must be properly encoded. Don&#8217;t worry, you do not need to write your own Javascript function to do this. Just use already provided function called [...]]]></description>
			<content:encoded><![CDATA[<p>As you may already know that SharePoint uses <strong>Source</strong> parameter in query string to take you back to the page from where you came.</p>
<p>The value of the <strong>Source </strong>paramter must be properly encoded. Don&#8217;t worry, you do not need to write your own Javascript function to do this. Just use already provided function called <strong> </strong></p>
<p><strong>GetSource(defaultSource) </strong></p>
<p>It will return you properly encoded string to pass as <strong>Source </strong>parameter value. Following is the logic inside this function:</p>
<ol>
<li>Try to retrieve the value <strong>Source</strong> parameter from current query string.</li>
<li>if <strong>Source </strong>parameter found then return it by properly encoding and making sure it is safe to navigate.</li>
<li>If there is no Source parameter in Query string then
<ul>
<li>Check if <strong>defaultSource</strong> has a non empty value,</li>
<li>if yes then return it by properly encoding and making sure it is safe to navigate.</li>
<li>Otherwise, return the current page url by properly encoding and making sure it is safe to navigate.</li>
</ul>
</li>
</ol>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.sharepoint-insight.com%2F2012%2F02%2F21%2Fcorrect-way-of-generating-source-parameter-value-in-your-sharepoint-link%2F&amp;title=Correct%20way%20of%20generating%20Source%20parameter%20value%20in%20your%20SharePoint%20Link" id="wpa2a_2"><img src="http://www.sharepoint-insight.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.sharepoint-insight.com/2012/02/21/correct-way-of-generating-source-parameter-value-in-your-sharepoint-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Javascript Functions and objects in SharePoint – Part 2</title>
		<link>http://www.sharepoint-insight.com/2012/02/20/useful-javascript-functions-and-objects-in-sharepoint-%e2%80%93-part-2-2/</link>
		<comments>http://www.sharepoint-insight.com/2012/02/20/useful-javascript-functions-and-objects-in-sharepoint-%e2%80%93-part-2-2/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 23:41:46 +0000</pubDate>
		<dc:creator>namwar</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Concepts]]></category>
		<category><![CDATA[Guidance]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[WSS 3]]></category>

		<guid isPermaLink="false">http://www.sharepoint-insight.com/?p=481</guid>
		<description><![CDATA[In my last article &#8220;Useful Javascript Functions and objects in SharePoint – Part 1&#8220;  I listed some useful javascript objects in SharePoint. Today I will continue exploring useful functions. DOM Management byid(id) = Return element for the given id newE(tag) = Create a new dom element of the given tag e.g. div etc. wpf() = [...]]]></description>
			<content:encoded><![CDATA[<div>In my last article &#8220;<a title="Useful Javascript Functions and objects in SharePoint – Part 1" href="http://www.sharepoint-insight.com/2012/02/19/useful-javascript-functions-and-objects-in-sharepoint-part-1/" target="_blank">Useful Javascript Functions and objects in SharePoint – Part 1</a>&#8220;  I listed some useful javascript objects in SharePoint.</div>
<div>Today I will continue exploring useful functions.</div>
<div><strong>DOM Management</strong></div>
<ol>
<li><strong>byid</strong>(id)	=	Return element for the given id</li>
<li><strong>newE</strong>(tag)	=	Create a new dom element of the given tag e.g. div etc.</li>
<li><strong>wpf</strong>()	 =	return ASP.net form object for the current web part page</li>
<li><strong>GetEventSrcElement</strong>(e)	 =	return source element for the given event object</li>
<li><strong>GetEventKeyCode</strong>(e)	=	Return key code of the currently pressed key for the given object</li>
<li><strong>GetInnerText</strong>(e)	=	Return inner html for the given object</li>
</ol>
<p><strong>HTML Encoding and Decoding</strong></p>
<ol>
<li><strong>escapeProperlyCoreCore</strong>(str, bAsUrl, bForFilterQuery, bForCallback)	=	Very useful function to perform any type of string escaping. Last three parameters are flags to perform deifferent type of escaping i.e.
<ul>
<li>bAsUrl	 =	true, for url escaping</li>
<li>bForFilterQuery	=	true, for filter query escaping</li>
<li>bForCallback	 =	true, for call back escaping</li>
</ul>
</li>
<li><strong>escapeProperly</strong>(str)	=	Escapes the given string to make it valid SharePoint compatible string. It internally calls escapeProperlyCoreCore to perform the actual escaping</li>
<li><strong>escapeUrlForCallback</strong>(str)	=	Escapes the given string to make it valid url for call back</li>
<li><strong>encodeScriptQuote</strong>(str)	=	Replace the apostrophe i.e. ‘ to %27 in the given string</li>
<li><strong>STSHtmlEncode</strong>(str)	 =	Encodes the reserved characters to their respective HTML entities in the given string. For example “&lt;div&gt;” will become &amp;lt;div&amp;gt;</li>
<li><strong>StAttrQuote</strong>(st)	 =	Encodes the “&amp;”, “ “ ” and carriage return to their respective HTML entities in the given string.</li>
<li><strong>STSScriptEncode</strong>(str)	 =	Encodes the given string for use in script. It has the same functionality as SPEncode.ScriptEncode defined <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.utilities.spencode.scriptencode%28v=office.12%29.aspx">here</a></li>
<li><strong>STSScriptEncodeWithQuote </strong>=	Encodes the specified string so that characters in embedded HTML tags are displayed as text in the browser, and writes the string in quotation marks</li>
<li><strong>escapeForSync</strong>(str)	=	Encodes the given string for syncing. Need further clarification.</li>
<li><strong>Vutf8ToUnicode</strong>(rgBytes)	= Converts the given utf8 string to unicode</li>
<li><strong>unescapeProperly</strong>(str)	=	Unescapes the given escaped string</li>
</ol>
<p><strong>Validations</strong></p>
<ol>
<li><strong>PageUrlValidation</strong>(url)	 =	Checks if the given string is a valid url or not.</li>
<li><strong>IndexOfIllegalCharInUrlLeafName</strong>(strLeafName)	=	Return the index of character in the given string which is illegal to be used in url leaf name.</li>
<li><strong>IndexOfIllegalCharInUrlPath</strong>(strPath)	=	 Return the index of character in the given string which is illegal to be used in url leaf name.</li>
<li><strong>UrlContainsIllegalStrings</strong>(strPath)	=	Returns true if the given string contains an illegal character which can not be used in a url. Otherwise, return false.</li>
<li><strong>UrlLeafNameValidate</strong>(source, args)	=	Validates the url leaf name. Returns true if valid otherwise, false. Need further clarification.</li>
<li><strong>UrlPathValidate </strong>(source, args)	 =	Validates the url path. Returns true if valid otherwise, false. Need further clarification.</li>
<li><strong>IsCheckBoxListSelected</strong>(checkboxlist)	 =	Returns true, if the given checkbox is either null or at least one check box is checked in it.</li>
<li><strong>IsAccessibilityFeatureEnabled</strong>()	=	Returns true, if the accessibility feature is enabled by checking the cookie called “WSS_AccessibilityFeature”</li>
</ol>
<p><strong>Cookie Management</strong></p>
<ol>
<li>DeleteCookie(sName)	 =	Deletes the given cookie by setting its expiry date to 01-Jan-1970</li>
<li>GetCookie(sName)	 =	Returns the given cookie</li>
</ol>
<p><strong>Navigation</strong></p>
<ol>
<li><strong>navigateMailToLink</strong>(strUrl, strUrlNew)	=	Creates a mail to link for the given url</li>
<li><strong>GetUrlFromWebUrlAndWebRelativeUrl</strong>(webUrl, webRelativeUrl)	=	Creates a url by combining webUrl and relative url. It takes care of checking null webUrl and slash character at the end.</li>
</ol>
<p><strong>Syncing with other applications</strong></p>
<ol>
<li><strong>GetStssyncAppNameForType</strong>(strType,strDefault)	=	Returns an string similar to &#8220;Connect to Outlook&#8221; etc. depending on the given type.</li>
<li><strong>GetStssyncIconPath</strong>(strDefault, strPrefix)	 =	Returns the path of icon image for the given syncing application type.</li>
<li><strong>ExportHailStorm </strong>( &#8230;.. )	=	Creates connection to Outlook. Check <a title="ExportHailStorm" href="http://echef.chaosfarm.net/2008/08/scripting-to-outlook-function.html">here</a> for further details.</li>
</ol>
<p><strong>Miscellaneous</strong></p>
<ol>
<li><strong>DeferCall</strong>()	 =	Not sure.</li>
<li><strong>AdmBuildParam</strong>(stPattern)	=	Not sure.</li>
</ol>
<p>To be continued&#8230;.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.sharepoint-insight.com%2F2012%2F02%2F20%2Fuseful-javascript-functions-and-objects-in-sharepoint-%25e2%2580%2593-part-2-2%2F&amp;title=Useful%20Javascript%20Functions%20and%20objects%20in%20SharePoint%20%E2%80%93%20Part%202" id="wpa2a_4"><img src="http://www.sharepoint-insight.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.sharepoint-insight.com/2012/02/20/useful-javascript-functions-and-objects-in-sharepoint-%e2%80%93-part-2-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Javascript Functions and objects in SharePoint &#8211; Part 1</title>
		<link>http://www.sharepoint-insight.com/2012/02/19/useful-javascript-functions-and-objects-in-sharepoint-part-1/</link>
		<comments>http://www.sharepoint-insight.com/2012/02/19/useful-javascript-functions-and-objects-in-sharepoint-part-1/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 23:07:47 +0000</pubDate>
		<dc:creator>namwar</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[SP2010]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[Utility Functions]]></category>
		<category><![CDATA[WSS 3]]></category>

		<guid isPermaLink="false">http://www.sharepoint-insight.com/?p=465</guid>
		<description><![CDATA[SharePoint has a huge set of javascript functions and objects which are defined in essential SharePoint javascript files like init.js, core.js, forms.js etc. These files are necessary for SharePoint to function properly. There is no reason to reinvent the wheel by writing your own javascript function for something which is already provided by these core [...]]]></description>
			<content:encoded><![CDATA[<p>SharePoint has a huge set of javascript functions and objects which are defined in essential SharePoint javascript files like init.js, core.js, forms.js etc. These files are necessary for SharePoint to function properly. There is no reason to reinvent the wheel by writing your own javascript function for something which is already provided by these core javascript files.<br />
I will run a series of articles to list down necessary objects and functions provided by SharePoint. I hope you will find them useful.</p>
<p><strong>Useful Objects</strong></p>
<p><strong>JSRequest </strong>: It is a global object which is used to get information about current page. It has following properties:</p>
<ol>
<li>QueryString : An array of Querystring key and values,</li>
<li>FileName : Name of the current file e.g. default.aspx</li>
<li>PathName : current path of the page</li>
</ol>
<p><strong>NOTE: </strong>Before using this object properties, always call JSRequest.Ensuresetup()</p>
<p><strong>L_Menu_BaseUrl</strong> : Relative path for current site. e.g.  &#8220;/TestSite&#8221;. It is useful to construct web relative paths for ajax calls of web services etc.</p>
<p><strong>L_Menu_LCID</strong> : Current culture Id e.g.  &#8220;1033&#8243; for US English.  It is useful to retrieve culture specific files, if need.</p>
<p><strong>L_Menu_SiteTheme </strong>: Current site theme name e.g. Lacquer. If no theme is applied then it will be empty.</p>
<p><strong>browseris</strong> : This object has several properties to detect browser name, major and minor version, operating system version etc. For example, if you want to know whether the current browser is IE or not then check <strong>browseris.ie. </strong>If it is true then IE else others. To get full details of its properties, use FireBug.</p>
<p><strong>LegalUrlChars</strong> : Array of all characters which are allowed in Url for SharePoint.</p>
<p><strong>_spBodyOnLoadFunctionNames</strong> : Array of javascript function names to be executed just after DOM is fully loaded. If you want to execute any of your function once the page is fully loaded then add your function name in this array. For example _spBodyOnLoadFunctionNames.push(&#8220;MyFunction&#8221;);</p>
<p><strong>_spUserId </strong>: User Id of the currently logged in user. It is an integer e.g. 1. You can use this value perform any logic against a currently logged in user.</p>
<p><strong>ctx or ctx1 or ctx2 &#8230; etc.</strong> There can be many ctx objects in a single page. These objects are instances of <strong>ContextInfo</strong> class. They are used to provide user context information necessary to create Edit Control Block menu items. Please use FireBug to see the list of all properties available. Visit <a title="CTX Object" href="https://www.nothingbutsharepoint.com/sites/eusp/Pages/jquery-for-everyone-create-a-client-side-object-model.aspx">here</a> for more info</p>
<p><strong>g_ExtensionDefaultForRead</strong> : An array of file extension strings which are always checked out as Read only. For example, jpg, jpeg, bmp etc.</p>
<p><strong>g_ExtensionNotSupportCheckoutToLocal</strong> : An array of file extension strings which are not allowed to checkout locally. For example, aspx, ascx, cmd etc.</p>
<p>Check my next post for available Javascript functions.</p>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.sharepoint-insight.com%2F2012%2F02%2F19%2Fuseful-javascript-functions-and-objects-in-sharepoint-part-1%2F&amp;title=Useful%20Javascript%20Functions%20and%20objects%20in%20SharePoint%20%26%238211%3B%20Part%201" id="wpa2a_6"><img src="http://www.sharepoint-insight.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.sharepoint-insight.com/2012/02/19/useful-javascript-functions-and-objects-in-sharepoint-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quickest way to create Slide Show from your Picture Library in SharePoint</title>
		<link>http://www.sharepoint-insight.com/2012/02/05/quickest-way-to-create-slide-show-from-your-picture-library-in-sharepoint/</link>
		<comments>http://www.sharepoint-insight.com/2012/02/05/quickest-way-to-create-slide-show-from-your-picture-library-in-sharepoint/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 19:44:50 +0000</pubDate>
		<dc:creator>namwar</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[CAML]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[User Inteface]]></category>
		<category><![CDATA[WSS 3]]></category>

		<guid isPermaLink="false">http://www.sharepoint-insight.com/?p=454</guid>
		<description><![CDATA[Although there are many scripts available on internet which helps you to create slide show or image carousel but none of them gives us the ability to display Title and Description along with the image. I searched quite a lot and then ultimately end up creating my own. I must clarify that I have not [...]]]></description>
			<content:encoded><![CDATA[<p>Although there are many scripts available on internet which helps you to create slide show or image carousel but none of them gives us the ability to display Title and Description along with the image. I searched quite a lot and then ultimately end up creating my own.</p>
<p>I must clarify that I have not written the entire code myself. What I have done is to use the following already available JavaScript libraries and then assemble them in a way which gives us a quickest way to create image carousel from SharePoint Picture Library:</p>
<p>Enough talk, now lets come to the point:)</p>
<p><strong>Step 1: Plugin Setup</strong></p>
<ol>
<li>Download the <a title="Easy Slider Plugin" href="http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider" target="_blank">Easy Slider Plugin</a> from http://cssglobe.com/lab/easyslider1.7/easyslider1.7.zip</li>
<li>Unzip the file and Upload <strong>easySlider1.7.js</strong> to a document library.</li>
</ol>
<p><strong>Step 2: Note down the List ID</strong></p>
<ol>
<li>Navigate to your Site Actions -&gt; Site Settings</li>
<li>Under <strong>Site Administration</strong>, click <strong>Site libraries and lists</strong></li>
<li>Click on your Picture Library name, to open it.</li>
<li>Note down the value of parameter <strong>List</strong> as displayed in Url window of your Internet explorer. It will be something like {26EC0E08-3D8A-4C67-ABF5-909D572B3030}</li>
<li>Add a content editor web part (CEWP) on your target page</li>
</ol>
<p><strong>Step 3: Set up Content Editor Web Part</strong></p>
<ol>
<li>On your target page, add a content editor web part (CEWP)</li>
<li>Paste the following code in <strong>Source Editor</strong></li>
</ol>
<pre class="brush: xml; title: ; notranslate">

&lt;script type=&quot;text/javascript&quot; src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&quot;&gt;&lt;/script&gt;

&lt;!-- Step 1:  Download easy slider plugin fromhttp://cssglobe.com/lab/easyslider1.7/easyslider1.7.zip  --&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;http://TestServer/TestSite/js/easySlider.js&quot;&gt;&lt;/script&gt;

	&lt;script type=&quot;text/javascript&quot;&gt;
	_spBodyOnLoadFunctionNames.push(&quot;startSlider&quot;);

    function startSlider() {
		//Step 2 Replace {26EC0E08-3D8A-4C67-ABF5-909D572B3030} with the ID of your picture library
        var soapEnv =
            &quot;&lt;soapenv:Envelope xmlns:soapenv='http://schemas.xmlsoap.org/soap/envelope/'&gt; \
                &lt;soapenv:Body&gt; \
                     &lt;GetListItems xmlns='http://schemas.microsoft.com/sharepoint/soap/'&gt; \
                        &lt;listName&gt;{26EC0E08-3D8A-4C67-ABF5-909D572B3030}&lt;/listName&gt; \
                         &lt;viewFields&gt; \
                            &lt;ViewFields&gt; \
                               &lt;FieldRef Name='Title' /&gt; \
                           &lt;/ViewFields&gt; \
                        &lt;/viewFields&gt; \
                    &lt;/GetListItems&gt; \
                &lt;/soapenv:Body&gt; \
            &lt;/soapenv:Envelope&gt;&quot;;
        $.ajax({
            url:  &quot;//&quot;+window.location.hostname+L_Menu_BaseUrl+&quot;/_vti_bin/lists.asmx&quot;,
            type: &quot;POST&quot;,
            dataType: &quot;xml&quot;,
            data: soapEnv,
            complete: processResult,
            contentType: &quot;text/xml; charset=\&quot;utf-8\&quot;&quot;
        });
    };
    function processResult(xData, status) {

		//Uncomment the following line to see the raw xml received from lists.asmx
		//$(&quot;#rawXml&quot;).text(xData.responseText);

        $(xData.responseXML).find(&quot;z\\:row&quot;).each(function() {

			//Get relevant field values
			imageUrl=&quot;//&quot;+window.location.hostname + &quot;/&quot; + $(this).attr(&quot;ows_FileRef&quot;).split(&quot;;#&quot;)[1];
            var description=getDescription( $(this).attr(&quot;ows_MetaInfo&quot;));
			var title=$(this).attr(&quot;ows_Title&quot;);

			//Construct required HTML Markup
			var liHtml = &quot;&lt;li&gt;&lt;h3&gt;&quot; + title + &quot;&lt;/h3&gt;&quot; ;
			liHtml+=&quot;&lt;IMG border=0 alt='&quot; + title + &quot;'src='&quot; + imageUrl + &quot;' &gt;&quot;;
			liHtml+=&quot;&lt;p&gt;&quot; + description + &quot;&lt;/p&gt;&quot;;
			liHtml+=&quot;&lt;/li&gt;&quot;;

			//Add markup as line item in UL tag
            $(&quot;#imagesUL&quot;).append(liHtml);
        });

		//Start Slider
		//For full options, refer to http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding
		$(&quot;#slider&quot;).easySlider({
			auto: true,
			continuous: true,
			controlsShow : false,
			speed : 800,
			pause : 4000
		});

		}
	function getDescription(metaInfo)
	{
		var description=&quot;&quot;;
		if(metaInfo!=null)
		{
			metaParts=metaInfo.split(&quot;\n&quot;);
			if(metaParts!=null &amp;&amp; metaParts.length&gt;0)
			{
				var i=0;
				do
				{
					if(metaParts[i].indexOf(&quot;vti_description&quot;)&gt;-1)
					{
						var descParts=metaParts[i].split(&quot;|&quot;);
						if(descParts!=null &amp;&amp; descParts.length&gt;1)
						{
							description=descParts[1];
						}
					}
					i++;
				} while (i&lt;metaParts.length &amp;&amp; description==&quot;&quot; );
			}
		}
		return description;
	}
&lt;/script&gt;
&lt;style type=&quot;text/css&quot;&gt;
#slider{border-bottom:2px solid #ccc; background:#eee; padding:5px;	font-size:x-small;}
#slider h5{font:italic medium Georgia, Times, serif; color:#555; padding:3px; margin-bottom:-10px; background:#c6c6c6;}
#slider h5 span{text-transform:lowercase; padding:5px; font:x-small normal Arial, Helvetica, san-serif;}
#slider div {font-size: x-small; padding:3px;}
#slider ul, #slider li{margin:0; padding:0; list-style:none;}
#slider li{width:310;	height:400px; overflow:hidden; padding:0px;}
#controls2 {padding:3px 0 0 0; text-align:right; width:300;}
#prevBtn, #nextBtn{}
#nextBtn{}
#prevBtn a, #nextBtn a{font-size:x-small; background-color:#ccc; color:#444; padding:2px; text-decoration:none;}
#nextBtn a{}

&lt;/style&gt;
	&lt;div id=&quot;rawXml&quot; &gt;&lt;/div&gt;
   	&lt;div id=&quot;slider&quot;&gt;
		&lt;ul id=&quot;imagesUL&quot;/&gt;
	&lt;/div&gt;
</pre>
<p><strong>Step 4: Update Code</strong></p>
<ol>
<li>Replace <strong>{26EC0E08-3D8A-4C67-ABF5-909D572B3030}</strong> by the List ID you got in step 2, above</li>
<li>Click <strong>OK, </strong>exit edit mode and Enjoy!</li>
</ol>
<p><strong>Notes:</strong></p>
<ol>
<li>This code is a sample code and you may need to change the styles section to match your site&#8217;s theme.</li>
<li>Please make sure all your images are of same size, if not, then please adjust the size in line 47 of source code.</li>
<li>This code assumes the size of images as 300&#215;300 pixels, if you need to change it then update the relevant size at line 98.</li>
</ol>
<p>All credits goes to <a title="jQuery Site" href="http://jquery.com/">JQuery</a> and <a title="Easy Slider" href="http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider">easy slider plugin</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.sharepoint-insight.com%2F2012%2F02%2F05%2Fquickest-way-to-create-slide-show-from-your-picture-library-in-sharepoint%2F&amp;title=Quickest%20way%20to%20create%20Slide%20Show%20from%20your%20Picture%20Library%20in%20SharePoint" id="wpa2a_8"><img src="http://www.sharepoint-insight.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.sharepoint-insight.com/2012/02/05/quickest-way-to-create-slide-show-from-your-picture-library-in-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of SharePoint Base Permissions with their Hex and Decimal Values</title>
		<link>http://www.sharepoint-insight.com/2011/10/23/list-of-sharepoint-base-permissions-with-their-hex-and-decimal-values/</link>
		<comments>http://www.sharepoint-insight.com/2011/10/23/list-of-sharepoint-base-permissions-with-their-hex-and-decimal-values/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 00:59:02 +0000</pubDate>
		<dc:creator>namwar</dc:creator>
				<category><![CDATA[Concepts]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SP2010]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[WSS]]></category>

		<guid isPermaLink="false">http://www.sharepoint-insight.com/?p=448</guid>
		<description><![CDATA[Here is the list of all SharePoint base permissions valid for Windows SharePoint Services and SharePoint Foundation both, along with their Hex and decimal values. I hope it will help you to easily reference them in your projects. Permission Name Hex Value Decimal Value Description AddAndCustomizePages 0&#215;40000 262144 Add, change, or delete HTML pages or [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the list of all SharePoint base permissions valid for Windows SharePoint Services and SharePoint Foundation both, along with their Hex and decimal values. I hope it will help you to easily reference them in your projects.</p>
<div style="width: 70%;">
<table class="MsoNormalTable" style="width: 100.0%; border-collapse: collapse;" border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr style="height: 15.0pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; background: #D9D9D9; padding: 0cm 5.4pt 0cm 5.4pt; height: 15.0pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: center; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Permission Name</span></strong></p>
</td>
<td style="width: 17.32%; border: solid windowtext 1.0pt; border-left: none; background: #D9D9D9; padding: 0cm 5.4pt 0cm 5.4pt; height: 15.0pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: center; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Hex Value</span></strong></p>
</td>
<td style="width: 28.66%; border: solid windowtext 1.0pt; border-left: none; background: #D9D9D9; padding: 0cm 5.4pt 0cm 5.4pt; height: 15.0pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: center; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Decimal Value</span></strong></p>
</td>
<td style="width: 25.42%; border: solid windowtext 1.0pt; border-left: none; background: #D9D9D9; padding: 0cm 5.4pt 0cm 5.4pt; height: 15.0pt;" width="25%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: center; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Description</span></strong></p>
</td>
</tr>
<tr style="height: 33.0pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">AddAndCustomizePages</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;40000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">262144</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Add, change, or delete HTML pages or Web Part Pages, and edit<br />
the Web site using a Windows SharePoint Services–compatible editor.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">AddDelPrivateWebParts</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;10000000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">268435456</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Add or remove personal Web Parts on a Web Part Page.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">AddListItems</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;2</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">2</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Add items to lists, add documents to document libraries, and add<br />
Web discussion comments.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">ApplyStyleSheets</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;100000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">1048576</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Apply a style sheet (.css file) to the Web site.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">ApplyThemeAndBorder</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;80000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">524288</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Apply a theme or borders to the entire Web site.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">ApproveItems</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;10</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">16</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Approve a minor version of a list item or document.</span></p>
</td>
</tr>
<tr style="height: 33.0pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">BrowseDirectories</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;4000000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">67108864</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Enumerate files and folders in a Web site using Microsoft Office<br />
SharePoint Designer 2007 and WebDAV interfaces.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">BrowseUserInfo</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;8000000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">134217728</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">View information about users of the Web site.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">CancelCheckout</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;100</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">256</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Discard or check in a document which is checked out to another<br />
user.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">CreateAlerts</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;8000000000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">549755813888</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Create e-mail alerts.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">CreateGroups</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;1000000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">16777216</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Create a group of users that can be used anywhere within the<br />
site collection.</span></p>
</td>
</tr>
<tr style="height: 60.0pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 60.0pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">CreateSSCSite</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 60.0pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;400000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 60.0pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">4194304</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 60.0pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Create a Web site using Self-Service Site Creation.</span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;"> </span></p>
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">NOTE: </span><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">CreateSSCSite (0&#215;400000) is a hidden base permission. It  is not<br />
copied if you copy a built-in permission level using the &#8220;Copy<br />
Permission Level&#8221; button at the bottom of ~/_layouts/editrole.aspx</span></p>
</td>
</tr>
<tr style="height: 33.0pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">DeleteListItems</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;8</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">8</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Delete items from a list, documents from a document library, and<br />
Web discussion comments in documents.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">DeleteVersions</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;80</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">128</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Delete past versions of a list item or document.</span></p>
</td>
</tr>
<tr style="height: 33.0pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">EditListItems</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;4</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">4</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Edit items in lists, edit documents in document libraries, edit<br />
Web discussion comments in documents, and customize Web Part Pages in<br />
document libraries.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">EditMyUserInfo</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;10000000000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">1099511627776</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Allows a user to change his or her user information, such as<br />
adding a picture.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">EmptyMask</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;0</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Has no permissions on the Web site. Not available through the<br />
user interface.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">EnumeratePermissions</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;4000000000000000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">4611686018427380000</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Enumerate permissions on the Web site, list, folder, document,<br />
or list item.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">FullMask</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0x7fffffffffffffff</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">9223372036854770000</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Has all permissions on the Web site. Not available through the<br />
user interface.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">ManageAlerts</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;4000000000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">274877906944</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Manage alerts for all users of the Web site.</span></p>
</td>
</tr>
<tr style="height: 33.0pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">ManageLists</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;800</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">2048</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Create and delete lists, add or remove columns in a list, and<br />
add or remove public views of a list.</span></p>
</td>
</tr>
<tr style="height: 33.0pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">ManagePermissions</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;2000000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">33554432</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Create and change permission levels on the Web site and assign<br />
permissions to users and groups.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">ManagePersonalViews</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;200</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">512</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Create, change, and delete personal views of lists.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">ManageSubwebs</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;800000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">8388608</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Create subsites such as team sites, Meeting Workspace sites, and<br />
Document Workspace sites.</span></p>
</td>
</tr>
<tr style="height: 99.0pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 99.0pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">ManageWeb</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 99.0pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;40000000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 99.0pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">1073741824</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 99.0pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Grant the ability to perform all administration tasks for the<br />
Web site as well as manage content. Activate, deactivate, or edit properties<br />
of Web site scoped Features through the object model or through the user<br />
interface (UI). When granted on the root Web site of a site collection,<br />
activate, deactivate, or edit properties of site collection scoped Features<br />
through the object model. To browse to the <strong>Site Collection Features</strong><br />
page and activate or deactivate site collection scoped Features through the<br />
UI, you must be a site collection administrator.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Open</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;10000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">65536</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Allow users to open a Web site, list, or folder to access items<br />
inside that container.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">OpenItems</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;20</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">32</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">View the source of documents with server-side file handlers.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">UpdatePersonalWebParts</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">s         0&#215;20000000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">536870912</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Update Web Parts to display personalized information.</span></p>
</td>
</tr>
<tr style="height: 33.0pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">UseClientIntegration</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;1000000000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">68719476736</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Use features that launch client applications; otherwise, users<br />
must work on documents locally and upload changes.</span></p>
</td>
</tr>
<tr style="height: 33.0pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">UseRemoteAPIs</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;2000000000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">137438953472</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 33.0pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">Use SOAP, WebDAV, or Microsoft Office SharePoint Designer 2007<br />
interfaces to access the Web site.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">ViewFormPages</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;1000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">4096</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">View forms, views, and application pages, and enumerate lists.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">ViewListItems</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;1</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">1</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">View items in lists, documents in document libraries, and view<br />
Web discussion comments.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">ViewPages</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;20000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">131072</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">View pages in a Web site.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">ViewUsageData</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;200000</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">2097152</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">View reports on Web site usage.</span></p>
</td>
</tr>
<tr style="height: 16.5pt;">
<td style="width: 28.6%; border: solid windowtext 1.0pt; border-top: none; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><strong><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">ViewVersions</span></strong></p>
</td>
<td style="width: 17.32%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="17%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">0&#215;40</span></p>
</td>
<td style="width: 28.66%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="28%" valign="bottom">
<p class="MsoNormal" style="margin-bottom: .0001pt; text-align: right; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">64</span></p>
</td>
<td style="width: 25.42%; border-top: none; border-left: none; border-bottom: solid windowtext 1.0pt; border-right: solid windowtext 1.0pt; background: white; padding: 0cm 5.4pt 0cm 5.4pt; height: 16.5pt;" width="25%">
<p class="MsoNormal" style="margin-bottom: .0001pt; line-height: normal;"><span style="font-size: 8.0pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; color: black;">View past versions of a list item or document.</span></p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal">&nbsp;</p>
</div>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.sharepoint-insight.com%2F2011%2F10%2F23%2Flist-of-sharepoint-base-permissions-with-their-hex-and-decimal-values%2F&amp;title=List%20of%20SharePoint%20Base%20Permissions%20with%20their%20Hex%20and%20Decimal%20Values" id="wpa2a_10"><img src="http://www.sharepoint-insight.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.sharepoint-insight.com/2011/10/23/list-of-sharepoint-base-permissions-with-their-hex-and-decimal-values/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What is the meaning of &#8220;Limited Access&#8221; in SharePoint?</title>
		<link>http://www.sharepoint-insight.com/2011/10/22/what-is-the-meaning-of-limited-access-in-sharepoint/</link>
		<comments>http://www.sharepoint-insight.com/2011/10/22/what-is-the-meaning-of-limited-access-in-sharepoint/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 20:10:28 +0000</pubDate>
		<dc:creator>namwar</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Concepts]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[SP2010]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.sharepoint-insight.com/?p=445</guid>
		<description><![CDATA[If you are wondering what is &#8220;Limited Access&#8221; in SharePoint and how does it affect you then here is the simple explanation: &#8220;Limited Access&#8221; in SharePoint means a user has an access to an item of the page specifically but not the whole SharePoint list. Normally, we don&#8217;t manage individual item permissions and list items normally inherit [...]]]></description>
			<content:encoded><![CDATA[<p>If you are wondering what is &#8220;Limited Access&#8221; in SharePoint and how does it affect you then here is the simple explanation:</p>
<p>&#8220;Limited Access&#8221; in SharePoint means a user has an access to an item of the page specifically but not the whole SharePoint list. Normally, we don&#8217;t manage individual item permissions and list items normally inherit their permissions from their parent list but sometimes you may need to share a document or a an item to another user who does not have access to the parent list of that item. In this case, you will break the inheritance for that item/document and give permission specifically to that item/document.</p>
<p>Now, since that document resides under its parent library therefore, user will automatically get the &#8220;Limited Access&#8221; to the parent list which will in turn allow the user to only access that specific document.</p>
<p>For more information, I will recommend you to read Michael Nemtsev article <a title="Limited Access Permissions from Michael Nemtsev" href="http://msmvps.com/blogs/laflour/archive/2009/03/29/sharepoint-tip-28-do-you-know-that-limited-access-permission-used-to-traverse-access-to-items.aspx">here</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.sharepoint-insight.com%2F2011%2F10%2F22%2Fwhat-is-the-meaning-of-limited-access-in-sharepoint%2F&amp;title=What%20is%20the%20meaning%20of%20%26%238220%3BLimited%20Access%26%238221%3B%20in%20SharePoint%3F" id="wpa2a_12"><img src="http://www.sharepoint-insight.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.sharepoint-insight.com/2011/10/22/what-is-the-meaning-of-limited-access-in-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Continuous Integration of SharePoint Project by using TFS</title>
		<link>http://www.sharepoint-insight.com/2011/08/26/continuous-integration-of-sharepoint-project-by-using-tfs/</link>
		<comments>http://www.sharepoint-insight.com/2011/08/26/continuous-integration-of-sharepoint-project-by-using-tfs/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 18:16:18 +0000</pubDate>
		<dc:creator>namwar</dc:creator>
				<category><![CDATA[Guidance]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[SP2010]]></category>
		<category><![CDATA[TFS]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.sharepoint-insight.com/?p=440</guid>
		<description><![CDATA[SharePoint projects are some what special in the way they use assemblies and some time it is very difficult to setup your TFS build process for continuous integration. Today, SharePoint Developer Team has published an excellent step-by-step process to properly setup your TFS Build Process for SharePoint Projects. You can read the article here This article guides [...]]]></description>
			<content:encoded><![CDATA[<p>SharePoint projects are some what special in the way they use assemblies and some time it is very difficult to setup your TFS build process for continuous integration. Today, SharePoint Developer Team has published an excellent step-by-step process to properly setup your TFS Build Process for SharePoint Projects. You can read the article <a title="Creating your first TFS Build Process for SharePoint projects (Chris O'Brien)" href="http://blogs.msdn.com/b/sharepointdev/archive/2011/08/25/creating-your-first-tfs-build-process-for-sharepoint-projects.aspx">here</a></p>
<p>This article guides about the following:</p>
<ol>
<li>How to configure the build server to properly compile the SharePoint projects?</li>
<li>List of necessary SharePoint assemblies to make sure compilation succeeds.</li>
<li>How to update Powershell script to add the required files on Build server?</li>
<li>Steps to create build definition.</li>
<li>How to setup build workflow?</li>
</ol>
<p>I would highly recommend you to read this article before embarking on your next SharePoint project.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.sharepoint-insight.com%2F2011%2F08%2F26%2Fcontinuous-integration-of-sharepoint-project-by-using-tfs%2F&amp;title=Continuous%20Integration%20of%20SharePoint%20Project%20by%20using%20TFS" id="wpa2a_14"><img src="http://www.sharepoint-insight.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.sharepoint-insight.com/2011/08/26/continuous-integration-of-sharepoint-project-by-using-tfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solution for &#8220;Access denied by Business Data Connectivity&#8221; Error</title>
		<link>http://www.sharepoint-insight.com/2011/08/14/solution-for-access-denied-by-business-data-connectivity-error/</link>
		<comments>http://www.sharepoint-insight.com/2011/08/14/solution-for-access-denied-by-business-data-connectivity-error/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 23:55:30 +0000</pubDate>
		<dc:creator>namwar</dc:creator>
				<category><![CDATA[Business Data Connectivity]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[SP2010]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.sharepoint-insight.com/?p=435</guid>
		<description><![CDATA[If you are trying to create external data type list and get the error &#8220;Access Denied by Business Data Connectivity&#8221; then the most common reason for that can be the incorrect permissions for your target External Content Type. To fix the issue, please perform the following steps: Open your SharePoint 2010 Central Administration Page Under [...]]]></description>
			<content:encoded><![CDATA[<p>If you are trying to create external data type list and get the error &#8220;Access Denied by Business Data Connectivity&#8221; then the most common reason for that can be the incorrect permissions for your target External Content Type. To fix the issue, please perform the following steps:</p>
<ol>
<li>Open your SharePoint 2010 Central Administration Page</li>
<li>Under <strong>Application Management</strong>, click <strong>Manage service applications</strong></li>
<li>Click <strong>Business Data Connectivity Service</strong> link</li>
<li>List of all external content types will be displayed, select your target external content type by checking it</li>
<li>Click <strong>Set Object Permissions</strong> on Ribbon</li>
<li><strong>&#8220;Set Object Permissions&#8221;</strong> dialogue box will be displayed, add yourself or any other users, as you want</li>
<li>Check at least <strong>Selectable in client </strong>permission in permissions list</li>
<li>Click <strong>OK</strong> to save your changes</li>
</ol>
<p>Now try to view your external content types list and Bingo! there will be no more &#8220;Access denied by Business Data Connectivity&#8221; error message!</p>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.sharepoint-insight.com%2F2011%2F08%2F14%2Fsolution-for-access-denied-by-business-data-connectivity-error%2F&amp;title=Solution%20for%20%26%238220%3BAccess%20denied%20by%20Business%20Data%20Connectivity%26%238221%3B%20Error" id="wpa2a_16"><img src="http://www.sharepoint-insight.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.sharepoint-insight.com/2011/08/14/solution-for-access-denied-by-business-data-connectivity-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solution: The Taxonomy feature (Feature ID &#8220;73EF14B1-13A9-416b-A9B5-ECECA2B0604C&#8221;) has not been activated</title>
		<link>http://www.sharepoint-insight.com/2011/07/21/solution-the-taxonomy-feature-feature-id-73ef14b1-13a9-416b-a9b5-ececa2b0604c-has-not-been-activated/</link>
		<comments>http://www.sharepoint-insight.com/2011/07/21/solution-the-taxonomy-feature-feature-id-73ef14b1-13a9-416b-a9b5-ececa2b0604c-has-not-been-activated/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 21:52:18 +0000</pubDate>
		<dc:creator>namwar</dc:creator>
				<category><![CDATA[Management]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[SP2010]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.sharepoint-insight.com/?p=431</guid>
		<description><![CDATA[If you are trying to add a Managed Metadata type column and getting &#8220;The Taxonomy feature (Feature ID &#8220;73EF14B1-13A9-416b-A9B5-ECECA2B0604C&#8221;) has not been activated&#8221; error then here is the quickest way to enable the required feature by using following PowerShell cmdlet: Enable-SPFeature -id &#8220;73EF14B1-13A9-416b-A9B5-ECECA2B0604C&#8221; -url &#8220;YourSiteUrl&#8221; &#160; &#160; &#160; &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p>If you are trying to add a <strong>Managed Metadata</strong> type column and getting &#8220;The Taxonomy feature (Feature ID &#8220;73EF14B1-13A9-416b-A9B5-ECECA2B0604C&#8221;) has not been activated&#8221; error then here is the quickest way to enable the required feature by using following PowerShell cmdlet:</p>
<p>Enable-SPFeature -id &#8220;73EF14B1-13A9-416b-A9B5-ECECA2B0604C&#8221; -url &#8220;YourSiteUrl&#8221;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.sharepoint-insight.com%2F2011%2F07%2F21%2Fsolution-the-taxonomy-feature-feature-id-73ef14b1-13a9-416b-a9b5-ececa2b0604c-has-not-been-activated%2F&amp;title=Solution%3A%20The%20Taxonomy%20feature%20%28Feature%20ID%20%26%238220%3B73EF14B1-13A9-416b-A9B5-ECECA2B0604C%26%238221%3B%29%20has%20not%20been%20activated" id="wpa2a_18"><img src="http://www.sharepoint-insight.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.sharepoint-insight.com/2011/07/21/solution-the-taxonomy-feature-feature-id-73ef14b1-13a9-416b-a9b5-ececa2b0604c-has-not-been-activated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint 2010 Service Pack 1 is out!</title>
		<link>http://www.sharepoint-insight.com/2011/06/29/sharepoint-2010-service-pack-1-is-out/</link>
		<comments>http://www.sharepoint-insight.com/2011/06/29/sharepoint-2010-service-pack-1-is-out/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 14:21:27 +0000</pubDate>
		<dc:creator>namwar</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Guidance]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Service Pack]]></category>
		<category><![CDATA[SP2010]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.sharepoint-insight.com/?p=428</guid>
		<description><![CDATA[Today Microsoft has released the much awaited Service Pack 1 for SharePoint 2010 along with Office 2010.  Along with many bug fixes and minor updates, here is a quick list of new functionality which SP1 will add in your SharePoint environment: &#160; For video display, you will now be able to select a frame as [...]]]></description>
			<content:encoded><![CDATA[<p>Today Microsoft has released the much awaited Service Pack 1 for SharePoint 2010 along with Office 2010.  Along with many bug fixes and minor updates, here is a quick list of new functionality which SP1 will add in your SharePoint environment:</p>
<p>&nbsp;</p>
<ol>
<li>For video display, you will now be able to select a frame as a thumbnail by using &#8220;Video Thumbnail Picker&#8221;</li>
<li>Users will have better visibility of how their SharePoint storage is being used.</li>
<li>Performance have been enhanced to download large files from SharePoint.</li>
<li>Alerts were not functioning properly in some scenarios, logic has been enhanced.</li>
<li>Before SP1, you could not have some pages rendered in Internet Explorer 9 document mode (instead of Internet Explorer 8). Starting with SP1, a control is available that lets you set individual pages to be rendered in Internet Explorer 9.</li>
<li>URLs to documents in document libraries are very long and include the Source parameter when the URL is copied (e.g., by right-clicking and selecting Copy Shortcut). In SP1, the Source parameter is not included in a copied URL, so the URL is much shorter.</li>
</ol>
<p>and here are some more useful changes list as mentioned in technet blog <a href="http://blogs.technet.com/b/sharepointjoe/archive/2011/06/29/sp2010-sharepoint-2010-service-pack-1-is-out-now.aspx">here</a></p>
<ol>
<li>Improved support for Internet Explorer 9.</li>
<li>Recycle bin: Lets you restore a site collection or a web that was deleted.</li>
<li>Remote Backup Systems (RBS) and shallow copy can decrease downtime and increase efficiency by moving pointers to databases instead of moving databases.</li>
<li>You can see which folders are taking up valuable space with the improved Storage Management feature in site settings.</li>
<li>Support for Microsoft SQL Server 2011.</li>
<li>A more robust Search Host Distribution service that improves error recovery and performance during the search crawl.</li>
<li>Adds backup and restore functionality to recover deleted site collections and webs.</li>
</ol>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.sharepoint-insight.com%2F2011%2F06%2F29%2Fsharepoint-2010-service-pack-1-is-out%2F&amp;title=SharePoint%202010%20Service%20Pack%201%20is%20out%21" id="wpa2a_20"><img src="http://www.sharepoint-insight.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.sharepoint-insight.com/2011/06/29/sharepoint-2010-service-pack-1-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

