Return-Path: Mailing-List: contact cocoon-dev-help@xml.apache.org; run by ezmlm Delivered-To: mailing list cocoon-dev@xml.apache.org Received: (qmail 82535 invoked from network); 27 Jan 2001 16:17:35 -0000 Received: from anchor-post-30.mail.demon.net (194.217.242.88) by h31.sny.collab.net with SMTP; 27 Jan 2001 16:17:35 -0000 Received: from parkward-cars.demon.co.uk ([194.222.96.225] helo=ponophobia) by anchor-post-30.mail.demon.net with smtp (Exim 2.12 #1) id 14MY2i-0006cB-0U for cocoon-dev@xml.apache.org; Sat, 27 Jan 2001 16:17:36 +0000 Message-ID: <001001c0887c$910acbe0$0100000a@parkward.net> From: "Corey O'Donovan" To: Subject: [C1.8.3-DEV] [CVS] build errors Date: Sat, 27 Jan 2001 16:16:54 -0000 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_000D_01C0887C.905B5200" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N ------=_NextPart_000_000D_01C0887C.905B5200 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hi, Theres a couple of build errors. 1) org.apache.cocoon.example.*; contains an example that uses the now removed DCP processor 2) org.apache.cocoon.Engine imports org.apache.cocoon.interpreter.*; and tries to "Create the interpreter factory and register it" I'm not familiar with this package (Something to do with DCP?) but all of the sources have been removed. Included is a diff for Engine.java and for the examples problem delete DCPExample.java Corey O'Donovan ------=_NextPart_000_000D_01C0887C.905B5200 Content-Type: application/octet-stream; name="engine.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="engine.diff" Index: src/org/apache/cocoon/Engine.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/cvspublic/xml-cocoon/src/org/apache/cocoon/Engine.java,v retrieving revision 1.51 diff -u -r1.51 Engine.java --- src/org/apache/cocoon/Engine.java 2001/01/26 21:07:41 1.51 +++ src/org/apache/cocoon/Engine.java 2001/01/27 15:55:46 @@ -66,7 +66,6 @@ import org.apache.cocoon.formatter.*; import org.apache.cocoon.processor.*; import org.apache.cocoon.framework.*; -import org.apache.cocoon.interpreter.*; import org.apache.cocoon.response.HttpServletResponseFacade; import org.apache.cocoon.response.RedirectException; =20 @@ -100,7 +99,7 @@ ProducerFactory producers; ProcessorFactory processors; FormatterFactory formatters; - InterpreterFactory interpreters; + =20 =20 Manager manager; Browsers browsers; @@ -161,12 +160,6 @@ transformer =3D (Transformer) = manager.create(getConfigTr(TRANSFORMER_PROP, TRANSFORMER_DEFAULT), = configurations.getConfigurations(TRANSFORMER_PROP)); manager.setRole("transformer", transformer); - - // Create the interpreter factory and register it - interpreters =3D (InterpreterFactory) manager.create( - "org.apache.cocoon.interpreter.InterpreterFactory", - configurations.getConfigurations(INTERPRETER_PROP)); - manager.setRole("interpreters", interpreters); =20 // Create the producer factory and register it producers =3D (ProducerFactory) manager.create( ------=_NextPart_000_000D_01C0887C.905B5200--