<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Spyral Out</title>
	<atom:link href="http://spyralout.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://spyralout.com</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 14:43:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='spyralout.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Spyral Out</title>
		<link>http://spyralout.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://spyralout.com/osd.xml" title="Spyral Out" />
	<atom:link rel='hub' href='http://spyralout.com/?pushpress=hub'/>
		<item>
		<title>Reordering/Ranking SharePoint List Items</title>
		<link>http://spyralout.com/2010/08/06/reordering-list-items/</link>
		<comments>http://spyralout.com/2010/08/06/reordering-list-items/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 17:45:00 +0000</pubDate>
		<dc:creator>spyralout</dc:creator>
				<category><![CDATA[Feature]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[List Ranking]]></category>
		<category><![CDATA[List Reorder]]></category>
		<category><![CDATA[List Sorting]]></category>
		<category><![CDATA[List Views]]></category>
		<category><![CDATA[MOSS SharePoint]]></category>
		<category><![CDATA[sharepoint list ranking]]></category>
		<category><![CDATA[WSP]]></category>

		<guid isPermaLink="false">https://spyralout.wordpress.com/2010/08/06/reordering-list-items/</guid>
		<description><![CDATA[SharePoint link list has a feature which lets you Re-Order list items and this is done using List Actions. This in turn uses ReOrder.aspx page to reorder list items. Here is a summary how this functionality it implemented. Links list contains a field called “Order” which is an internal field and default view is sorted [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=172&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SharePoint link list has a feature which lets you Re-Order list items and this is done using List Actions.</p>
<p><a href="http://spyralout.files.wordpress.com/2010/08/image.png"><img style="display:inline;border-width:0;" title="image" src="http://spyralout.files.wordpress.com/2010/08/image_thumb.png?w=362&#038;h=193" border="0" alt="image" width="362" height="193" /></a></p>
<p>This in turn uses ReOrder.aspx page to reorder list items. Here is a summary how this functionality it implemented.</p>
<ul>
<li>Links list contains a field called “Order” which is an internal field and default view is sorted by it.</li>
<li>Reorder.aspx uses this Order field to update and reorder list items in that view.</li>
<li>Default view is sorted by Order field and reflects the new order.</li>
</ul>
<p>Now code that runs in Reorder page doesn’t really care about most list types and location since it uses list GUID to modify the order and the Order field is part of each and every list template but for some reason SharePoint has blocked this feature from all the other list templates, like most other things. But given the list GUID Reorder page is able to sort list items. So why doesn’t it work ?  Because Order field being an Internal field is also hidden from other list templates, so while it is possible to reorder we are unable to create a view which will use this order to sort list items.</p>
<p>There are tons of posts around this method and dropping in data view web part to sort list items and solutions which implement their own ordering feature. I prefer a much simpler approach (according to me at least) . Unhide the <em>damn</em> order field and create a view.</p>
<p>I have created a feature which does exactly that.</p>
<p>“List Order”  is feature which enables list re ordering for your custom list. The feature is enabled on “Web” level and enables this action item for all the lists for that particular site. The feature has 2 parts to it:</p>
<p>1. Custom List Action item:  This provides the action item to link to list –reorder page.</p>
<blockquote><p><a href="http://spyralout.files.wordpress.com/2010/08/image1.png"><img style="display:inline;border-width:0;" title="image" src="http://spyralout.files.wordpress.com/2010/08/image_thumb1.png?w=240&#038;h=244" border="0" alt="image" width="240" height="244" /></a></p></blockquote>
<p>2. “By Order” View:  When feature is activated, it creates a view on the supported list called “By Order” which is sorted by the “Order” field. (Note: This is only applies to existing lists and wont reflect on  newly created list. however you can create your own views and select the sort by “order” field)</p>
<blockquote><p><a href="http://spyralout.files.wordpress.com/2010/08/image2.png"><img style="display:inline;border-width:0;" title="image" src="http://spyralout.files.wordpress.com/2010/08/image_thumb2.png?w=184&#038;h=69" border="0" alt="image" width="184" height="69" /></a></p></blockquote>
<p>Now the feature once activates will provide the Action Item and View to all the supported list types for that particular site. I haven’t tested this feature with huge list or many other scenarios, but I assume it would work similarly to a link list and I don’t see a use case for manually reordering lists with more than 50 items in it.</p>
<h4><strong>Screenshots:</strong></h4>
<p>1. Reorder Action item on custom list:</p>
<blockquote><p><a href="http://spyralout.files.wordpress.com/2010/08/image1.png"><img style="display:inline;border-width:0;" title="image" src="http://spyralout.files.wordpress.com/2010/08/image_thumb1.png?w=240&#038;h=244" border="0" alt="image" width="240" height="244" /></a></p></blockquote>
<p>2. “By Order” view before reordering of list items</p>
<blockquote><p><a href="http://spyralout.files.wordpress.com/2010/08/image3.png"><img style="display:inline;border-width:0;" title="image" src="http://spyralout.files.wordpress.com/2010/08/image_thumb3.png?w=310&#038;h=174" border="0" alt="image" width="310" height="174" /></a></p></blockquote>
<p>3. Reorder page</p>
<blockquote><p><a href="http://spyralout.files.wordpress.com/2010/08/image4.png"><img style="display:inline;border-width:0;" title="image" src="http://spyralout.files.wordpress.com/2010/08/image_thumb4.png?w=349&#038;h=145" border="0" alt="image" width="349" height="145" /></a></p></blockquote>
<p>4. “Order By” view after refresh</p>
<blockquote><p><a href="http://spyralout.files.wordpress.com/2010/08/image5.png"><img style="display:inline;border-width:0;" title="image" src="http://spyralout.files.wordpress.com/2010/08/image_thumb5.png?w=326&#038;h=169" border="0" alt="image" width="326" height="169" /></a></p></blockquote>
<p><span style="color:#0000ff;">Note: It is currently configured to work with following list templates:</span></p>
<ol>
<li><span style="color:#0000ff;">Generic List</span></li>
<li><span style="color:#0000ff;">Contacts List</span></li>
<li><span style="color:#0000ff;">Task List</span></li>
<li><span style="color:#0000ff;">Gantt List</span></li>
</ol>
<p>You can change them if you like from the source code.</p>
<h4><strong>Downloads</strong>:</h4>
<table border="1" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td width="199" valign="top">Feature WSP</td>
<td width="199" valign="top"><a href="http://spiralout.codeplex.com/releases/view/50190" target="_blank">Download</a></td>
</tr>
<tr>
<td width="199" valign="top">Source code</td>
<td width="200" valign="top"><a href="http://spiralout.codeplex.com/SourceControl/changeset/view/52123" target="_blank">Download</a></td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spyralout.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spyralout.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spyralout.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spyralout.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spyralout.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spyralout.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spyralout.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spyralout.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spyralout.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spyralout.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spyralout.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spyralout.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spyralout.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spyralout.wordpress.com/172/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=172&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spyralout.com/2010/08/06/reordering-list-items/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d72c53e6467def1f9641d21b57253a2f?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Rohan</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2010/08/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2010/08/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2010/08/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2010/08/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2010/08/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2010/08/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2010/08/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>CQWP (Content Query Web Part) Display all fields + values</title>
		<link>http://spyralout.com/2009/10/30/cqwp-content-query-web-part-display-all-fields-values/</link>
		<comments>http://spyralout.com/2009/10/30/cqwp-content-query-web-part-display-all-fields-values/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 15:55:00 +0000</pubDate>
		<dc:creator>spyralout</dc:creator>
				<category><![CDATA[Content Query]]></category>
		<category><![CDATA[Field]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[XSL]]></category>
		<category><![CDATA[CQWP]]></category>

		<guid isPermaLink="false">http://spyralout.wordpress.com/2009/10/30/cqwp-content-query-web-part-display-all-fields-values/</guid>
		<description><![CDATA[Moved from old blogging site Below is the code which I use frequently for my XSL development in CQWP. This xsl code gets all the data and values, this helps you identify all the data before you move on with visual html development. Initially I used this custom xslt to display all the field names [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=151&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em><span style="font-size:xx-small;">Moved from old blogging site</span></em></p>
<p>Below  is the code which I use frequently for my XSL development in CQWP. This xsl code gets all the data and values, this helps you identify all the data before you move on with visual html development. Initially I used this <a href="http://frankonmoss.blogspot.com/2008/03/how-to-display-all-fields-available-in.html">custom xslt</a> to display all the field names  in Content Query Web part. I modified it to see values along with field name. Its simple needs no explanation.</p>
<p><pre class="brush: xml;">

&lt;xsl:template name=&quot;AllFields&quot; match=&quot;Row[@Style='AllFields']&quot; mode=&quot;itemstyle&quot;&gt;
 &lt;xsl:param name=&quot;CurPos&quot;/&gt;
 &lt;xsl:variable name=&quot;SafeLinkUrl&quot;&gt;
 &lt;xsl:call-template name=&quot;OuterTemplate.GetSafeLink&quot;&gt;
 &lt;xsl:with-param name=&quot;UrlColumnName&quot; select=&quot;'LinkUrl'&quot;/&gt;
 &lt;/xsl:call-template&gt;
 &lt;/xsl:variable&gt;
 &lt;xsl:variable name=&quot;SafeImageUrl&quot;&gt;
 &lt;xsl:call-template name=&quot;OuterTemplate.GetSafeStaticUrl&quot;&gt;
 &lt;xsl:with-param name=&quot;UrlColumnName&quot; select=&quot;'ImageUrl'&quot;/&gt;
 &lt;/xsl:call-template&gt;
 &lt;/xsl:variable&gt;
 &lt;xsl:variable name=&quot;DisplayTitle&quot;&gt;
 &lt;xsl:call-template name=&quot;OuterTemplate.GetTitle&quot;&gt;
 &lt;xsl:with-param name=&quot;Title&quot; select=&quot;@Title&quot;/&gt;
 &lt;xsl:with-param name=&quot;UrlColumnName&quot; select=&quot;'LinkUrl'&quot;/&gt;
 &lt;/xsl:call-template&gt;
 &lt;/xsl:variable&gt;
 &lt;xsl:variable name=&quot;LinkTarget&quot;&gt;
 &lt;xsl:if test=&quot;@OpenInNewWindow = 'True'&quot; &gt;_blank&lt;/xsl:if&gt;
 &lt;/xsl:variable&gt;
 &lt;div id=&quot;linkitem&quot; class=&quot;item&quot;&gt;
 &lt;xsl:for-each select=&quot;@*&quot;&gt;
 &lt;span style =&quot;font:bold&quot;&gt;    &lt;xsl:value-of select=&quot;name()&quot; /&gt; &lt;/span&gt;  : &lt;xsl:value-of select=&quot;.&quot;/&gt; &lt;br/&gt;
 &lt;/xsl:for-each&gt;
 &lt;/div&gt;
 &lt;/xsl:template&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

</pre></p>
<p>——————————————</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spyralout.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spyralout.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spyralout.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spyralout.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spyralout.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spyralout.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spyralout.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spyralout.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spyralout.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spyralout.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spyralout.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spyralout.wordpress.com/151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spyralout.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spyralout.wordpress.com/151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=151&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spyralout.com/2009/10/30/cqwp-content-query-web-part-display-all-fields-values/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d72c53e6467def1f9641d21b57253a2f?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Rohan</media:title>
		</media:content>
	</item>
		<item>
		<title>Zune 4.0 Marketplace (slowness) fix</title>
		<link>http://spyralout.com/2009/09/28/zune-4-0-marketplace-slowness-fix/</link>
		<comments>http://spyralout.com/2009/09/28/zune-4-0-marketplace-slowness-fix/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 23:05:13 +0000</pubDate>
		<dc:creator>spyralout</dc:creator>
				<category><![CDATA[Zune 4.0]]></category>
		<category><![CDATA[Zune HD]]></category>
		<category><![CDATA[Zune Marketplace]]></category>
		<category><![CDATA[Marketplace]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Zune]]></category>

		<guid isPermaLink="false">http://spyralout.com/?p=122</guid>
		<description><![CDATA[This is fix for slow Zune marketplace on Win 7, I have tested this on my Win 7 64 bit. Marketplace works fine on my Vista 32 bit and xp 32 bit. You can try this for your Vista 64 bit too.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=122&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is a fix for slow Zune marketplace on Win 7, I have tested this on my Win 7 64 bit. Marketplace works fine on my Vista 32 bit and xp 32 bit. You can try this for your Vista 64 bit too. You can find users reporting on this forum <a href="http://forums.zune.net/2/8/526815/ShowPost.aspx">http://forums.zune.net/2/8/526815/ShowPost.aspx</a></p>
<p><strong>The Fix</strong><br />
Turn off <strong>Automatically detect  LAN settings</strong> in your IE.<br />
<strong>Steps</strong></p>
<ol>
<li>Open IE</li>
<li>Click on Tools&#8211;&gt; Internet Options</li>
<li>Click on &#8220;Connections&#8221; Tab</li>
<li>Click button &#8220;Lan Settings&#8221;</li>
<li>Un-Check &#8221; Automatically detect settings&#8221; (this is/was set by default in my Win 7 installation)</li>
<li>Restart IE and Zune (if you had it open)</li>
</ol>
<p>I found an <a href="http://www.graphicalwonder.com/?p=711" target="_blank">article </a>for slow saving of documents in SharePoint from Windows 7 client and this was the fix and thought these were related.</p>
<p>Screenshots</p>

<a href='http://spyralout.com/2009/09/28/zune-4-0-marketplace-slowness-fix/zunefix1/' title='zunefix1'><img data-attachment-id='123' data-orig-size='742,683' data-liked='0'width="150" height="138" src="http://spyralout.files.wordpress.com/2009/09/zunefix1.jpg?w=150&#038;h=138" class="attachment-thumbnail" alt="zunefix1" title="zunefix1" /></a>
<a href='http://spyralout.com/2009/09/28/zune-4-0-marketplace-slowness-fix/zunefix2/' title='zunefix2'><img data-attachment-id='124' data-orig-size='1152,720' data-liked='0'width="150" height="93" src="http://spyralout.files.wordpress.com/2009/09/zunefix2.jpg?w=150&#038;h=93" class="attachment-thumbnail" alt="zunefix2" title="zunefix2" /></a>
<a href='http://spyralout.com/2009/09/28/zune-4-0-marketplace-slowness-fix/zunefix3/' title='zunefix3'><img data-attachment-id='125' data-orig-size='1152,720' data-liked='0'width="150" height="93" src="http://spyralout.files.wordpress.com/2009/09/zunefix3.jpg?w=150&#038;h=93" class="attachment-thumbnail" alt="zunefix3" title="zunefix3" /></a>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spyralout.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spyralout.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spyralout.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spyralout.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spyralout.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spyralout.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spyralout.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spyralout.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spyralout.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spyralout.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spyralout.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spyralout.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spyralout.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spyralout.wordpress.com/122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=122&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spyralout.com/2009/09/28/zune-4-0-marketplace-slowness-fix/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d72c53e6467def1f9641d21b57253a2f?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Rohan</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/09/zunefix1.jpg?w=150" medium="image">
			<media:title type="html">zunefix1</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/09/zunefix2.jpg?w=150" medium="image">
			<media:title type="html">zunefix2</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/09/zunefix3.jpg?w=150" medium="image">
			<media:title type="html">zunefix3</media:title>
		</media:content>
	</item>
		<item>
		<title>Masking SharePoint Created By and Modified By( Making list Anonymous)</title>
		<link>http://spyralout.com/2009/09/18/masking-sharepoint-created-by-and-modified-by-making-list-anonymous/</link>
		<comments>http://spyralout.com/2009/09/18/masking-sharepoint-created-by-and-modified-by-making-list-anonymous/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 21:55:00 +0000</pubDate>
		<dc:creator>spyralout</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[Mask User Name]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[Show Hide]]></category>
		<category><![CDATA[TOOL]]></category>
		<category><![CDATA[WebServices]]></category>

		<guid isPermaLink="false">http://spyralout.wordpress.com/2009/09/18/masking-sharepoint-created-by-and-modified-by-making-list-anonymous/</guid>
		<description><![CDATA[&#160; Note: This is for SharePoint environment not configured for anonymous users, usually intranet environment. Scenario: I have had few request coming where users ask for an Anonymous feature for discussion board or custom list. Few solutions I came across were all around custom Input form and restrictive access to users and hidden views. All [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=119&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p>Note: This is for SharePoint environment not configured for anonymous users, usually intranet environment. </p>
<p>Scenario: I have had few request coming where users ask for an Anonymous feature for discussion board or custom list. Few solutions I came across were all around custom Input form and restrictive access to users and hidden views. All of the above seems doable, but I doubt all scenarios are covered for instance RSS Feeds and Web service calls.    <br />OOB SharePoint has a functionality for Survey list which &quot;Show user names in survey results?&#160; &quot; which basically in OM is SPlist.ShowUser = boolean value which is available for all SharePoint list but does it function as expected, Answer is yes. </p>
<p>I decided update my previous Client Tool, Show-Hide fields, which uses web services to Hide List Fields on different Form Pages, it made sense to add additional functionality of Masking User names as well. </p>
<p>It works exactly the same but has an additional Check box for Masking User Information thus.&#160; On how to use the tool check the link here <a title="http://spyralout.com/releasestoolscode/moss-showhide-fields-using-web-services/" href="http://spyralout.com/releasestoolscode/moss-showhide-fields-using-web-services/">http://spyralout.com/releasestoolscode/moss-showhide-fields-using-web-services/</a></p>
<p>&#160;</p>
<p>Below are screenshots for Masking User Info</p>
<p>List</p>
<p><a href="http://spyralout.files.wordpress.com/2009/09/image.png"><img title="image" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="152" alt="image" src="http://spyralout.files.wordpress.com/2009/09/image_thumb.png?w=579&#038;h=152" width="579" border="0" /></a> </p>
<p>Tool :</p>
<p>&#160;</p>
</p>
<p> <a href="http://spyralout.files.wordpress.com/2009/09/image1.png"><img title="image" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="262" alt="image" src="http://spyralout.files.wordpress.com/2009/09/image_thumb1.png?w=566&#038;h=262" width="566" border="0" /></a>
<p>&#160;</p>
<p>Click Update and Result </p>
<p><a href="http://spyralout.files.wordpress.com/2009/09/image2.png"><img title="image" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="182" alt="image" src="http://spyralout.files.wordpress.com/2009/09/image_thumb2.png?w=594&#038;h=182" width="594" border="0" /></a> </p>
<p>Download Link :</p>
<p><a title="http://spiralout.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=22305" href="http://spiralout.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=22305">http://spiralout.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=22305</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spyralout.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spyralout.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spyralout.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spyralout.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spyralout.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spyralout.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spyralout.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spyralout.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spyralout.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spyralout.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spyralout.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spyralout.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spyralout.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spyralout.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=119&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spyralout.com/2009/09/18/masking-sharepoint-created-by-and-modified-by-making-list-anonymous/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d72c53e6467def1f9641d21b57253a2f?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Rohan</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/09/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/09/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/09/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Extending SPFF</title>
		<link>http://spyralout.com/2009/08/07/extending-spff/</link>
		<comments>http://spyralout.com/2009/08/07/extending-spff/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 22:45:00 +0000</pubDate>
		<dc:creator>spyralout</dc:creator>
				<category><![CDATA[Content Editor Web Part]]></category>
		<category><![CDATA[Javascripts]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[MOSS SharePoint]]></category>
		<category><![CDATA[SPFF]]></category>
		<category><![CDATA[Web Part]]></category>

		<guid isPermaLink="false">http://spyralout.wordpress.com/2009/08/07/extending-spff/</guid>
		<description><![CDATA[SPFF is URL based field manipulation, but it is not always enough and why just stick to one point of entry. If you are an user using Javascript for form manipulation you already hands on and wouldnt mind going  crazy with the whole implementation script based implementation.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=106&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.endusersharepoint.com/?s=paul+grenier" target="_blank">Paul Grenier</a> has created a wonderful script SPFF for manipulating Sharepoint form fields from URL. I have used javascript for field data manipulations a lot and his script makes it a breeze to implement. The fact that he has covered various forms of OOB fields is by itself worth having this as part of  your toolbox.</p>
<p>You can download and read (extensive) documentation  from codeplex <a title="http://spff.codeplex.com/" href="http://spff.codeplex.com/">http://spff.codeplex.com/</a></p>
<p>Extending SPFF:<code></code><code></code></p>
<p>Why?</p>
<p>I like URL based field manipulation, but it is not always enough and why just stick to one point of entry. If you are an user using Javascript for form manipulation you already hands on and wouldnt mind going  crazy with the whole implementation script based implementation.</p>
<p>What:</p>
<p>1. There is a fix which lets you hide and set values for the fields from URL.</p>
<p>2. Now you can call these operation from your own Javascript code.</p>
<p><a title="Download" href="http://spff.codeplex.com/Project/Download/FileDownload.aspx?DownloadId=78397">Download</a> It is still uploaded as a path and waiting for approval.</p>
<p>E.g:</p>
<p>Setting values based on Drop Down values.  We will use OOB task list.</p>
<p>In this example when a user selects “Status” as completed it will automatically set the percentage field to “100%”</p>
<p><a href="http://spyralout.files.wordpress.com/2009/08/image.png"><img style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" title="image" src="http://spyralout.files.wordpress.com/2009/08/image_thumb.png?w=349&#038;h=150" border="0" alt="image" width="349" height="150" /></a></p>
<p><a href="http://spyralout.files.wordpress.com/2009/08/image1.png"><img style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" title="image" src="http://spyralout.files.wordpress.com/2009/08/image_thumb1.png?w=386&#038;h=128" border="0" alt="image" width="386" height="128" /></a></p>
<p>Steps:<br />
<code><br />
1. Follow instruction on how to load this Javascript and adding Content Editor to New/ Edit Form pagefrom Pauls codeplex page.</p>
<p>2. In Content Editor Source Editor Add the code below</p>
<p><pre class="brush: xml;">
&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot;&gt;
 _spBodyOnLoadFunctionNames.push(&quot;modifyflds&quot;);

function modifyflds()
 {
 $(&quot;select[title^=Status]&quot;).bind(&quot;change&quot;,statusChange);

}

function statusChange()
 {
 var Selected =$(&quot;select[title^=Status]&quot;).val() ;
 if(Selected==&quot;Completed&quot;)
 $.spff({field:'% Complete',value:'100',lock:true});

}
 &lt;/script&gt;

</pre></p>
<p>In the code above we are adding an “on Change” event handler  on “Status” field.  In the function we check if the field is completed using SPFF we set % Complete to  100%</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spyralout.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spyralout.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spyralout.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spyralout.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spyralout.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spyralout.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spyralout.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spyralout.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spyralout.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spyralout.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spyralout.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spyralout.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spyralout.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spyralout.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=106&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spyralout.com/2009/08/07/extending-spff/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d72c53e6467def1f9641d21b57253a2f?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Rohan</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/08/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/08/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding SharePoint Search plug-in for Firefox</title>
		<link>http://spyralout.com/2009/06/16/adding-sharepoint-search-plugin-for-firefox/</link>
		<comments>http://spyralout.com/2009/06/16/adding-sharepoint-search-plugin-for-firefox/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 21:41:00 +0000</pubDate>
		<dc:creator>spyralout</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[search plugin]]></category>

		<guid isPermaLink="false">http://spyralout.wordpress.com/2009/06/16/adding-sharepoint-search-plugin-for-firefox/</guid>
		<description><![CDATA[If you use Firefox search plugin and want to add your SharePoint intranet as part of the Firefox Search drop down, follow the steps below<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=88&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you use Firefox search plugin and want to add your SharePoint intranet as part of the Firefox Search drop down, follow the steps below</p>
<p>First the screen shots of what we trying to accomplish</p>
<p><a href="http://spyralout.files.wordpress.com/2009/06/image.png"><img style="display:inline;border-width:0;" title="image" src="http://spyralout.files.wordpress.com/2009/06/image_thumb.png?w=168&#038;h=244" border="0" alt="image" width="168" height="244" /></a></p>
<p><a href="http://spyralout.files.wordpress.com/2009/06/image1.png"><img style="display:inline;border-width:0;" title="image" src="http://spyralout.files.wordpress.com/2009/06/image_thumb1.png?w=244&#038;h=30" border="0" alt="image" width="244" height="30" /></a></p>
<p><a href="http://spyralout.files.wordpress.com/2009/06/image2.png"><img style="display:inline;border-width:0;" title="image" src="http://spyralout.files.wordpress.com/2009/06/image_thumb2.png?w=504&#038;h=175" border="0" alt="image" width="504" height="175" /></a></p>
<p>1. first create a blank xml file</p>
<p>2. Copy the text below and replace “sharepointurl.com” with your sharepoint url</p>
<p><pre class="brush: xml;"> &lt;searchplugin xmlns=&quot;http://www.mozilla.org/2006/browser/search/&quot;&gt;&lt;shortname&gt;Sharepoint&lt;/shortname&gt; &lt;description&gt;Search Internal Site.&lt;/description&gt; &lt;inputencoding&gt;utf-8&lt;/inputencoding&gt; &lt;img height=&quot;16&quot; width=&quot;16&quot; /&gt;data:image/x-icon;base64,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&lt;/img&gt; &lt;url template=&quot;http://sharepointurl.com/searchcenter/Pages/Results.aspx&quot; method=&quot;GET&quot; type=&quot;text/html&quot;&gt;
&lt;param value=&quot;{searchTerms}&quot; name=&quot;k&quot; /&gt;&lt;/url&gt;&lt;searchform&gt;http://sharepointUrl.com/searchcenter/&lt;/searchform&gt; &lt;/searchplugin&gt;</pre></p>
<p>3. Save it under [Firefox install dir]\searchplugins\  as sharepoint.xml  usually “C:\Program Files\Mozilla Firefox\searchplugins”</p>
<p>4. Restart firefox</p>
<p>To use with with People search replace url with <em><strong>/SearchCenter/Pages/peopleresults.aspx</strong></em></p>
<p>For IE you can use this site for custom search plugins <a title="http://www.microsoft.com/windows/ie/searchguide/en-en/default.mspx" href="http://www.microsoft.com/windows/ie/searchguide/en-en/default.mspx">http://www.microsoft.com/windows/ie/searchguide/en-en/default.mspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spyralout.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spyralout.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spyralout.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spyralout.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spyralout.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spyralout.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spyralout.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spyralout.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spyralout.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spyralout.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spyralout.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spyralout.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spyralout.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spyralout.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=88&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spyralout.com/2009/06/16/adding-sharepoint-search-plugin-for-firefox/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d72c53e6467def1f9641d21b57253a2f?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Rohan</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/06/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/06/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/06/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Code Console Web Part</title>
		<link>http://spyralout.com/2009/05/13/code-console-web-part/</link>
		<comments>http://spyralout.com/2009/05/13/code-console-web-part/#comments</comments>
		<pubDate>Wed, 13 May 2009 19:24:00 +0000</pubDate>
		<dc:creator>spyralout</dc:creator>
				<category><![CDATA[Javascripts]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Web Parts]]></category>

		<guid isPermaLink="false">http://spyralout.wordpress.com/2009/05/13/code-console-web-part/</guid>
		<description><![CDATA[Interesting project by Einar Otto Stangvik, Basically you can execute server side code using webpart directly using browser with SharePoint. I should say&#160; I haven&#8217;t tested it out but I can think of couple of ways it can be useful. Click here for original blog post http://einaros.blogspot.com/2009/05/codeconsole-web-part-for-sharepoint.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=74&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Interesting project by Einar Otto Stangvik, Basically you can execute server side code using webpart directly using browser with SharePoint. </p>
<p>I should say&#160; I haven&#8217;t tested it out but I can think of couple of ways it can be useful. </p>
<p>Click here for original blog post</p>
<p><a title="http://einaros.blogspot.com/2009/05/codeconsole-web-part-for-sharepoint.html" href="http://einaros.blogspot.com/2009/05/codeconsole-web-part-for-sharepoint.html">http://einaros.blogspot.com/2009/05/codeconsole-web-part-for-sharepoint.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spyralout.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spyralout.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spyralout.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spyralout.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spyralout.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spyralout.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spyralout.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spyralout.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spyralout.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spyralout.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spyralout.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spyralout.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spyralout.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spyralout.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=74&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spyralout.com/2009/05/13/code-console-web-part/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d72c53e6467def1f9641d21b57253a2f?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Rohan</media:title>
		</media:content>
	</item>
		<item>
		<title>STSADM Commands Cheat sheets/Poster</title>
		<link>http://spyralout.com/2009/05/12/stsadm-commands-cheat-sheetsposter/</link>
		<comments>http://spyralout.com/2009/05/12/stsadm-commands-cheat-sheetsposter/#comments</comments>
		<pubDate>Tue, 12 May 2009 14:36:32 +0000</pubDate>
		<dc:creator>spyralout</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[STSADM]]></category>

		<guid isPermaLink="false">http://spyralout.wordpress.com/2009/05/12/stsadm-commands-cheat-sheetsposter/</guid>
		<description><![CDATA[&#160; I found a list of STSADM commands for MOSS and WSS on Microsoft site. These are large images and can be printed as poster for your admin nerdiness right next your “Now slower with more bugs” sticker MOSS: http://sharepoint.microsoft.com/sharepoint/Documents/STSADM%20Posters/Stsadm_Cmd-Line_MOSS_2007.png WSS: http://sharepoint.microsoft.com/sharepoint/Documents/STSADM%20Posters/Stsadm_Cmd-Line_WSS_3.jpg &#160; You can always use stsadm &#124;find “add”&#160; to search or stsadm &#124; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=70&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p>I found a list of STSADM commands for MOSS and WSS on Microsoft site. These are large images and can be printed as poster for your admin nerdiness right next your “<a href="http://evilmadscience.com/else/62-bugs-stickers" target="_blank">Now slower with more bugs</a>” sticker</p>
<p>MOSS: <a title="http://sharepoint.microsoft.com/sharepoint/Documents/STSADM%20Posters/Stsadm_Cmd-Line_MOSS_2007.png" href="http://sharepoint.microsoft.com/sharepoint/Documents/STSADM%20Posters/Stsadm_Cmd-Line_MOSS_2007.png">http://sharepoint.microsoft.com/sharepoint/Documents/STSADM%20Posters/Stsadm_Cmd-Line_MOSS_2007.png</a></p>
<p>WSS: <a title="http://sharepoint.microsoft.com/sharepoint/Documents/STSADM%20Posters/Stsadm_Cmd-Line_WSS_3.jpg" href="http://sharepoint.microsoft.com/sharepoint/Documents/STSADM%20Posters/Stsadm_Cmd-Line_WSS_3.jpg">http://sharepoint.microsoft.com/sharepoint/Documents/STSADM%20Posters/Stsadm_Cmd-Line_WSS_3.jpg</a></p>
<p>&#160;</p>
<p>You can always use <strong>stsadm |find “add”</strong>&#160; to search or <strong>stsadm | more</strong>&#160; to list all the commands </p>
<p>more on piping stsadm here <a title="http://blogs.objectsharp.com/CS/blogs/max/archive/2008/05/15/piping-stsadm-command.aspx" href="http://blogs.objectsharp.com/CS/blogs/max/archive/2008/05/15/piping-stsadm-command.aspx">http://blogs.objectsharp.com/CS/blogs/max/archive/2008/05/15/piping-stsadm-command.aspx</a></p>
<p>Update : Complete reference of all stsadm commands <a title="http://blogs.technet.com/josebda/archive/2008/03/15/complete-reference-of-all-stsadm-operations-with-parameters-in-moss-2007-sp1.aspx" href="http://blogs.technet.com/josebda/archive/2008/03/15/complete-reference-of-all-stsadm-operations-with-parameters-in-moss-2007-sp1.aspx">http://blogs.technet.com/josebda/archive/2008/03/15/complete-reference-of-all-stsadm-operations-with-parameters-in-moss-2007-sp1.aspx</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spyralout.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spyralout.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spyralout.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spyralout.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spyralout.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spyralout.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spyralout.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spyralout.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spyralout.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spyralout.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spyralout.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spyralout.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spyralout.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spyralout.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=70&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spyralout.com/2009/05/12/stsadm-commands-cheat-sheetsposter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d72c53e6467def1f9641d21b57253a2f?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Rohan</media:title>
		</media:content>
	</item>
		<item>
		<title>Is Null Filter Condition for List Views</title>
		<link>http://spyralout.com/2009/04/02/is-null-filter-condition-for-list-views/</link>
		<comments>http://spyralout.com/2009/04/02/is-null-filter-condition-for-list-views/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 22:17:00 +0000</pubDate>
		<dc:creator>spyralout</dc:creator>
				<category><![CDATA[CAML]]></category>
		<category><![CDATA[List]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[List Views]]></category>

		<guid isPermaLink="false">http://spyralout.wordpress.com/2009/04/02/is-null-filter-condition-for-list-views/</guid>
		<description><![CDATA[I have always wondered why SharePoint List Views don&#8217;t have filters for&#160; Is Null and Is Not Null when CAML Queries support it. U2U CAML Creator List View Turns out it does. When you select “is equal to” and “is not equal to” and do not enter any text it generates “IS Null” and “Is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=61&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have always wondered why SharePoint List Views don&#8217;t  have filters for&#160; Is Null and Is Not Null when CAML Queries support it.</p>
<p>U2U CAML Creator </p>
<p><a href="http://spyralout.files.wordpress.com/2009/04/image4.png"><img title="image" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="213" alt="image" src="http://spyralout.files.wordpress.com/2009/04/image-thumb4.png?w=529&#038;h=213" width="529" border="0" /></a> </p>
<p>List View </p>
<p><a href="http://spyralout.files.wordpress.com/2009/04/image1.png"><img title="image" style="display:inline;border-width:0;" height="240" alt="image" src="http://spyralout.files.wordpress.com/2009/04/image-thumb1.png?w=344&#038;h=240" width="344" border="0" /></a> </p>
<p>Turns out it does. When you select “is equal to” and “is not equal to” and do not enter any text it generates “IS Null” and “Is Not Null” CAML Queries for the View. </p>
<p>&#160;</p>
<p><a href="http://spyralout.files.wordpress.com/2009/04/image2.png"><img title="image" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="119" alt="image" src="http://spyralout.files.wordpress.com/2009/04/image-thumb2.png?w=345&#038;h=119" width="345" border="0" /></a> </p>
<p>Result into this</p>
<p><a href="http://spyralout.files.wordpress.com/2009/04/image3.png"><img title="image" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="99" alt="image" src="http://spyralout.files.wordpress.com/2009/04/image-thumb3.png?w=388&#038;h=99" width="388" border="0" /></a> </p>
<p>&#160;</p>
</p>
<p>Tools used:</p>
<p><a href="http://www.u2u.info/Blogs/Patrick/Lists/Posts/Post.aspx?ID=1315" target="_blank">U2U CAML Builder</a></p>
<p><a href="http://www.codeplex.com/SPCamlViewer" target="_blank">STRAMIT CAML Viewer</a></p>
<p>Rohan</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spyralout.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spyralout.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spyralout.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spyralout.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spyralout.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spyralout.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spyralout.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spyralout.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spyralout.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spyralout.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spyralout.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spyralout.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spyralout.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spyralout.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=61&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spyralout.com/2009/04/02/is-null-filter-condition-for-list-views/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d72c53e6467def1f9641d21b57253a2f?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Rohan</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/04/image-thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/04/image-thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/04/image-thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/04/image-thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>(Jquery)Display Video in SharePoint Blogs from document library</title>
		<link>http://spyralout.com/2009/03/24/jquerydisplay-video-in-sharepoint-blogs-from-document-library/</link>
		<comments>http://spyralout.com/2009/03/24/jquerydisplay-video-in-sharepoint-blogs-from-document-library/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 14:27:00 +0000</pubDate>
		<dc:creator>spyralout</dc:creator>
				<category><![CDATA[BLogs]]></category>
		<category><![CDATA[Content Editor Web Part]]></category>
		<category><![CDATA[Javascripts]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Web Parts]]></category>
		<category><![CDATA[SharePoint Blogs]]></category>
		<category><![CDATA[Video emmbedded]]></category>

		<guid isPermaLink="false">http://spyralout.wordpress.com/2009/03/24/jquerydisplay-video-in-sharepoint-blogs-from-document-library/</guid>
		<description><![CDATA[SharePoint Blogs OOB filters out all the html for embedding any kind of video in them. I use Windows live writer for my Blog post. I use one of the plug-in I think, but even though it wont embed the video within SharePoint it will show take a screenshot of&#160; the video and link to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=51&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SharePoint Blogs OOB filters out all the html for embedding any kind of video in them. I use Windows live writer for my Blog post. I use one of the plug-in I think, but even though it wont embed the video within SharePoint it will show take a screenshot of&#160; the video and link to the external site, which is fine for me. </p>
<p>To Display local intranet videos within blog takes bit of work, either hyperlink to media file or Content Editor web part for embedded code. </p>
<p>I using Jquery to accomplish this.</p>
<p>Instead of embedded we shall use Hyperlinks to media files and Jquery.Media plugin for turning them into inline videos. </p>
<p>Steps </p>
<p>1.Create 2 Document Libraries </p>
<ul>
<li>&#160;<b>Media</b>: To store all your media files. </li>
<li><b>Resources</b>: To store JavaScript and other files. </li>
</ul>
<p>2. Download Files.</p>
<ul>
<li>· Download Jquery JavaScript ( Note I am using 1.2.6 packed version) <a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.6.pack.js">http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.6.pack.js</a></li>
<li>· Download Jquery Media Plug-in <a href="http://malsup.com/jquery/media/jquery.media.js?v.85">jquery.media.js</a></li>
<li>· SWF Player here to play flv files. <a href="http://malsup.com/jquery/media/mediaplayer.swf">http://malsup.com/jquery/media/mediaplayer.swf</a></li>
</ul>
<p>3.Upload the <b>Jquery</b> JS and <b>mediaplayer</b>.swf to Resource Document library</p>
<p>4.&#160; Edit Jquery Media JavaScript File . In Default Configuration section change location of mediaplayer.swf to the one you just uploaded. Save the file</p>
<p><a href="http://www.sharepointblogs.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/rohan/image_5F00_223C80AD.png"><img title="clip_image002" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="191" alt="clip_image002" src="http://spyralout.files.wordpress.com/2009/03/clip-image002.gif?w=561&#038;h=191" width="561" border="0" /></a></p>
<p>5. Save and Upload Jquery Media to the <b>Resources</b> document library. </p>
<p>6. On Blog Home Page. Add a content Editor Web Part and Open Source Editor.</p>
<p>Add following script tags to it. (Change the src of javascript location to reflect the files you uploaded in steps above.)</p>
<p>&lt;script type=&quot;text/javascript&quot; src=&quot;/sharepoint/Sharepoint%20Blog/Resources/jquery-1.2.6.pack.js&quot;&gt;&lt;/script&gt; </p>
<p>&lt;script type=&quot;text/javascript&quot; src=&quot;/sharepoint/Sharepoint%20Blog/Resources/jquery.media.js&quot;&gt;&lt;/script&gt; </p>
<p>&lt;script type=&quot;text/javascript&quot; &gt;</p>
<p>$(&quot;a&quot;).media();</p>
<p>&lt;/script&gt;</p>
<p><a href="http://www.sharepointblogs.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/rohan/image_5F00_5360DCAF.png"><img title="clip_image004" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="167" alt="clip_image004" src="http://spyralout.files.wordpress.com/2009/03/clip-image004.gif?w=540&#038;h=167" width="540" border="0" /></a></p>
<p>7.Upload some media files to Media Library </p>
<p>Create a new blog post </p>
<p>in Body Section add a Hyperlink to a video you uploaded to Media library. </p>
<p><a href="http://www.sharepointblogs.com/cfs-file.ashx/__key/CommunityServer.Blogs.Components.WeblogFiles/rohan/image_5F00_031E852F.png"><img title="clip_image006" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="265" alt="clip_image006" src="http://spyralout.files.wordpress.com/2009/03/clip-image006.gif?w=364&#038;h=265" width="364" border="0" /></a></p>
<p>File Jquery Media Supports </p>
<p>* Supported Media Players:    <br />*&#160;&#160;&#160; &#8211; Flash     <br />*&#160;&#160;&#160; &#8211; Quicktime     <br />*&#160;&#160;&#160; &#8211; Real Player     <br />*&#160;&#160;&#160; &#8211; Silverlight     <br />*&#160;&#160;&#160; &#8211; Windows Media Player</p>
<p>For more information on Jquery Media click here&#160; <a href="http://malsup.com/jquery/media/#overview">http://malsup.com/jquery/media/#overview</a></p>
<p><strong>Note :</strong> If script doesn&#8217;t execute replace inline script with this : </p>
</p>
<p><font size="2"><em>&lt;script&gt;</em></font></p>
<p><font size="2"><em>function loadMedia() {</em></font></p>
<p><font size="2"><em>$(&quot;a&quot;).media();</em></font></p>
<p><font size="2"><em>}</em></font></p>
<p><font size="2"><em>_spBodyOnLoadFunctionNames.push(&quot;loadMedia&quot;);</em></font></p>
<p><font size="2"><em>&lt;/script&gt;</em></font></p>
<p><u>If that does not work&#160; I would try this in inline script tags</u></p>
<p><em>$(document).ready(function() {</em></p>
<p><em>$(&quot;a&quot;).media();</em></p>
<p><em>&#160;&#160; });</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/spyralout.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/spyralout.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/spyralout.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/spyralout.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/spyralout.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/spyralout.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/spyralout.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/spyralout.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/spyralout.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/spyralout.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/spyralout.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/spyralout.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/spyralout.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/spyralout.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=spyralout.com&amp;blog=6831123&amp;post=51&amp;subd=spyralout&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://spyralout.com/2009/03/24/jquerydisplay-video-in-sharepoint-blogs-from-document-library/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d72c53e6467def1f9641d21b57253a2f?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">Rohan</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/03/clip-image002.gif" medium="image">
			<media:title type="html">clip_image002</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/03/clip-image004.gif" medium="image">
			<media:title type="html">clip_image004</media:title>
		</media:content>

		<media:content url="http://spyralout.files.wordpress.com/2009/03/clip-image006.gif" medium="image">
			<media:title type="html">clip_image006</media:title>
		</media:content>
	</item>
	</channel>
</rss>
