<?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>Pixsdesign</title>
	<atom:link href="http://www.pixsdesign.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pixsdesign.co.uk</link>
	<description>What I am still learning about the web</description>
	<lastBuildDate>Tue, 19 Jan 2010 16:24:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Railo Installer Using NSIS</title>
		<link>http://www.pixsdesign.co.uk/2010/01/railo-installer-using-nsis/</link>
		<comments>http://www.pixsdesign.co.uk/2010/01/railo-installer-using-nsis/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 16:24:36 +0000</pubDate>
		<dc:creator>Mark Niland</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.pixsdesign.co.uk/?p=389</guid>
		<description><![CDATA[It is my intention to design a simple first step installer for Railo on a tomcat platform. I will do this using the NSIS installer, please comment with any features you would like for this installer.
]]></description>
			<content:encoded><![CDATA[<p>It is my intention to design a simple first step installer for Railo on a tomcat platform. I will do this using the NSIS installer, please comment with any features you would like for this installer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixsdesign.co.uk/2010/01/railo-installer-using-nsis/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Build Railo from Source</title>
		<link>http://www.pixsdesign.co.uk/2009/12/build-railo-from-source/</link>
		<comments>http://www.pixsdesign.co.uk/2009/12/build-railo-from-source/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 09:52:07 +0000</pubDate>
		<dc:creator>Mark Niland</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Railo]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Apache Ant]]></category>
		<category><![CDATA[Apache Tomcat]]></category>
		<category><![CDATA[Railo installation]]></category>
		<category><![CDATA[Railo web administrator]]></category>
		<category><![CDATA[Sean Corfield]]></category>
		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://www.pixsdesign.co.uk/?p=362</guid>
		<description><![CDATA[Acknowledgements
Before I start this article, I would like to  state this is a continuation of a blog written by Sean Corfield which can be found here An Architects View &#8211; Railo build blog. And I would strongly advise anyone attempting to build Railo, to read both articles to get a better understanding of the whole ]]></description>
			<content:encoded><![CDATA[<p><strong>Acknowledgements</strong></p>
<p>Before I start this article, I would like to  state this is a continuation of a blog written by Sean Corfield which can be found here <a href="http://corfield.org/blog/index.cfm/do/blog.entry/entry/Building_Railo_from_Source">An Architects View &#8211; Railo build blog</a>. And I would strongly advise anyone attempting to build Railo, to read both articles to get a better understanding of the whole process.</p>
<p><strong>Requirements</strong></p>
<p>In order to build Railo from the Source in an easy and simple way, you&#8217;re going to need a few things first.</p>
<ul>
<li>An SVN Client I use <a href="http://tortoisesvn.net/downloads">Tortoise SVN</a>.</li>
<li>Eclipse, preferably the JEE version.</li>
<li>Eclipse, with installed JRE set to JDK 5, not 6.</li>
<li>The latest <a href="http://www.getrailo.org/index.cfm/download/">Railo.War</a>.</li>
<li>The latest <a href="http://tomcat.apache.org">Apache Tomcat</a>.</li>
</ul>
<p><strong>Working Railo Explanation</strong></p>
<p>If you followed my advice you would have visited Sean&#8217;s site and seen the requirement for a running Railo installation. This sometimes puzzles people but can be easily explained. The later sections of the build process are processed in ColdFusion, this means you need an environment capable of parsing CFML, and what better one to use than the one you have decided to build.</p>
<p><strong>Install Tomcat (optional)</strong></p>
<p>This part is only for people who wish to do as I did, and use the Windows Tomcat installer to get Railo up and running quickly.</p>
<p>Use the Windows Service Installer, it&#8217;s quick and painless. Once installed check that the service is not running, if it is stop it.</p>
<p><strong>Install Railo</strong></p>
<p>Get the latest Railo.war and rename if to something like <em>railobuild.war.</em> This will just make the URL you&#8217;re going to need later easier to read. Place the newly renamed war file into the webapps directory within Tomcat and start the Tomcat service, this should unpack the war file into a directory named railobuild in my example or in yours whatever your war file was named.</p>
<p>Well done Railo is ready. Now we can get the Source.</p>
<p><strong>Getting the source</strong></p>
<p>Using your SVN client checkout the latest source from Railo&#8217;s repository</p>
<p><strong>http://anonsvn.jboss.org/repos/railo</strong></p>
<p>This will take some time but when completed you should have a single Railo folder containing the standard Branches, Tags and Trunk directories at the time of this article being written Branches and tags were empty. But being as we are only interested in Trunk that&#8217;s no great shakes.</p>
<p><strong>Setting up the Eclipse Projects</strong></p>
<p>Now we have the source code we need to add the projects to eclipse. To do this we will <em>import</em> them. This part is shamefully similar to Sean&#8217;s explanation but that&#8217;s because there really is only one way to do this part.</p>
<p>In Eclipse select <tt><strong>File </strong>&gt; <strong>Import </strong>&gt;</tt> <tt><strong>General </strong>&gt; <strong>Existing Projects into Workspace</strong></tt> and click <tt><strong>Next</strong> &gt;</tt>. For the root directory, <tt>Browse</tt> to <strong><tt>railo/trunk/railo-java/railo</tt></strong> and <tt>Choose</tt> that folder. It should now import the project into a directory called <tt>Railo</tt>. Click <strong><tt>Finish</tt></strong>.</p>
<p>Do exactly the same for <strong><tt>railo/trunk/railo-java/railo-core</tt></strong>, <strong><tt>railo/trunk/railo-java/railo-loader</tt></strong> and <strong><tt>railo/trunk/railo-java/railo-master</tt></strong>.</p>
<p><strong>Fixing the Build Paths</strong></p>
<p>You will notice that Railo-Core and Railo-Loader have a red &#8216;x&#8217; on the project. This is due to the build paths being incorrect. Lets fix that by right clicking on the project and selecting <strong>Build Path &gt; Configure Build Path </strong>navigate to the<strong> libraries </strong>tab select all the jars apart from the <strong>JRE System Library</strong>, and click <strong>remove</strong>. Now we need to replace them with the same jars but in the correct locations. Click <strong>Add External Jars</strong> then <strong>Browse </strong>to the <strong>railo/trunk/railo-java/libs </strong>directory and select all the jars, being careful not to copy the <strong>.svn </strong>directory and click <strong>open</strong>. This should populate the <strong>libraries </strong>tab with all the jars. Make sure you have done this for both Railo-Core and Railo-Loader.</p>
<p><strong>Preparing your Working Railo</strong></p>
<p>We need to move some files into the Railo you created earlier, copy the contents of the <strong>railo/trunk/railo-cfml </strong>directory into the Railo-Build directory on your tomcat railo install.</p>
<p>This is also a good time to log into your Railo web administrator and set a password. This will be required during the build process.</p>
<p><strong>Setting the Build Properties</strong></p>
<p>Within the Railo-Core project you will find the build.properties file, open this within a text editor and within that file change the <strong>railo.url</strong> to the location of your compileAdmin.cfm which if you have followed this tutorial with no variation will be:</p>
<p><strong>railo.url=http://localhost:8080/railobuild/compileAdmin.cfm</strong></p>
<p><strong>Building Railo</strong></p>
<p>Within the Railo Source project, right click the <strong>build.xml</strong> file and select <strong>Run as &gt; Ant Build. </strong>The build will begin and approximately half way through a prompt box will appear asking you for the Railo password<strong> </strong>you provided in your tomcat Railo setup. Once accepted the build process will complete the final coldfusion parts of the build process. Within the console you should see all the output and  hopefully &#8220;Build Successful&#8221;.</p>
<p><strong>Deploying your Railo</strong></p>
<p>Now right-click the Railo-Core project and select <tt>Refresh</tt>. The red &#8216;x&#8217; should go away and you should see <strong><tt>build</tt> </strong>and <strong><tt>dist</tt> directories </strong>inside that project. Open the <strong><tt>dist</tt> </strong>directory and you should see <tt>[<strong>version</strong>].rc</tt> file.  Take the created .rc file and paste it into the following directory within your Railo install.</p>
<p><strong>C:\tomcat\webapps\railobuild\WEB-INF\lib\railo-server\patches </strong><br />
if this is where you have your directory.</p>
<p>Now all that is left to do is restart Railo. When you next log into the web administrator you will see within the overview that the version number has changed to the version you have just built.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixsdesign.co.uk/2009/12/build-railo-from-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LogDigger Mantis Setup</title>
		<link>http://www.pixsdesign.co.uk/2009/12/logdigger-mantis-setup/</link>
		<comments>http://www.pixsdesign.co.uk/2009/12/logdigger-mantis-setup/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 15:48:43 +0000</pubDate>
		<dc:creator>Mark Niland</dc:creator>
				<category><![CDATA[Application Development Enviroments]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Cross-platform software]]></category>
		<category><![CDATA[issue tracking applications]]></category>
		<category><![CDATA[Issue tracking system]]></category>
		<category><![CDATA[LogDigger]]></category>
		<category><![CDATA[Mantis]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tracking system]]></category>
		<category><![CDATA[WAMP]]></category>

		<guid isPermaLink="false">http://www.pixsdesign.co.uk/?p=340</guid>
		<description><![CDATA[If you are a frequent web application coder you will no doubt have done endless hours of testing and bug fixing. What this tutorial will hopefully provide you with is a quick and easy way, to setup, and maintain a live Mantis issue tracking system, with an added bonus of utilising the issue reporting application ]]></description>
			<content:encoded><![CDATA[<p>If you are a frequent web application coder you will no doubt have done endless hours of testing and bug fixing. What this tutorial will hopefully provide you with is a quick and easy way, to setup, and maintain a live Mantis issue tracking system, with an added bonus of utilising the issue reporting application LogDigger. What are they I hear you say, and why use them together. At this point I could ramble on about the two programs but as there sites already do this here are the links:</p>
<ul>
<li><a href="http://www.mantisbt.org/">Mantis.org</a></li>
<li><a href="http://logdigger.com/">LogDigger.com</a></li>
</ul>
<p>now you can as you have probably seen on the LogDigger site use LogDigger witha number of issue tracking applications. I have chosen Mantis because its quick and easy to set-up an environment to use it in.</p>
<p><strong>Setting up the environment</strong></p>
<p>Firstly we are going to have to setup a PHP MySQL environment in order for Mantis to work, if you have this already great skip this section if not we can get you up and running really quickly with the very useful package that is WAMP Server LAMP if your on Linux but as I don&#8217;t personally use Linux all that much, this tutorial will be based around WAMP.</p>
<p><strong>WAMP</strong></p>
<p>WAMP stands for Windows, Apache, MySQL, PHP. and it all comes bundled for you in a handy .exe, so all we need do now is go to the following link and download WAMP.</p>
<ul>
<li><a href="http://www.wampserver.com/en/download.php">WAMP download page</a></li>
</ul>
<p>Once Installed on your machine (and if you have chosen C:\ as the install location) you will find a directory called wamp within that there is a directory called www this is where we need to place Mantis. To check if WAMP is working you will see in the bottom right of your screen the following icon <a href="http://www.pixsdesign.co.uk/wp-content/uploads/2009/12/wampicon.JPG"><img class="size-full wp-image-345" title="wampicon" src="http://www.pixsdesign.co.uk/wp-content/uploads/2009/12/wampicon.JPG" alt="wamp working" width="23" height="20" /></a>. If like in this image its all white your cooking on gas if not check that you have disabled IIS in your services. When you have disabled IIS restart all services associated with WAMP by clicking the following.</p>
<p style="text-align: center;"><a href="http://www.pixsdesign.co.uk/wp-content/uploads/2009/12/wamprestart.bmp"><img class="size-full wp-image-346 aligncenter" title="wamprestart" src="http://www.pixsdesign.co.uk/wp-content/uploads/2009/12/wamprestart.bmp" alt="wamprestart" width="201" height="262" /></a></p>
<p><strong>Mantis</strong></p>
<p>So now you should have a fully working WAMP server. if you go to the following Link we can get Mantis downloaded.</p>
<ul>
<li><a href="http://www.mantisbt.org/download.php">Mantis download page</a></li>
</ul>
<p>with the Mantis zip downloaded. Take that file and unzip it to the following location <em>C:\wamp\www</em>. and rename the directory to <em>mantisbt</em></p>
<p>now in a your browser of choice navigate to <em>http://localhost/mantisbt </em>you should be presented with the setup page of mantis asking you for multiple settings passwords and usernames i leave to you. but the most important part of this page is the database. If we refer to the image above you will see that there is a link listed called phpMyAdmin. we need to go there now.</p>
<p><strong>phpMyAdmin</strong></p>
<p style="text-align: left;">Within phpMyAdmin we need to create a new database for Mantis to utilise. This is done by writing the name of the database in the box provided <a href="http://www.pixsdesign.co.uk/wp-content/uploads/2009/12/phpMyAminCreate.bmp"><img class="size-full wp-image-350 aligncenter" title="phpMyAminCreate" src="http://www.pixsdesign.co.uk/wp-content/uploads/2009/12/phpMyAminCreate.bmp" alt="phpMyAminCreate" width="449" height="122" /></a>and clicking create. rememember the name and enter this in the Mantis setup page. Run the setup page when all aettings are to your desires. when setup is complete you should have all the fields shown as green.</p>
<p style="text-align: left;"><a href="http://www.pixsdesign.co.uk/wp-content/uploads/2009/12/mantisgreen.png"><img class="size-full wp-image-352 alignleft" title="mantisgreen" src="http://www.pixsdesign.co.uk/wp-content/uploads/2009/12/mantisgreen.png" alt="mantisgreen" /></a></p>
<p style="text-align: left;">We should all now have mantis installed and be able to login. (defauly password is usually administrator and the password is usually root).</p>
<p style="text-align: left;">follow the simple instructions to create a project within the manage section. This will save time once we have installed LogDigger.</p>
<p style="text-align: left;"><strong>Tomcat</strong></p>
<p style="text-align: left;">Now this is where some die hards will be telling me i have it wrong and I should be implemement a Tomcat with PHP MySQL integrated, and yes I agree but for this quick setup guide to demonstrate the benefits of these systems I am going to use the quick and easy way two seperate installs.</p>
<p style="text-align: left;">Get the latest Tomcat from here</p>
<ul>
<li><a href="http://tomcat.apache.org">Apache Tomcat</a></li>
</ul>
<p>I would reccommend the windows installer as this will be relatively painless.  Install this now if you installed in C:\tomcat you will be able to find your webapps directory here C:\tomcat\webapps this directory will be the one that you will be installing LogDigger upon.</p>
<p><strong>LogDigger</strong></p>
<p>We need to get the .war version of LogDigger this will be the quickest and most painless way to install LogDigger find it at the following link</p>
<ul>
<li><a href="http://logdigger.com">LogDigger</a></li>
</ul>
<p>tomcat will automatically unpack the .war file and install it as a web application, the one point I will make would be that the .war file should be renamed in order for the app to have a sensible name, for example I simply removed the version number to leave logdigger.war. Once renamed place the .war file into the webapps directory and let Tomcat work its magic.</p>
<p>now we have logDigger installed we need to set it up and test that it is accessible, to do this try the following. If you have left Tomcat on the default port of 8080 then you can navigate to the following url in your browser of choice. http://localhost:8080/logdigger/ this should bring up <a href="http://www.pixsdesign.co.uk/wp-content/uploads/2009/12/logdiggersetup.bmp"><img class="aligncenter size-full wp-image-356" title="logdiggersetup" src="http://www.pixsdesign.co.uk/wp-content/uploads/2009/12/logdiggersetup.bmp" alt="logdiggersetup" /></a>the LogDigger setup page. follow the 6 easy steps and we are nearly there.</p>
<p>All you need to do now is define a project within LogDigger and if you have done everything up to this point correctly you will see that LogDigger takes all it&#8217;s projects from your Mantis installation. Once setup we need to start issue tracking, to do this we need to install the LogDigger browser extension.</p>
<p><strong>Browser Extension</strong></p>
<p>At the time I wrote this there were only two extensions available they are for Internet Explorerand Firefox.</p>
<p>if you go to the link below and download the relevant extension</p>
<ul>
<li><a href="http://logdigger.com/download">LogDigger Browser Extension</a></li>
</ul>
<p>once installed you should be able to report issues on the fly while</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixsdesign.co.uk/2009/12/logdigger-mantis-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery quicky site</title>
		<link>http://www.pixsdesign.co.uk/2009/11/jquery-quicky-site/</link>
		<comments>http://www.pixsdesign.co.uk/2009/11/jquery-quicky-site/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 12:57:51 +0000</pubDate>
		<dc:creator>Mark Niland</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.pixsdesign.co.uk/?p=332</guid>
		<description><![CDATA[Hi this is a quick post pointing anyone who wants a quick JQuery solution to the following site
UI JQuery
Here you can touch up pre-designed templates for the most common JQuery functions and then download them. Always save the best until last, they also come with  a very handy examples page where you can basically strip ]]></description>
			<content:encoded><![CDATA[<p>Hi this is a quick post pointing anyone who wants a quick JQuery solution to the following site</p>
<p><a href="http://jqueryui.com/">UI JQuery</a></p>
<p>Here you can touch up pre-designed templates for the most common JQuery functions and then download them. Always save the best until last, they also come with  a very handy examples page where you can basically strip the code out of and place it straight into yours.</p>
<p>Short and sweet but hope it helps <img src='http://www.pixsdesign.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixsdesign.co.uk/2009/11/jquery-quicky-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSP Navigation using Directories</title>
		<link>http://www.pixsdesign.co.uk/2009/11/jsp-navigation-using-directories/</link>
		<comments>http://www.pixsdesign.co.uk/2009/11/jsp-navigation-using-directories/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 15:38:29 +0000</pubDate>
		<dc:creator>Mark Niland</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Apache Tomcat]]></category>
		<category><![CDATA[directories]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JSP]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://www.pixsdesign.co.uk/?p=329</guid>
		<description><![CDATA[This is not particularly hard or something you will want to do with every site you ever develop. That being said i recently used this same technique to list and make links of all of my web apps within a Tomcat configuration I have. First things first you will need to be running a platform ]]></description>
			<content:encoded><![CDATA[<p>This is not particularly hard or something you will want to do with every site you ever develop. That being said i recently used this same technique to list and make links of all of my web apps within a Tomcat configuration I have. First things first you will need to be running a platform capable of parsing JSP files for this to work and it is always a good idea to have your Java up to date currently I&#8217;m running 1.6.</p>
<p><strong>The Scenario</strong></p>
<p>We are developing an application that will check, and report back which applications are installed upon our Tomcat install. Further more we are ( having made sure that each web application has, in there root directory either an index or default page) going to create links to those pages.</p>
<p><strong>ROOT</strong></p>
<p>I am using the ROOT directory within the <em>webapps</em> directory, for the base of my application. I have emptied this directory and in its place put an empty <em>index.jsp</em> file.</p>
<p>at the top of the file is the usual language declaration,</p>
<p><strong><em>&lt;%@ page language=&#8221;java&#8221; contentType=&#8221;text/html; charset=UTF-8&#8243;<br />
pageEncoding=&#8221;UTF-8&#8243;%&gt;</em></strong></p>
<p>below this we are going to place an empty function that we will write later, this function  will deal with the creation of the links.</p>
<p><strong><em>&lt;%!</em></strong></p>
<p><strong><em>public String createLink(String dir){</em></strong></p>
<p><strong><em>}</em></strong></p>
<p><strong><em>%&gt;</em></strong></p>
<p>As you can see from the above declaration the method will expect a String and return one also. The string being passed in will be the directory name. The returned will be the link in its fully formed and valid format.</p>
<p><strong>Getting The Directory Contents</strong></p>
<p>To do this we need a file object, a String array and a String.  We place the relative location of the webapps directory within our string. Then call upon and instantiate the Java File object like so.</p>
<p><em><strong>String filename=&#8221;..\\webapps\\&#8221;;</strong></em></p>
<p><em><strong>java.io.File file = new java.io.File(filename);</strong></em></p>
<p>This code can be placed just before the last <em><strong>%&gt; </strong></em>of the previous code section. this code takes the <em>java.io.File </em>object and creates  a new instance of itself using the String supplied in this case the location of the webapps directory. We name this new File object <strong><em>file</em></strong>. We now take the contents of that directory and use the list method with the file object itself, to populate the String array.</p>
<p><em><strong>String [] dirs = file.list();</strong></em></p>
<p>We now have all the information we need to pass the Strings to the createLink function.</p>
<p><strong>The Loop</strong></p>
<p>To pass the individual strings into the createLink function we will loop through the array like so.</p>
<p><em><strong>&lt;ul&gt;</strong></em></p>
<p><em><strong>&lt;%<br />
for(int i = 0; i &lt; dirs.length; i++){</p>
<p>// if directory we are in skip it<br />
if(dirs[i].equals(&#8220;ROOT&#8221;)){<br />
continue;<br />
}<br />
String newLink = createLink(dirs[i]);<br />
out.println(newLink);<br />
}<br />
%&gt;</strong></em></p>
<p><em><strong>&lt;/ul&gt;</strong></em></p>
<p>You can see that there is a conditional check within the loop. If you remember we jumped out one directory with the file object so in affect we would have created a link to our own app. I chose not to but if you wish to have your own app listed simply remove this if statement block.</p>
<p>So now we need to create the function to create the links, I hope you have noticed that the separation is not totally necessary depending upon what you require you could quite easily fill the loop with this code and list out the directories. I have other purposes and other checks that needed to be done so I decided to put all these in a separate function. The code of which is here:</p>
<p><em><strong>String link = &#8220;&#8221;;</strong></em></p>
<p><em><strong>link = &#8220;&lt;li&gt;&lt;a href=\&#8221;../&#8221; + dir + &#8220;</strong><strong>\&#8221;&gt;&#8221; + dir + &#8220;</strong><strong>&lt;/a&gt;&lt;/li&gt;&#8221;;</strong></em></p>
<p><em><strong>return link;</strong></em></p>
<p>This code should be placed within the function block we created at the beginning. and that&#8217;s it all done with one reminder. This is very basic and should be used as such there has been very limited testing on this and most of the code was written in not copy and pasted in so please check for syntax errors especially in the &#8221; &#8221; areas.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixsdesign.co.uk/2009/11/jsp-navigation-using-directories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
