Return-Path: Delivered-To: apmail-xml-cocoon-dev-archive@xml.apache.org Received: (qmail 85595 invoked by uid 500); 23 Apr 2003 19:50:14 -0000 Mailing-List: contact cocoon-dev-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: cocoon-dev@xml.apache.org Delivered-To: mailing list cocoon-dev@xml.apache.org Received: (qmail 85580 invoked from network); 23 Apr 2003 19:50:13 -0000 Received: from smtp02.myhosting.com (168.144.68.182) by daedalus.apache.org with SMTP; 23 Apr 2003 19:50:13 -0000 Received: from Lagrange ([80.252.165.122]) by smtp02.myhosting.com (Merak 5.5.7) with SMTP id KIC74160 for ; Wed, 23 Apr 2003 15:50:24 -0400 From: "Leo Sutic" To: "Cocoon Developer's List" Subject: Stefano's changes Date: Wed, 23 Apr 2003 21:55:00 +0200 Message-ID: <000a01c309d2$39d972c0$0801a8c0@Lagrange> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N From http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=104946515805696&w=2: > 4) I also changed 'allow-reload' to false as default. >From CocoonServlet.java: // get allow reload parameter, default is true value = conf.getInitParameter("allow-reload"); this.allowReload = (value == null || value.equalsIgnoreCase("yes") || value.equalsIgnoreCase("true")); if (value == null) { if (log.isDebugEnabled()) { log.debug("allow-reload was not set - defaulting to true"); } } The web.xml in the webapp included with Cocoon has: allow-reload yes This seems to have gotten lost in the shuffle. /LS