<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>blog.richardramdat.com &#187; SharePoint</title>
	<atom:link href="http://blog.richardramdat.com/tag/sharepoint/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.richardramdat.com</link>
	<description></description>
	<lastBuildDate>Tue, 17 Jan 2012 01:49:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SharePoint Calendar View Width</title>
		<link>http://blog.richardramdat.com/2009/08/sharepoint-calendar-view-width/</link>
		<comments>http://blog.richardramdat.com/2009/08/sharepoint-calendar-view-width/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 21:15:45 +0000</pubDate>
		<dc:creator>richard</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.richardramdat.com/?p=128</guid>
		<description><![CDATA[SharePoint calendar widths breaking your custom design? Yea, they&#8217;re pretty wide. Here&#8217;s how you can tame them.
For the default Month and Day view, you can apply the following style:
.ms-calheader img { width: auto; }
This will reset the width for a spacer image that the fine folks at Microsoft have decided to give this enormous amount [...]]]></description>
			<content:encoded><![CDATA[<p>SharePoint calendar widths breaking your custom design? Yea, they&#8217;re pretty wide. Here&#8217;s how you can tame them.</p>
<p>For the default Month and Day view, you can apply the following style:</p>
<p>.ms-calheader img { width: auto; }</p>
<p>This will reset the width for a spacer image that the fine folks at Microsoft have decided to give this enormous amount of width to.</p>
<p>For the Week view, you need an additional style rule (hold your breath for this one):</p>
<p>.ms-cal-wtopday div img, .ms-cal-wtopdayL div img, .ms-cal-wtopdayLover div img, .ms-cal-wtopdayover div img, .ms-cal-wtopdayRTL div img, .ms-cal-wtopdayRTLL div img, .ms-cal-wtopdayRTLover div img, .ms-cal-wtopdayRTLLover div img, .ms-cal-wtopdayfocusover div img, .ms-cal-wtopdayfocusLover div img, .ms-cal-wtopdayfocusRTLover div img, .ms-cal-wtopdayfocusRTLLover div img, .ms-cal-wtopday-todayRTLover div img, .ms-cal-wtopday-todayRTLLover div img, .ms-cal-wtopday-todayRTL div img, .ms-cal-wtopday-todayRTLL div img, .ms-cal-wtopdayfocusRTL div img, .ms-cal-wtopdayfocusRTLL div img, .ms-cal-wtopdayfocusL div img, .ms-cal-wtopdayfocus div img<br />
{<br />
width: 80px;<br />
}</p>
<p>Holy smokes! Good thing were not optimizing stylesheets for web performance right? This is a cumulative width that is specified for each day column. The value for the width you specify here will by multiplied by 7 to make up the overall width for the view.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.richardramdat.com/2009/08/sharepoint-calendar-view-width/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharepoint Dispose</title>
		<link>http://blog.richardramdat.com/2009/07/sharepoint-dispose/</link>
		<comments>http://blog.richardramdat.com/2009/07/sharepoint-dispose/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 02:09:24 +0000</pubDate>
		<dc:creator>richard</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.richardramdat.com/?p=118</guid>
		<description><![CDATA[Apparently I was informed that when instantiating an SPWeb or SPSite object, I should call Dispose on those objects to make sure they&#8217;re released.
Until one day I stumble upon this lovely error:  &#8220;Trying to use an SPWeb object that has been closed or disposed and is no longer valid&#8221;
So I google it and find out [...]]]></description>
			<content:encoded><![CDATA[<p>Apparently I was informed that when instantiating an SPWeb or SPSite object, I should call Dispose on those objects to make sure they&#8217;re released.</p>
<p>Until one day I stumble upon this lovely error:  &#8220;Trying to use an SPWeb object that has been closed or disposed and is no longer valid&#8221;</p>
<p>So I google it and find out that I&#8217;m trying to dispose the current context of an SPWeb that needs to be used by other controls on the page.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.richardramdat.com/2009/07/sharepoint-dispose/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SharePoint Development</title>
		<link>http://blog.richardramdat.com/2009/03/sharepoint-development/</link>
		<comments>http://blog.richardramdat.com/2009/03/sharepoint-development/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 20:37:16 +0000</pubDate>
		<dc:creator>richard</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Work-related]]></category>

		<guid isPermaLink="false">http://blog.richardramdat.com/?p=51</guid>
		<description><![CDATA[Today at work it was suggested that our SharePoint team (about 3 developers) use a single server on our network as our primary SharePoint development environment. That means all three developers will log on to the same server with different accounts, use Visual Studio and deploy to the same instance of SharePoint, all on the same box.
Those familar with SharePoint [...]]]></description>
			<content:encoded><![CDATA[<p>Today at work it was suggested that our SharePoint team (about 3 developers) use a single server on our network as our primary SharePoint development environment. That means all three developers will log on to the same server with different accounts, use Visual Studio and deploy to the same instance of SharePoint, all on the same box.</p>
<p>Those familar with SharePoint development will know that this is a recipe for diaster. Typically, development for SharePoint is done within an isolated Virtual PC and for good reason.</p>
<p>Unfortunately our Systems team got wind of our plans to host local virtuals running Windows Server with SharePoint and the idea was quickly killed as a violation of &#8220;policy&#8221; (apparently all servers should be managed by our system admin team, even those used exclusively for development).</p>
<p>So, if you find yourself in a similar situation and need ammunition as to why each developer should have an isolated environment, feel free to use the following:</p>
<p><strong>Why Individual Development Environments?</strong></p>
<p>Initial SharePoint development cannot be done on a shared server (with concurrent users) for the following reasons:</p>
<ul>
<li>Global Assembly Cache (GAC) &#8211; SharePoint development often requires custom applications and libraries to be deployed to the GAC. If two or more developers are working on a class library that outputs a DLL with the same name, then deploying that DLL to the GAC will only include changes made by a single a developer. Multiple developers will not be able to keep track of current deployments by other developers or be able to test their individual changes.</li>
<li>Build &amp; Compilation – Code compilation is an extremely processor intensive task that often requires 100-percent CPU utilization for the length of the compile.  A developer is constantly recompiling code to test and debug, if multiple developers are sharing the same machine, then this would undoubtedly result in constant CPU usage and unusable system performance. Additionally the Visual Studio development environment is an extremely resource intensive application. It is not uncommon for a single instance of Visual Studio to use at least 500MB or to regularly drive high levels of CPU utilization.</li>
<li>Unreliable Server Availability &#8211; Deploying code often requires IIS services and application pools to be recycled or restarted. In a shared development environment with multiple developers it will be unfeasible for a single developer to effectively test changes or debug problems if other developers could be causing application errors by restarting system services.</li>
</ul>
<p><strong>Microsoft’s Recommendations:</strong></p>
<ul>
<li>“Most SharePoint developers use a local SharePoint installation. This allows them to build, test, and debug their work without affecting the work of anyone else on the team. The local environment can be installed on either the developer&#8217;s host workstation or on a virtual computer that runs on either Microsoft Virtual PC 2007 or Microsoft Virtual Server 2005 R2.”<br />
(<a href="http://msdn.microsoft.com/en-us/library/dd239299.aspx">http://msdn.microsoft.com/en-us/library/dd239299.aspx</a>)</li>
<li>“When each developer has her own instance of SQL Server 2005 and Office SharePoint Server 2007 or Windows SharePoint Services 3.0, this configuration helps prevent conflicts during development, mitigates performance issues during debugging, and ensures that the solution works in multiple environments.”<br />
(<a href="http://msdn.microsoft.com/en-us/library/bb330848.aspx">http://msdn.microsoft.com/en-us/library/bb330848.aspx</a>)</li>
<li>“First and foremost, you need to develop locally for the &#8220;best&#8221; debugging and testing experience. Development is done in a virtual machine using the Win2003 OS and WSS/MOSS installed.  Each developer should have their own virtualized environment…”<br />
(<a href="http://blogs.msdn.com/scaravajal/archive/2008/04/27/creating-a-sharepoint-development-environment.aspx">http://blogs.msdn.com/scaravajal/archive/2008/04/27/creating-a-sharepoint-development-environment.aspx</a>)</li>
<li>“Working locally…you can configure the development environment so that all of the SharePoint development work can be done locally…We recommend this configuration for a number of reasons…”<br />
(<a href="http://msdn.microsoft.com/en-us/library/bb530302.aspx">http://msdn.microsoft.com/en-us/library/bb530302.aspx</a>)</li>
</ul>
<p>Feel free to add any other suggestions&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.richardramdat.com/2009/03/sharepoint-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

