*) fix for javadoc generation

See: http://www.yacy-forum.de/viewtopic.php?p=21884

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2138 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
theli 2006-05-24 04:40:30 +00:00
parent 1b4a27cd99
commit c5c5c166f0
3 changed files with 18 additions and 4 deletions

View File

@ -669,7 +669,21 @@
<!-- create the html-documentation from javadoc -->
<target name="create-doc" description="Create the javadoc-HTML-Pages">
<javadoc destdir="doc/api" version="no" use="yes" encoding="iso-8859-1" windowtitle="YaCy API Documentation">
<javadoc destdir="doc/api"
author="true"
version="true"
use="false"
encoding="iso-8859-1"
windowtitle="YaCy API Documentation">
<classpath>
<fileset dir="${lib}">
<include name="**/*.jar"/>
</fileset>
<fileset dir="${libx}">
<include name="**/*.jar"/>
</fileset>
<pathelement location="${build}"/>
</classpath>
<fileset dir="source" defaultexcludes="yes">
<include name="**/*.java" />
</fileset>

View File

@ -35,7 +35,7 @@ import de.anomic.server.serverFileUtils;
import de.anomic.server.serverSwitch;
/**
* Class to accept SOAP Requests and invoke the desired {@link de.anomic.http.httpdSoapService soapService}.
* Class to accept SOAP Requests and invoke the desired soapService.
* An example how to do a soap call from php:
* <code>
* <?php
@ -81,7 +81,7 @@ public final class httpdSoapHandler extends httpdAbstractHandler implements http
+ "xmlns=\"http://xml.apache.org/axis/wsdd/\" "
+ "xmlns:java=\"http://xml.apache.org/axis/wsdd/providers/java\" >"
+ "<service name=\"index\" provider=\"java:RPC\" >"
+ "<parameter name=\"className\" value=\"" + httpdSoapService.class.getName() + "\" />"
+ "<parameter name=\"className\" value=\"de.anomic.soap.httpdSoapService\" />"
+ "<parameter name=\"allowedMethods\" value=\"*\" />"
+ "</service>"
+ "</deployment>";

View File

@ -28,7 +28,7 @@ import de.anomic.server.serverObjects;
import de.anomic.server.serverSwitch;
/**
* SOAP Service Class that will be invoked by the {@link de.anomic.http.httpdSoapHandler}
* SOAP Service Class that will be invoked by the httpdSoapHandler
*
* @author Martin Thelian
*/