From xap-commits-return-787-apmail-incubator-xap-commits-archive=incubator.apache.org@incubator.apache.org Tue Nov 28 00:12:36 2006 Return-Path: Delivered-To: apmail-incubator-xap-commits-archive@locus.apache.org Received: (qmail 20720 invoked from network); 28 Nov 2006 00:12:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Nov 2006 00:12:36 -0000 Received: (qmail 14411 invoked by uid 500); 28 Nov 2006 00:12:36 -0000 Delivered-To: apmail-incubator-xap-commits-archive@incubator.apache.org Received: (qmail 14393 invoked by uid 500); 28 Nov 2006 00:12:36 -0000 Mailing-List: contact xap-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: xap-dev@incubator.apache.org Delivered-To: mailing list xap-commits@incubator.apache.org Received: (qmail 14384 invoked by uid 99); 28 Nov 2006 00:12:36 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Nov 2006 16:12:36 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Nov 2006 16:12:26 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 3F3681A984E; Mon, 27 Nov 2006 16:11:34 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r479819 - /incubator/xap/trunk/WebContent/XapConfig.js Date: Tue, 28 Nov 2006 00:11:34 -0000 To: xap-commits@incubator.apache.org From: bbuffone@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061128001134.3F3681A984E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: bbuffone Date: Mon Nov 27 16:11:32 2006 New Revision: 479819 URL: http://svn.apache.org/viewvc?view=rev&rev=479819 Log: changed the way the configuration of paths work. I added a srcPath to the config file. This tells the XAP engine where the src files are located relative to the start page. Modified: incubator/xap/trunk/WebContent/XapConfig.js Modified: incubator/xap/trunk/WebContent/XapConfig.js URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/XapConfig.js?view=diff&rev=479819&r1=479818&r2=479819 ============================================================================== --- incubator/xap/trunk/WebContent/XapConfig.js (original) +++ incubator/xap/trunk/WebContent/XapConfig.js Mon Nov 27 16:11:32 2006 @@ -40,6 +40,13 @@ */ context: "../../", /** + * This is the default srcPath for the application. When resources are loaded either by + * using the request service or as a event handler. + * + * Accepted Values: The location of the xap src as compared to the start web page. + */ + srcPath: "../../", + /** * This is the default toolkit type. * * Accepted Values: any defined toolkit. @@ -83,5 +90,5 @@ * * Accepted Values: can be null, undefined, or true / false. */ - logging: true -} \ No newline at end of file + logging: false +}