You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsif-dev@ws.apache.org by as...@apache.org on 2006/05/22 08:38:06 UTC

svn commit: r408582 - in /webservices/wsif/trunk/forrest-src/src/documentation: ./ content/ content/xdocs/ content/xdocs/developers/ content/xdocs/wsif_samples/ resources/images/ skins/wsif-skin/images/ skins/wsif-skin/xslt/html/

Author: aslom
Date: Sun May 21 23:38:05 2006
New Revision: 408582

URL: http://svn.apache.org/viewvc?rev=408582&view=rev
Log:
made it to build OK with recent Forrest 
still can not figure out why XSL for FAQ (and TODO) removes actual answers ...

Added:
    webservices/wsif/trunk/forrest-src/src/documentation/content/faq2document.xsl
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/svn.xml
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/linkmap.xml
    webservices/wsif/trunk/forrest-src/src/documentation/resources/images/add.jpg   (with props)
    webservices/wsif/trunk/forrest-src/src/documentation/resources/images/built-with-forrest-button.png   (with props)
    webservices/wsif/trunk/forrest-src/src/documentation/skins/wsif-skin/images/favicon.ico   (with props)
Removed:
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/cvs.xml
Modified:
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/book.xml
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/bugs.xml
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/book.xml
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/building.xml
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/customizing.xml
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/how_to_provider.xml
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/faq.xml
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/index.xml
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/news.xml
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/quickstart.xml
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/wsif_samples/book.xml
    webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/wsif_samples/index.xml
    webservices/wsif/trunk/forrest-src/src/documentation/sitemap.xmap
    webservices/wsif/trunk/forrest-src/src/documentation/skinconf.xml
    webservices/wsif/trunk/forrest-src/src/documentation/skins/wsif-skin/xslt/html/site2xhtml.xsl

Added: webservices/wsif/trunk/forrest-src/src/documentation/content/faq2document.xsl
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/faq2document.xsl?rev=408582&view=auto
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/faq2document.xsl (added)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/faq2document.xsl Sun May 21 23:38:05 2006
@@ -0,0 +1,130 @@
+<?xml version="1.0"?>
+<!--
+  Copyright 2002-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+
+<xsl:stylesheet
+    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+    version="1.0">
+
+ <xsl:import href="copyover.xsl"/>
+
+  <xsl:template match="faqs">
+   <document>
+    <header>
+     <title><xsl:value-of select="@title"/></title>
+    </header>
+    <body>
+      <section>
+       <title>Questions</title>
+        <xsl:apply-templates select="faq|part"/>
+      </section>
+    </body>
+   </document>  
+  </xsl:template>
+
+  <xsl:template match="part" mode="index">
+    <li>
+      <strong>
+      <!-- Rely on <ol> numbering here -->
+      <!--<xsl:number level="multiple" count="faq|part" format="1.1. "/> -->
+       <xsl:apply-templates select="title"/></strong>
+       <ul>
+        <xsl:apply-templates select="faq|part" mode="index"/>
+       </ul><br />
+    </li>
+  </xsl:template>
+
+  <xsl:template match="faq" mode="index">
+    <li>
+	  <xsl:attribute name="id">
+        <xsl:call-template name="generate-id"/><xsl:text>-menu</xsl:text>
+	  </xsl:attribute>
+      <link>
+        <xsl:attribute name="href">
+          <xsl:text>#</xsl:text><xsl:call-template name="generate-id"/>
+        </xsl:attribute>
+		<!--
+		  IMHO adding this makes the tightly-packed menu less legible for
+		  little benefit (JT)
+	    <xsl:number level="multiple" count="faq|part" format="1.1. "/>
+		-->
+        <xsl:apply-templates select="question" mode="index"/>
+      </link>
+    </li>
+  </xsl:template>
+
+  <xsl:template match="part">
+    <xsl:variable name="id">
+      <xsl:call-template name="generate-id"/>
+    </xsl:variable>
+    <section id="{$id}">
+      <title>
+        <xsl:number level="multiple" count="faq|part" format="1.1. "/>
+        <xsl:value-of select="title"/>
+      </title>
+      <xsl:apply-templates select="faq|part"/>
+    </section>
+  </xsl:template>
+
+  <xsl:template match="faq">
+    <xsl:variable name="id">
+      <xsl:call-template name="generate-id"/>
+    </xsl:variable>
+
+    <section id="{$id}">
+      <title>
+        <xsl:number level="multiple" count="faq|part" format="1.1. "/>
+        <xsl:apply-templates select="question"/>
+      </title>
+      <xsl:apply-templates select="answer"/>
+    </section>
+  </xsl:template>
+
+  <xsl:template name="generate-id">
+    <xsl:choose>
+      <xsl:when test="@id">
+        <xsl:value-of select="@id"/>
+      </xsl:when>
+      <xsl:otherwise>
+        <xsl:value-of select="concat(concat(local-name(.), '-'), generate-id(.))"/>
+      </xsl:otherwise>
+  </xsl:choose>
+  </xsl:template>
+
+  <xsl:template match="question" mode="index">
+    <xsl:apply-templates select="node()[not(local-name()='elaboration')]"/>
+  </xsl:template>
+
+  <xsl:template match="question">
+    <xsl:apply-templates/>
+  </xsl:template>
+
+  <xsl:template match="answer">
+    <xsl:if test="count(p)>0"> 
+      <xsl:apply-templates/>
+    </xsl:if>
+    <xsl:if test="count(p)=0"> 
+      <p>
+        <xsl:apply-templates/>
+      </p>
+    </xsl:if>
+  </xsl:template>
+
+  <xsl:template match="title">
+    <xsl:apply-templates/>
+  </xsl:template>
+
+</xsl:stylesheet>

Modified: webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/book.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/book.xml?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/book.xml (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/book.xml Sun May 21 23:38:05 2006
@@ -23,7 +23,7 @@
 
   <menu label="Downloads">
     <menu-item label="Releases" href="http://www.apache.org/dyn/closer.cgi/ws/wsif/"/>
-    <menu-item label="Nightly Builds" href="http://cvs.apache.org/dist/axis/nightly/"/>
+    <!--menu-item label="Nightly Builds" href="http://www.apache.org/dist/axis/nightly/"/-->
   </menu>
 
   <menu label="Development">

Modified: webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/bugs.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/bugs.xml?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/bugs.xml (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/bugs.xml Sun May 21 23:38:05 2006
@@ -7,7 +7,7 @@
         <body> 
 <p>
 New WSIF bugs should be reported using 
-<jump href="http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10462">Apache Issues Database (JIRA)</a>
+<jump href="http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10462">Apache Issues Database (JIRA)</jump>
 (<jump href="http://issues.apache.org/bugzilla">Bugzilla</jump> is no longer usedQ).</p>
 <ul>
  <li>Please report bugs against the newest release.</li>
@@ -15,7 +15,7 @@
 Click on <link href="http://issues.apache.org/jira/browse/WSIF">
 WSIF open bugs</link> for a list with links to each bug report.</li>
  <li>If you can't find your bug in the database, it would help if you could check out
-WSIF from CVS, and build it locally to verify that the bug still exists.</li>
+WSIF from SVN, and build it locally to verify that the bug still exists.</li>
  <li>If you have found a new bug, please enter a WSIF bug report in Bugzilla.
 Remember to include the following information:
   <ul>

Modified: webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/book.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/book.xml?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/book.xml (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/book.xml Sun May 21 23:38:05 2006
@@ -8,7 +8,7 @@
 
   <menu label="Development">
     <menu-item label="Introduction" href="index.html"/>
-    <menu-item label="CVS" href="cvs.html"/>
+    <menu-item label="SVN" href="svn.html"/>
     <menu-item label="Building WSIF" href="building.html"/>
     <menu-item label="Testing WSIF" href="tests.html"/>
     <menu-item label="Customizing WSIF" href="customizing.html"/>

Modified: webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/building.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/building.xml?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/building.xml (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/building.xml Sun May 21 23:38:05 2006
@@ -55,7 +55,7 @@
 <li><strong>jms.jar</strong></li>
 <li><strong>j2ee.jar</strong>; if you plan to download this it includes the above three so you won't need to download those separately.</li>
 </ul>
-<p>The <link href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/lib/README.html">dependency README</link> tells you where you can download these 
+<p>The <link href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/lib/README.html?view=co">dependency README</link> tells you where you can download these 
 from and also how they are used, so you can decide for yourself which JARs you really need.</p>
 
 <p>Then use <strong>build script</strong> (./build.sh on UNIX or build.bat on Windows) to 

Modified: webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/customizing.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/customizing.xml?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/customizing.xml (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/customizing.xml Sun May 21 23:38:05 2006
@@ -10,13 +10,13 @@
 <p>This part of documentation is meant to help developers who want to modify 
 WSIF by adding or changing its providers and implementing new protocols.</p>
     <p>There are many points within the WSIF API that allow for
-    customization. <link href="http://cvs.apache.org/viewcvs/*checkout*/ws-wsif/java/samples/customfactory/README.html">An advanced WSIF sample</link>
+    customization. <link href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/customfactory/README.html?view=co">An advanced WSIF sample</link>
 
     demonstrates how to write your own WSIF service factory so that
     dynamic binding selection follows your own customized
       algorithm. The user can discover other customization points by
       examining <link
-		   href="http://cvs.apache.org/viewcvs/*checkout*/ws-wsif/java/docs/apidocs/index.html">WSIF's core API</link>.</p>
+		   href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/docs/apidocs/index.html?view=co">WSIF's core API</link>.</p>
     <p>Larger scale customization involves finding ways to expose
       software that uses your proprietary protocols through WSDL, so
       that you can then access this software using WSIF's APIs. To do

Modified: webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/how_to_provider.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/how_to_provider.xml?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/how_to_provider.xml (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/how_to_provider.xml Sun May 21 23:38:05 2006
@@ -116,7 +116,7 @@
 <p>Let's consider how a specific provider implements this and other interfaces. We will
 concentrate on identifying patterns that most provider implementations follow. Consider,
 for example, the Apache SOAP provider.
-<link href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis/WSIFDynamicProvider_ApacheAxis.java">
+<link href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/src/org/apache/wsif/providers/soap/apacheaxis/WSIFDynamicProvider_ApacheAxis.java?view=co">
 Here</link> is the source code for this implementation of the <code>WSIFProvider</code> interface.
 It is fairly straightforward. The constructor usually does very little, in most cases nothing.
 In this particular case it has a mechanism to set up the binding and address namespace URIs
@@ -136,7 +136,7 @@
 addition to the name of the operation. <code>WSIFOperation</code> objects are the brains of the
 outfit; they actually perform the invocation based on a specific protocol. But more on that
 later, first let's see how the Axis provider implements the <code>WSIFPort</code> interface. The
-<link href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis/WSIFPort_ApacheAxis.java">
+<link href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/src/org/apache/wsif/providers/soap/apacheaxis/WSIFPort_ApacheAxis.java?view=co">
 implementation</link> in the constructor itself parses the binding being invoked, doing some
 processing based on the transport being used (since WSIF's Axis provider supports SOAP messages
 over HTTP or JMS). In addition, it also verifies that the binding is indeed supported (for
@@ -348,7 +348,7 @@
 the way operation instances are handled to allow reuse except in specific cases, hopefully
 simplifying the provider contract and improving performance.</p>
 <p>The Axis provider implementation of this interface is
-<link href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/src/org/apache/wsif/providers/soap/apacheaxis/WSIFOperation_ApacheAxis.java">
+<link href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/src/org/apache/wsif/providers/soap/apacheaxis/WSIFOperation_ApacheAxis.java?view=co">
 here</link>. Everything the class does boils down to the use of the
 <code>invokeRequestResponseOperation</code> method. We won't get into detail, but this uses
 a protocol-specific library (in this case JAX-RPC, which is the client programming model
@@ -363,7 +363,7 @@
 part names to java objects representing the value of that particular part. The type of the
 java object must match the expected type according to the type mapping supplied to the
 WSIF provider. WSIF also allows for creation of messages using primitive java types. The
-WSIF message interface is available <link href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/src/org/apache/wsif/WSIFMessage.java">here</link>.
+WSIF message interface is available <link href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/src/org/apache/wsif/WSIFMessage.java?view=co">here</link>.
 </p>
 <p><strong>That's it!</strong></p>
 <p>The protocol-specific implementation of the <code>WSIFProvider</code> interface, the

Added: webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/svn.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/svn.xml?rev=408582&view=auto
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/svn.xml (added)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/developers/svn.xml Sun May 21 23:38:05 2006
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+      <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN" "document-v11.dtd">
+      <document> 
+        <header> 
+          <title>SVN</title> 
+        </header> 
+        <body> 
+<section>
+ <title>Accessing Builds and Source Code</title>
+<p>The source code for this package is available on the Apache web site. Individual
+files can be accessed using the web-based
+<fork href="http://svn.apache.org/viewvc/webservices/wsif/trunk/">SVN interface</fork>.
+The entire package can be downloaded using the following instructions.</p>
+</section>
+
+<!--
+<section>
+<title>Accessing the Nightly Builds</title>
+<p>This package is built nightly along with Axis. The build will create two
+zip files: wsif-bin-1.2.zip and xml-axis.wsif-src.zip. The first file contains a
+complete build image, which includes wsif.jar and the API Javadoc. The second file contains  a copy of the source code, which could
+be built using Ant. Both of these files can be accessed at the same location
+as the <fork href="http://cvs.apache.org/dist/axis/nightly/">Axis nightly builds</fork>.</p>
+</section>
+-->
+
+<!--
+<section>
+<title>Accessing the Source Tree (AnonCVS)</title>
+<p>So, you've decided that you need access to the source tree to see the latest
+and greatest code. There's two different forms of CVS access. The first
+is anonymous and anybody can use it. The second is not and you must have
+a login to the development server. If you don't know what this means, join
+the <link href="../mail.html">mailing list</link> and find out.</p>
+<p>Anyone can checkout source code from our anonymous CVS server. To do so,
+simply use the following commands (if you are using a GUI CVS client, configure
+it appropriatly):
+</p>
+<source>cvs -d :pserver:anoncvs@cvs.apache.org:/home/cvspublic login password: anoncvs
+
+cvs -d :pserver:anoncvs@cvs.apache.org:/home/cvspublic checkout ws-wsif</source>
+</section>
+<section>
+ <title>Full Remote CVS Access</title>
+<p>If you are a <em>Committer</em> and have a login on the
+Apache development server, this section is for you. If you are not a Committer,
+but you want to submit patches or even request commit privelages, please see the
+<link href="http://jakarta.apache.org/site/guidelines.html">Jakarta
+GuideLines </link>page (we follow the same rules) for more information.
+</p>
+<p>To have full access to the CVS server, you need to follow the links depending
+on the operating system you are using:
+</p>
+<ul>
+<li><fork href="http://jakarta.apache.org/site/cvsonunix.html">Unix</fork></li>
+<li><fork href="http://jakarta.apache.org/site/cvsonwin32.html">Windows</fork></li>
+</ul>
+</section>
+
+
+-->
+   </body>
+    </document>

Modified: webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/faq.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/faq.xml?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/faq.xml (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/faq.xml Sun May 21 23:38:05 2006
@@ -7,10 +7,14 @@
   <question>What is the official version of WSIF? How to I get the latest version?</question>
   <answer>
    <p>
-The official version of WSIF is found here on the Apache web site.
-Nightly builds are available at
+The official version of WSIF is found here on 
+<link href="http://www.apache.org/dyn/closer.cgi/ws/wsif/">the Apache web site</link>.
+
+<!-- Nightly builds are available at
     <link href="http://cvs.apache.org/dist/axis/nightly/">http://xml.apache.org/dist/axis/nightly/</link>
+-->        
    </p>
+   
    <p>
           The  wsif-src*.zip contains source distribution, the wsif-bin* zip file contains a built wsif.jar along with the API Javadoc and the wsif-all*.zip 
           contains the source, the JAR and the javadocs. (* will be replaced by the current version number in the file names).

Modified: webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/index.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/index.xml?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/index.xml (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/index.xml Sun May 21 23:38:05 2006
@@ -10,7 +10,7 @@
               <p>
 The Web Services Invocation Framework (WSIF) is a simple Java API for invoking Web services,
 no matter how or where the services are provided. Please refer to the 
-<link href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/doc/release_notes_2_0.html">
+<link href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/doc/release_notes_2_0.html?view=co">
 release notes</link> before you proceed with using WSIF.</p>
 
 <p>WSIF enables developers to interact with abstract representations
@@ -83,7 +83,7 @@
 mailing lists</link>. If you find an
 issue or bug that interests you, feel free to download WSIF's source
 code and work on it. You will find instructions for accessing the
-source code <link href="developers/cvs.html">here</link>.
+source code <link href="developers/svn.html">here</link>.
 </p>
 
 <p>You can find a list of outstanding bugs in

Added: webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/linkmap.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/linkmap.xml?rev=408582&view=auto
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/linkmap.xml (added)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/linkmap.xml Sun May 21 23:38:05 2006
@@ -0,0 +1,72 @@
+<?xml version="1.0"?>
+<!--
+  Copyright 2002-2004 The Apache Software Foundation or its licensors,
+  as applicable.
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- =================================================
+'linkmap' pipeline.  A linkmap is a map from abstract ('site:index') to
+physical ('../index.html') links for the current page.
+
+Generates  :  Variant of site.xml with each @href being the link to that page from the current page.
+Example URL:  http://localhost:8888/docs/community/linkmap-index.html (links for community/index.html)
+Used by    :  The linkrewriter transformer
+Uses       :  content/xdocs/site.xml
+
+See http://forrest.apache.org/docs/sitemap-ref.html#menu_xml_generation
+
+$Revision: 1.2 $
+==================================================== -->
+
+
+<map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
+  <map:components>
+    <map:generators default="file"/>
+    <map:serializers default="html"/>
+    <map:transformers default="xslt"/>
+    <map:matchers default="wildcard"/>
+  </map:components>
+
+  <map:pipelines>
+ 
+     <map:pipeline>     
+      <map:match pattern="linkmap.xml">
+        <map:generate src="cocoon://abs-linkmap" />
+        <map:transform src="{forrest:stylesheets}/linkmap2document.xsl"/>
+        <map:serialize type="xml" />
+      </map:match>
+      
+      <!-- site.xml with @href's appended to be context-relative. -->
+      <map:match pattern="abs-linkmap">
+        <map:generate src="{project:content.xdocs}site.xml" />
+        <map:transform type="xinclude"/>
+        <map:transform src="{forrest:stylesheets}/absolutize-linkmap.xsl" />
+        <map:serialize type="xml" />
+      </map:match>
+
+      <!-- Linkmap for regular pages -->
+      <map:match pattern="**linkmap-*">
+        <map:generate src="cocoon://abs-linkmap" />
+        <map:transform src="{forrest:stylesheets}/relativize-linkmap.xsl">
+          <map:parameter name="path" value="{1}{2}" />
+          <map:parameter name="site-root" value="{conf:project-url}" />
+        </map:transform>
+        <map:serialize type="xml" />
+      </map:match>
+
+    </map:pipeline>
+  </map:pipelines>
+
+</map:sitemap>
+

Modified: webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/news.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/news.xml?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/news.xml (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/news.xml Sun May 21 23:38:05 2006
@@ -7,19 +7,18 @@
   <body>
     <section>
       <title>What is new with WSIF?</title>
-      <p>2nd February 2003 - WSIF distribution files is now moved to its pernament home at
-        <link href="http://ws.apache.org/dist/wsif/">http://ws.apache.org/dist/wsif</link>.
+      <p>
+        May 2006 - We are preparing a new maintenance release.
+        Cuurent      
+        <link href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/doc/changes.html?view=co">list 
+        of changes in SVN</link>.
       </p>
       <p>WSIF has it's own home at
-        <link href="http://ws.apache.org/wsif">http://ws.apache.org/wsif</link>
-.</p>
+        <link href="http://ws.apache.org/wsif">http://ws.apache.org/wsif</link> 
+      .</p>
       <p>27th January 2003 - The first Apache WSIF release is now available. You can download it from
-        <link href="http://cvs.apache.org/dist/axis/wsif/">http://cvs.apache.org/dist/axis/wsif/</link>.
+        <link href="http://www.apache.org/dyn/closer.cgi/ws/wsif/">http://www.apache.org/dyn/closer.cgi/ws/wsif/</link>.
       </p>
-      <p>A 
-        <link href="changes.html">list of changes in this release</link> is available (you can also visit
-        <link href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/doc/changes.html"> online list of changes</link>
-in the latest CVS version to monitor WSIF progress).</p>
     </section>
   </body>
 </document>

Modified: webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/quickstart.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/quickstart.xml?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/quickstart.xml (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/quickstart.xml Sun May 21 23:38:05 2006
@@ -12,8 +12,8 @@
 http://www.apache.org/dyn/closer.cgi/ws/wsif/</link>. 
 It comes in three flavors: the binary distribution (&quot;bin&quot;), 
 the source-only distribution (&quot;src&quot;) or everything 
-included (&quot;all&quot;). If you are familiar with CVS and 
-want to work with the latest code <link href="developers/cvs.html">use cvs</link>. Using CVS 
+included (&quot;all&quot;). If you are familiar with SVN and 
+want to work with the latest code <link href="developers/svn.html">use svn</link>. Using SVN 
 you can also retrieve any past release by using tag (for example 
 WSIF_2_0_ALPHA2).</p></section>
 
@@ -22,7 +22,7 @@
 <p>If you have downloaded binary package then you are ready to use WSIF: the 
 very first thing to do is to check provided samples. However before you start 
 please read <link href="faq.html">WSIF FAQ</link>. Then read about <link href="wsif_samples/index.html">
-how to run the samples</link>. Otherwise if you downloaded source code or accessed it from CVS you will need 
+how to run the samples</link>. Otherwise if you downloaded source code or accessed it from SVN you will need 
 to build WSIF. To do this, first <link href="requirements.html">check that all 
 prerequisites</link> are available. Then <link href="developers/building.html">proceed with 
 building</link>.</p>

Modified: webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/wsif_samples/book.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/wsif_samples/book.xml?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/wsif_samples/book.xml (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/wsif_samples/book.xml Sun May 21 23:38:05 2006
@@ -11,29 +11,29 @@
   </menu>
 
   <menu label="SOAP">
-    <external label="Stock Quote" href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/simplesoap/README.html"/>
-    <external label="Zip2Geo" href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/complexsoap/README.html"/>
+    <external label="Stock Quote" href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/simplesoap/README.html?view=co"/>
+    <external label="Zip2Geo" href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/complexsoap/README.html?view=co"/>
   </menu>
   
   <menu label="Java">
-    <external label="Address Book" href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/localjava/README.html"/>
+    <external label="Address Book" href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/localjava/README.html?view=co"/>
   </menu>
 
   <menu label="EJB">
-    <external label="Address Book" href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/ejb/README.html"/>
+    <external label="Address Book" href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/ejb/README.html?view=co"/>
   </menu>
 
   <menu label="JMS">
-    <external label="Service Availability" href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/jms/README.html"/>
+    <external label="Service Availability" href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/jms/README.html?view=co"/>
   </menu>
 
   <menu label="JCA">
-    <external label="Customer Info" href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/jca/README.html"/>
+    <external label="Customer Info" href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/jca/README.html?view=co"/>
   </menu>
 
   <menu label="Misc">
-    <external label="Multiple Bindings" href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/multibinding/README.html"/>
-    <external label="Custom Factory" href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/customfactory/README.html"/>
-    <external label="DSL Example" href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/dslprovider/README.html"/>
+    <external label="Multiple Bindings" href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/multibinding/README.html?view=co"/>
+    <external label="Custom Factory" href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/customfactory/README.html?view=co"/>
+    <external label="DSL Example" href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/dslprovider/README.html?view=co"/>
   </menu>
 </book>

Modified: webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/wsif_samples/index.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/wsif_samples/index.xml?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/wsif_samples/index.xml (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/content/xdocs/wsif_samples/index.xml Sun May 21 23:38:05 2006
@@ -18,7 +18,7 @@
 <li><strong>jms.jar</strong></li>
 <li><strong>j2ee.jar</strong>; if you plan to download this it includes the above three so you won't need to download those separately.</li>
 </ul>
-<p>The <link href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/lib/README.html">dependency README</link> tells you where you can download these from and also how they are used, so you can decide for yourself which JARs you really need.</p>
+<p>The <link href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/lib/README.html?view=co">dependency README</link> tells you where you can download these from and also how they are used, so you can decide for yourself which JARs you really need.</p>
 
 <p>Once you have the necessary jar files, to run samples
 you can simply call <strong>classpath script</strong> (on Windows use
@@ -47,52 +47,52 @@
 <tr>
    <td>How to invoke a simple SOAP service</td>
    <td>The samples/simplesoap directory under your WSIF installation</td>
-   <td><fork href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/simplesoap/README.html">The Sample README</fork></td>
+   <td><fork href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/simplesoap/README.html?view=co">The Sample README</fork></td>
 </tr>
 <tr>
    <td>How to invoke a SOAP service that uses custom schema types</td>
    <td>The samples/complexsoap directory under your WSIF installation</td>
 
-   <td><fork href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/complexsoap/README.html">The Sample README</fork></td>
+   <td><fork href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/complexsoap/README.html?view=co">The Sample README</fork></td>
 </tr>
 <tr>
    <td>How to invoke a local java class as a service</td>
    <td>The samples/localjava directory under your WSIF installation</td>
-   <td><fork href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/localjava/README.html">The Sample README</fork></td>
+   <td><fork href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/localjava/README.html?view=co">The Sample README</fork></td>
 </tr>
 <tr>
    <td>How to invoke an EJB as a service</td>
 
    <td>The samples/ejb directory under your WSIF installation</td>
-   <td><fork href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/ejb/README.html">The Sample README</fork></td>
+   <td><fork href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/ejb/README.html?view=co">The Sample README</fork></td>
 </tr>
 <tr>
    <td>How to invoke software accessible using the JCA (Java Connector Architecture) as a service</td>
    <td>The samples/jca directory under your WSIF installation</td>
-   <td><fork href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/jca/README.html">The Sample README</fork></td>
+   <td><fork href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/jca/README.html?view=co">The Sample README</fork></td>
 
 </tr>
 <tr>
    <td>How to invoke software accessible via the Java Message Service (JMS)</td>
    <td>The samples/jms directory under your WSIF installation</td>
-   <td><fork href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/jms/README.html">The Sample README</fork></td>
+   <td><fork href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/jms/README.html?view=co">The Sample README</fork></td>
 </tr>
 <tr>
    <td>How to choose between the available bindings of a service at runtime</td>
    <td>The samples/multibinding directory under your WSIF installation</td>
 
-   <td><fork href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/multibinding/README.html">The Sample README</fork></td>
+   <td><fork href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/multibinding/README.html?view=co">The Sample README</fork></td>
 </tr>
 <tr>
    <td>How to customize WSIF to select between bindings using your own heuristics</td>
    <td>The samples/customfactory directory under your WSIF installation</td>
-   <td><fork href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/customfactory/README.html">The Sample README</fork></td>
+   <td><fork href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/customfactory/README.html?view=co">The Sample README</fork></td>
 </tr>
 <tr>
    <td>A sample application that builds on the EJB, JMS and complexsoap samples</td>
 
    <td>The samples/dslprovider directory under your WSIF installation</td>
-   <td><fork href="http://cvs.apache.org/viewcvs/~checkout~/ws-wsif/java/samples/dslprovider/README.html">The Sample README</fork></td>
+   <td><fork href="http://svn.apache.org/viewvc/webservices/wsif/trunk/java/samples/dslprovider/README.html?view=co">The Sample README</fork></td>
 </tr>
 </table>
   </body> 

Added: webservices/wsif/trunk/forrest-src/src/documentation/resources/images/add.jpg
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/resources/images/add.jpg?rev=408582&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/wsif/trunk/forrest-src/src/documentation/resources/images/add.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: webservices/wsif/trunk/forrest-src/src/documentation/resources/images/built-with-forrest-button.png
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/resources/images/built-with-forrest-button.png?rev=408582&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/wsif/trunk/forrest-src/src/documentation/resources/images/built-with-forrest-button.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: webservices/wsif/trunk/forrest-src/src/documentation/sitemap.xmap
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/sitemap.xmap?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/sitemap.xmap (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/sitemap.xmap Sun May 21 23:38:05 2006
@@ -83,17 +83,6 @@
     <map:action logger="sitemap.action.resource-exists" name="resource-exists" src="org.apache.cocoon.acting.ResourceExistsAction"/>
   </map:actions>
 
-  <!--
-     The different pipeline implementations
-  -->
-  <map:pipelines default="caching">
-     <map:pipeline name="caching" src="org.apache.cocoon.components.pipeline.impl.CachingProcessingPipeline"/>
-     <map:pipeline name="noncaching" src="org.apache.cocoon.components.pipeline.impl.NonCachingProcessingPipeline"/>
-     <!-- The following two can be used for profiling:
-     <map:pipeline name="profile-caching" src="org.apache.cocoon.components.profiler.ProfilingCachingProcessingPipeline"/>
-     <map:pipeline name="profile-noncaching" src="org.apache.cocoon.components.profiler.ProfilingNonCachingProcessingPipeline"/>
-     -->
-  </map:pipelines>
   
  </map:components>
 
@@ -185,7 +174,7 @@
 
    <map:match pattern="body-**/faq.xml">
      <map:generate type="file-nolabel" src="content/xdocs/{1}/faq.xml"/>
-     <map:transform src="library/xslt/faq2document.xsl" label="content"/>
+     <map:transform src="content/faq2document.xsl" label="content"/>
      <map:call resource="skinit">
       <map:parameter name="type" value="document2html"/>
       <map:parameter name="path" value="{1}/faq.xml"/>
@@ -196,7 +185,7 @@
 
    <map:match pattern="body-faq.xml">
      <map:generate type="file-nolabel" src="content/xdocs/faq.xml"/>
-     <map:transform src="library/xslt/faq2document.xsl" label="content"/>
+     <map:transform src="content/faq2document.xsl" label="content"/>
      <map:call resource="skinit">
       <map:parameter name="type" value="document2html"/>
       <map:parameter name="path" value="faq.xml"/>
@@ -336,11 +325,11 @@
    
    <!-- ==================   External URI-space    ========================= -->   
 
-
+<!--
    <map:match pattern="">
     <map:redirect-to uri="{context:context}/index.html"/>
    </map:match>
-
+-->
    <map:match pattern="**">
    
     <!-- if the file is present verbatim as content, give that to the user... -->
@@ -407,22 +396,22 @@
 
    <map:match pattern="changes.pdf">
     <map:generate type="file-nolabel" src="status.xml"/>
-    <map:transform src="library/xslt/changes2document.xsl" label="content"/>
-    <map:transform src="skins/forrest-site/xslt/fo/document2fo.xsl"/>
+    <map:transform src="content/changes2document.xsl" label="content"/>
+    <map:transform src="skins/wsif-skin/xslt/fo/document2fo.xsl"/>
     <map:serialize type="fo2pdf"/>
    </map:match>
 
    <map:match pattern="todo.pdf">
     <map:generate type="file-nolabel" src="status.xml"/>
     <map:transform src="content/todo2document.xsl" label="content"/>
-    <map:transform src="skins/forrest-site/xslt/fo/document2fo.xsl"/>
+    <map:transform src="skins/wsif-skin/xslt/fo/document2fo.xsl"/>
     <map:serialize type="fo2pdf"/>
    </map:match>
 
    <map:match pattern="faq.pdf">
     <map:generate type="file-nolabel" src="content/xdocs/faq.xml"/>
-    <map:transform src="library/xslt/faq2document.xsl" label="content"/>
-    <map:transform src="skins/forrest-site/xslt/fo/document2fo.xsl"/>
+    <map:transform src="content/faq2document.xsl" label="content"/>
+    <map:transform src="skins/wsif-skin/xslt/fo/document2fo.xsl"/>
     <map:serialize type="fo2pdf"/>
    </map:match>
 
@@ -441,10 +430,11 @@
 
    <!-- ================  Directory redirects   =========================== -->
    <!-- Redirect any request for a directory to the directory's index.html file  -->
+<!--
    <map:match pattern="**/">
      <map:redirect-to uri="{context:context}/{1}/index.html"/>
    </map:match>
-
+-->
    <!-- ================  Libre   =========================== -->
 
    <map:match pattern="libre">

Modified: webservices/wsif/trunk/forrest-src/src/documentation/skinconf.xml
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/skinconf.xml?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/skinconf.xml (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/skinconf.xml Sun May 21 23:38:05 2006
@@ -64,7 +64,7 @@
   <host-logo></host-logo>
 
   <!-- The following are used to construct a copyright statement -->
-  <year>2003</year>
+  <year>2003-2006</year>
   <vendor>The Apache Software Foundation.</vendor>
 
   <!-- Some skins use this to form a 'breadcrumb trail' of links. If you don't

Added: webservices/wsif/trunk/forrest-src/src/documentation/skins/wsif-skin/images/favicon.ico
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/skins/wsif-skin/images/favicon.ico?rev=408582&view=auto
==============================================================================
Binary file - no diff available.

Propchange: webservices/wsif/trunk/forrest-src/src/documentation/skins/wsif-skin/images/favicon.ico
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: webservices/wsif/trunk/forrest-src/src/documentation/skins/wsif-skin/xslt/html/site2xhtml.xsl
URL: http://svn.apache.org/viewvc/webservices/wsif/trunk/forrest-src/src/documentation/skins/wsif-skin/xslt/html/site2xhtml.xsl?rev=408582&r1=408581&r2=408582&view=diff
==============================================================================
--- webservices/wsif/trunk/forrest-src/src/documentation/skins/wsif-skin/xslt/html/site2xhtml.xsl (original)
+++ webservices/wsif/trunk/forrest-src/src/documentation/skins/wsif-skin/xslt/html/site2xhtml.xsl Sun May 21 23:38:05 2006
@@ -50,11 +50,11 @@
       </head>
       <body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
       <!-- =========================== top line with navigation path ========================== -->
+<!--
     <table cellspacing="0" cellpadding="0" border="0" width="100%" summary="navigation path">
       <tr>
         <td height="20" bgcolor="#CFDCED" valign="middle" nowrap="nowrap">
           <img src="{$spacer}" border="0" alt="" width="5" height="1" />
-          <!-- breadcrumb trail (javascript-generated) -->
           <font face="Arial, Helvetica, Sans-serif" size="2">
               <script type="text/javascript" language="JavaScript" src="{$root}skin/breadcrumbs.js"></script>
           </font>
@@ -64,6 +64,7 @@
         <td height="2" bgcolor="#4C6C8F"><img src="{$spacer}" border="0" alt="" width="2" height="2" /></td>
       </tr>
     </table>
+-->
     <!-- ================================= top bar with logo's and search box ===================================  -->
         <table cellspacing="0" cellpadding="0" border="0" width="100%" summary="header with logos">
       <tr>
@@ -72,7 +73,7 @@
         <td bgcolor="#294563" align="center" width="100%"><a href="{$config/project-url}"><img src="{$root}{$config/project-logo}" border="0" alt="{$config/project-name} site" /></a></td>
         <td bgcolor="#294563" rowspan="2" valign="top">
           <xsl:if test="not($config/disable-search) or $config/disable-search='false' and $config/searchsite-domain and $config/searchsite-name">
-          <form method="get" action="http://www.google.com/search" onsubmit="q.value = query.value + ' site:{$config/searchsite-domain}'" target="_blank">
+          <form method="get" action="http://www.google.com/search" onsubmit="q.value = query.value + ' site:{$config/searchsite-domain}'" >
             <table bgcolor="#4C6C8F" cellpadding="0" cellspacing="0" border="0" summary="search">
               <tr>
                 <td colspan="3"><img src="{$spacer}" alt="" width="1" height="10" /></td>



---------------------------------------------------------------------
To unsubscribe, e-mail: wsif-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: wsif-dev-help@ws.apache.org