2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2020

10/26/2006: Running HttpServerTestApp as an Eclipse Project

I’ve been trying to get the apache-httpd example of Apache’s MUSE project to run. Since I like using Eclipse, I created an Eclipse project to run the HttpServerTestApp application. It took quite awhile to find all of the needed Jar files.

To save you time, here is the list:<ul> <li>apache-httpd.jar <li>muse-core-2.0.0.jar <li>muse-util-2.0.0.jar <li>muse-util-xml-2.0.0.jar <li>muse-util-xstream-2.0.0.jar <li>muse-wsa-soap-2.0.0.jar <li>muse-wsrf-api-2.0.0.jar <li>muse-wsrf-impl-2.0.0.jar <li>xercesImpl-2.8.1.jar <li>xstream-1.1.2.jar </ul>

10/25/2006: Use CSS to Ensure Common Navigation HTML on Every Page

This tip was developed (or at least described by) Trenton Moss on the ITWALES.com site. I reproduce the essential elements of only one of the ten tips that he writes about. Please visit itwales.com to see all ten.

Add a class to each navigation item:

<ul> <li><a href="#" class="home">Home</a></li> <li><a href="#" class="about">About us</a></li> <li><a href="#" class="contact">Contact us</a></li> </ul>

Then insert an id into the <body> tag that indicates which are it represents. For example, When in ‘Home’ it should read <body id=”home”>. Now create a CSS rule:

#home .home, #about .about, #contact .contact { commands for highlighted navigation go here }