mpoeschl 02/03/18 10:48:16
Modified: xdocs/howto factory-service.xml intake-service.xml
jsp-service.xml scheduler-service.xml
security-service.xml xmlrpc-service.xml
Log:
doc update (fix package names in conf and source examples)
Revision Changes Path
1.3 +7 -7 jakarta-turbine-fulcrum/xdocs/howto/factory-service.xml
Index: factory-service.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-fulcrum/xdocs/howto/factory-service.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- factory-service.xml 25 Dec 2001 18:19:17 -0000 1.2
+++ factory-service.xml 18 Mar 2002 18:48:16 -0000 1.3
@@ -94,8 +94,8 @@
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
-import org.apache.turbine.util.TurbineException;
-import org.apache.turbine.services.factory.Factory;
+import org.apache.fulcrum.ServiceException;
+import org.apache.fulcrum.factory.Factory;
/**
* A factory for instantiating DOM parsers.
@@ -111,7 +111,7 @@
* Initializes the factory.
*/
public void init(String className)
- throws TurbineException
+ throws ServiceException
{
factory = DocumentBuilderFactory.newInstance();
}
@@ -120,7 +120,7 @@
* Gets a DocumentBuilder instance.
*/
public Object getInstance()
- throws TurbineException
+ throws ServiceException
{
try
{
@@ -137,7 +137,7 @@
* The given loader is ignored.
*/
public Object getInstance(ClassLoader loader)
- throws TurbineException
+ throws ServiceException
{
return getInstance();
}
@@ -148,7 +148,7 @@
*/
public Object getInstance(Object[] params,
String[] signature)
- throws TurbineException
+ throws ServiceException
{
return getInstance();
}
@@ -160,7 +160,7 @@
public Object getInstance(ClassLoader loader,
Object[] params,
String[] signature)
- throws TurbineException
+ throws ServiceException
{
return getInstance();
}
1.3 +2 -2 jakarta-turbine-fulcrum/xdocs/howto/intake-service.xml
Index: intake-service.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-fulcrum/xdocs/howto/intake-service.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- intake-service.xml 25 Dec 2001 18:19:17 -0000 1.2
+++ intake-service.xml 18 Mar 2002 18:48:16 -0000 1.3
@@ -104,8 +104,8 @@
</p>
<source><![CDATA[
-import org.apache.turbine.services.intake.IntakeTool;
-import org.apache.turbine.services.intake.model.*;
+import org.apache.fulcrum.intake.IntakeTool;
+import org.apache.fulcrum.intake.model.*;
]]></source>
</section>
1.3 +1 -1 jakarta-turbine-fulcrum/xdocs/howto/jsp-service.xml
Index: jsp-service.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-fulcrum/xdocs/howto/jsp-service.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- jsp-service.xml 25 Dec 2001 18:19:17 -0000 1.2
+++ jsp-service.xml 18 Mar 2002 18:48:16 -0000 1.3
@@ -67,7 +67,7 @@
<section name="Usage">
<p>
-Please refer to the org.apache.turbine.services.jsp classes for details
+Please refer to the org.apache.fulcrum.jsp classes for details
on how to use this service.
</p>
1.3 +4 -4 jakarta-turbine-fulcrum/xdocs/howto/scheduler-service.xml
Index: scheduler-service.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-fulcrum/xdocs/howto/scheduler-service.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- scheduler-service.xml 25 Dec 2001 18:19:17 -0000 1.2
+++ scheduler-service.xml 18 Mar 2002 18:48:16 -0000 1.3
@@ -75,8 +75,8 @@
import java.util.Date;
//Turbine
- import org.apache.turbine.modules.ScheduledJob;
- import org.apache.turbine.services.schedule.JobEntry;
+ import org.apache.fulcrum.schedule.ScheduledJob;
+ import org.apache.fulcrum.schedule.JobEntry;
import org.apache.turbine.util.Log;
public class SimpleScheduledTask extends ScheduledJob
@@ -194,8 +194,8 @@
//Turbine
import org.apache.turbine.util.RunData;
- import org.apache.turbine.services.schedule.JobEntry;
- import org.apache.turbine.services.schedule.ScheduleService;
+ import org.apache.fulcrum.schedule.JobEntry;
+ import org.apache.fulcrum.schedule.ScheduleService;
import org.apache.turbine.modules.actions.VelocityAction;
public class SchedulerStart extends VelocityAction
1.3 +3 -15 jakarta-turbine-fulcrum/xdocs/howto/security-service.xml
Index: security-service.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-fulcrum/xdocs/howto/security-service.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- security-service.xml 25 Dec 2001 18:19:17 -0000 1.2
+++ security-service.xml 18 Mar 2002 18:48:16 -0000 1.3
@@ -48,7 +48,7 @@
# Default: org.apache.turbine.om.security.TurbineUser
#
-services.SecurityService.user.class=org.apache.turbine.om.security.TurbineUser
+services.SecurityService.user.class=org.apache.fulcrum.security.impl.db.entity.TurbineUser
#
# This setting is DBSecurityService specific - this class is consulted for the names
@@ -59,7 +59,7 @@
#
# Defalut: org.apache.turbine.om.security.peer.TurbineUserPeer
#
-services.SecurityService.userPeer.class=org.apache.turbine.om.security.peer.TurbineUserPeer
+services.SecurityService.userPeer.class=org.apache.fulcrum.security.impl.db.entity.TurbineUserPeer
#
# This is the class that implements UserManager interface.
@@ -68,7 +68,7 @@
# Default implementation uses Peers and a relational database .
#
-services.SecurityService.user.manager=org.apache.turbine.services.security.db.DBUserManager
+services.SecurityService.user.manager=org.apache.fulcrum.security.impl.db.DBUserManager
#
# This is used by the SecurityService to make the password checking
@@ -92,18 +92,6 @@
#
services.SecurityService.secure.passwords.algorithm=SHA
-
-# Configuration for the LDAP Security Service implementation
-
-#services.SecurityService.ldap.security.athentication=simple
-#services.SecurityService.ldap.port=<LDAP PORT>
-#services.SecurityService.ldap.host=<LDAP HOST>
-#services.SecurityService.ldap.admin.username=<ADMIN USERNAME>
-#services.SecurityService.ldap.admin.password=<ADMIN PASSWORD>
-#services.SecurityService.ldap.user.basesearch=<SEARCH PATTERN>
-#services.SecurityService.ldap.user.search.filter=<SEARCH FILTER>
-#services.SecurityService.ldap.dn.attribute=userPrincipalName
-#services.SecurityService.ldap.provider=com.sun.jndi.ldap.LdapCtxFactory
]]></source>
1.3 +5 -5 jakarta-turbine-fulcrum/xdocs/howto/xmlrpc-service.xml
Index: xmlrpc-service.xml
===================================================================
RCS file: /home/cvs/jakarta-turbine-fulcrum/xdocs/howto/xmlrpc-service.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xmlrpc-service.xml 25 Dec 2001 18:19:17 -0000 1.2
+++ xmlrpc-service.xml 18 Mar 2002 18:48:16 -0000 1.3
@@ -13,8 +13,8 @@
<p>
The XML-RPC service is the easiest way to add distributed
computing and B2B capabilities to your Turbine web application.
- The current implementation is based on the Helma XML-RPC
- package which can be found <a href="http://classic.helma.at/hannes/xmlrpc/">
+ The current implementation is based on the Apache XML-RPC
+ package which can be found <a href="http://xml.apache.org/xmlrpc/">
here</a>.
</p>
@@ -24,7 +24,7 @@
performs certain actions: for example you may have a FileHandler
that is responsible for sending, getting and removing files from
a remote server. For your convenience there is the <strong>
- org.apache.turbine.services.xmlrpc.util.FileHandler</strong>
+ org.apache.fulcrum.xmlrpc.util.FileHandler</strong>
class that will perform these operations for you. Please refer
to the usage section below for more details.
</p>
@@ -92,7 +92,7 @@
# that needs to be shared between Turbine applications
# running on separate servers.
-services.XmlRpcService.handler.file =
org.apache.turbine.services.xmlrpc.util.FileHandler
+services.XmlRpcService.handler.file = org.apache.fulcrum.xmlrpc.util.FileHandler
services.XmlRpcService.paranoid = false
services.XmlRpcService.acceptClient = 192.168.1.*
services.XmlRpcService.denyClient =
@@ -106,7 +106,7 @@
<p>
The following example is taken from the class used to test the
file transfer features of the XML-RPC service. The <strong>
- org.apache.turbine.services.xmlrpc.util.FileHandlerTest</strong>
+ org.apache.fulcrum.xmlrpc.util.FileHandlerTest</strong>
can be found in the CVS repository. Here is how the FileHandler
might be used:
</p>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>