<?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>Synteractive Ingenuity Blog</title>
	<atom:link href="http://www.synteractiveingenuity.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.synteractiveingenuity.com/wordpress</link>
	<description></description>
	<lastBuildDate>Mon, 14 May 2012 18:06:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>Building a SharePoint 2010 WSP Using TeamCity</title>
		<link>http://www.synteractiveingenuity.com/wordpress/2012/05/14/building-a-sharepoint-2010-wsp-using-teamcity/</link>
		<comments>http://www.synteractiveingenuity.com/wordpress/2012/05/14/building-a-sharepoint-2010-wsp-using-teamcity/#comments</comments>
		<pubDate>Mon, 14 May 2012 15:31:37 +0000</pubDate>
		<dc:creator>Michael Mendelson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.synteractiveingenuity.com/wordpress/2012/05/14/building-a-sharepoint-2010-wsp-using-teamcity/</guid>
		<description><![CDATA[I’ve been using Continuous Integration for years.&#160; It’s been a part of almost every project I’ve worked on.&#160; Prior to a few months ago, I was a CruiseControl.NET devotee, but recently a few of my colleagues expressed a preference for (&#8230;)</p><p><a href="http://www.synteractiveingenuity.com/wordpress/2012/05/14/building-a-sharepoint-2010-wsp-using-teamcity/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I’ve been using <a href="http://en.wikipedia.org/wiki/Continuous_integration">Continuous Integration</a> for years.&#160; It’s been a part of almost every project I’ve worked on.&#160; Prior to a few months ago, I was a CruiseControl.NET devotee, but recently a few of my colleagues expressed a preference for TeamCity.&#160; I tried it, and now I’m a convert!</p>
<p>However, the Microsoft stack is not set up with CI in mind.&#160; You’ll need to use a few tricks to set up your build on a computer which does not have a full dev environment.&#160; This is particularly true when developing for SharePoint 2010 using Visual Studio 10.</p>
<h2>Using TeamCity</h2>
<p>Setting up TeamCity is pretty straightforward.&#160; It’s a free product (up to 20 builds), and can be downloaded on the JetBrains web site.&#160; I won’t go into the basics of TeamCity right now. However, once the product is installed, start by setting up a simple project with a version control settings, but no build steps – it simply downloads the code from your repository.</p>
<h2>Preparing to use MSBuild</h2>
<p>There are quite a few dependencies to satisfy, for a SharePoint build.&#160; You’re using .NET 3.5, but you’ll want to make sure to use MSBuild 4.0 if you’ve been using VS2010. Features like WSP creation are not available in earlier versions.</p>
<h3>Setting up dependencies</h3>
<p>I used to do this step though trial and error, but recently found a great resource for this: <a title="http://msdn.microsoft.com/en-us/library/ff622991.aspx" href="http://msdn.microsoft.com/en-us/library/ff622991.aspx">http://msdn.microsoft.com/en-us/library/ff622991.aspx</a>.&#160; Follow the instructions in step 1. (Prepare the Build System).&#160; Obviously we’re not using TFS here, so skip that step. This step outlines the dependencies, and instructs us on which dll’s we need to manually add to the GAC.&#160; There’s a whole list.&#160; The short explanation is that you copy the dll’s from your dev environment, and place them into the GAC the build server.</p>
<p>One “gotcha” here is that that you need to make sure you’re using the correct version of gacutil.exe when adding items to the GAC.&#160; The reason is that .NET 4.0 adds a second GAC(!), so if you get the following message, you’ll know you have this problem:    <br /><code>     <br />Failure adding assembly to the cache:&#160;&#160; This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded.       <br /></code>    <br />On my machine, the path of the proper version of gacutil.exe was located in     <br /><code>     <br />C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\NETFX 4.0 Tools\gacutil.exe       <br /></code>    <br />Make sure you are working from the most recent version of the Microsoft Windows SDK.&#160;&#160; The following page should take you there: <a title="http://msdn.microsoft.com/en-us/windows/bb980924.aspx" href="http://msdn.microsoft.com/en-us/windows/bb980924.aspx">http://msdn.microsoft.com/en-us/windows/bb980924.aspx</a></p>
<p>Remember, YMMV here.&#160; If you do not have SharePoint installed on your build machine, you’ll have to add any SharePoint dll’s necessary to build your project as well.&#160; Anything that you miss will be readily apparent in the next step…</p>
<h2>Adding your MSBuild step to TeamCity</h2>
<p>Go back to the project you set up, and add a Build step.&#160; Select MSBuild from the Dropdown. Your project should look similar to this:</p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/image1.png"><img style="border-right-width: 0px;border-top-width: 0px;border-bottom-width: 0px;border-left-width: 0px" border="0" alt="image" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/image_thumb1.png" width="303" height="296" /></a></p>
<p>Notice the Command Line Parameters setting.&#160; IsPackaging=True causes the build to actually generate WSP’s for any of your projects that are configured to do so.&#160; Without this parameter, a simple build will be performed.</p>
<p>Hope you enjoyed my first post!&#160; Let me know how it goes.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.synteractiveingenuity.com%2Fwordpress%2F2012%2F05%2F14%2Fbuilding-a-sharepoint-2010-wsp-using-teamcity%2F&amp;title=Building%20a%20SharePoint%202010%20WSP%20Using%20TeamCity" id="wpa2a_2"><img src="http://www.synteractive.com/Style%20Library/images/sharesave.png" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.synteractiveingenuity.com/wordpress/2012/05/14/building-a-sharepoint-2010-wsp-using-teamcity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Implementing Favorites in SharePoint 2010</title>
		<link>http://www.synteractiveingenuity.com/wordpress/2012/05/14/implementing-favorites-in-sharepoint-2010/</link>
		<comments>http://www.synteractiveingenuity.com/wordpress/2012/05/14/implementing-favorites-in-sharepoint-2010/#comments</comments>
		<pubDate>Mon, 14 May 2012 15:26:05 +0000</pubDate>
		<dc:creator>Michael Mendelson</dc:creator>
				<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.synteractiveingenuity.com/wordpress/?p=328</guid>
		<description><![CDATA[As a SharePoint consultant, I’m often asked to provide features which “should” exist, but Microsoft just doesn’t provide. Often these are features which might be common in the Web 2.0 world, but – well, not here. In one of my (&#8230;)</p><p><a href="http://www.synteractiveingenuity.com/wordpress/2012/05/14/implementing-favorites-in-sharepoint-2010/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>As a SharePoint consultant, I’m often asked to provide features which “should” exist, but Microsoft just doesn’t provide.  Often these are features which might be common in the Web 2.0 world, but – well, not here.</p>
<p>In one of my current projects (based on a Publishing Site), the paradigm of a “favorite button” is central to the desired site functionality. Users should be able to “favorite” any document or folder.  These documents and folders are visible in a centrally located list, along with metadata items such as Modified Date and Author.</p>
<p>There are many possible ways to implement this, but initially I chose to use SharePoint 2010’s Social Tagging feature as the basic building block.  It’s already set up to store link information by user, and integrates with the Keywords area of the Term Store.  On the back end, this is the same mechanism used when you click “I like it” on any page.</p>
<p>This article is more concerned with the back end of things – the code listed below can be wrapped in web services, web parts or whatever you like, to provide functionality to the end user.</p>
<h1>Tagging items</h1>
<p>Social Tags are essentially key/value pairs, with the key being a Uri (e.g. the url of a web page), and the value being a description.  In addition to the tag of “I like it”, other tags may be created in the Keywords area of the Term Store, and then used to tag documents. Here’s the code I’m using to tag a document:</p>
<p>[csharp]<br />
 ///<br />
<summary>
/// Updates or adds a social tag for this user.<br />
/// User info is derived from context.<br />
/// Tag is added to term store if necessary.<br />
/// </summary>
<p>public static void UpdateSocialTag(SPSite site, string socialTagName, string title, string url)<br />
{<br />
            SPServiceContext context = SPServiceContext.GetContext(site);<br />
            SocialTagManager mySocialTagManager = new SocialTagManager(context);<br />
            //Retrieve the taxonomy session from the SocialTagManager.<br />
            TaxonomySession taxSession = mySocialTagManager.TaxonomySession;<br />
            TermStore termStore = taxSession.DefaultKeywordsTermStore;</p>
<p>            Term newTerm = termStore.FindOrCreateKeyword(socialTagName);<br />
            Uri tagUri = ConvertToUri(site, url);<br />
            mySocialTagManager.AddTag(tagUri, newTerm, title);<br />
}<br />
[/csharp]</p>
<p>The reason this method is called “Update” is that if this Uri has already been tagged, that tag will be replaced.</p>
<h1>Retrieving a list of favorites</h1>
<p>I’ll also want to display my list of favorites.  Social tagging does not intrinsically lend itself to pulling out the list of items which have a particular tag, but we can add that capability using the following code:</p>
<p>[csharp]<br />
///<br />
<summary>
/// Get the items tagged with TermName for this user.<br />
/// If empty, return an empty array<br />
/// </summary>
<p>internal static SocialTag[] GetUserSocialTags(SPSite site, string termName)<br />
{<br />
    List socialTags = new List();</p>
<p>    SPServiceContext serviceContext = SPServiceContext.GetContext(site);<br />
    UserProfileManager mngr = new UserProfileManager(serviceContext);  // load the UserProfileManager<br />
    UserProfile currentProfile = mngr.GetUserProfile(false);// Get the user’s profile</p>
<p>    if (currentProfile == null) return socialTags.ToArray();            // user must have profile<br />
    SocialTagManager smngr = new SocialTagManager(serviceContext);</p>
<p>    // Get the SocialTerm corresponding to this term.<br />
    SocialTerm favTerm = GetSocialTerm(termName, currentProfile, smngr);<br />
    if (favTerm == null) return socialTags.ToArray();</p>
<p>    // Get the terms for the user.  Loop through them for conformity.<br />
    SocialTag[] tags = smngr.GetTags(currentProfile);<br />
    foreach (SocialTag tag in tags)<br />
        if (tag.Term == favTerm.Term)<br />
            socialTags.Add(tag);<br />
    return socialTags.ToArray();<br />
}</p>
<p>///<br />
<summary>
/// retrieve a named social term.<br />
/// </summary>
<p>private static SocialTerm GetSocialTerm(string tag, UserProfile currentProfile, SocialTagManager smngr)<br />
{<br />
    // Get the terms for the user<br />
    SocialTerm[] terms = smngr.GetTerms(currentProfile);<br />
    SocialTerm favTerm = null;</p>
<p>    //Iterate through the terms and search for the passed tag<br />
    foreach (SocialTerm t in terms)<br />
    {<br />
        if (string.Compare(t.Term.Name, tag, true) == 0)<br />
        {<br />
            favTerm = t;<br />
            break;<br />
        }<br />
    }<br />
    return favTerm;<br />
}<br />
[/csharp]</p>
<p>This code forms the &#8220;core” of my favorites system.  The ability to tag a document (or remove tag) is wrapped in a web service to allow us to provide provide AJAX functionality.  I wrote a web part to display the favorites, with simple sorting and filtering.</p>
<h1>Metadata features</h1>
<p>One missing element is the metadata, a part of the requirement I mentioned above.  For this, I wrote code (as part of my Favorites Web Part) to pull out the necessary metadata for each Uri given, provided it’s a reference to the current site.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.synteractiveingenuity.com%2Fwordpress%2F2012%2F05%2F14%2Fimplementing-favorites-in-sharepoint-2010%2F&amp;title=Implementing%20Favorites%20in%20SharePoint%202010" id="wpa2a_4"><img src="http://www.synteractive.com/Style%20Library/images/sharesave.png" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.synteractiveingenuity.com/wordpress/2012/05/14/implementing-favorites-in-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the .s4-titlerowhidetitle in your custom master page.</title>
		<link>http://www.synteractiveingenuity.com/wordpress/2012/05/10/using-the-s4-titlerowhidetitle-in-your-custom-master-page/</link>
		<comments>http://www.synteractiveingenuity.com/wordpress/2012/05/10/using-the-s4-titlerowhidetitle-in-your-custom-master-page/#comments</comments>
		<pubDate>Thu, 10 May 2012 14:22:46 +0000</pubDate>
		<dc:creator>hwaterman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.synteractiveingenuity.com/wordpress/2012/05/10/using-the-s4-titlerowhidetitle-in-your-custom-master-page/</guid>
		<description><![CDATA[When creating a custom master page you want to make sure to keep the s4-titlerowhidetitle class.&#160; If you don’t have this in your custom master page you can find the tag&#160; directly after the #s4-bodyContainer in your v4.master. (Please don’t (&#8230;)</p><p><a href="http://www.synteractiveingenuity.com/wordpress/2012/05/10/using-the-s4-titlerowhidetitle-in-your-custom-master-page/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>When creating a custom master page you want to make sure to keep the s4-titlerowhidetitle class.&#160; If you don’t have this in your custom master page you can find the tag&#160; directly after the #s4-bodyContainer in your v4.master. (Please don’t edit the v4.master directly!)</p>
<pre class="csharpcode">&lt;div  id=<span class="str">&quot;s4-titlerow&quot;</span> <span class="kwrd">class</span>=<span class="str">&quot;s4-notdlg s4-titlerowhidetitle&quot;</span>&gt;
...
&lt;/div&gt;</pre>
<pre class="csharpcode">&#160;</pre>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p>IMHO it’s a gem when editing your SharePoint page. When you edit your non-branded SharePoint page ever notice how the header area disappears, that is the .s4-titlerowhidetitle at work.&#160; I definitely want to keep this functionality in my custom master page.</p>
<p>For my custom master page I placed the div tag around everything in my header (logo, search, top navigation, title area, breadcrumb, and status bar container).</p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-10-2012-9-50-59-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="5-10-2012 9-50-59 AM" border="0" alt="5-10-2012 9-50-59 AM" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-10-2012-9-50-59-AM_thumb.png" width="484" height="643" /></a></p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-10-2012-9-39-02-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="5-10-2012 9-39-02 AM" border="0" alt="5-10-2012 9-39-02 AM" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-10-2012-9-39-02-AM_thumb.png" width="484" height="330" /></a></p>
<p>Now when I edit my page everything in my header is neatly tucked away, and I don’t have to scroll down to see my main content.</p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/image.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="image" border="0" alt="image" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/image_thumb.png" width="484" height="300" /></a></p>
<p>Thanks for reading!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.synteractiveingenuity.com%2Fwordpress%2F2012%2F05%2F10%2Fusing-the-s4-titlerowhidetitle-in-your-custom-master-page%2F&amp;title=Using%20the%20.s4-titlerowhidetitle%20in%20your%20custom%20master%20page." id="wpa2a_6"><img src="http://www.synteractive.com/Style%20Library/images/sharesave.png" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.synteractiveingenuity.com/wordpress/2012/05/10/using-the-s4-titlerowhidetitle-in-your-custom-master-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A cleaner layout when using the Web Part Tool Pane!</title>
		<link>http://www.synteractiveingenuity.com/wordpress/2012/05/10/a-cleaner-layout-when-using-the-web-part-tool-pane/</link>
		<comments>http://www.synteractiveingenuity.com/wordpress/2012/05/10/a-cleaner-layout-when-using-the-web-part-tool-pane/#comments</comments>
		<pubDate>Thu, 10 May 2012 13:11:26 +0000</pubDate>
		<dc:creator>hwaterman</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Branding Tips/Tricks]]></category>

		<guid isPermaLink="false">http://www.synteractiveingenuity.com/wordpress/2012/05/10/a-cleaner-layout-when-using-the-web-part-tool-pane/</guid>
		<description><![CDATA[How many times have you gone to edit a web part on the page, only to have to scroll to the right to see the tool pane? If you happen to have a large screen then this is not much (&#8230;)</p><p><a href="http://www.synteractiveingenuity.com/wordpress/2012/05/10/a-cleaner-layout-when-using-the-web-part-tool-pane/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>How many times have you gone to edit a web part on the page, only to have to scroll to the right to see the tool pane?</p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-10-2012-7-57-25-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="5-10-2012 7-57-25 AM" border="0" alt="5-10-2012 7-57-25 AM" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-10-2012-7-57-25-AM_thumb.png" width="484" height="438"></a></p>
<p>If you happen to have a large screen then this is not much of an issue, but if you have a smaller screen or have numerous windows open it can become a pain.</p>
<p>Here is a great workaround I have come up with that solved my problem.</p>
<h3>Move the MSO_Content Div Tag<br /></h3>
<p>First in your custom master page, you want to locate the div tag &lt;div id=&#8221;MSO_ContentDiv&#8221; runat=&#8221;server&#8221;&gt; (for more clarification on this div tag I suggest reading <a href="http://blog.mastykarz.nl/mso_contentdiv-web-part-properties/">this post by Waldek Mastykarz</a>).&nbsp; </p>
<p>I want to&nbsp; wrap the content that holds the left nav and the main content with this div tag. For this example I added the div tag directly before the&nbsp; &lt;div id=&#8221;s4-mainarea&#8221; class=&#8221;s4-pr s4-widecontentarea&#8221;&gt;.&nbsp; </p>
<pre class="csharpcode">&lt;div id=<span class="str">"MSO_ContentDiv"</span> runat=<span class="str">"server"</span>&gt;
&lt;div id=<span class="str">"s4-mainarea"</span> <span class="kwrd">class</span>=<span class="str">"s4-pr s4-widecontentarea"</span>&gt;
....
&lt;/div&gt;&lt;!-- end #s4-mainarea--&gt;
&lt;/div&gt;&lt;!-- end#MSO_ContentDiv—&gt;</pre>
<pre class="csharpcode"></pre>
<style type="text/css">.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
</style>
<h3>&nbsp;</h3>
<h3>Update your custom CSS file<br /></h3>
<p>Next add the following CSS to your page layout or to your Custom CSS file.</p>
<pre class="csharpcode">#MSOTlPn_WebPartPageDiv #s4-leftpanel {display: none;}
#MSOTlPn_WebPartPageDiv div#MSO_ContentTable {margin: 0px; !important;}</pre>
<style type="text/css">.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }
</style>
<p>&nbsp;</p>
<h3>A cleaner layout</h3>
<p>When in normal edit mode your page looks like this.</p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-10-2012-8-16-09-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="5-10-2012 8-16-09 AM" border="0" alt="5-10-2012 8-16-09 AM" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-10-2012-8-16-09-AM_thumb.png" width="484" height="302"></a></p>
<p>When editing a web part and the tool pane is needed your page will look like this:</p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-10-2012-8-25-15-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="5-10-2012 8-25-15 AM" border="0" alt="5-10-2012 8-25-15 AM" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-10-2012-8-25-15-AM_thumb.png" width="484" height="306"></a></p>
<p>As you can see your left navigation is hidden and your content area has been moved over to the left. You could take this further with your page layouts and un-float specific elements so that they fall in line on the page for easier editing.</p>
<p>Note: If you have web parts in your left hand column that need editing this is not the solution for you.</p>
<p>Thanks for reading!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.synteractiveingenuity.com%2Fwordpress%2F2012%2F05%2F10%2Fa-cleaner-layout-when-using-the-web-part-tool-pane%2F&amp;title=A%20cleaner%20layout%20when%20using%20the%20Web%20Part%20Tool%20Pane%21" id="wpa2a_8"><img src="http://www.synteractive.com/Style%20Library/images/sharesave.png" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.synteractiveingenuity.com/wordpress/2012/05/10/a-cleaner-layout-when-using-the-web-part-tool-pane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint 2010 Customizations and Modal dialog Boxes</title>
		<link>http://www.synteractiveingenuity.com/wordpress/2012/05/07/sharepoint-2010-customizations-and-modal-dialog-boxes/</link>
		<comments>http://www.synteractiveingenuity.com/wordpress/2012/05/07/sharepoint-2010-customizations-and-modal-dialog-boxes/#comments</comments>
		<pubDate>Mon, 07 May 2012 14:24:15 +0000</pubDate>
		<dc:creator>hwaterman</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Branding Tips/Tricks]]></category>

		<guid isPermaLink="false">http://www.synteractiveingenuity.com/wordpress/2012/05/07/sharepoint-2010-customizations-and-modal-dialog-boxes/</guid>
		<description><![CDATA[I blogged on this once before, but I just found the text part posted from 12/29/2009. So I am posting it again with updates. When creating a custom master page with SharePoint 2010 you will run into issues.&#160; First one: (&#8230;)</p><p><a href="http://www.synteractiveingenuity.com/wordpress/2012/05/07/sharepoint-2010-customizations-and-modal-dialog-boxes/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I blogged on this once before, but I just found the text part posted from 12/29/2009. So I am posting it again with updates.</p>
<p>When creating a custom master page with SharePoint 2010 you will run into issues.&#160; First one: you find that the modal dialog (pop-up) is using some, or all, of your custom master page branding.&#160; </p>
<p>How does this happen? This happens when you have set your system master page to use your custom master page. The site master page is used for publishing/content pages and the system master page is used by all the forms and view pages of the site.&#160; </p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-7-2012-9-54-31-AM1.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="5-7-2012 9-54-31 AM" border="0" alt="5-7-2012 9-54-31 AM" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-7-2012-9-54-31-AM_thumb1.png" width="484" height="244" /></a></p>
<p>You don’t have these options (unless publishing is turned on) when you are using a team site or blog site, so your custom master page will also be used by the System Master Page.</p>
<h3>What are my options?    <br /></h3>
<p>One workaround is just not using your custom master page as the system master page (also known as the default, application _layouts). </p>
<p>There are times when you will use your custom master page in the system master pages, like team sites,&#160; blogs or any other number of reasons.&#160; When this page is customized using fixed widths, background colors and images, etc., it also changes the look and feel of your modal (pop-up) boxes.&#160;&#160; </p>
<h3>Using the .s4-notdlg    <br /></h3>
<p>You can use the .s4-notdlg class. Randy Drisgill created a blog post on this subject dealing with <a href="http://blog.drisgill.com/2009/11/sp2010-branding-tip-2-custom-master.html">Custom Master pages and Dialog Boxes</a> on using the CSS class called s4-notdlg, this is a good workaround when you don’t want large blocks to show – like the header/title row, breadcrumb, left nav area, and footer/copyright.&#160; The .s4-notdlg renders a display none.&#160; </p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-7-2012-9-40-07-AM1.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="5-7-2012 9-40-07 AM" border="0" alt="5-7-2012 9-40-07 AM" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-7-2012-9-40-07-AM_thumb1.png" width="484" height="402" /></a></p>
<h3>Using the .ms-dialog    <br /></h3>
<p>Lets say you create a custom master page and you have a wrapper that uses a background image with a color:&#160;&#160; .mywrapper {background: url(&quot;bg.gif&quot;) repeat-y left top #f8f8f8; }.&#160; </p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-7-2012-9-35-43-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="5-7-2012 9-35-43 AM" border="0" alt="5-7-2012 9-35-43 AM" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-7-2012-9-35-43-AM_thumb.png" width="404" height="329" /></a></p>
<p>This wrapper is also outside the #s4-workspace and the #s4-bodycontainer, if you use the the .s4-notdlg class – everything on your page will disappear in the modal dialog box. </p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-7-2012-10-10-43-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="5-7-2012 10-10-43 AM" border="0" alt="5-7-2012 10-10-43 AM" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-7-2012-10-10-43-AM_thumb.png" width="404" height="96" /></a></p>
<p>Using .ms-dialog before the class that is causing issues and you can reverse the effects:    <br />.ms-dialog .mywrapper { background-image: none; background-color: transparent;}</p>
<p>Now our modal dialog box looks normal.</p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-7-2012-9-26-43-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="5-7-2012 9-26-43 AM" border="0" alt="5-7-2012 9-26-43 AM" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-7-2012-9-26-43-AM_thumb.png" width="404" height="218" /></a></p>
<p>Thanks for reading, and please let me know if this post has helped. </p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.synteractiveingenuity.com%2Fwordpress%2F2012%2F05%2F07%2Fsharepoint-2010-customizations-and-modal-dialog-boxes%2F&amp;title=SharePoint%202010%20Customizations%20and%20Modal%20dialog%20Boxes" id="wpa2a_10"><img src="http://www.synteractive.com/Style%20Library/images/sharesave.png" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.synteractiveingenuity.com/wordpress/2012/05/07/sharepoint-2010-customizations-and-modal-dialog-boxes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Custom Site Actions Items to my SharePoint 2010 Blog</title>
		<link>http://www.synteractiveingenuity.com/wordpress/2012/05/01/adding-custom-site-actions-items-to-my-blog/</link>
		<comments>http://www.synteractiveingenuity.com/wordpress/2012/05/01/adding-custom-site-actions-items-to-my-blog/#comments</comments>
		<pubDate>Tue, 01 May 2012 19:02:07 +0000</pubDate>
		<dc:creator>hwaterman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.synteractiveingenuity.com/wordpress/2012/05/01/adding-custom-site-actions-items-to-my-blog/</guid>
		<description><![CDATA[When you first create a blog on SharePoint 2010 it seems clunky in allowing the management of posts, comments, etc. Since I have a fixed width blog I don’t use the third column. Yes you can move the web part (&#8230;)</p><p><a href="http://www.synteractiveingenuity.com/wordpress/2012/05/01/adding-custom-site-actions-items-to-my-blog/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>When you first create a blog on SharePoint 2010 it seems clunky in allowing the management of posts, comments, etc. Since I have a fixed width blog I don’t use the third column. Yes you can move the web part but what fun is that when we can try something new and add some links into the Site Actions.</p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-1-2012-10-45-41-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="5-1-2012 10-45-41 AM" border="0" alt="5-1-2012 10-45-41 AM" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-1-2012-10-45-41-AM_thumb.png" width="244" height="152" /></a></p>
<p>Chances are I could have broken my site by doing this, but when working with SharePoint you should have NO Fear.&#160; Understand that when you are working on customizing master pages you will break your site many many times, its just part of the process. </p>
<h3>Adding the Custom items</h3>
<p>&#160;</p>
<p>Open your custom master page and find the last item of the <font face="Consolas">&lt;SharePoint:MenuItemTemplate….</font> code and copy and paste that into notepad or copy the following code into notepad:</p>
<blockquote><p><font size="2" face="Consolas">&lt;SharePoint:MenuItemTemplate runat=&quot;server&quot; id=&quot;MenuItem_CommitNewUI&quot;        <br />&#160; Text=&quot;&lt;%$Resources:wss,siteactions_commitnewui%&gt;&quot;         <br />&#160; Description=&quot;&lt;%$Resources:wss,siteactions_commitnewuidescription%&gt;&quot;         <br />&#160; ImageUrl=&quot;/_layouts/images/visualupgradehh.png&quot;         <br />&#160; MenuGroupId=&quot;300&quot;         <br />&#160; Sequence=&quot;330&quot;         <br />&#160; UseShortId=&quot;true&quot;         <br />&#160; ClientOnClickScriptContainingPrefixedUrl=&quot;GoToPage&#160;&#160;&#160; <br />&#160; (&#8216;~site/_layouts/prjsetng.aspx&#8217;)&quot;         <br />&#160; PermissionsString=&quot;ManageWeb&quot;         <br />&#160; PermissionMode=&quot;Any&quot;         <br />&#160; ShowOnlyIfUIVersionConfigurationEnabled=&quot;true&quot; /&gt;</font></p>
</blockquote>
<p><strong>Note: </strong>ID’s need to be unique make sure anything that uses an ID is changed.&#160; </p>
<p>My first custom Site Actions item was Create Post so I updated my copied code and made the first change ID (<font face="Consolas">&lt;SharePoint:MenuItemTemplate runat=&quot;server&quot; id=&quot;CreatePost&quot;). </font>Again anything that uses an ID should be unique.</p>
<p>The text that is the heading or title of your action is simply called Text &#8211; <font face="Consolas">Text=&quot;&lt;%$Resources:wss,siteactions_commitnewui%&gt;&quot;</font> – remove the code and just add your own <font face="Consolas">Text=&quot;Create Blog Post&quot;</font>. </p>
<p>The description of your action is called Description &#8211; <font face="Consolas">Description=&quot;&lt;%$Resources:wss,siteactions_commitnewuidescription%&gt;&quot; </font>– remove the code and add your own <font face="Consolas">Description=&quot;Create a great Blog Post&quot;</font>.</p>
<p>So far you should have: </p>
<blockquote><p><font face="Consolas">&lt;SharePoint:MenuItemTemplate runat=&quot;server&quot; id=</font><font face="Consolas"><font style="background-color: #ffff00">&quot;CreatePost&quot;          <br /></font>&#160; Text=<font style="background-color: #ffff00">&quot;Create Blog Post&quot;</font>         <br />&#160; Description=<font style="background-color: #ffff00">&quot;Create a great blog post&quot;</font></font></p>
</blockquote>
<p>The next item to change is the Image URL. I am sure you can add you own image and link it to the URL, but I used what was already there. I found the items that had the icons I wanted to use and then went back through the code to copy that image url and added it to my code. If you make your own images make sure they have a transparent background and use the same size (32 x 32) as the existing icons.</p>
<blockquote><p><font face="Consolas">&#160; ImageUrl=&quot;/_layouts/images/ActionsEditPage.png&quot;</font></p>
</blockquote>
<p>The site actions are broken up into Group ID’s and sequences. The last one&#160; had a group ID of 300, set your group ID to 400. </p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-1-2012-10-55-56-AM.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="5-1-2012 10-55-56 AM" border="0" alt="5-1-2012 10-55-56 AM" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-1-2012-10-55-56-AM_thumb.png" width="454" height="122" /></a>     </p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-1-2012-11-29-49-AM.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="5-1-2012 11-29-49 AM" border="0" alt="5-1-2012 11-29-49 AM" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-1-2012-11-29-49-AM_thumb.png" width="244" height="176" /></a></p>
<p>Each item you add (Create Blog Post &#8211; 410, Manage Blog Post &#8211; 420 and Manage Comments &#8211; 430) will have a different sequence number. When creating my first item Create Blog Post I choose to sequence the items in groups of 10.</p>
<blockquote><p><font face="Consolas">&#160; MenuGroupId=&quot;400&quot;        <br />&#160; Sequence=&quot;410&quot;</font></p>
</blockquote>
<p>Your code should look similar to this now.</p>
<blockquote><p><font face="Consolas">&lt;SharePoint:MenuItemTemplate runat=&quot;server&quot; id=</font><font face="Consolas"><font style="background-color: #ffff00">&quot;CreatePost&quot;          <br /></font>&#160; Text=<font style="background-color: #ffff00">&quot;Create Blog Post&quot;</font>         <br />&#160; Description=<font style="background-color: #ffff00">&quot;Create a great blog post&quot;</font></font><font face="Consolas">        <br />&#160; ImageUrl=<font style="background-color: #ffff00">&quot;/_layouts/images/ActionsEditPage.png&quot;</font>         <br />&#160; </font><font face="Consolas"><font style="background-color: #ffff00"></font></font>MenuGroupId=<font style="background-color: #ffff00">&quot;400&quot;</font>       <br />&#160; Sequence=<font style="background-color: #ffff00">&quot;410&quot;</font></p>
</blockquote>
<p>Next we want to change the <font face="Consolas">ClientOnClickScriptContainingPrefixedUrl=&quot;GoToPage(&#8216;~site/_layouts/prjsetng.aspx&#8217;)&quot;</font>. These are the links that will take us to Create and Manage Posts and Manage Comments. To get the correct URL you can use view source on your default blog page. The code you are looking for will be formatted in a LI. You can do a search in your view source for “Create a Post” and find the code you need to use. You would do the same for the other links you want to create.</p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-1-2012-12-26-56-PM.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="5-1-2012 12-26-56 PM" border="0" alt="5-1-2012 12-26-56 PM" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/5-1-2012-12-26-56-PM_thumb.png" width="454" height="242" /></a></p>
<blockquote><p>&lt;li&gt;      <br />&lt;span style=&quot;height:8px;width:8px;position:relative;display:inline-block;overflow:hidden;&quot; class=&quot;s4-clust&quot;&gt;&lt;a style=&quot;display:inline-block;height:8px;width:8px;&quot;&gt;&lt;img src=&quot;/_layouts/images/fgimg.png&quot; style=&quot;border:0;position:absolute;left:-0px !important;top:-447px !important;&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;a href=&quot;javascript:&quot; onclick=&quot;javascript:ShowPopupDialog(&#8216;<font style="background-color: #ffff00">/site/Blog/Lists/Posts/NewPost.aspx?Source=/site/Blog/</font>&#8216;)&quot; id=&quot;admlnk0&quot;&gt;Create a post&lt;/a&gt;       <br />&lt;/li&gt;</p>
</blockquote>
<p>Comparing my view source to the existing code it was easy to find the link I needed to use.</p>
<blockquote><p><font face="Consolas">ClientOnClickNavigateUrl=&quot;~site/_layouts/settings.aspx&quot;</font></p>
</blockquote>
<blockquote><p><font face="Consolas">ClientOnClickNavigateUrl=<font style="background-color: #ffff00">&quot;/hwaterman/blog/Lists/Posts/NewPost.aspx?Source=/hwaterman/blog/&quot;</font></font></p>
</blockquote>
<p>The remaining items are Permissions, I selected to use the same permissions as the Site Settings item, however you can use whatever permissions you want.</p>
<blockquote><p><font face="Consolas">PermissionsString=&quot;EnumeratePermissions,ManageWeb,ManageSubwebs…&quot;</font></p>
</blockquote>
<p>That’s it, your code should now look like:</p>
<blockquote><p>&lt;SharePoint:MenuItemTemplate runat=&quot;server&quot; id=<font style="background-color: #ffff00">&quot;CreatePost&quot;        <br /></font>&#160;&#160; Text=<font style="background-color: #ffff00">&quot;Create Blog Post&quot;</font>       <br />&#160;&#160; Description=<font style="background-color: #ffff00">&quot;Create a great blog post&quot;</font>       <br />&#160;&#160; ImageUrl=<font style="background-color: #ffff00">&quot;/_layouts/images/ActionsEditPage.png&quot;</font>       <br />&#160;&#160; MenuGroupId=<font style="background-color: #ffff00">&quot;400&quot;</font>       <br />&#160;&#160; Sequence=<font style="background-color: #ffff00">&quot;410&quot;</font>       <br />&#160;&#160; UseShortId=&quot;true&quot;       <br />&#160;&#160; ClientOnClickNavigateUrl=<font style="background-color: #ffff00">&quot;/hwaterman/blog/Lists/Posts/NewPost.aspx?        <br /></font>&#160;&#160;&#160; <font style="background-color: #ffff00">Source=/hwaterman/blog/&quot;</font>       <br />&#160;&#160; PermissionsString=<font style="background-color: #ffff00">&quot;EnumeratePermissions,ManageWeb,ManageSubwebs,        <br /><font style="background-color: #ffffff"></font></font>&#160;&#160;&#160; <font style="background-color: #ffff00"><font style="background-color: #ffffff"></font>AddAndCustomizePages,ApplyThemeAndBorder,ManageAlerts,         <br /></font>&#160;&#160;&#160; <font style="background-color: #ffff00">ManageLists,ViewUsageData&quot;</font>       <br />&#160;&#160; PermissionMode=&quot;Any&quot; /&gt;&#160;&#160;&#160; </p>
</blockquote>
<p>I used this on my own blog site and have added it to a few others. I am sure this can be used for a number of different shortcuts you might want to place in the Site Actions of your custom master page.</p>
<p>Thanks for reading!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.synteractiveingenuity.com%2Fwordpress%2F2012%2F05%2F01%2Fadding-custom-site-actions-items-to-my-blog%2F&amp;title=Adding%20Custom%20Site%20Actions%20Items%20to%20my%20SharePoint%202010%20Blog" id="wpa2a_12"><img src="http://www.synteractive.com/Style%20Library/images/sharesave.png" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.synteractiveingenuity.com/wordpress/2012/05/01/adding-custom-site-actions-items-to-my-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a twitter feed with a SharePoint xml viewer web part</title>
		<link>http://www.synteractiveingenuity.com/wordpress/2012/05/01/adding-a-twitter-feed-with-a-sharepoint-xml-viewer-web-part/</link>
		<comments>http://www.synteractiveingenuity.com/wordpress/2012/05/01/adding-a-twitter-feed-with-a-sharepoint-xml-viewer-web-part/#comments</comments>
		<pubDate>Tue, 01 May 2012 14:41:00 +0000</pubDate>
		<dc:creator>hwaterman</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>
		<category><![CDATA[SharePoint Branding Tips/Tricks]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Twitter Feed]]></category>

		<guid isPermaLink="false">http://www.synteractiveingenuity.com/wordpress/2012/05/01/adding-a-twitter-feed-with-a-sharepoint-xml-viewer-web-part/</guid>
		<description><![CDATA[Working on sites these days you have many social feeds that need to be added to your SharePoint site. One way we have accomplished this is using the XML viewer web part. You can add this into a web part (&#8230;)</p><p><a href="http://www.synteractiveingenuity.com/wordpress/2012/05/01/adding-a-twitter-feed-with-a-sharepoint-xml-viewer-web-part/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Working on sites these days you have many social feeds that need to be added to your SharePoint site. One way we have accomplished this is using the XML viewer web part.</p>
<p>You can add this into a web part zone on your page through your browser or you can add the web part directly to your master page. I typically don’t add this directly into a client’s master page, but for my blog I did add it directly to my master page.</p>
<p>Browse to your site and add the XML Viewer Web Part to your page. To make this work you need the XML Link – this will be the RSS feed/code used to pull the information from twitter. Next you need the XSL Link, this will format the tweets that you are pulling from twitter.</p>
<h3>Getting the XML Link    </p>
</h3>
<p>First thing you need is a link for your Twitter account.&#160; For my site I use an RSS feed and can also control the number of tweets I want to show on my site (count=3). <a href="http://twitter.com/statuses/user_timeline/xxxxxxxx.rss?count=3">http://twitter.com/statuses/user_timeline/xxxxxxxx.rss?count=3</a>.&#160; Since Twitter removed the RSS feed on their site you can use <a href="http://sociable.co/social-media/twitter-removes-all-search-rss-links-from-its-site-now-users-must-resort-to-hacks-to-get-feeds/" target="_blank">this link</a> to find your RSS feed link or you can use the following code, which is just as easy. <a href="http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=xxxxx">http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=xxxxx</a></p>
<p>Now that you have your feed link you can add the XML viewer web part to your page/zone and make the proper connections.</p>
<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/twitter-post11.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="twitter-post1" border="0" alt="twitter-post1" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/05/twitter-post1_thumb1.png" width="484" height="336" /></a></p>
<h3>Code for the XSL Link</h3>
<div class="csharpcode">
<pre><span class="lnum"> </span></pre>
</div>
<p><font face="Consolas">&lt;xsl:stylesheet xmlns:x=&quot;</font><a href="http://www.w3.org/2001/XMLSchema&quot;"><font face="Consolas">http://www.w3.org/2001/XMLSchema&quot;</font></a> </p>
<p><font face="Consolas">&#160;&#160;&#160; version=&quot;1.0&quot;<br />
    <br />&#160;&#160;&#160; xmlns:xsl=&quot;</font><a href="http://www.w3.org/1999/XSL/Transform&quot;"><font face="Consolas">http://www.w3.org/1999/XSL/Transform&quot;</font></a> </p>
<p><font face="Consolas">&#160;&#160;&#160; xmlns:cmswrt=&quot;</font><a href="http://schemas.microsoft.com/WebPart/v3/Publishing/runtime&quot;"><font face="Consolas">http://schemas.microsoft.com/WebPart/v3/Publishing/runtime&quot;</font></a> </p>
<p><font face="Consolas">&#160;&#160;&#160; xmlns:atom=&quot;</font><a href="http://www.w3.org/2005/Atom&quot;"><font face="Consolas">http://www.w3.org/2005/Atom&quot;</font></a><font face="Consolas"> xmlns:georss=&quot;</font><a href="http://www.georss.org/georss&quot;"><font face="Consolas">http://www.georss.org/georss&quot;</font></a><font face="Consolas"> xmlns:twitter=&quot;</font><a href="http://api.twitter.com&quot;"><font face="Consolas">http://api.twitter.com&quot;</font></a> </p>
<p><font face="Consolas">&#160;&#160;&#160; exclude-result-prefixes=&quot;ddwrt xsl cmswrt x&quot;<br />
    <br />&#160;&#160;&#160; xmlns:ddwrt=&quot;</font><a href="http://schemas.microsoft.com/WebParts/v2/DataView/runtime&quot;"><font face="Consolas">http://schemas.microsoft.com/WebParts/v2/DataView/runtime&quot;</font></a><font face="Consolas"> xmlns:ddwrt2=&quot;urn:frontpage:internal&quot;&gt;<br />
    <br />&#160;&#160;&#160; &lt;xsl:output method=&quot;html&quot; indent=&quot;no&quot; /&gt;</font></p>
<p><font face="Consolas">&#160;&#160;&#160; <font color="#ff0000">&#160; </font></font><font face="Consolas"><strong><font color="#ff0000">&lt;xsl:param name=&quot;rss_FeedLimit&quot;&gt;4&lt;/xsl:param&gt;<br />
        <br /></font></strong>&#160;&#160;&#160; &lt;xsl:output method=&quot;html&quot; /&gt;</font></p>
<p><font face="Consolas">&#160;&#160;&#160;&#160;&#160; &lt;xsl:template match=&quot;rss&quot; xmlns:atom=&quot;</font><a href="http://www.w3.org/2005/Atom&quot;"><font face="Consolas">http://www.w3.org/2005/Atom&quot;</font></a><font face="Consolas"> xmlns:georss=&quot;</font><a href="http://www.georss.org/georss&quot;"><font face="Consolas">http://www.georss.org/georss&quot;</font></a><font face="Consolas"> xmlns:twitter=&quot;</font><a href="http://api.twitter.com&quot;"><font face="Consolas">http://api.twitter.com&quot;</font></a><font face="Consolas">&gt;<br />
    <br />&#160;&#160;&#160;&#160;&#160; <strong><font color="#ff0000">&lt;ul class=&quot;twitter-feed&quot;&gt;<br />
        <br /></font></strong>&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;xsl:for-each select=&quot;channel/item&quot;&gt; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;xsl:if test=&quot;position() &amp;lt;= $rss_FeedLimit&quot;&gt; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;xsl:call-template name=&quot;item&quot; /&gt; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/xsl:if&gt; </p>
<p>&#160;&#160;&#160;&#160;&#160; &lt;/xsl:for-each&gt; </p>
<p>&#160;&#160;&#160;&#160;&#160; &lt;/ul&gt; </p>
<p>&#160;&#160;&#160; &lt;/xsl:template&gt;</font></p>
<blockquote>
<p><font face="Consolas">&#160;&#160;&#160;&#160;&#160; &lt;xsl:template name=&quot;item&quot;&gt;<br />
      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;xsl:variable name=&quot;item_title&quot; select=&quot;description&quot;/&gt; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;li&gt; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <strong><font color="#ff0000">&lt;p class=&quot;date&quot;&gt;</font></strong> </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;xsl:value-of select=&quot;substring(pubDate, 1, 16)&quot; /&gt; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/p&gt; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; </font><font face="Consolas"><font color="#ff0000"><strong>&lt;p class=&quot;tweet&quot;&gt;&#160; <br /></strong></font>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;xsl:attribute name=&quot;title&quot;&gt;&lt;xsl:value-of select=&quot;substring-after($item_title, &#8216;:&#8217;)&quot; disable-output-escaping=&quot;yes&quot;/&gt;&lt;/xsl:attribute&gt; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;xsl:value-of select=&quot;substring-after($item_title, &#8216;:&#8217;)&quot; disable-output-escaping=&quot;yes&quot;/&gt; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/p&gt; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/li&gt; </p>
<p>&#160;&#160;&#160;&#160;&#160; &lt;/xsl:template&gt; </p>
<p>&lt;/xsl:stylesheet&gt;</font></p>
</blockquote>
<p>Copy this code into notepad and name it twitter.xsl or yournamehere.xsl. Then upload the file to your Style Library or another library where you keep your custom xsl files.</p>
<p><span class="kwrd">Using the feed count in this code you can change this number to increase or decrease the number of twitter items showing in your web part</span> (<font color="#000000" face="Consolas">&lt;xsl:param name=&quot;rss_FeedLimit&quot;&gt;<font style="background-color: #ffff00">4</font>&lt;/xsl:param&gt;)</font><span class="kwrd">.</span></p>
<p><span class="kwrd">For styling you can change the class for the &lt;ul&gt;, the date and the tweet are wrapped in a &lt;p&gt; tag and have their own classes as well.</span></p>
<p><span class="kwrd">Credit to Michael Mendelson for letting me show off his code.</span></p>
<p><span class="kwrd">Thanks for reading!</span></p>
<p><span class="kwrd">&#160;</span></p>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt 
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.synteractiveingenuity.com%2Fwordpress%2F2012%2F05%2F01%2Fadding-a-twitter-feed-with-a-sharepoint-xml-viewer-web-part%2F&amp;title=Adding%20a%20twitter%20feed%20with%20a%20SharePoint%20xml%20viewer%20web%20part" id="wpa2a_14"><img src="http://www.synteractive.com/Style%20Library/images/sharesave.png" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.synteractiveingenuity.com/wordpress/2012/05/01/adding-a-twitter-feed-with-a-sharepoint-xml-viewer-web-part/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We are all in this together</title>
		<link>http://www.synteractiveingenuity.com/wordpress/2012/04/04/we-are-all-in-this-together/</link>
		<comments>http://www.synteractiveingenuity.com/wordpress/2012/04/04/we-are-all-in-this-together/#comments</comments>
		<pubDate>Wed, 04 Apr 2012 14:52:40 +0000</pubDate>
		<dc:creator>jgerczak</dc:creator>
				<category><![CDATA[Government 2.0]]></category>
		<category><![CDATA[civic engagment]]></category>
		<category><![CDATA[gov 2.0]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[public sector]]></category>

		<guid isPermaLink="false">http://www.synteractiveingenuity.com/wordpress/?p=258</guid>
		<description><![CDATA[The recent breaking news regarding GSA continues to bring to light the need for our citizens to band together and help us return to a country envied by the world. Most of us are aware of the tremendous deficit that (&#8230;)</p><p><a href="http://www.synteractiveingenuity.com/wordpress/2012/04/04/we-are-all-in-this-together/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.synteractiveingenuity.com/wp-content/uploads/2012/04/imagesCAJLB1LZ.jpg"><img class="alignright size-full wp-image-265" title="imagesCAJLB1LZ" src="http://www.synteractiveingenuity.com/wp-content/uploads/2012/04/imagesCAJLB1LZ.jpg" alt="Pile of money" width="207" height="244" /></a>The recent breaking news regarding GSA continues to bring to light the need for our citizens to band together and help us return to a country envied by the world. Most of us are aware of the tremendous deficit that our country continues to operate on and, even if you try not to listen, the coverage of ways to reduce the budget is in every media outlet known to man. Politicians are elected based on convincing us that they can solve the budget problem. I am hopeful that we will ultimately pick a path and find a way to actually achieve success in balancing the budget, in reality we have to.</p>
<p>I certainly understand solving the budget deficit is complex but I also understand it involves controlling and reducing costs. It is clear that GSA in this example did a poor job of that, but GSA is not the only guilty party. I have worked in support of government agencies my entire working career and have witnessed wasteful spending and habits more than once, I’m sure we all have. As our country continues down the road of financial responsibility we can all contribute more to the health of our country beginning today by taking two steps:</p>
<p>1. Controlling costs by making sound decisions on purchases and cost expenditures.<br />
2. Focusing on efficiency improvements in the services we deliver, not the size of the solution.</p>
<p>Both of these steps sound easy, but can we do it? We have to remember that as a contractor or a civil servant each and every expenditure that we recommend ultimately comes out of our pockets. So when you make a recommendation on buying something for your company or agency, ask yourself: If I had to buy this with my paycheck would I still recommend it? If no, then you probably don’t need it. When building a solution of delivering a service we need to change the focus to efficient operations. Historically, people have been proud of the size of the organizations they built, but size costs money, we need now to change the focus on pride of delivering not more for less, but what is needed for the minimum cost.</p>
<p>These two steps alone may not solve our budget deficit alone but it will begin to develop a culture that supports the enormous change that must occur to return our country to the greatness we crave.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.synteractiveingenuity.com%2Fwordpress%2F2012%2F04%2F04%2Fwe-are-all-in-this-together%2F&amp;title=We%20are%20all%20in%20this%20together" id="wpa2a_16"><img src="http://www.synteractive.com/Style%20Library/images/sharesave.png" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.synteractiveingenuity.com/wordpress/2012/04/04/we-are-all-in-this-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>love my cloudshare</title>
		<link>http://www.synteractiveingenuity.com/wordpress/2012/02/09/love-my-cloudshare/</link>
		<comments>http://www.synteractiveingenuity.com/wordpress/2012/02/09/love-my-cloudshare/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 17:56:06 +0000</pubDate>
		<dc:creator>hwaterman</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint 2010]]></category>

		<guid isPermaLink="false">http://www.synteractiveingenuity.com/wordpress/2012/02/09/love-my-cloudshare/</guid>
		<description><![CDATA[Recently I had to get a SharePoint Foundation environment up pretty quickly to test a branding solution that was built for a client. Kris Wagner had always talked up CloudShare, so I decided to give it a try.&#160; Easy was (&#8230;)</p><p><a href="http://www.synteractiveingenuity.com/wordpress/2012/02/09/love-my-cloudshare/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Recently I had to get a SharePoint Foundation environment up pretty quickly to test a branding solution that was built for a client. Kris Wagner had always talked up <a href="http://www.cloudshare.com/" target="_blank">CloudShare</a>, so I decided to give it a try.&#160; Easy was not the word, it was easier than easy and now I am hooked. </p>
<p>Our company purchased a few licenses for CloudShare and I have to say this makes life easier for our IT gurus.&#160; They were frequently asked at the last minute to build XYZ in the cloud for this demo or this project.&#160; Now they can focus on more important tasks and the developers and I can spin up almost any environment needed in minutes.&#160; </p>
<p>If I want to try something new that I have read in a blog post, I am off into my CloudShare environment. I am not worried when and if I break anything, just delete the environment and spin up a new one in minutes. I also don’t have to tell IT that I broke the server they just built because I was playing in SharePoint. Another benefit I don’t have to carry extra HD’s around for my VM’s (yay!) and I can use this from any computer.</p>
<p>Some of the features include, sharing environments, assigning team members and quick snapshots.&#160; Want to check out the HP Media Center for SharePoint? Easy just visit the <a href="http://www.cloudshare.com/Products/CloudShare-ProPlus/solution-showcase.aspx" target="_blank">SharePoint Showcase</a> where you can “easily create an instant SharePoint environments for development, testing and demos using one of CloudShare’s&#160; pre-configured solutions”. </p>
<p>Thanks for reading.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.synteractiveingenuity.com%2Fwordpress%2F2012%2F02%2F09%2Flove-my-cloudshare%2F&amp;title=love%20my%20cloudshare" id="wpa2a_18"><img src="http://www.synteractive.com/Style%20Library/images/sharesave.png" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.synteractiveingenuity.com/wordpress/2012/02/09/love-my-cloudshare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Will an iTV be H.A.L. for your home?</title>
		<link>http://www.synteractiveingenuity.com/wordpress/2012/01/13/will-an-itv-be-h-a-l-for-your-home/</link>
		<comments>http://www.synteractiveingenuity.com/wordpress/2012/01/13/will-an-itv-be-h-a-l-for-your-home/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 13:50:52 +0000</pubDate>
		<dc:creator>eburfield</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.synteractiveingenuity.com/wordpress/?p=242</guid>
		<description><![CDATA[While I cannot claim any insider information on the rumored Apple iTV, nor have I been analyzing supply chains or the purchase of 52&#8243; glass, I have to confess to a certain fascination with the potential for an Apple treatment (&#8230;)</p><p><a href="http://www.synteractiveingenuity.com/wordpress/2012/01/13/will-an-itv-be-h-a-l-for-your-home/">Read the rest of this entry &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>While I cannot claim any insider information on the rumored Apple iTV, nor have I been analyzing supply chains or the purchase of 52&#8243; glass, I have to confess to a certain fascination with the potential for an Apple treatment of television, particularly after reading the Steve Jobs  biography over the holidays and getting an iPhone 4s for Christmas.</p>
<p>As with many disruptions from Apple, I think many people are missing the point of an iTV. They&#8217;re focusing on what it might mean for television rather than what it could mean for your home. The iPhone certainly changed the way I make phone calls, but that was only a small part of what the iPhone really was. In the same way, I have no doubt that the iTV will make the consumption of interactive video content insanely simpler, more intuitive, and more socially connected. I can&#8217;t imagine Apple launching a &#8220;TV&#8221; without those attributes.</p>
<p>But as <a title="Can Siri Control Your Home?" href="http://mashable.com/2012/01/12/can-siri-control-your-home-video/?utm_source=feedburner&amp;utm_medium=email&amp;utm_campaign=Feed%3A+Mashable+%28Mashable%29" target="_blank">a recent post</a> in Mashable by Samantha Murphy points out, the real power of an iTV, if done right, will be as a Trojan horse for home automation. Any technologist who has played with Siri immediately intuits her awesome potential as she acquires more verbs and nouns and the integration with more apps. Now fast forward to an iTV. I cannot imagine an iTV without the ability to ask Siri to play a new sitcom that I might like or to remember to record the Capitals game. But what&#8217;s really cool is asking Siri to turn down the temperature when I leave the house through integration with Nest. Or for Siri to let me know that I&#8217;m running low on milk and whether that reminder should be added to my iPhone. Or for Siri to know that I&#8217;m about to watch a feature movie and ask whether she should dim the lights.</p>
<p>iPhones and iPads are already rich mobile sensor platforms, they&#8217;re already wireless hubs, they already contains open APIs and app ecosystems, they have voice recognition and artificial intelligence. Why wouldn&#8217;t an iTV have all those things? And what could the app ecosystem do with them?</p>
<p>I&#8217;m starting to realize that we&#8217;re 12 to 18 months away&#8211;maybe 18 to 24 if Apple holds back some capabilities for the iTV2&#8211;from having a proto-H.A.L. in our homes.</p>
<p>It&#8217;s also interesting to see how Microsoft responds. They have so many advantages in this space with the XBox platform and Kinect. They SHOULD already be the dominant players in home automation, but they haven&#8217;t yet brought the entire ecosystem together in the way Apple consistently has. Google is also clearly moving in this direction with their Google TV product. But as with phones and tablets, it&#8217;s hard not to imagine Apple cracking the code first.</p>
<p>From my perspective at Synteractive, it&#8217;s also intriguing to think about what this will eventual mean for enterprises and the consumerization of IT. Both the iPhone and iPad rocked our consumer lives first before starting to change our business lives. I imagine the same will hold true. It&#8217;s insanely cool to start imagine the corporate applications that become possible with a cheap, standard platform for sensors + wireless + open APIs + app ecosystems + voice recognition + artificial intelligence.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.synteractiveingenuity.com%2Fwordpress%2F2012%2F01%2F13%2Fwill-an-itv-be-h-a-l-for-your-home%2F&amp;title=Will%20an%20iTV%20be%20H.A.L.%20for%20your%20home%3F" id="wpa2a_20"><img src="http://www.synteractive.com/Style%20Library/images/sharesave.png" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.synteractiveingenuity.com/wordpress/2012/01/13/will-an-itv-be-h-a-l-for-your-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

