<?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"
	>

<channel>
	<title>novolocus.com &#187; 2007 &#187; February</title>
	<atom:link href="http://www.novolocus.com/2007/02/feed" rel="self" type="application/rss+xml" />
	<link>http://www.novolocus.com</link>
	<description>Whatever Andy Burns is working on...</description>
	<pubDate>Wed, 15 Oct 2008 12:00:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Master Pages for Admin and global pages</title>
		<link>http://www.novolocus.com/2007/02/22/master-pages-for-admin-and-global-pages/</link>
		<comments>http://www.novolocus.com/2007/02/22/master-pages-for-admin-and-global-pages/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 11:02:25 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Branding]]></category>

		<guid isPermaLink="false">http://www.novolocus.com/?p=82</guid>
		<description><![CDATA[One of the pains about master pages in SharePoint is that when you set one for a site, it doesn&#8217;t apply to the admin pages. This can lead to a, um, interesting difference in appearance.
I started looking into overcoming this. Obviously, there is a fairly straight-forward approach - modify the application.master. Ouch. Then, any changes [...]]]></description>
			<content:encoded><![CDATA[<p>One of the pains about master pages in SharePoint is that when you set one for a site, it doesn&#8217;t apply to the admin pages. This can lead to a, um, interesting difference in appearance.</p>
<p>I started looking into overcoming this. Obviously, there is a fairly straight-forward approach - modify the application.master. Ouch. Then, any changes to design in one file have to be replicated elsewhere, with one file in the Master Page Gallery, and one on the file system.</p>
<p>Alternatively, I found a neat solution at <a href="http://www.sharepointblogs.com/dwise/archive/2007/01/08/SingleMasterPage.aspx">David&#8217;s blog</a>. This uses an HTTP Module to reset the master page for any pages looking for application.master.</p>
<p>But after following his instructions, my admin pages wouldn&#8217;t work. I just got the error page &#8216;Unknown Error&#8217;.</p>
<p>Digging into the logs, I found what was going on - there were 2 content placeholders that the application.master uses which weren&#8217;t on my &#8216;normal&#8217; master page. Make sure you add place holders for:</p>
<p><code>&lt;asp:ContentPlaceHolder id="PlaceHolderPageDescriptionRowAttr" runat="server"/&gt;<br />
&lt;asp:ContentPlaceHolder id="PlaceHolderPageDescriptionRowAttr2" runat="server"/&gt;</code></p>
<p>The full list of placeholders used in both files is:</p>
<ul>
<li>PlaceHolderPageTitle</li>
<li>PlaceHolderAdditionalPageHead</li>
<li>PlaceHolderBodyAreaClass</li>
<li>PlaceHolderBodyLeftBorder</li>
<li>PlaceHolderBodyRightMargin</li>
<li>PlaceHolderCalendarNavigator</li>
<li>PlaceHolderFormDigest</li>
<li>PlaceHolderGlobalNavigation</li>
<li>PlaceHolderGlobalNavigationSiteMap</li>
<li>PlaceHolderLeftActions</li>
<li>PlaceHolderLeftNavBar</li>
<li>PlaceHolderLeftNavBarBorder</li>
<li>PlaceHolderLeftNavBarDataSource</li>
<li>PlaceHolderLeftNavBarTop</li>
<li>PlaceHolderMain</li>
<li>PlaceHolderMiniConsole</li>
<li>PlaceHolderNavSpacer</li>
<li>PlaceHolderPageDescription</li>
<li>PlaceHolderPageImage</li>
<li>PlaceHolderPageTitleInTitleArea</li>
<li>PlaceHolderSearchArea</li>
<li>PlaceHolderSiteName</li>
<li>PlaceHolderTitleAreaClass</li>
<li>PlaceHolderTitleAreaSeparator</li>
<li>PlaceHolderTitleBreadcrumb</li>
<li>PlaceHolderTitleLeftBorder</li>
<li>PlaceHolderTitleRightMargin</li>
<li>PlaceHolderTopNavBar</li>
<li>PlaceHolderUtilityContent</li>
<li>SPNavigation</li>
<li>WSSDesignConsole</li>
<li>PlaceHolderHorizontalNav <em>Normal master page only</em></li>
<li>PlaceHolderPageDescriptionRowAttr <em>Admin master page only</em></li>
<li>PlaceHolderPageDescriptionRowAttr2 <em>Admin master page only</em></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.novolocus.com/2007/02/22/master-pages-for-admin-and-global-pages/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The format of Dates in CAML</title>
		<link>http://www.novolocus.com/2007/02/21/the-format-of-dates-in-caml/</link>
		<comments>http://www.novolocus.com/2007/02/21/the-format-of-dates-in-caml/#comments</comments>
		<pubDate>Wed, 21 Feb 2007 11:02:41 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.novolocus.com/?p=83</guid>
		<description><![CDATA[So, a colleague asked me about what format dates should be put into the where clause of a CAML query as. I&#8217;d had a lot of problems finding this out myself, and ultimately I found that a .ToString(&#8221;u&#8221;) on a DateTime object did the trick. The produces a time of the form 2006-04-17 21:29:09Z
For example, [...]]]></description>
			<content:encoded><![CDATA[<p>So, a colleague asked me about what format dates should be put into the where clause of a CAML query as. I&#8217;d had a lot of problems finding this out myself, and ultimately I found that a <em>.ToString(&#8221;u&#8221;)</em> on a DateTime object did the trick. The produces a time of the form <em>2006-04-17 21:29:09Z</em></p>
<p>For example, using a StringBuilder to create my CAML query (for my SPQuery object), this might look like:</p>
<p><code>caml.Append("&lt;Leq&gt;");<br />
caml.Append("&lt;FieldRef Name='MyDueDate'/&gt;");<br />
caml.Append("&lt;Value Type='DateTime'&gt;");<br />
caml.Append(System.DateTime.Today.ToString("u"));<br />
caml.Append("&lt;/Value&gt;");<br />
caml.Append("&lt;/Leq&gt;");</code></p>
<p>(This query contains the date contained in the MyDueDate column with the current date and time).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.novolocus.com/2007/02/21/the-format-of-dates-in-caml/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Building a Base Web Part Class</title>
		<link>http://www.novolocus.com/2007/02/21/building-a-base-web-part-class/</link>
		<comments>http://www.novolocus.com/2007/02/21/building-a-base-web-part-class/#comments</comments>
		<pubDate>Wed, 21 Feb 2007 10:02:50 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.novolocus.com/?p=84</guid>
		<description><![CDATA[From Bob Mixon&#8217;s blog:
Part I, Part II, Part III
]]></description>
			<content:encoded><![CDATA[<p>From Bob Mixon&#8217;s blog:</p>
<p><a href="http://list.msd2d.com/dm?id=4642CD9B28284002695DFD06B68DD3932E6AE64CBF1B101C">Part I</a>, <a href="http://www.sharesquared.com/blogs/bobmixon/Lists/Posts/Post.aspx?List=eb030c45%2Dc8d8%2D4886%2Da7b4%2Dfdb1c03a1274&amp;ID=54&amp;Source=http%3A%2F%2Fwww%2Esharesquared%2Ecom%2Fblogs%2Fbobmixon%2FLists%2FPosts%2FAllPosts%2Easpx">Part II</a>, <a href="http://www.sharesquared.com/blogs/bobmixon/Lists/Posts/Post.aspx?List=eb030c45%2Dc8d8%2D4886%2Da7b4%2Dfdb1c03a1274&amp;ID=55">Part III</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.novolocus.com/2007/02/21/building-a-base-web-part-class/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MOSS Branding link dump from Angus Logan</title>
		<link>http://www.novolocus.com/2007/02/21/moss-branding-link-dump-from-angus-logan/</link>
		<comments>http://www.novolocus.com/2007/02/21/moss-branding-link-dump-from-angus-logan/#comments</comments>
		<pubDate>Wed, 21 Feb 2007 10:02:14 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Branding]]></category>

		<guid isPermaLink="false">http://www.novolocus.com/?p=85</guid>
		<description><![CDATA[Dump of links to do with MOSS Branding from Angus Logan. Lots of stuff from Shane Perran in there - yup, I&#8217;ve been reading a lot of his posts now that I&#8217;m trying to rebrand a site.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.msdn.com/angus_logan/archive/2007/02/14/dump-of-links-to-do-with-moss-branding.aspx">Dump of links to do with MOSS Branding</a> from Angus Logan. Lots of stuff from Shane Perran in there - yup, I&#8217;ve been reading a lot of his posts now that I&#8217;m trying to rebrand a site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.novolocus.com/2007/02/21/moss-branding-link-dump-from-angus-logan/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Best Practices Analyser</title>
		<link>http://www.novolocus.com/2007/02/21/best-practices-analyser/</link>
		<comments>http://www.novolocus.com/2007/02/21/best-practices-analyser/#comments</comments>
		<pubDate>Wed, 21 Feb 2007 10:02:06 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Admin]]></category>

		<guid isPermaLink="false">http://www.novolocus.com/?p=86</guid>
		<description><![CDATA[From Stefan Gossner&#8217;s blog - a tool to analyse your MOSS system

]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.technet.com/stefan_gossner/archive/2007/02/21/microsoft-best-practices-analyzer-for-wss-3-0-and-moss-2007.aspx">From Stefan Gossner&#8217;s blog - a tool to analyse your MOSS system<br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.novolocus.com/2007/02/21/best-practices-analyser/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SharePoint Licensing</title>
		<link>http://www.novolocus.com/2007/02/21/sharepoint-licensing/</link>
		<comments>http://www.novolocus.com/2007/02/21/sharepoint-licensing/#comments</comments>
		<pubDate>Wed, 21 Feb 2007 10:02:00 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Admin]]></category>

		<category><![CDATA[Architecture]]></category>

		<guid isPermaLink="false">http://www.novolocus.com/?p=87</guid>
		<description><![CDATA[Found on Cornelius Van Dyk&#8217;s blog - SharePoint Licensing Information. Interesting stuff. No, wait, the other thing - tedious. Still, quite how you license your Internet facing WCM site did strike me as an interesting issue, especially as one of my colleagues kept going on about having external sites as &#8216;read only&#8217;. What, no feedback [...]]]></description>
			<content:encoded><![CDATA[<p>Found on <a href="http://www.cjvandyk.com/blog/Lists/Posts/Post.aspx?List=744536f4%2D127e%2D4c4a%2Dbcff%2Db85408e7e7e5&amp;ID=71">Cornelius Van Dyk&#8217;s blog</a> - <a href="http://office.microsoft.com/en-us/sharepointserver/FX101865111033.aspx">SharePoint Licensing Information</a>. Interesting stuff. No, wait, the other thing - tedious. Still, quite how you license your Internet facing WCM site did strike me as an interesting issue, especially as one of my colleagues kept going on about having external sites as &#8216;read only&#8217;. What, no feedback forms? Comments? Survey submissions? Well, it seems that the definition is one of accessibility - so long as everyone can access these features, you can use an Internet access license. I wondered how they&#8217;d deal with that.</p>
<p>(For content accessible to employees/partners only, I presume it&#8217;d be a normal client access license).</p>
<p><strong>Update:</strong> See the <a href="http://technet2.microsoft.com/Office/en-us/library/1cffb278-6497-46fc-abd0-3dd652064c891033.mspx">Logical Architecture Model: Corporate Deployment</a> document for details on this, and dealing with partners. That&#8217;s quite interesting - you can host partners sites on Internet or Intranet farms.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.novolocus.com/2007/02/21/sharepoint-licensing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>No Theme Inheritance in SharePoint</title>
		<link>http://www.novolocus.com/2007/02/14/no-theme-inheritance-in-sharepoint/</link>
		<comments>http://www.novolocus.com/2007/02/14/no-theme-inheritance-in-sharepoint/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 17:02:56 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Branding]]></category>

		<guid isPermaLink="false">http://www.novolocus.com/?p=88</guid>
		<description><![CDATA[Bit of a shocker - no inheritance of themes through a site hierarchy in WSS3. There is of Master Pages, but not of themes.
Given that you can do all of what you do with Master Pages it does make me wonder - what are Themes for?
Updated: Heather Solomon has looked at it, and her suggestion [...]]]></description>
			<content:encoded><![CDATA[<p>Bit of a shocker - no inheritance of themes through a site hierarchy in WSS3. There is of Master Pages, but not of themes.</p>
<p>Given that you can do all of what you do with Master Pages it does make me wonder - what are Themes for?</p>
<p><strong>Updated:</strong> Heather Solomon has looked at it, and <a href="http://www.heathersolomon.com/blog/archive/2006/10/27/sp07cssoptions.aspx">her suggestion is to just put your styles in the Master page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.novolocus.com/2007/02/14/no-theme-inheritance-in-sharepoint/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Custom activities in SharePoint Workflow</title>
		<link>http://www.novolocus.com/2007/02/14/custom-activities-in-sharepoint-workflow/</link>
		<comments>http://www.novolocus.com/2007/02/14/custom-activities-in-sharepoint-workflow/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 17:02:55 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://www.novolocus.com/?p=89</guid>
		<description><![CDATA[Custom SharePoint aware Workflow Activities 
Don&#8217;t forget to add into the System.Workflow.ComponentModel.WorkflowCompiler section of the web.config file.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://mosschampions.com/blogs/moss/archive/2006/11/19/Custom-SharePoint-aware-Workflow-Activities.aspx">Custom SharePoint aware Workflow Activities </a></p>
<p>Don&#8217;t forget to add into the <em>System.Workflow.ComponentModel.WorkflowCompiler</em> section of the web.config file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.novolocus.com/2007/02/14/custom-activities-in-sharepoint-workflow/feed/</wfw:commentRss>
		</item>
		<item>
		<title>There is a known issue with Delay activities</title>
		<link>http://www.novolocus.com/2007/02/14/there-is-a-known-issue-with-delay-activities/</link>
		<comments>http://www.novolocus.com/2007/02/14/there-is-a-known-issue-with-delay-activities/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 16:02:54 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://www.novolocus.com/?p=90</guid>
		<description><![CDATA[Apparently there is a fix. Bit late for me.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1160619&amp;SiteID=1">Apparently there is a fix.</a> Bit late for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.novolocus.com/2007/02/14/there-is-a-known-issue-with-delay-activities/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Three things that still annoy me about Workflow in SharePoint</title>
		<link>http://www.novolocus.com/2007/02/14/three-things-that-still-annoy-me-about-workflow-in-sharepoin/</link>
		<comments>http://www.novolocus.com/2007/02/14/three-things-that-still-annoy-me-about-workflow-in-sharepoin/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 16:02:38 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
		
		<category><![CDATA[Coding]]></category>

		<category><![CDATA[Infopath]]></category>

		<category><![CDATA[SharePoint]]></category>

		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://www.novolocus.com/?p=91</guid>
		<description><![CDATA[There is no support for tracking services. Or rather, if there is, nobody is saying. You&#8217;re stuck with &#8216;History&#8217; lists, which suck. All I want is a table I can query, and that I&#8217;ll expose that via the BDC. But without this, workflow in SharePoint is nothing more than a toy, which isn&#8217;t fair given [...]]]></description>
			<content:encoded><![CDATA[<p><strong>There is no support for tracking services.</strong> Or rather, if there is, nobody is saying. You&#8217;re stuck with &#8216;History&#8217; lists, which suck. All I want is a table I can query, and that I&#8217;ll expose that via the BDC. But without this, workflow in SharePoint is nothing more than a toy, which isn&#8217;t fair given the effort put into it. I know that Microsoft don&#8217;t want to step on K2&#8217;s toes - fair enough. Truth be told, I was wondering what K2 were going to do, figured that they must be running scared - but having seen Black Pearl, I see that they&#8217;ve been running hard, and have a good lead. A SQL tracking service won&#8217;t erode that lead.</p>
<p><strong>Repeating fields in Infopath forms are unusable.</strong> <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1216900&amp;SiteID=1">Nobody knows how to do this.</a> I spent ages working on it, but I didn&#8217;t get anywhere. I couldn&#8217;t write to these properties through the task properties at all. Indeed, <strong>the whole TaskChangedProperties.ExtendedProperties hash is daft.</strong> Forcing everything to flatten, well, sucks. Can&#8217;t I have a stream? Or a node-child tree of some sort? I mean, is it surprising to want to send InfoPath forms to/from a workflow task and a library? You know, use the workflow for routing, and the xml form in a library as the data store? That should be easy - it&#8217;s not.</p>
<p><strong>Debugging workflows is hard</strong>. I mean, apart from Visual Studio crashing as I connect it to the appropriate service, there is a question over actually being able to get meaningful error messages out of workflow, and getting it able to breakpoint in the right places. In fairness, this is a complex thing. I have no idea how I&#8217;d set about allowing debugging in Visual Studio, say, after a Delay activity had expired. But it would be cool to have something a bit better.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.novolocus.com/2007/02/14/three-things-that-still-annoy-me-about-workflow-in-sharepoin/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
