butlermh 02/05/22 08:17:44
Modified: src/java/org/apache/cocoon/components/deli DeliImpl.java
Log:
Revision Changes Path
1.18 +3 -3
xml-cocoon2/src/java/org/apache/cocoon/components/deli/DeliImpl.java
Index: DeliImpl.java
===================================================================
RCS file:
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/components/deli/DeliImpl.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- DeliImpl.java 22 Feb 2002 07:00:07 -0000 1.17
+++ DeliImpl.java 22 May 2002 15:17:44 -0000 1.18
@@ -108,7 +108,7 @@
* A Delivery Context Library for CC/PP and UAProf</a>.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Mark H. Butler</a>
- * @version CVS $ $ $Date: 2002/02/22 07:00:07 $
+ * @version CVS $ $ $Date: 2002/05/22 15:17:44 $
*/
public final class DeliImpl
@@ -169,7 +169,7 @@
public void initialize()
throws Exception {
try {
- this.workspace = new Workspace(this.servletContext, this.deliConfig);
+ Workspace.getInstance().configure(this.servletContext, this.deliConfig);
} catch (Exception e) {
getLogger().error("DELI Exception while creating workspace: ", e);
throw e;
@@ -198,7 +198,7 @@
throws IOException, ServletException, Exception {
try {
CocoonServletRequest servletRequest = new CocoonServletRequest(theRequest);
- Profile theProfile = new Profile(this.workspace, (HttpServletRequest)
servletRequest);
+ Profile theProfile = new Profile((HttpServletRequest) servletRequest);
return theProfile;
} catch (Exception e) {
getLogger().error("DELI Exception while retrieving profile: ", e);
----------------------------------------------------------------------
In case of troubles, e-mail: [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]