<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Randy Drisgill - SharePoint Branding and Design</title>
	
	<link>http://blog.drisgill.com</link>
	<description>SharePoint Branding and Design</description>
	<lastBuildDate>Thu, 02 May 2013 21:26:17 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/TheMossman" /><feedburner:info uri="themossman" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>SharePoint 2013 Basic Search Center Branding Problem</title>
		<link>http://feedproxy.google.com/~r/TheMossman/~3/6Cm9g8344_A/sharepoint-2013-standard-search-center-branding.html</link>
		<comments>http://blog.drisgill.com/2013/04/sharepoint-2013-standard-search-center-branding.html#comments</comments>
		<pubDate>Mon, 29 Apr 2013 16:00:05 +0000</pubDate>
		<dc:creator>Randy Drisgill</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">/?p=687</guid>
		<description><![CDATA[<p>So, I had thought we were in the clear from the old 2010 Search Center branding disaster. For the most part custom branding applies pretty easily to search sites in SharePoint 2013 thanks to the fact that it just uses the default Seattle.master for search branding. However there is a gotcha, specifically related to the ...<a class="post-readmore" href="http://blog.drisgill.com/2013/04/sharepoint-2013-standard-search-center-branding.html">read more</a></p><p>The post <a href="http://blog.drisgill.com/2013/04/sharepoint-2013-standard-search-center-branding.html">SharePoint 2013 Basic Search Center Branding Problem</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>So, I had thought we were in the clear from the old <a href="http://blog.drisgill.com/2010/09/converting-custom-sharepoint-2010.html">2010 Search Center branding disaster</a>. For the most part custom branding applies pretty easily to search sites in SharePoint 2013 thanks to the fact that it just uses the default Seattle.master for search branding. However there is a gotcha, specifically related to the Basic Search Center template. I think the problem is only this one template, but maybe there are other areas affected. I tested the Enterprise Search Center and the default search and neither had issues.</p>
<p>Basically what happens is when you are creating your custom branding, chances are you will be applying a customized master page (one that is edited with a mapped drive or SharePoint Designer), and the Basic Search Center uses a snippet of code block to try to hide the ribbon when the Web Part management panel is up (I have no idea why this was so important but I digress). Okay, &#8220;so what&#8221; you might think&#8230; well code blocks are not permitted to run by default in customized master pages. They will work just fine in a custom master page deployed with a solution (WSP or the Design Manager export / import process) but they will fail miserably in a customized master page like this:</p>
<p><a href="http://blog.drisgill.com/wp-content/uploads/2013/04/4-27-2013-4-05-07-PM.png"><img class="size-full wp-image-690 aligncenter" alt="4-27-2013 4-05-07 PM" src="http://blog.drisgill.com/wp-content/uploads/2013/04/4-27-2013-4-05-07-PM.png" width="967" height="532" /></a></p>
<p>So, how do you fix this problem. Well, easiest solution is to package your custom master page into a solution and apply it to the site. The error should go away immediately. That doesn&#8217;t really help if you are still iterating in development. Another option is to edit the aspx files on the Basic Search Site. From a mapped drive or from SPD you can edit default.aspx and results.aspx removing this blue section:<br />
<pre><pre class="wp-code-highlight prettyprint">&amp;amp;lt;asp:Content ContentPlaceHolderId=&amp;quot;PlaceHolderAdditionalPageHead&amp;quot; runat=&amp;quot;server&amp;quot;&amp;amp;gt;
&amp;lt;span style=&amp;quot;color: #3366ff;&amp;quot;&amp;gt; &amp;amp;lt;SharePoint:StyleBlock runat=&amp;quot;server&amp;quot;&amp;amp;gt;&amp;lt;/span&amp;gt;
&amp;lt;span style=&amp;quot;color: #3366ff;&amp;quot;&amp;gt; &amp;amp;lt;% &amp;lt;/span&amp;gt;
&amp;lt;span style=&amp;quot;color: #3366ff;&amp;quot;&amp;gt; WebPartManager webPartManager = SPWebPartManager.GetCurrentWebPartManager(this.Page);&amp;lt;/span&amp;gt;
&amp;lt;span style=&amp;quot;color: #3366ff;&amp;quot;&amp;gt; if (webPartManager != null &amp;amp;amp;&amp;amp;amp; webPartManager.DisplayMode == SPWebPartManager.BrowseDisplayMode)&amp;lt;/span&amp;gt;
&amp;lt;span style=&amp;quot;color: #3366ff;&amp;quot;&amp;gt; {&amp;lt;/span&amp;gt;
&amp;lt;span style=&amp;quot;color: #3366ff;&amp;quot;&amp;gt; %&amp;amp;gt;#s4-ribbonrow&amp;lt;/span&amp;gt;
&amp;lt;span style=&amp;quot;color: #3366ff;&amp;quot;&amp;gt; {&amp;lt;/span&amp;gt;
&amp;lt;span style=&amp;quot;color: #3366ff;&amp;quot;&amp;gt; display: none;&amp;lt;/span&amp;gt;
&amp;lt;span style=&amp;quot;color: #3366ff;&amp;quot;&amp;gt; }&amp;lt;/span&amp;gt;
&amp;lt;span style=&amp;quot;color: #3366ff;&amp;quot;&amp;gt; &amp;amp;lt;% &amp;lt;/span&amp;gt;
&amp;lt;span style=&amp;quot;color: #3366ff;&amp;quot;&amp;gt; }&amp;lt;/span&amp;gt;
&amp;lt;span style=&amp;quot;color: #3366ff;&amp;quot;&amp;gt; %&amp;amp;gt;&amp;lt;/span&amp;gt;
&amp;lt;span style=&amp;quot;color: #3366ff;&amp;quot;&amp;gt; &amp;amp;lt;/SharePoint:StyleBlock&amp;amp;gt;&amp;lt;/span&amp;gt;
&amp;amp;lt;/asp:Content&amp;amp;gt;</pre></pre><br />
For some of you, editing these search files won&#8217;t be an acceptable solution. I&#8217;m hopeful someone will create a nice sandbox solution to fix the problem like we had in 2010&#8230; <a href="http://nickhadlee.wordpress.com/">Nik Hadlee</a> I&#8217;m looking at you <img src='http://blog.drisgill.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<pre class="wp-code-highlight prettyprint"></pre></p>
<p>The post <a href="http://blog.drisgill.com/2013/04/sharepoint-2013-standard-search-center-branding.html">SharePoint 2013 Basic Search Center Branding Problem</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.drisgill.com/2013/04/sharepoint-2013-standard-search-center-branding.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.drisgill.com/2013/04/sharepoint-2013-standard-search-center-branding.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=sharepoint-2013-standard-search-center-branding</feedburner:origLink></item>
		<item>
		<title>Starter Master Pages Update v1.3</title>
		<link>http://feedproxy.google.com/~r/TheMossman/~3/N6F3_k084FM/starter-master-pages-update-v1-3.html</link>
		<comments>http://blog.drisgill.com/2013/04/starter-master-pages-update-v1-3.html#comments</comments>
		<pubDate>Mon, 22 Apr 2013 16:00:48 +0000</pubDate>
		<dc:creator>Randy Drisgill</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">/?p=680</guid>
		<description><![CDATA[<p>Over the weekend I pushed out a small but important update to my starter master pages. When I originally created the starter master pages I used both the Design Manager feature as well as Seattle and Oslo to decide the best place to put things in the master page. There was a discrepancy between where the Design ...<a class="post-readmore" href="http://blog.drisgill.com/2013/04/starter-master-pages-update-v1-3.html">read more</a></p><p>The post <a href="http://blog.drisgill.com/2013/04/starter-master-pages-update-v1-3.html">Starter Master Pages Update v1.3</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Over the weekend I pushed out a small but important update to my starter master pages. When I originally created the starter master pages I used both the Design Manager feature as well as Seattle and Oslo to decide the best place to put things in the master page. There was a discrepancy between where the Design Manager and the default master pages placed the SPWebPartManager control. Turns out the Design Manager puts this control in the &lt;head&gt; section which is incorrect, it should be in the &lt;body&gt;. Having the control load before the &lt;body&gt; caused a host of mysterious problems so I have moved it to the body and I urge everyone to follow suit.</p>
<p><a href="https://startermasterpages.codeplex.com/">Starter Master Pages for SharePoint 2013 v1.3</a></p>
<p>The post <a href="http://blog.drisgill.com/2013/04/starter-master-pages-update-v1-3.html">Starter Master Pages Update v1.3</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.drisgill.com/2013/04/starter-master-pages-update-v1-3.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://blog.drisgill.com/2013/04/starter-master-pages-update-v1-3.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=starter-master-pages-update-v1-3</feedburner:origLink></item>
		<item>
		<title>Moved from Blogger to WordPress</title>
		<link>http://feedproxy.google.com/~r/TheMossman/~3/A1MejPEMI6E/moved-from-blogger-to-wordpress.html</link>
		<comments>http://blog.drisgill.com/2013/04/moved-from-blogger-to-wordpress.html#comments</comments>
		<pubDate>Sun, 14 Apr 2013 19:07:12 +0000</pubDate>
		<dc:creator>Randy Drisgill</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">/?p=668</guid>
		<description><![CDATA[<p>After trying WordPress for our user group website I decided that it is a far superior blogging platform than Google&#8217;s Blogger. I&#8217;ve been meaning to move off of Blogger for a while now but was afraid of the potential hit to my Google results due to a change in URL formatting. Since coming over to Rackspace, I ...<a class="post-readmore" href="http://blog.drisgill.com/2013/04/moved-from-blogger-to-wordpress.html">read more</a></p><p>The post <a href="http://blog.drisgill.com/2013/04/moved-from-blogger-to-wordpress.html">Moved from Blogger to WordPress</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>After trying WordPress for our user group website I decided that it is a far superior blogging platform than Google&#8217;s Blogger. I&#8217;ve been meaning to move off of Blogger for a while now but was afraid of the potential hit to my Google results due to a change in URL formatting. Since coming over to Rackspace, I realized that I have access to create WordPress sites with through our cloud hosting so I decided to give it a try.</p>
<p>I was pleased to find that there are tools for importing all my old posts and comments from Blogger to WordPress as well as settings to reformat the WordPress URL&#8217;s to match Bloggers URL format. I was then hopeful that I could make the move fairly seamlessly so I flipped the lever on Saturday evening (weekends are pretty slow for SharePoint web traffic). The first thing I noticed was that clicking on my Google results from my phone was taking me to the correct URL but with ?m=1 appended to the end. This was making the results fail on mobile devices so I had to make some changes to the .htaccess file. Luckily it wasn&#8217;t too difficult to find a rewriting scheme to remove the m variables.</p>
<p>So long story short, I&#8217;m hoping the move is seamless for my web traffic. If you see any problems please use my new contact form to let me know!</p>
<p>The post <a href="http://blog.drisgill.com/2013/04/moved-from-blogger-to-wordpress.html">Moved from Blogger to WordPress</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.drisgill.com/2013/04/moved-from-blogger-to-wordpress.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.drisgill.com/2013/04/moved-from-blogger-to-wordpress.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=moved-from-blogger-to-wordpress</feedburner:origLink></item>
		<item>
		<title>Sticky Footers in SharePoint</title>
		<link>http://feedproxy.google.com/~r/TheMossman/~3/GGA_2ODw07I/sticky-footers-in-sharepoint.html</link>
		<comments>http://blog.drisgill.com/2013/01/sticky-footers-in-sharepoint.html#comments</comments>
		<pubDate>Tue, 22 Jan 2013 16:00:00 +0000</pubDate>
		<dc:creator>Randy Drisgill</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">/?p=532</guid>
		<description><![CDATA[<p>I get this question a lot these days: “How can I add a sticky footer to the bottom of SharePoint”. So much so that I decided I need to have a blog post that points to my solution to the problem. First, what it a sticky footer? I consider this to be a footer at ...<a class="post-readmore" href="http://blog.drisgill.com/2013/01/sticky-footers-in-sharepoint.html">read more</a></p><p>The post <a href="http://blog.drisgill.com/2013/01/sticky-footers-in-sharepoint.html">Sticky Footers in SharePoint</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I get this question a lot these days: “How can I add a sticky footer to the bottom of SharePoint”. So much so that I decided I need to have a blog post that points to my solution to the problem. </p>
<p>First, what it a sticky footer? I consider this to be a footer at the bottom of a page that stays “stuck” to the bottom of the browser window ONLY if the page content does not fill up the full page. If you want a footer that sticks to the bottom without considering the page content, you can easily float one above the content always stuck to the bottom with just absolute CSS positioning.</p>
<p>How do I solve it. There are many ways this problem could be solved ranging from intelligent HTML and CSS creation to jQuery based solutions. I am leaning towards a jQuery based solution because often with SharePoint you don’t have a ton of control over most of the HTML markup. In my solution, all you need is a
<div> with an id of customFooter, like this:
<div id=”customFooter”></div>
<p> at the bottom of your master page (you probably want to add some height and some other styling to this div as well). Then you need a reference to jQuery and then the JavaScript that I include below that will measure the page content height and add it to the ribbon height and determine if those two together are smaller than the browser window. If they are smaller, the jQuery will add some top-margin to the footer, just enough to push it to the bottom of the window. I won’t go into how you should add jQuery to SharePoint but here is a link that can help you determine the best method: <a href="http://drisgill.com/go/jquery-sharepoint">http://drisgill.com/go/jquery-sharepoint</a>.</p>
<p>I have two scripts, one for SharePoint 2010 and one for SharePoint 2013. The differences are:</p>
<ul>
<li><strong>SP2010</strong> – I use jQuery.noConflict(); and jQuery instead of $ throughout because some things in SP2010 conflict with the use of the dollar sign.</li>
<li><strong>SP2013</strong> – I use the typical jQuery $ reference and the way the ribbon height is measured is a bit more complicated since there are a couple different ways you can load the ribbon depending on if you use Seattle.master or the Design Manager</li>
</ul>
<p>Download the jQuery code from here: <a title="http://drisgill.com/go/sp-sticky-footer" href="http://drisgill.com/go/sp-sticky-footer">http://drisgill.com/go/sp-sticky-footer</a>. Please consider this code to by experimental, I haven’t thoroughly tested it at this point. Use my contact link at the top or hit me up on Twitter if you run into issues with it.</p>
<p>Here is a screenshot of how I pull in the stickyfooter scripts. I place it at the bottom of my page under the customFooter.</p>
<p><a href="http://lh5.ggpht.com/-QKGO8CZqXVM/UP21-T-GS2I/AAAAAAAAA7s/7v4iSOGNiqQ/s1600-h/image%25255B4%25255D.png"><img title="image" border="0" alt="image" src="http://lh3.ggpht.com/-PFXsRFjRBeo/UP21-9NeOlI/AAAAAAAAA70/OeDhOkkmWAw/image_thumb%25255B2%25255D.png?imgmax=800" width="644" height="256"></a></p>
<p>And here is a screenshot of my (rather boring) footer sticking to the bottom of the browser:</p>
<p><a href="http://lh5.ggpht.com/-b5m6upoMh4E/UP21_Z7G5MI/AAAAAAAAA78/6gMgl_JjkuE/s1600-h/image%25255B8%25255D.png"><img title="image" border="0" alt="image" src="http://lh6.ggpht.com/-bpFE7J6dejQ/UP22AAvwUgI/AAAAAAAAA8E/WQThWdrO8Wg/image_thumb%25255B4%25255D.png?imgmax=800" width="644" height="417"></a></p>
<p>The post <a href="http://blog.drisgill.com/2013/01/sticky-footers-in-sharepoint.html">Sticky Footers in SharePoint</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.drisgill.com/2013/01/sticky-footers-in-sharepoint.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.drisgill.com/2013/01/sticky-footers-in-sharepoint.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=sticky-footers-in-sharepoint</feedburner:origLink></item>
		<item>
		<title>Design Manager Bug – SharePoint 2013 RTM</title>
		<link>http://feedproxy.google.com/~r/TheMossman/~3/nB7uN_H_imQ/design-manager-bug-sharepoint-2013-rtm.html</link>
		<comments>http://blog.drisgill.com/2012/12/design-manager-bug-sharepoint-2013-rtm.html#comments</comments>
		<pubDate>Mon, 17 Dec 2012 15:30:00 +0000</pubDate>
		<dc:creator>Randy Drisgill</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">/?p=533</guid>
		<description><![CDATA[<p>Ran into an interesting little bug this past week with SharePoint 2013 Design Manager master pages. After having a friend recreate the issue on her VM, I contacted the Microsoft product team and confirmed this is an issue they hope to solve with a future update. Essentially, if you create a master page with the ...<a class="post-readmore" href="http://blog.drisgill.com/2012/12/design-manager-bug-sharepoint-2013-rtm.html">read more</a></p><p>The post <a href="http://blog.drisgill.com/2012/12/design-manager-bug-sharepoint-2013-rtm.html">Design Manager Bug &#8211; SharePoint 2013 RTM</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Ran into an interesting little bug this past week with SharePoint 2013 Design Manager master pages. After having a friend recreate the issue on her VM, I contacted the Microsoft product team and confirmed this is an issue they hope to solve with a future update. Essentially, if you create a master page with the Design Manager, whether a minimal master or one that has been converted from HTML and CSS, the <strong>Site Contents &gt; Add an app</strong> page will not allow you to add apps or lists to your site. This issue also impact the out of the box Oslo master page. Here is what you should see when you go to the Add an App page:</p>
<p><a href="http://lh4.ggpht.com/-zVCeMmrngGE/UM46pUuIxtI/AAAAAAAAA6s/akrxj646tiw/s1600-h/image%25255B5%25255D.png"><img title="image" alt="image" src="http://lh3.ggpht.com/-iEMooGCCUzc/UM46qD_c08I/AAAAAAAAA60/AIHIv_loOg4/image_thumb%25255B3%25255D.png?imgmax=800" width="640" height="451" /></a></p>
<p>With this bug you end up never seeing the <strong>Apps you can add</strong> section. Sometimes you will see the “Working on it…” message and other times you will just see the <strong>Noteworthy</strong> apps.</p>
<p>The key to fixing this problem is to make sure your master page includes: DeltaPlaceHolderLeftNavBar, PlaceHolderLeftNavBar, DeltaPlaceHolderPageTitleInTitleArea, and PlaceHolderPageTitleInTitleArea and that each of them is not set to <strong>Visible=False</strong>. To do this in an HTML master page with Design Manager you would add the following snippets:</p>
<p><pre><code>
&lt;!--SPM:&lt;SharePoint:AjaxDelta id=&quot;DeltaPlaceHolderLeftNavBar&quot; BlockElement=&quot;true&quot; runat=&quot;server&quot;&gt;--&gt;
&lt;!--SPM:&lt;asp:ContentPlaceHolder id=&quot;PlaceHolderLeftNavBar&quot; runat=&quot;server&quot;&gt;--&gt;
&lt;!--SPM:&lt;/asp:ContentPlaceHolder&gt;--&gt;
&lt;!--SPM:&lt;/SharePoint:AjaxDelta&gt;--&gt;
&lt;!--SPM:&lt;SharePoint:AjaxDelta id=&quot;DeltaPlaceHolderPageTitleInTitleArea&quot; runat=&quot;server&quot;&gt;--&gt;
&lt;!--SPM:&lt;asp:ContentPlaceHolder id=&quot;PlaceHolderPageTitleInTitleArea&quot; runat=&quot;server&quot;&gt;--&gt;
&lt;!--SPM:&lt;/asp:ContentPlaceHolder&gt;--&gt;
&lt;!--SPM:&lt;/SharePoint:AjaxDelta&gt;--&gt;
</code></pre></p>
<p>With these lines in place, the <strong>Apps you can add</strong> should show up again. Note, if you aren’t making a Design Manager HTML master page you will still want to ensure these controls (without the DM comments) are included somewhere in your master page and not marked as <strong>Visible=False</strong>.</p>
<p>The post <a href="http://blog.drisgill.com/2012/12/design-manager-bug-sharepoint-2013-rtm.html">Design Manager Bug &#8211; SharePoint 2013 RTM</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.drisgill.com/2012/12/design-manager-bug-sharepoint-2013-rtm.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		<feedburner:origLink>http://blog.drisgill.com/2012/12/design-manager-bug-sharepoint-2013-rtm.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=design-manager-bug-sharepoint-2013-rtm</feedburner:origLink></item>
		<item>
		<title>SharePoint 2013 Starter Master Pages – Beta Release</title>
		<link>http://feedproxy.google.com/~r/TheMossman/~3/zRfV-uFgCR0/sharepoint-2013-starter-master-pages.html</link>
		<comments>http://blog.drisgill.com/2012/10/sharepoint-2013-starter-master-pages.html#comments</comments>
		<pubDate>Wed, 31 Oct 2012 21:19:00 +0000</pubDate>
		<dc:creator>Randy Drisgill</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">/?p=534</guid>
		<description><![CDATA[<p>So, I’ve been quiet lately, but it hasn’t been for lack of work on SharePoint 2013… I have a Halloween treat for everyone! A new release of my Starter Master Pages for SharePoint 2013. These will work with the RTM release of SharePoint Foundation and Server 2013, but please consider them beta at this point ...<a class="post-readmore" href="http://blog.drisgill.com/2012/10/sharepoint-2013-starter-master-pages.html">read more</a></p><p>The post <a href="http://blog.drisgill.com/2012/10/sharepoint-2013-starter-master-pages.html">SharePoint 2013 Starter Master Pages – Beta Release</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>So, I’ve been quiet lately, but it hasn’t been for lack of work on SharePoint 2013… I have a Halloween treat for everyone! A new release of my Starter Master Pages for SharePoint 2013. These will work with the RTM release of SharePoint Foundation and Server 2013, but please consider them beta at this point at least until I get some initial feedback from the community. </p>
<p><a href="http://startermasterpages.codeplex.com/">http://startermasterpages.codeplex.com/</a></p>
<p>Here is a quick FAQ about this release:<br />
<blockquote><strong>Why do we need starter master pages now that SharePoint Server 2013 includes the design manager with the ability to create minimal master pages and convert HTML designs into functioning master pages?</strong> </p></blockquote>
<blockquote><p>Great question, here are a few things that come to mind: </p></blockquote>
<blockquote><ul>
<li>The Design Manager is a feature that is only available with the for pay SharePoint Server license through the publishing feature (also available in SharePoint Online in various capacities). If you have a Foundation server or do not have access to the Publishing feature, you will not have access to the Design Manager</li>
<li>The Design Manager master pages do not include any commenting and are not spaced for readability. In some cases the markup is overly complicated for what it does. I have attempted to address all of these concerns with the Starter Master Pages</li>
<li>Master pages created with the Design Manager (via new minimal master page or a converted HTML file) are not 100% compatible with collaborative Team sites. This is because of something called the Minimal Download Strategy or MDS which is turned on by default in any team site. This feature speeds up loading of pages by passing page requests through start.aspx and only loading the visual differences between pages. If you apply a Design Manager master page to a Team site with this feature turned on you will see what I call a double page load for each page you visit.</li>
<li>If you have an existing branded SharePoint 2010 site and would like to migrate your branding to 2013 you will most likely want to just make the bare minimum of changes. These Starter Master Pages would be good for that scenario</li>
<li> If you are skilled with SharePoint branding already from previous versions you may find using a Starter Master Page more familiar than using the Design Manager.</li>
</ul>
<p><strong>What sort of scenarios are supported with these Starter Master Pages?</strong>   </p></blockquote>
<blockquote><p>I have tried to include a Starter Master page for most scenarios. Here are the master pages that are included and their intended usage:</p></blockquote>
<blockquote><ul>
<li><strong>Starter PubCollab</strong> &#8211; A good starting place for SharePoint Server intranet portal or team sites that may or may not have publishing. Publishing sites and Team sites with MDS both work with this master page.</li>
<li><strong>Starter Publishing</strong> &#8211; An example publishing portal. Not intended for use with MDS / team sites. Simplified markup by removing anything that needs MDS and using a smaller ribbon control.</li>
<li><strong>Starter MySiteHost</strong> &#8211; Starter Master Page for the My Sites host (you will obviously need to work with the MySite host site collection to use this).</li>
<li><strong>Starter Foundation</strong> &#8211; Starter Master Page for Foundation sites or standard team sites. Does not include any SharePoint Server specific code.</li>
<li><strong>Starter DesignManager.html</strong> &#8211; HTML based starter master page for use with the Design Manager in SharePoint Server 2013 (not compatible with MDS / Team sites). I have tried to improve readability and spacing for this HTML based master page. I want to point out one gotcha with this. When you publish this HTML file, SharePoint will reformat and re-tab the source of the HTML file in the process of updating the associated master page. If you want to ensure the nice formatting stays always resave the HTML file after publishing it (be careful because your editor will likely pickup the changes and ask you if you want to keep them).</li>
</ul>
<p><strong>How do I use these Starter Master Pages?</strong> </p></blockquote>
<blockquote><p>In SharePoint 2013 you can map a network drive to your Master Page Gallery and from here you can add the whole StarterBranding folder that is included with the zip file. This includes a couple place holder images and the beginnings of a stylesheet… which can all live in the Master Page Gallery just fine in 2013. </p></blockquote>
<blockquote><p>Once you add them, if you have SharePoint Server it should convert the Starter DesignManager.html to Starter DesignManager.master and relate the two together automatically. For that one you would edit the HTML file and then publish it before applying to your site. For the other .master files, you can edit them directly and then publish the master page and apply it to your site using the typical methods. </p></blockquote>
<p>Well that’s about it. Please give them a try and let me know any comments or questions you may have. I’m quite certain they will need to updated in the near future once the community tries them out and sends notes.</p>
<p>The post <a href="http://blog.drisgill.com/2012/10/sharepoint-2013-starter-master-pages.html">SharePoint 2013 Starter Master Pages – Beta Release</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.drisgill.com/2012/10/sharepoint-2013-starter-master-pages.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://blog.drisgill.com/2012/10/sharepoint-2013-starter-master-pages.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=sharepoint-2013-starter-master-pages</feedburner:origLink></item>
		<item>
		<title>Top 6 New Features for Designers in SharePoint 2013</title>
		<link>http://feedproxy.google.com/~r/TheMossman/~3/RWG0hQsZPYg/top-6-new-features-for-designers-in.html</link>
		<comments>http://blog.drisgill.com/2012/07/top-6-new-features-for-designers-in.html#comments</comments>
		<pubDate>Tue, 17 Jul 2012 19:44:00 +0000</pubDate>
		<dc:creator>Randy Drisgill</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">/?p=535</guid>
		<description><![CDATA[<p>As you probably know the SharePoint 2013 Public Preview was released this week and I’m sure all the designers out there want to know what’s new for branding? Well, you will be interested to know that making SharePoint design easier was a key goal for this version of SharePoint. Does that mean that all my ...<a class="post-readmore" href="http://blog.drisgill.com/2012/07/top-6-new-features-for-designers-in.html">read more</a></p><p>The post <a href="http://blog.drisgill.com/2012/07/top-6-new-features-for-designers-in.html">Top 6 New Features for Designers in SharePoint 2013</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>As you probably know the SharePoint 2013 Public Preview was released this week and I’m sure all the designers out there want to know what’s new for branding? Well, you will be interested to know that making SharePoint design easier was a key goal for this version of SharePoint. Does that mean that all my professional branding peers are out of work now? Let’s check out what’s new and then revisit that question. Be sure to scan down the page, I save the most interesting for last (sort of like a David Letterman Top 10 list!).</p>
<p><b>6 – Managed Navigation</b> – SharePoint navigation now has two different options: the old way, now known as Structured Navigation and the new way which is known as Managed Navigation. <br /><a href="http://lh6.ggpht.com/-nKhOqhdhnEQ/UATsdfSgncI/AAAAAAAAA5I/WmOxHT-KGOY/s1600-h/clip_image002%25255B7%25255D.jpg"><img alt="clip_image002" border="0" height="144" src="http://lh3.ggpht.com/-lbd0VtyyeR8/UATsd-O_g9I/AAAAAAAAA5Q/C37IwLSfACQ/clip_image002_thumb%25255B4%25255D.jpg?imgmax=800" title="clip_image002" width="630"></a><br />This new method of navigation uses a Managed Metadata term set to populate the navigation control with items. The new method is more flexible and allows for some interesting new uses as you will see including allowing you to make friendly URL’s. Another interesting side benefit of Managed Navigation is you get a nifty Edit button next to the both the Global and Current navigation that lets you add, remove, and edit navigation from anywhere without visiting the Navigation option in the Site Settings. <br /><a href="http://lh4.ggpht.com/-kXqHtpTN69k/UATseEKz--I/AAAAAAAAA5Y/mziffzt2jwQ/s1600-h/clip_image004%25255B5%25255D.jpg"><img alt="clip_image004" border="0" height="44" src="http://lh4.ggpht.com/-axh9spi-z5I/UATseo-BwNI/AAAAAAAAA5g/a9vaIRcTfZ8/clip_image004_thumb%25255B2%25255D.jpg?imgmax=800" title="clip_image004" width="329"></a><br /><a href="http://lh4.ggpht.com/-ePqXcIk71eY/UATsewcMTPI/AAAAAAAAA5o/k2PkMXMPCsU/s1600-h/clip_image006%25255B5%25255D.jpg"><img alt="clip_image006" border="0" height="69" src="http://lh6.ggpht.com/-N3CG7oZ-xi4/UATsgAYF4rI/AAAAAAAAA5w/OlJJxADxmyk/clip_image006_thumb%25255B2%25255D.jpg?imgmax=800" title="clip_image006" width="384"></a></p>
<p>Side Note: Styling this edit mode is going to be a bit of a pain on sites with highly stylized navigation… but that’s a good topic for a future post!<br /><b></b><br /><b>5 – Composed Looks</b> – I’m thinking of Composed Looks as evolution of SharePoint 2010 themes… I imagine the product team was trying to make something a little closer to how Word Press themes work(though without changing the underlying SharePoint technologies that make up the look and feel). <br /><a href="http://lh5.ggpht.com/-Bp7hfv6Y7g4/UATsgbbfTRI/AAAAAAAAA54/VH0LfEB5j4Q/s1600-h/clip_image008%25255B5%25255D.jpg"><img alt="clip_image008" border="0" height="414" src="http://lh6.ggpht.com/-qvBi4Og4bHk/UATsgn1XnPI/AAAAAAAAA6A/Zz86b1gMq30/clip_image008_thumb%25255B2%25255D.jpg?imgmax=800" title="clip_image008" width="630"></a></p>
<p>The first big difference is you don’t make the themes with the Office client anymore. Instead you configure elements and add them to a Composed Looks Gallery (Site Settings > Composed looks). The composed look consists of several things:
<ul>
<li><b>Name</b> – Fairly obviously the name of the Composed Look</li>
<li><b>Master Page </b>– To arrange the elements of the page and do other master page-y stuff</li>
<li><b>Theme URL</b> – Points to an XML file that defines all of the colors you want to apply to different CSS. This works similarly to 2010 except you make your own theme id’s instead of using Accent1, Accent2, etc. </li>
<li><b>Image URL</b> – Points to an image that can be used to replace a background image in the CSS (I know… sweet… a background image!)</li>
<li><b>Font Scheme URL</b> – Points to an XML file which defines the fonts that can be applied to CSS</li>
<li><b>Display Order</b> – Helps you arrange the available composed looks</li>
</ul>
<p>The idea here is that you put all this together with a preview file and you can provide configurable “composed looks” for your clients and users to select from and configure to their liking. You can apply Composed looks from Site Settings > Change the look. <br /><b></b><br /><b>4 – Device Channels – </b>Don’t be fooled by the name, this has nothing to do with channels as you may know them… we are talking mobile / device specific page rendering here! </p>
<p>You setup Device Channels from Site Settings > Device channels, which allows you to give the channel an Alias (for referencing in the UI and in code) and then “Device Inclusion Rules”. These rules are substrings that SharePoint will look for in the browser’s User Agent. You can have certain master pages apply to certain device channels (for example: have a specific master page just for iPhones or Surface Tablets). This is a pretty cool feature, you can even use the Alias in your master page and page layouts to have different individual pieces of the page render differently based on the channel. It’s kind of like Media Queries in CSS3 only Device Channels don’t look at device capabilities (like width and height) they look for keywords in the browser’s User Agent.<br /><b></b><br /><b>3 – Web Content Management enhancements</b> – There are probably several enhancements that are new to SharePoint 2013 WCM but the two that stand out to me are: Content Search Web Part and Catalogs.
<ul>
<li><b>Content Search Web Part</b> – A new Web Part that supersedes the old Content Query Web Part. As the name implies the new Web Part uses the search functionality in 2013 to query and filter information from around SharePoint. Unlike the CQWP, the Content Search Web Part is styled with HTML and JavaScript instead of XSLT.</li>
<li><b>Catalogs</b> – In SharePoint 2013 WCM you can create a catalog of products and use this catalog to create a robust product web site without creating pages for every item. Imagine having product categories, sub categories, and product detail pages all centrally managed!</li>
</ul>
<p>I could probably fill an entire blog post on the new WCM features, but I&#8217;ll let someone else take that charge <img src='http://blog.drisgill.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><b>2 – No more SharePoint Designer for creating SharePoint branding!</b> – Sure SharePoint Designer was updated for 2013 but you don’t have to use it to edit your branding anymore (I’m thinking the name SharePoint “Designer” is no longer appropriate!). In fact you can use any tool you want, including Visual Studio, Notepad++, Dreamweaver… ANYTHING. This feature works because the Master Page Gallery was updated to work seamlessly over a WebDAV mapping. So now, in Windows you can map a network drive directly to your Master Page Gallery and then edit away. Truth be told you could do this to some degree in previous versions of SharePoint, but back then Microsoft locked SharePoint from allowing you to work with master pages and page layouts. </p>
<p>In 2013 the Master Page Gallery is the place where you can put ALL your branding assets including CSS and images. This is a pretty interesting change that takes a little getting used to… but it really is a lot nicer than being forced to use SharePoint Designer or a plugin to Visual Studio to work with your branding files directly on the Site Collection.</p>
<p>Note: I’ve noticed that sometimes WebDAV can be slow. There is a strange but easy fix to this, see the following post: <a href="http://oddballupdate.com/2009/12/18/fix-slow-webdav-performance-in-windows-7/">http://oddballupdate.com/2009/12/18/fix-slow-webdav-performance-in-windows-7/</a> After making this change my mapped drive to SharePoint is super-fast!<br /><b></b><br /><b>1 – Design Manager</b> – I saved the most interesting for last! This new feature is so important that Microsoft even added it as a top level selection under Site Actions in Publishing sites! It includes links to a lot of common design tasks including some of the previous topics I’ve discussed but it also includes the following new features:</p>
<p><a href="http://lh3.ggpht.com/-WxnJHDfDLps/UATshJi-TWI/AAAAAAAAA6I/RIUSuTuyso4/s1600-h/clip_image010%25255B5%25255D.jpg"><img alt="clip_image010" border="0" height="392" src="http://lh4.ggpht.com/-mNRWSriyrGk/UATshkoxsfI/AAAAAAAAA6Q/YsZwsfyqKMs/clip_image010_thumb%25255B2%25255D.jpg?imgmax=800" title="clip_image010" width="630"></a>
<ul>
<li><b>Create and Edit Master Pages</b> &#8211; This is probably the biggest change for SharePoint branding folks. From here you can create a minimal master page or convert an existing HTML design. Did that get your attention? Yes, you can actually add an HTML design with CSS and images to the Master Page Gallery and then use this feature to convert it to a functioning master page. You also get a preview of the new master page and a snippet gallery that allows you to copy and paste SharePoint functionality (like navigation, search, web parts, etc.) right into your HTML based design. </li>
</ul>
<p><a href="http://lh5.ggpht.com/-k2fEAa-8IaY/UATsiA-46GI/AAAAAAAAA6Y/ihwn_TVZ6YA/s1600-h/clip_image012%25255B5%25255D.jpg"><img alt="clip_image012" border="0" height="485" src="http://lh5.ggpht.com/-uyRrsqA6hnM/UATsiqaGWlI/AAAAAAAAA6g/hde60Scs8O0/clip_image012_thumb%25255B2%25255D.jpg?imgmax=800" title="clip_image012" width="630"></a></p>
<p>You no longer have to edit .master files; you can continue editing your HTML file in whatever editor you like and every time you hit save SharePoint will notice the changes and update the corresponding .master file. </p>
<p>Does this mean that SharePoint branding is so easy now that anyone can do it? Yes and no, if you need to make a branded SharePoint site you probably can do it all from the Design Manager with converting an HTML design and using snippets. However to make a fully branded portal or web site you will still need to understand a lot of SharePoint CSS and you still need to understand how Content Placeholders and a variety of other SharePoint specific technology works.</p>
<p>I&#8217;ll be very curious to see how the SharePoint branding community reacts to this feature and see where we land with what newcomers can do with SharePoint branding on their own. I tend to think the Design Manager is a great starting point that changes things so that there is no middle level effort branding&#8230; either there is branding that anyone can do with the Design Manager or there is advanced branding that you need to understand the underpinnings in order to make things work the way you want.
<ul>
<li><b>Create and Edit Page Layouts</b> &#8211; When you create a page layout from the Design Manager you get an HTML file that contains a minimal page layout and all the fields that come from the content type that you base the page layout on. When you make changes to this HTML file the corresponding .ASPX page layout is updated behind the scenes</li>
<li><b>Create a Design Package</b> &#8211; Export your entire design from one place to another (even a completely different server). You can then import the design package to another site collection or server from Site Actions > Import Design Package.</li>
</ul>
<p>Well, that’s the end of the Top 6 list. I invite you to discuss these features as you start to play with them. Do you think the Design Manager is an end-to-end branding solution or are is it more like a really great kick start to the SharePoint branding process? Let me know in the comments! </p>
<p>You can bet I’ll be back with more SharePoint 2013 content in the near future but I wanted to get this list up now that the public beta was released.</p>
<p>For more information about some of these features, check out Microsoft&#8217;s article: <br /><strong>What&#8217;s new in web content management for SharePoint 2013 Preview publishing sites</strong> <a href="http://technet.microsoft.com/en-us/library/jj219688(v=office.15)#BKMK_contentsearch">http://technet.microsoft.com/en-us/library/jj219688(v=office.15)#BKMK_contentsearch</a></p>
<p>The post <a href="http://blog.drisgill.com/2012/07/top-6-new-features-for-designers-in.html">Top 6 New Features for Designers in SharePoint 2013</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.drisgill.com/2012/07/top-6-new-features-for-designers-in.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://blog.drisgill.com/2012/07/top-6-new-features-for-designers-in.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=top-6-new-features-for-designers-in</feedburner:origLink></item>
		<item>
		<title>SharePoint Saturday Orlando Registrations are Open</title>
		<link>http://feedproxy.google.com/~r/TheMossman/~3/F-4OzObdlkU/sharepoint-saturday-orlando.html</link>
		<comments>http://blog.drisgill.com/2012/05/sharepoint-saturday-orlando.html#comments</comments>
		<pubDate>Mon, 07 May 2012 19:00:00 +0000</pubDate>
		<dc:creator>Randy Drisgill</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">/?p=536</guid>
		<description><![CDATA[<p>  We have opened up registration for the first ever SharePoint Saturday in Orlando, Saturday, June 9th, 2012. The event is free but seats are going quickly… we have given out about half of them already! If you are interested in attending please fill out our Eventbrite form so that we can make sure there ...<a class="post-readmore" href="http://blog.drisgill.com/2012/05/sharepoint-saturday-orlando.html">read more</a></p><p>The post <a href="http://blog.drisgill.com/2012/05/sharepoint-saturday-orlando.html">SharePoint Saturday Orlando Registrations are Open</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.sharepointsaturday.org/orlando/default.aspx"><img alt="" src="http://www.sharepointsaturday.org/orlando/SiteImages/2012_SPS_Logo_300.jpg" width="344" height="80"></a></p>
<p> </p>
<p>We have opened up registration for the first ever SharePoint Saturday in Orlando, Saturday, June 9th, 2012. The event is free but seats are going quickly… we have given out about half of them already! If you are interested in attending please fill out our Eventbrite form so that we can make sure there is a spot for you!</p>
<p> </p>
<p>Here is the registration link:</p>
<p><a href="http://www.eventbrite.com/event/2652697289?ref=ebtnebregn"><img alt="Eventbrite - SharePoint Saturday Orlando" src="http://www.eventbrite.com/custombutton?eid=2652697289"></a></p>
<p> </p>
<p>And here is the event website:</p>
<p><a title="http://www.sharepointsaturday.org/orlando/default.aspx" href="http://www.sharepointsaturday.org/orlando/default.aspx">http://www.sharepointsaturday.org/orlando/default.aspx</a></p>
<p> </p>
<p><strong>Location</strong>:</p>
<blockquote><p>ITT Technical Institute</p>
<p>Suite 100</p>
<p>8301 Southpark Cir</p>
<p>Orlando, FL 32819</p>
<p><a href="http://maps.google.com/maps/place?q=ITT+Technical+Institute,+Suite+100,+8301+Southpark+Cir,+Orlando,+FL+32819&#038;hl=en&#038;cid=7419592980447016775">Google Map</a></p>
</blockquote>
<p>The post <a href="http://blog.drisgill.com/2012/05/sharepoint-saturday-orlando.html">SharePoint Saturday Orlando Registrations are Open</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.drisgill.com/2012/05/sharepoint-saturday-orlando.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.drisgill.com/2012/05/sharepoint-saturday-orlando.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=sharepoint-saturday-orlando</feedburner:origLink></item>
		<item>
		<title>SPTechWeb Article: Customizing SharePoint 2010 My Sites Navigation</title>
		<link>http://feedproxy.google.com/~r/TheMossman/~3/oyzLgG8-GjU/sptechweb-article-customizing.html</link>
		<comments>http://blog.drisgill.com/2012/04/sptechweb-article-customizing.html#comments</comments>
		<pubDate>Mon, 30 Apr 2012 21:49:00 +0000</pubDate>
		<dc:creator>Randy Drisgill</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">/?p=537</guid>
		<description><![CDATA[<p>Just wanted to put up a quick post pointing folks to my latest article about My Sites Navigation that is up at SPTechWeb. I cover the basics of changing the navigation as well as how you can manipulate the HTML and controls that live in the My Sites top bar. Customizing SharePoint 2010 My Sites ...<a class="post-readmore" href="http://blog.drisgill.com/2012/04/sptechweb-article-customizing.html">read more</a></p><p>The post <a href="http://blog.drisgill.com/2012/04/sptechweb-article-customizing.html">SPTechWeb Article: Customizing SharePoint 2010 My Sites Navigation</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Just wanted to put up a quick post pointing folks to my latest article about My Sites Navigation that is up at SPTechWeb. I cover the basics of changing the navigation as well as how you can manipulate the HTML and controls that live in the My Sites top bar.</p>
<p><a href="http://www.sptechweb.com/link/36539" target="_blank">Customizing SharePoint 2010 My Sites Navigation</a></p>
<p>The post <a href="http://blog.drisgill.com/2012/04/sptechweb-article-customizing.html">SPTechWeb Article: Customizing SharePoint 2010 My Sites Navigation</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.drisgill.com/2012/04/sptechweb-article-customizing.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.drisgill.com/2012/04/sptechweb-article-customizing.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=sptechweb-article-customizing</feedburner:origLink></item>
		<item>
		<title>SharePoint Saturday Orlando 2012 – June 9th</title>
		<link>http://feedproxy.google.com/~r/TheMossman/~3/1j1q3FhQe_8/sharepoint-saturday-orlando-2012-june.html</link>
		<comments>http://blog.drisgill.com/2012/03/sharepoint-saturday-orlando-2012-june.html#comments</comments>
		<pubDate>Wed, 28 Mar 2012 19:09:00 +0000</pubDate>
		<dc:creator>Randy Drisgill</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">/?p=538</guid>
		<description><![CDATA[<p>I am proud to announce that Michael Hinckley, David Griffiths, John Ross, Dave McNamee and myself will be hosting the first ever Orlando Florida edition of the world famous SPSaturday event on Saturday, June 9th, 2012. If you live near the Central Florida area or are in town early for the big Microsoft TechEd Conference ...<a class="post-readmore" href="http://blog.drisgill.com/2012/03/sharepoint-saturday-orlando-2012-june.html">read more</a></p><p>The post <a href="http://blog.drisgill.com/2012/03/sharepoint-saturday-orlando-2012-june.html">SharePoint Saturday Orlando 2012 – June 9th</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.sharepointsaturday.org/orlando/default.aspx" target="_blank"><img alt="" src="http://www.sharepointsaturday.org/orlando/SiteImages/2012_SPS_Logo_300.jpg" width="344" height="80"></a></p>
<p>I am proud to announce that Michael Hinckley, David Griffiths, John Ross, Dave McNamee and myself will be hosting the first ever Orlando Florida edition of the world famous <a href="http://www.sharepointsaturday.org/orlando" target="_blank">SPSaturday</a> event on Saturday, June 9th, 2012. If you live near the Central Florida area or are in town early for the big Microsoft <a href="http://northamerica.msteched.com/#fbid=voV85-2JOiK" target="_blank">TechEd Conference</a> (June 11th to the 14th) come on by and check it out. We are hoping to provide a lot of valuable FREE SharePoint content to compliment the SharePoint sessions that Microsoft will be providing at TechEd. </p>
<p><strong>Here is some info from our website to describe the event</strong>:</p>
<blockquote><p>Join SharePoint architects, developers, and other professionals that work with Microsoft SharePoint Server 2010 for ‘SharePoint Saturday’ event. SharePoint Saturday is an educational, informative &#038; lively day filled with sessions from respected SharePoint professionals &#038; MVPs, covering a wide variety of SharePoint-orientated topics. SharePoint Saturday is FREE, open to the public and is your local chance to immerse yourself in SharePoint! </p>
</blockquote>
<p><strong>Location</strong>:</p>
<blockquote><p>ITT Technical Institute</p>
<p>Suite 100</p>
<p>8301 Southpark Cir</p>
<p>Orlando, FL 32819</p>
<p><a href="http://maps.google.com/maps/place?q=ITT+Technical+Institute,+Suite+100,+8301+Southpark+Cir,+Orlando,+FL+32819&#038;hl=en&#038;cid=7419592980447016775" target="_blank">Google Map</a></p>
</blockquote>
<p>If you are interested in sponsoring or speaking at the event please don’t hesitate to sign up at the Saturday Orlando website. Slots are filling up fast!</p>
<p>Find out more info on the event at <a title="http://www.sharepointsaturday.org/orlando" href="http://www.sharepointsaturday.org/orlando">http://www.sharepointsaturday.org/orlando</a></p>
<p>The post <a href="http://blog.drisgill.com/2012/03/sharepoint-saturday-orlando-2012-june.html">SharePoint Saturday Orlando 2012 – June 9th</a> appeared first on <a href="http://blog.drisgill.com">Randy Drisgill</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.drisgill.com/2012/03/sharepoint-saturday-orlando-2012-june.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.drisgill.com/2012/03/sharepoint-saturday-orlando-2012-june.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=sharepoint-saturday-orlando-2012-june</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 1.598 seconds. --><!-- Cached page generated by WP-Super-Cache on 2013-05-22 10:47:57 -->
