Archive for the 'MOSS 2007' Category

08 Aug

Creating custom column with complex logic

Hello Readers, I got following question from Chris Polek who happen to stumble upon my blog. I tried to answer it best of my knowledge but I am sure there can be multiple ways to achieve this. If you find a better solution, do comment! Question: I would like to create a column in a [...]

18 Mar

How to remove all HTML tags from a string using XSLT?

This is something a SharePoint programmer usually faces. I hope following solution give you help to move ahead.   Removing all HTML tags from a string <xsl:template name="removeHtmlTags"> <xsl:param name="html"/> <xsl:choose>     <xsl:when test="contains($html, ‘&lt;’)">         <xsl:value-of select="substring-before($html, ‘&lt;’)"/>         <!– Recurse through HTML –>         <xsl:call-template name="removeHtmlTags">         <xsl:with-param name="html" select="substring-after($html, ‘&gt;’)"/>         </xsl:call-template> [...]

22 May

Finding best SharePoint PDF IFilter (64-bit)

With due respect to original blog post here which is in German. This is a rewrite into English.  Germans please let me know if I have missed something. We often need to configure Office Server Search while working on MOSS 2007 infrastructure projects. Microsoft Filter Pack is efficient as long as it only comes to [...]