<?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>littleforest &#187; LiveSite</title>
	<atom:link href="http://www.littleforest.co.uk/category/livesite/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.littleforest.co.uk</link>
	<description>The littleforest Weblog</description>
	<lastBuildDate>Fri, 05 Nov 2010 08:01:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>XSL:Sort by Date, Organise by Type</title>
		<link>http://www.littleforest.co.uk/articles/xsl-sort-by-date-organise-by-type/</link>
		<comments>http://www.littleforest.co.uk/articles/xsl-sort-by-date-organise-by-type/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 12:29:07 +0000</pubDate>
		<dc:creator>Michael Thomas</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[LiveSite]]></category>
		<category><![CDATA[XSL]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=186</guid>
		<description><![CDATA[In this example, we have a collection of material which we want to make available to users: whitepapers, articles, tips etc.  We want to group these by material and show the relevant subheading when this changes, but avoid redisplaying the heading if it remains the same, say:
Whitepaper
&#8230;
&#8230;
Article
&#8230;
&#8230;
As per other examples, the key to doing this [...]]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/articles/xsl-sort-by-date-organise-by-type/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XSL:Sort By Date</title>
		<link>http://www.littleforest.co.uk/articles/xsl-basic-sort-by-date/</link>
		<comments>http://www.littleforest.co.uk/articles/xsl-basic-sort-by-date/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 11:06:03 +0000</pubDate>
		<dc:creator>Michael Thomas</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[LiveSite]]></category>
		<category><![CDATA[XSL]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[xsl:sort]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=184</guid>
		<description><![CDATA[The following  should do the work

&#60;xsl:apply-templates select=&#34;[some repeating datum]&#34;&#62;
&#60;xsl:sort order=&#34;descending&#34; select=&#34;substring(//somedate,7,4)&#34;&#62; &#60;!-- year--&#62;
&#60;xsl:sort order=&#34;descending&#34; select=&#34;substring(//somedate,4,2)&#34;&#62; &#60;!-- month--&#62;
&#60;xsl:sort order=&#34;descending&#34; select=&#34;substring(//somedate,1,2)&#34;&#62; &#60;!-- day--&#62;
&#60;/xsl:apply-templates&#62;

This assumes the date is in the form dd/mm/yyyy: the seperators could be different as they are ignored anyway based on the substring.
The important thing to realise here is that the &#60;xsl:sort&#62; functions do not [...]]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/articles/xsl-basic-sort-by-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Referencing Hello World Java Class in LiveSite External Component</title>
		<link>http://www.littleforest.co.uk/livesite/hello_world-ref-in-livesite/</link>
		<comments>http://www.littleforest.co.uk/livesite/hello_world-ref-in-livesite/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 14:43:09 +0000</pubDate>
		<dc:creator>Yusuf Ali</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[LiveSite]]></category>
		<category><![CDATA[Yusuf Ali]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=178</guid>
		<description><![CDATA[Now that we have Hello.Java created as a class.  Please refer to the blog
Creating a “Hello World” LiveSite Java External
I will demonstrate below how the class would be utilised in a LiveSite component.
- Create a component (name the component what ever you would like it to be)
- Select the component as XML/XSL format
- In Content [...]]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/livesite/hello_world-ref-in-livesite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compiling Java Classes in LiveSite 3.0.2</title>
		<link>http://www.littleforest.co.uk/teamsite/complie_java_in_livesite_302/</link>
		<comments>http://www.littleforest.co.uk/teamsite/complie_java_in_livesite_302/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 13:12:57 +0000</pubDate>
		<dc:creator>Yusuf Ali</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[LiveSite]]></category>
		<category><![CDATA[TeamSite]]></category>
		<category><![CDATA[Yusuf Ali]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=176</guid>
		<description><![CDATA[Java classes created in TeamSite &#38; LiveSite reference many other Java files.  These files are located in a different directory of TeamSite, so are referred to as external files to the location where Java classes.
The problem with compiling a Java class comes when the Java file to be compiled looks for these reference files, but [...]]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/teamsite/complie_java_in_livesite_302/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LiveSite JCS Cache Settings</title>
		<link>http://www.littleforest.co.uk/livesite/livesite-jcs-cache-settings/</link>
		<comments>http://www.littleforest.co.uk/livesite/livesite-jcs-cache-settings/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 03:26:47 +0000</pubDate>
		<dc:creator>Gavin Colborne</dc:creator>
				<category><![CDATA[LiveSite]]></category>
		<category><![CDATA[Gavin Colborne]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=169</guid>
		<description><![CDATA[Thanks to Steve Russell from Realise for the below configurations for JCS Cache.
Here&#8217;s the properties you can set in JCS via cache.ccf in &#8220;./profiles/base/installedApps/nd_cellname/LiveSite Run Time.ear/iw-runtime.war/WEB-INF/classes/&#8221;&#8230;
JCS details here (http://jakarta.apache.org/jcs/getting_started/intro.html)






Property


Description





MaxObjects


The maximum number of items allowed in memory. Eviction of   elements in excess of this number is determined by the memory cache. By   [...]]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/livesite/livesite-jcs-cache-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set Extended Attribute for LiveSite Components</title>
		<link>http://www.littleforest.co.uk/livesite/set-ea-livesite-components/</link>
		<comments>http://www.littleforest.co.uk/livesite/set-ea-livesite-components/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 15:10:07 +0000</pubDate>
		<dc:creator>Yusuf Ali</dc:creator>
				<category><![CDATA[LiveSite]]></category>
		<category><![CDATA[Yusuf Ali]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=165</guid>
		<description><![CDATA[When copying over components from one environment to another, you loose the extended attribute which recognises the component as a Interwoven LiveSite component.  Below is how you would set the extended attribute, so that LiveSite recognises the component.
On command line or in a script you would need to execute the following;
iw-home/bin/iwextattr -s TeamSite/LiveSite/Type=component &#8220;hostname/iwadmin/main/livesite/component/WORKAREA/shared/component1&#8221;
or
cd iw-home/bin/
iwextattr [...]]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/livesite/set-ea-livesite-components/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installation Tips</title>
		<link>http://www.littleforest.co.uk/teamsite/installation-tips/</link>
		<comments>http://www.littleforest.co.uk/teamsite/installation-tips/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 16:54:32 +0000</pubDate>
		<dc:creator>Yusuf Ali</dc:creator>
				<category><![CDATA[Installations]]></category>
		<category><![CDATA[LiveSite]]></category>
		<category><![CDATA[OpenDeploy]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[TeamSite]]></category>
		<category><![CDATA[UNIX]]></category>
		<category><![CDATA[Yusuf Ali]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=151</guid>
		<description><![CDATA[From my experience there are a few things to bear in mind when installing Interwoven Software.  These include

Always install your software as administrator or full root (for solaris/Linux).  In respects to root access it must be full root not any sppof such as sudo. At the lease su root would be acceptable.  There have been [...]]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/teamsite/installation-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LiveSite XSL Reference II</title>
		<link>http://www.littleforest.co.uk/livesite/livesite-xsl-reference-ii/</link>
		<comments>http://www.littleforest.co.uk/livesite/livesite-xsl-reference-ii/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 21:30:32 +0000</pubDate>
		<dc:creator>Michael Thomas</dc:creator>
				<category><![CDATA[LiveSite]]></category>
		<category><![CDATA[XSL]]></category>
		<category><![CDATA[Michael Thomas]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=135</guid>
		<description><![CDATA[Nested Quotations with XSL
It is not unusual to come across a situation where nested quotations fail (are exceeded) in an apperance XSL document.
Say I want to tie a Javascript function to an input control, but I want to pass the value of a datum-type as an argument to the funtion.
Therefore I want to describe an [...]]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/livesite/livesite-xsl-reference-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing &#8220;An error occurred while getting the page&#8221;</title>
		<link>http://www.littleforest.co.uk/teamsite/fixing-an-error-occurred-while-getting-the-page/</link>
		<comments>http://www.littleforest.co.uk/teamsite/fixing-an-error-occurred-while-getting-the-page/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 06:19:45 +0000</pubDate>
		<dc:creator>Gavin Colborne</dc:creator>
				<category><![CDATA[Common Errors]]></category>
		<category><![CDATA[LiveSite]]></category>
		<category><![CDATA[TeamSite]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=129</guid>
		<description><![CDATA[If you get the below issue when trying to edit or view a page in LiveSite then check whether the server has run out of disk space:
&#8220;An error occurred while getting the page&#8221;
In the servlet_out.log file you may also see the following:

&#34;Caused by: com.interwoven.livesite.common.business.BusinessException: Failed to get page //snt2k020/default/main/UK/WORKAREA/Content/sites/one/home.page
&#160;
       [...]]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/teamsite/fixing-an-error-occurred-while-getting-the-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing newlines in XSL</title>
		<link>http://www.littleforest.co.uk/livesite/removing-newlines-in-xsl/</link>
		<comments>http://www.littleforest.co.uk/livesite/removing-newlines-in-xsl/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 06:09:19 +0000</pubDate>
		<dc:creator>Gavin Colborne</dc:creator>
				<category><![CDATA[LiveSite]]></category>
		<category><![CDATA[XSL]]></category>

		<guid isPermaLink="false">http://www.littleforest.co.uk/?p=128</guid>
		<description><![CDATA[Thansk to Mark Stradling for this tip, the below little template is useful to remove new lines using XSL:

&#60;xsl:template name=&#34;removelines&#34;&#62; 
  &#60;xsl:param name=&#34;text&#34; /&#62; 
  &#60;xsl:value-of select=&#34;translate($text,'&#38;#x0A','')&#34; /&#62; 
&#60;/xsl:template&#62;

]]></description>
		<wfw:commentRss>http://www.littleforest.co.uk/livesite/removing-newlines-in-xsl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

