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

<channel>
	<title>SharePoint Happenings</title>
	<atom:link href="http://sharepoint07.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sharepoint07.wordpress.com</link>
	<description>SharePoint Tips, Tricks and Hints</description>
	<lastBuildDate>Sat, 05 Nov 2011 21:37:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sharepoint07.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>SharePoint Happenings</title>
		<link>http://sharepoint07.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sharepoint07.wordpress.com/osd.xml" title="SharePoint Happenings" />
	<atom:link rel='hub' href='http://sharepoint07.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Leveraging Themable CSS</title>
		<link>http://sharepoint07.wordpress.com/2011/03/03/leveraging-themable-css/</link>
		<comments>http://sharepoint07.wordpress.com/2011/03/03/leveraging-themable-css/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 01:51:27 +0000</pubDate>
		<dc:creator>Daniel A. Galant</dc:creator>
				<category><![CDATA[Branding]]></category>
		<category><![CDATA[Designer 2010]]></category>

		<guid isPermaLink="false">https://sharepoint07.wordpress.com/2011/03/03/leveraging-themable-css/</guid>
		<description><![CDATA[There have been many changes and improvements with the release of SharePoint Server 2010 and how it implements a number of features and services. One of those features is the manner in which Themes are created, applied and customized in your SharePoint deployment. While playing with the new theming engine, I came across a number [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=142&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There have been many changes and improvements with the release of SharePoint Server 2010 and how it implements a number of features and services. One of those features is the manner in which Themes are created, applied and customized in your SharePoint deployment. While playing with the new theming engine, I came across a number of articles and posts dealing with how to create themes using Office applications, such as PowerPoint and Word. However, there were not many that dealt with the customization of your CSS through the use of the new Theme Comments that SharePoint will leverage in order to apply your theme scheme to your customized Cascading Style Sheets (CSS).</p>
<p>This article deals with that very topic as I’ll endeavor to guide you through how to create and apply theme comments to your custom CSS so you can indeed leverage Themes in SharePoint 2010. To start off, let’s simply take a look at attaching some custom CSS to a Master Page in order to apply our own styles to the SharePoint site.</p>
<p>While there are several methods for attaching a custom style sheet to your Master Page, best practice dictates using the &lt;SharePoint:CssRegistration&gt; link in the &lt;Head&gt; of your Master Page. With SharePoint 2010 now supporting the After property, you can ensure that your custom CSS is applied after SharePoint’s core styles.</p>
<p><a href="http://sharepoint07.files.wordpress.com/2011/03/master-with-attached-css.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Master with attached CSS" border="0" alt="Master with attached CSS" src="http://sharepoint07.files.wordpress.com/2011/03/master-with-attached-css_thumb.png?w=508&#038;h=189" width="508" height="189" /></a></p>
<p>Now we’ll also add a custom header image to the page so that we’ll be able to leverage the RecolorImage token as well later in the article.</p>
<p><a href="http://sharepoint07.files.wordpress.com/2011/03/added-header-image.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Added Header Image" border="0" alt="Added Header Image" src="http://sharepoint07.files.wordpress.com/2011/03/added-header-image_thumb.png?w=505&#038;h=234" width="505" height="234" /></a></p>
<p>Let’s take a look at the CSS itself.</p>
<p><a href="http://sharepoint07.files.wordpress.com/2011/03/original-custom-css1.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Original custom CSS" border="0" alt="Original custom CSS" src="http://sharepoint07.files.wordpress.com/2011/03/original-custom-css_thumb1.png?w=364&#038;h=273" width="364" height="273" /></a></p>
<p>Notice the body #s4-ribbonrow setting the background-color as well as the TopHeader class pointing to our custom image. There are no theme comments added to the CSS yet, so the ribbon row color won’t be affected when you apply a theme to this site and no changes will be made to the header. Setting the new master page as our default master for the site will now render the site as in the image below.</p>
<p><a href="http://sharepoint07.files.wordpress.com/2011/03/site-settings-page-with-new-master-applied.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Site Settings page with new master applied" border="0" alt="Site Settings page with new master applied" src="http://sharepoint07.files.wordpress.com/2011/03/site-settings-page-with-new-master-applied_thumb.png?w=508&#038;h=195" width="508" height="195" /></a></p>
<p>If you then apply a theme to the site what happens? Let’s use the Vantage theme and see what the effect is.</p>
<p><a href="http://sharepoint07.files.wordpress.com/2011/03/vantage-applied-no-comments.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Vantage applied no comments" border="0" alt="Vantage applied no comments" src="http://sharepoint07.files.wordpress.com/2011/03/vantage-applied-no-comments_thumb.png?w=513&#038;h=205" width="513" height="205" /></a></p>
<p>Notice the changes to the TopLink, QuickLaunch and settings page, but the ribbon row and custom header remained the same. In order for these elements to also be affected by applying a theme, you must add the appropriate theme comments to your custom CSS.</p>
<p>In order to leverage theme comments when they are added to your custom CSS, you must first be sure to place your CSS files into the proper location within your site so that SharePoint will actually read them and apply the settings to your pages. For theme comments to be read by SharePoint when you apply a theme, you need to place your custom CSS files in a folder called Themable that you create in the Style Library of your site. This folder does not exist out of the box, nor will it be created magically for you when using custom CSS and theming.</p>
<p>The Style Library before:</p>
<p><a href="http://sharepoint07.files.wordpress.com/2011/03/style-library-before1.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Style Library before" border="0" alt="Style Library before" src="http://sharepoint07.files.wordpress.com/2011/03/style-library-before_thumb1.png?w=345&#038;h=237" width="345" height="237" /></a></p>
<p>The Style Library after creating the Themable folder:</p>
<p><a href="http://sharepoint07.files.wordpress.com/2011/03/style-library-after1.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Style Library after" border="0" alt="Style Library after" src="http://sharepoint07.files.wordpress.com/2011/03/style-library-after_thumb1.png?w=344&#038;h=221" width="344" height="221" /></a></p>
<p>Once you have created the Themable folder, import your custom CSS files into this location and be sure that your registration links are pointing to these files and not somewhere else in your site. Now to make your styles leverage themes when applied, you need to add the theme comments to your CSS.</p>
<p>There are three different tokens that can be leveraged by your CSS, ReplaceFont, ReplaceColor and RecolorImage. I’m not going to go into depth on the effects or properties of these elements here but ReplaceFont will let you change certain font elements to use one of the two available theme fonts, ReplaceColor allows you to substitute any of the 12 theme colors into your styles and RecolorImage will allow you to use any of the 12 theme colors in your images. We’ll see more on this later.</p>
<p>Right now we are going to add a comment so that the ribbon row will be effected when you apply a theme to the site. Since we are trying to leverage the theme’s colors to apply to the ribbon row, we’ll use the ReplaceColor token. The syntax for the comment is as follows:</p>
<p>/* [ReplaceColor(themeColor:”<em>color</em>”, <em>property</em>:”<em>value</em>”)] */</p>
<p>In the above comment, <em>color</em> represents one of the 12 theme color choices that you want to use to replace the color property of your style such as Dark1 or Accent5. For <em>property</em> you can use either themeShade or themeTint to darken or lighten (respectively) your color choice with a <em>value</em> between 0.0 and 1.0. Be aware that if you are not going to use the <em>property:”value”</em> option, do not include the comma in your comment. Doing so will cause SharePoint to skip your comment and you’ll be trying to figure out why your choices are not being applied.</p>
<p>The image below shows the theme comment added to the custom CSS file.</p>
<p><a href="http://sharepoint07.files.wordpress.com/2011/03/replacecolor-comment-added.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="ReplaceColor comment added" border="0" alt="ReplaceColor comment added" src="http://sharepoint07.files.wordpress.com/2011/03/replacecolor-comment-added_thumb.png?w=505&#038;h=108" width="505" height="108" /></a></p>
<p>This line simply tells SharePoint to replace the background-color #abc830 with the themes Dark2 color. You’ll now save your modified CSS and try applying a theme. Once again I used the Vantage theme. The image below shows you the 12 colors defined by this theme.</p>
<p><a href="http://sharepoint07.files.wordpress.com/2011/03/vantage-color-scheme1.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Vantage Color scheme" border="0" alt="Vantage Color scheme" src="http://sharepoint07.files.wordpress.com/2011/03/vantage-color-scheme_thumb1.png?w=320&#038;h=294" width="320" height="294" /></a></p>
<p>The result of applying this theme at this time is the following.</p>
<p><a href="http://sharepoint07.files.wordpress.com/2011/03/vantage-applied-css-not-saved.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Vantage applied CSS not saved" border="0" alt="Vantage applied CSS not saved" src="http://sharepoint07.files.wordpress.com/2011/03/vantage-applied-css-not-saved_thumb.png?w=505&#038;h=165" width="505" height="165" /></a></p>
<p>Alright. So what happened to the ribbon row and the custom header we applied? Here you see the first of several issues you can run into when trying to use theme comments with your custom CSS. The site that I am working with in this example happens to be a publishing site and so the Style Library is under content approval. This means that any changes made to its files need to be published as a major version and approved before they can be properly used. Now while SharePoint seems to read and apply changes made to the CSS styles without having to go through all this, it does not process your theme comments until you have an approved major version of the file. As a matter of fact, as can be seen here, it seems to completely disregard the style altogether.</p>
<p>After publishing the file as a major version and approving it let’s apply the theme again. Theme comments are only processed at the time the theme is actually applied to the site. Therefore, any time you make a change to your file you will need to re-apply your theme to see the effect.</p>
<p><a href="http://sharepoint07.files.wordpress.com/2011/03/theme-applied-and-published.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Theme applied and published" border="0" alt="Theme applied and published" src="http://sharepoint07.files.wordpress.com/2011/03/theme-applied-and-published_thumb.png?w=508&#038;h=204" width="508" height="204" /></a></p>
<p>Here you can see that the ribbon row has now picked up the Dark 2 color of your theme, but the header is still the original green color. To change this you need to use the RecolorImage token in the header’s style declaration. The syntax for the RecolorImage token is as follows:</p>
<p>/* [RecolorImage(themeColor:”<em>color</em>”, method:”<em>value</em>”)] */</p>
<p>Once again <em>color</em> is the theme color you want to use with your image. <em>Value</em> can have one of three values, Tinting, Blending, or Filing. Tinting uses your theme color for the image colors, Blending mixes your theme color with the original color of the image and Filing completely fills the image shape with your selected color. In the image below you’ll note that I am going to recolor the image using the Accent 2 color and tint the image.</p>
<p><a href="http://sharepoint07.files.wordpress.com/2011/03/recolorimage-comment.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="RecolorImage comment" border="0" alt="RecolorImage comment" src="http://sharepoint07.files.wordpress.com/2011/03/recolorimage-comment_thumb.png?w=505&#038;h=88" width="505" height="88" /></a></p>
<p>Again you need to publish and approve the CSS file after making the change and then reapply the Vantage theme. The result is as follows:</p>
<p><a href="http://sharepoint07.files.wordpress.com/2011/03/vantage-applied-tinting.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Vantage applied tinting" border="0" alt="Vantage applied tinting" src="http://sharepoint07.files.wordpress.com/2011/03/vantage-applied-tinting_thumb.png?w=508&#038;h=204" width="508" height="204" /></a></p>
<p>If you choose to use the Blending option it would look like this:</p>
<p><a href="http://sharepoint07.files.wordpress.com/2011/03/vantage-applied-blending.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="Vantage applied Blending" border="0" alt="Vantage applied Blending" src="http://sharepoint07.files.wordpress.com/2011/03/vantage-applied-blending_thumb.png?w=507&#038;h=203" width="507" height="203" /></a></p>
<p>One point I would like to make here, in my experience the value is case sensitive, <em>Blending</em> will work but <em>blending</em> will not.</p>
<p>So you can see that you have several options when it comes to themes and your custom CSS. Take some time and play around with the choices provided by using theme comments and see what effects you can come up with for your sites. </p>
<p>I hope this article helps you avoid some of the issues I ran into and gets you smoothly on the theme scheme highway. Till next time….</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepoint07.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepoint07.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepoint07.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepoint07.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepoint07.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepoint07.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepoint07.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepoint07.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepoint07.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepoint07.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepoint07.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepoint07.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepoint07.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepoint07.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=142&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepoint07.wordpress.com/2011/03/03/leveraging-themable-css/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f26bde381babaf839018597c67cf415?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Daniel</media:title>
		</media:content>

		<media:content url="http://sharepoint07.files.wordpress.com/2011/03/master-with-attached-css_thumb.png" medium="image">
			<media:title type="html">Master with attached CSS</media:title>
		</media:content>

		<media:content url="http://sharepoint07.files.wordpress.com/2011/03/added-header-image_thumb.png" medium="image">
			<media:title type="html">Added Header Image</media:title>
		</media:content>

		<media:content url="http://sharepoint07.files.wordpress.com/2011/03/original-custom-css_thumb1.png" medium="image">
			<media:title type="html">Original custom CSS</media:title>
		</media:content>

		<media:content url="http://sharepoint07.files.wordpress.com/2011/03/site-settings-page-with-new-master-applied_thumb.png" medium="image">
			<media:title type="html">Site Settings page with new master applied</media:title>
		</media:content>

		<media:content url="http://sharepoint07.files.wordpress.com/2011/03/vantage-applied-no-comments_thumb.png" medium="image">
			<media:title type="html">Vantage applied no comments</media:title>
		</media:content>

		<media:content url="http://sharepoint07.files.wordpress.com/2011/03/style-library-before_thumb1.png" medium="image">
			<media:title type="html">Style Library before</media:title>
		</media:content>

		<media:content url="http://sharepoint07.files.wordpress.com/2011/03/style-library-after_thumb1.png" medium="image">
			<media:title type="html">Style Library after</media:title>
		</media:content>

		<media:content url="http://sharepoint07.files.wordpress.com/2011/03/replacecolor-comment-added_thumb.png" medium="image">
			<media:title type="html">ReplaceColor comment added</media:title>
		</media:content>

		<media:content url="http://sharepoint07.files.wordpress.com/2011/03/vantage-color-scheme_thumb1.png" medium="image">
			<media:title type="html">Vantage Color scheme</media:title>
		</media:content>

		<media:content url="http://sharepoint07.files.wordpress.com/2011/03/vantage-applied-css-not-saved_thumb.png" medium="image">
			<media:title type="html">Vantage applied CSS not saved</media:title>
		</media:content>

		<media:content url="http://sharepoint07.files.wordpress.com/2011/03/theme-applied-and-published_thumb.png" medium="image">
			<media:title type="html">Theme applied and published</media:title>
		</media:content>

		<media:content url="http://sharepoint07.files.wordpress.com/2011/03/recolorimage-comment_thumb.png" medium="image">
			<media:title type="html">RecolorImage comment</media:title>
		</media:content>

		<media:content url="http://sharepoint07.files.wordpress.com/2011/03/vantage-applied-tinting_thumb.png" medium="image">
			<media:title type="html">Vantage applied tinting</media:title>
		</media:content>

		<media:content url="http://sharepoint07.files.wordpress.com/2011/03/vantage-applied-blending_thumb.png" medium="image">
			<media:title type="html">Vantage applied Blending</media:title>
		</media:content>
	</item>
		<item>
		<title>Its Alive</title>
		<link>http://sharepoint07.wordpress.com/2011/02/18/its-alive/</link>
		<comments>http://sharepoint07.wordpress.com/2011/02/18/its-alive/#comments</comments>
		<pubDate>Sat, 19 Feb 2011 05:01:48 +0000</pubDate>
		<dc:creator>Daniel A. Galant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://sharepoint07.wordpress.com/2011/02/18/its-alive/</guid>
		<description><![CDATA[Yup, the SharePoint Happenings blog is live once more. I’ll continue to cross post with the Mindsharp blog site as well in an effort to reach more people, but I will indeed be posting material to this site once again.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=112&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yup, the SharePoint Happenings blog is live once more. I’ll continue to cross post with the Mindsharp blog site as well in an effort to reach more people, but I will indeed be posting material to this site once again. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepoint07.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepoint07.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepoint07.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepoint07.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepoint07.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepoint07.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepoint07.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepoint07.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepoint07.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepoint07.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepoint07.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepoint07.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepoint07.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepoint07.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=112&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepoint07.wordpress.com/2011/02/18/its-alive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f26bde381babaf839018597c67cf415?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Daniel</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint Architecture&#8211;A view from space</title>
		<link>http://sharepoint07.wordpress.com/2011/02/16/sharepoint-architecturea-view-from-space/</link>
		<comments>http://sharepoint07.wordpress.com/2011/02/16/sharepoint-architecturea-view-from-space/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 02:24:21 +0000</pubDate>
		<dc:creator>Daniel A. Galant</dc:creator>
				<category><![CDATA[Office SharePoint Server]]></category>

		<guid isPermaLink="false">https://sharepoint07.wordpress.com/2011/02/16/sharepoint-architecturea-view-from-space/</guid>
		<description><![CDATA[There is no denying that SharePoint is finding its way into more and more organizations and people from all aspects of a company find themselves interacting with, working on and designing for the corporate SharePoint deployment. Often they find themselves dealing with terms such as Farm, Web Application, Site Collection and other SharePoint terms that, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=109&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There is no denying that SharePoint is finding its way into more and more organizations and people from all aspects of a company find themselves interacting with, working on and designing for the corporate SharePoint deployment. Often they find themselves dealing with terms such as Farm, Web Application, Site Collection and other SharePoint terms that, for them, hold various other meanings and connotations. Today I thought I would share with you an analogy I’ve been using for sometime now whenever I need to describe the SharePoint architecture. Whether you’re a techie, the marketing guy or even a CEO, relax and come along for the ride.</p>
<p>Imagine, if you will, that you are a space explorer who has been tasked with finding and colonizing a new world to help support and bring new life to your dying home planet and its population. You have been traveling through the cosmos and have at last located a planet you feel will do very nicely for your purposes. You land your craft and establish your base of operations from where you will begin the task of colonizing this new world. As you are the first person to set foot on this new world you get to name it and call it SharePoint. You have now claimed your planet, your Farm, for your home world&#8217;s population to use and have your base of operations established, Central Administration, from where you can control the colonizing effort. Now the task of terra-forming must begin as you need to prepare the world to welcome it’s new inhabitants.</p>
<p>The first thing you need to do on this new world is create the continents upon which you can build the structure of this new world. How many continents you need is up to you and the requirements set forth by the home worlds governing rulers. Each continent will provide you with a land mass that you can then carve up into manageable units. These continents server as the web applications of your SharePoint farm and provide you with the address space, or URL, that your population will use to find their new homes.</p>
<p>Once you have the continents prepared you can now divide them up into individual countries that will actually govern and rule the people of your planet SharePoint. Each country is a sovereign state and will be responsible for the safety and security of its people. Countries do not share resources with other countries as resources are vital to the health and welfare of the people of that country. Furthermore, in its initial state, each country maintains a closed border policy. This means that citizens of one country cannot travel to or visit any other country. Now it is possible for one country to decide to open its borders and grant entry to the people of another country, but that is strictly up to each country on a case by case basis. These countries are the Site Collections in your SharePoint deployment</p>
<p>Countries can be large, small; they can be a single kingdom or they can be further divided into additional political entities such as states or provinces. Each state can have its own set of rules and security, but it still must conform to certain rules put forth by the countries governing rulers. Much like the United States is made up of 50 states, each state with its own rules and policies, each state must still abide by certain federal laws and regulations. Unlike countries, however, there is free trade between the states or provinces of a given country and the citizens of that country are free to travel from state to state. Now while it is possible for a state to enforce its own security and close its borders to some of the population, this can hinder the functioning of the country, as a whole, and interfere with the general feeling of co-operation that you are trying to foster on your new world. The states or provinces are the Sites in our SharePoint deployment.</p>
<p>Your states can be further divided into counties and cities as you see fit or the need drives your colonization effort. At any level though you will have offices and services that are used by your people to do their work or store their belongings. These are the lists and libraries that will populate your sites and subsites throughout your Site Collections within the Web Applications that are all part of your new SharePoint Farm.</p>
<p>So what have we got here? You find a planet, your farm. You establish a base of operations, Central Administration. You create continents, Web Applications. On the continents you establish countries, Site Collections. You can divide the countries into states or provinces, Sites or Subsites. These can be further sub-divided as needed. You create offices, schools, stores, etc., lists and libraries. Bingo, SharePoint.</p>
<p>If someone comes along who doesn’t like how you have setup your world or the rules you have established, well, they can go find another planet and start their own SharePoint farm. After all, it’s your world.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepoint07.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepoint07.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepoint07.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepoint07.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepoint07.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepoint07.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepoint07.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepoint07.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepoint07.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepoint07.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepoint07.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepoint07.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepoint07.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepoint07.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=109&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepoint07.wordpress.com/2011/02/16/sharepoint-architecturea-view-from-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f26bde381babaf839018597c67cf415?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Daniel</media:title>
		</media:content>
	</item>
		<item>
		<title>Blog Site Moving</title>
		<link>http://sharepoint07.wordpress.com/2009/03/02/blog-site-moving/</link>
		<comments>http://sharepoint07.wordpress.com/2009/03/02/blog-site-moving/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 04:05:44 +0000</pubDate>
		<dc:creator>Daniel A. Galant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sharepoint07.wordpress.com/2009/03/02/blog-site-moving/</guid>
		<description><![CDATA[My blog posts are moving to our new home located at Mindsharpblogs where you can find a number of prominent posters providing you with some great tips and tricks on all things SharePoint. If you happen to drop by here, please note the new address and add us to your list of favorites and feeds.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=106&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My blog posts are moving to our new home located at <a href="http://sharepoint.mindsharpblogs.com/default.aspx">Mindsharpblogs</a> where you can find a number of prominent posters providing you with some great tips and tricks on all things SharePoint. If you happen to drop by here, please note the new address and add us to your list of favorites and feeds.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepoint07.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepoint07.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepoint07.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepoint07.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepoint07.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepoint07.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepoint07.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepoint07.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepoint07.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepoint07.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepoint07.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepoint07.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepoint07.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepoint07.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=106&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepoint07.wordpress.com/2009/03/02/blog-site-moving/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f26bde381babaf839018597c67cf415?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Daniel</media:title>
		</media:content>
	</item>
		<item>
		<title>Back to Basics</title>
		<link>http://sharepoint07.wordpress.com/2009/02/24/back-to-basics/</link>
		<comments>http://sharepoint07.wordpress.com/2009/02/24/back-to-basics/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 05:05:13 +0000</pubDate>
		<dc:creator>Daniel A. Galant</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Office SharePoint Server]]></category>

		<guid isPermaLink="false">http://sharepoint07.wordpress.com/2009/02/24/back-to-basics/</guid>
		<description><![CDATA[As more and more folks start turning to SharePoint as their solution of choice for information distribution and collaboration, I have been noticing that many of these installations seem to have been quick, no research installations. A number of these installations suffer from common mistakes that are then made by well intentioned, but over-worked and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=104&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:x-small;">As more and more folks start turning to SharePoint as their solution of choice for information distribution and collaboration, I have been noticing that many of these installations seem to have been quick, no research installations. A number of these installations suffer from common mistakes that are then made by well intentioned, but over-worked and under trained Administrators. In an effort to help stem the tide and perhaps save one or two of you the trouble of having to redeploy SharePoint in an effort to fix an unsuccessful roll-out I&#8217;d like to take a trip back to the basics.</span></p>
<p><span style="font-size:x-small;">First of all, if you are reading this then you are indeed a step ahead of those who did not take the time to do at least a little bit of research on how to properly deploy SharePoint before inserting the CD and hitting OK. With a little planning and forethought you can avoid many of the common mistakes that plague the first time install.</span></p>
<p><span style="font-size:x-small;">Step 1: Do not use your own personal account when installing SharePoint onto your servers. The account that is used to do the actual binary installation of the SharePoint files is going to own those files and have certain privileged access that, for tighter security, really shouldn&#8217;t be your user account. Furthermore, do not use a local user account, the local system account or a network system account for the installation of SharePoint binaries on your servers. SharePoint can scaled out into a distributed server deployment and local accounts simply will not provide you the access rights you&#8217;ll between servers. For this part you are going to want to create a basic user account in your Active Directory domain that you will use for the installation process. This account does not need to be a Domain Administrator, an Enterprise Administrator or even a Server Admin. It simply needs to be a member of the local Administrators group on your SharePoint Server systems. In addition to this you also need to grant the account DB Creator and Security Admin rights on the SQL server that will function as the back end database for your SharePoint deployment. That&#8217;s it.</span></p>
<p><span style="font-size:x-small;">Step 2: When performing the installation you will be presented with a couple of different options. the first of these choices will be to select between a Basic or an Advanced installation. This one is easy, always choose Advanced. Always. A Basic install will use SQL Express on the local system as your database and therefore limit the size of your SharePoint deployment. Also, you will not be able to expand your Basic install in the future by adding additional servers should you want to grow your SharePoint farm. The next option you will be presented with will the type of server installation to perform for your Advanced choice. These options include Complete, Web Front End and a Single Server install. Guess what, this really isn&#8217;t much of a choice either. Always perform a Complete installation. Always. The Single server option is the same as the Basic option from the previous screen and so has the same limitations. Choosing the Web Front End option will limit your flexibility in the future if you should want, or need, to move roles between servers, or worse, need to compensate for a failed system. Save yourself from future headaches and just perform an Advanced&gt;Complete installation every time.</span></p>
<p><span style="font-size:x-small;">Step 3: Once you have installed SharePoint, making sure you used the account you created in step 1, you will then run the SharePoint Products and Technologies Configuration Wizard. This is where you will actually create your Farm and establish your Central Administration Web Application. During this process the wizard will prompt you for the Database Server, Database Name and the credentials of an account that will be used for the Central Administration Application Pool. At this point you should once again supply the credentials of the account that you just used to actually perform the installation, the one you are currently logged onto the machine as running this very wizard. Yup, the installation account and the Central Administration service account really should be using the same account. This will help you down the road if these two accounts are indeed the same account. It has been my experience that when using different accounts for these two functions, odd behaviors can creep up in your SharePoint world.</span></p>
<p><span style="font-size:x-small;">Following these few simple steps can save you a number of headaches down the road while working with SharePoint and help get you off on the right foot. I realize that many over-stressed network folks simply don&#8217;t have the time to get any proper training before having to roll out a product such as SharePoint. Still, before you get to deep into such a project I highly recommend that you at least grab yourself a good book to keep by your side while deploying. One such tome I feel should be by the side of every SharePoint Administrator is the <a href="http://www.amazon.com/Microsoft-Office-SharePoint-Server-Practices/dp/0735625387/ref=sr_1_1?ie=UTF8&amp;qid=1235536502&amp;sr=1-1" target="_blank">SharePoint Best Practices</a> book by Ben Curry and Bill English.</span></p>
<p><span style="font-size:x-small;">Until next time&#8230; </span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepoint07.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepoint07.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepoint07.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepoint07.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepoint07.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepoint07.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepoint07.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepoint07.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepoint07.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepoint07.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepoint07.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepoint07.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepoint07.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepoint07.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=104&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepoint07.wordpress.com/2009/02/24/back-to-basics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f26bde381babaf839018597c67cf415?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Daniel</media:title>
		</media:content>
	</item>
		<item>
		<title>Mindsharp offers first course in OCS 2007</title>
		<link>http://sharepoint07.wordpress.com/2008/12/14/mindsharp-offers-course-in-ocs-2007/</link>
		<comments>http://sharepoint07.wordpress.com/2008/12/14/mindsharp-offers-course-in-ocs-2007/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 21:43:53 +0000</pubDate>
		<dc:creator>Daniel A. Galant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sharepoint07.wordpress.com/2008/12/14/mindsharp-offers-course-in-ocs-2007/</guid>
		<description><![CDATA[That&#8217;s right, Mindsharp, for several years now known as the leader in SharePoint education has begun offering training in Microsoft&#8217;s Office Communications Server. Their first course in this new vertical for them is Core Technologies in Microsoft Office Communications Server 2007. This 5-day class focuses on the design, administration and troubleshooting of an OCS 2007 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=102&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s right, Mindsharp, for several years now known as the leader in SharePoint education has begun offering training in Microsoft&#8217;s Office Communications Server. Their first course in this new vertical for them is <a href="http://www.mindsharp.com/Default.aspx?top=TRAINING&amp;left=CORE_TECHNOLOGIES_IN_MICROSOFT_OFFICE_COMMUNICATIONS_SERVER_2007" target="_blank">Core Technologies in Microsoft Office Communications Server 2007</a>. This 5-day class focuses on the design, administration and troubleshooting of an OCS 2007 server deployment. Now let me be honest here, I am a bit biased when it comes to talking about this new course. After all, I had a part in putting it together. To find out more about just what is included in this class as well as where it is being offered, check out the earlier link. I hope to see some of you in class in the near future.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepoint07.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepoint07.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepoint07.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepoint07.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepoint07.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepoint07.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepoint07.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepoint07.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepoint07.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepoint07.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepoint07.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepoint07.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepoint07.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepoint07.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=102&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepoint07.wordpress.com/2008/12/14/mindsharp-offers-course-in-ocs-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f26bde381babaf839018597c67cf415?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Daniel</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint Best Practices Conference</title>
		<link>http://sharepoint07.wordpress.com/2008/12/14/sharepoint-best-practices-conference-2/</link>
		<comments>http://sharepoint07.wordpress.com/2008/12/14/sharepoint-best-practices-conference-2/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 19:08:19 +0000</pubDate>
		<dc:creator>Daniel A. Galant</dc:creator>
				<category><![CDATA[Office SharePoint Server]]></category>

		<guid isPermaLink="false">http://sharepoint07.wordpress.com/2008/12/14/sharepoint-best-practices-conference-2/</guid>
		<description><![CDATA[Following on the success of the first, and very popular, SharePoint Best Practices Conference, it has been announced that the second SharePoint Best Practices Conference will be held Feb 2-4, 2009. This time, however, the conference will be over on the West Coast, at the Hilton La Jolla Torrey Pines in beautiful San Diego, CA. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=101&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Following on the success of the first, and very popular, SharePoint Best Practices Conference, it has been announced that the second SharePoint Best Practices Conference will be held Feb 2-4, 2009. This time, however, the conference will be over on the West Coast, at the Hilton La Jolla Torrey Pines in beautiful San Diego, CA. At this time some of the speakers will include a keynote by Joel Oleson, sessions lead by such SharePoint notables as Bill English, Ben Curry, Mike Watson, Todd Bleeker and Todd Klindt. For a full and current listing be sure to check out <a href="http://www.sharepointbestpractices.com/home" target="_blank">Best Practices SharePoint Conference</a> and while you&#8217;re there, be sure to register, as space is limited.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepoint07.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepoint07.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepoint07.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepoint07.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepoint07.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepoint07.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepoint07.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepoint07.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepoint07.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepoint07.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepoint07.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepoint07.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepoint07.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepoint07.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=101&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepoint07.wordpress.com/2008/12/14/sharepoint-best-practices-conference-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f26bde381babaf839018597c67cf415?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Daniel</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint Best Practices Conference</title>
		<link>http://sharepoint07.wordpress.com/2008/08/07/sharepoint-best-practices-conference/</link>
		<comments>http://sharepoint07.wordpress.com/2008/08/07/sharepoint-best-practices-conference/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 14:30:06 +0000</pubDate>
		<dc:creator>Daniel A. Galant</dc:creator>
				<category><![CDATA[Office SharePoint Server]]></category>

		<guid isPermaLink="false">http://sharepoint07.wordpress.com/?p=99</guid>
		<description><![CDATA[Sponsored by Microsoft Press and Mindsharp, the first SharePoint Best Practices conference will be held this September in Washington D.C. This is one event I would highly reccomend you look into if you are in any way involved with a SharePoint deployment in your environment. For more information on the conference check out their website [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=99&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sponsored by Microsoft Press and Mindsharp, the first SharePoint Best Practices conference will be held this September in Washington D.C. This is one event I would highly reccomend you look into if you are in any way involved with a SharePoint deployment in your environment. For more information on the conference check out their website at <a href="http://www.sharepointbestpractices.com">www.sharepointbestpractices.com</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sharepoint07.wordpress.com/99/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sharepoint07.wordpress.com/99/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepoint07.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepoint07.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepoint07.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepoint07.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepoint07.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepoint07.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepoint07.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepoint07.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepoint07.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepoint07.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepoint07.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepoint07.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepoint07.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepoint07.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=99&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepoint07.wordpress.com/2008/08/07/sharepoint-best-practices-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f26bde381babaf839018597c67cf415?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Daniel</media:title>
		</media:content>
	</item>
		<item>
		<title>SharePoint Virtual Conference</title>
		<link>http://sharepoint07.wordpress.com/2008/08/07/sharepoint-virtual-conference/</link>
		<comments>http://sharepoint07.wordpress.com/2008/08/07/sharepoint-virtual-conference/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 14:22:49 +0000</pubDate>
		<dc:creator>Daniel A. Galant</dc:creator>
				<category><![CDATA[Office SharePoint Server]]></category>

		<guid isPermaLink="false">http://sharepoint07.wordpress.com/?p=97</guid>
		<description><![CDATA[I&#8217;m not big on self-promotion but I just wanted to take a moment to let people know about the upcoming SharePoint Virtual conference that is being hosted by SSWUG.org in October. To find out more information about this, like who will speaking, what the sessions will be, and other events, check out www.vconferenceonline.com. BTW &#8211; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=97&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not big on self-promotion but I just wanted to take a moment to let people know about the upcoming SharePoint Virtual conference that is being hosted by SSWUG.org in October. To find out more information about this, like who will speaking, what the sessions will be, and other events, check out <a href="http://www.vconferenceonline.com">www.vconferenceonline.com</a>. BTW &#8211; I&#8217;ll be presenting a few sessions myself so drop by and give it a look.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sharepoint07.wordpress.com/97/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sharepoint07.wordpress.com/97/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepoint07.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepoint07.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepoint07.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepoint07.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepoint07.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepoint07.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepoint07.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepoint07.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepoint07.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepoint07.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepoint07.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepoint07.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepoint07.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepoint07.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=97&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepoint07.wordpress.com/2008/08/07/sharepoint-virtual-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f26bde381babaf839018597c67cf415?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Daniel</media:title>
		</media:content>
	</item>
		<item>
		<title>Having Issues?</title>
		<link>http://sharepoint07.wordpress.com/2008/02/28/having-issues/</link>
		<comments>http://sharepoint07.wordpress.com/2008/02/28/having-issues/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 05:25:52 +0000</pubDate>
		<dc:creator>Daniel A. Galant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sharepoint07.wordpress.com/2008/02/28/having-issues/</guid>
		<description><![CDATA[I&#8217;m glad that some of you have found the information here of use to you. If you should happen to drop by looking for answers for an issue you&#8217;re having with SharePoint, a problem you&#8217;re trying to solve or a task your stuck on that would make for a good post, let me know and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=96&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m glad that some of you have found the information here of use to you. If you should happen to drop by looking for answers for an issue you&#8217;re having with SharePoint, a problem you&#8217;re trying to solve or a task your stuck on that would make for a good post, let me know and I&#8217;ll see if I can help out. In the meantime, happy SharePointing.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sharepoint07.wordpress.com/96/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sharepoint07.wordpress.com/96/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sharepoint07.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sharepoint07.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sharepoint07.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sharepoint07.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sharepoint07.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sharepoint07.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sharepoint07.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sharepoint07.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sharepoint07.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sharepoint07.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sharepoint07.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sharepoint07.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sharepoint07.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sharepoint07.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sharepoint07.wordpress.com&amp;blog=2759367&amp;post=96&amp;subd=sharepoint07&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sharepoint07.wordpress.com/2008/02/28/having-issues/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f26bde381babaf839018597c67cf415?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Daniel</media:title>
		</media:content>
	</item>
	</channel>
</rss>
