Return-Path: Delivered-To: apmail-forrest-svn-archive@www.apache.org Received: (qmail 95179 invoked from network); 13 Jan 2011 02:48:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 13 Jan 2011 02:48:51 -0000 Received: (qmail 54690 invoked by uid 500); 13 Jan 2011 02:48:51 -0000 Delivered-To: apmail-forrest-svn-archive@forrest.apache.org Received: (qmail 54626 invoked by uid 500); 13 Jan 2011 02:48:50 -0000 Mailing-List: contact svn-help@forrest.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: "Forrest Developers List" List-Id: Delivered-To: mailing list svn@forrest.apache.org Received: (qmail 54619 invoked by uid 99); 13 Jan 2011 02:48:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Jan 2011 02:48:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Jan 2011 02:48:47 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6699723888FD; Thu, 13 Jan 2011 02:48:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1058395 - in /forrest/trunk: site-author/ site-author/content/xdocs/tools/ tools/forrestbar/xpi/chrome/content/ Date: Thu, 13 Jan 2011 02:48:20 -0000 To: svn@forrest.apache.org From: crossley@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110113024820.6699723888FD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: crossley Date: Thu Jan 13 02:48:19 2011 New Revision: 1058395 URL: http://svn.apache.org/viewvc?rev=1058395&view=rev Log: Enabled access to some more intermediate processing data via the "Dev" menu. Issue: FOR-1012 Modified: forrest/trunk/site-author/content/xdocs/tools/forrestbar.xml forrest/trunk/site-author/content/xdocs/tools/forrestbar.xpi forrest/trunk/site-author/status.xml forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.js forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul Modified: forrest/trunk/site-author/content/xdocs/tools/forrestbar.xml URL: http://svn.apache.org/viewvc/forrest/trunk/site-author/content/xdocs/tools/forrestbar.xml?rev=1058395&r1=1058394&r2=1058395&view=diff ============================================================================== --- forrest/trunk/site-author/content/xdocs/tools/forrestbar.xml (original) +++ forrest/trunk/site-author/content/xdocs/tools/forrestbar.xml Thu Jan 13 02:48:19 2011 @@ -123,9 +123,6 @@ See configuration notes. - - Need to re-enable access to localhost:8888/foo/bar.xml and localhost:8888/foo/bar.fo internal formats. -
Dispatcher Dev menu Modified: forrest/trunk/site-author/content/xdocs/tools/forrestbar.xpi URL: http://svn.apache.org/viewvc/forrest/trunk/site-author/content/xdocs/tools/forrestbar.xpi?rev=1058395&r1=1058394&r2=1058395&view=diff ============================================================================== Binary files - no diff available. Modified: forrest/trunk/site-author/status.xml URL: http://svn.apache.org/viewvc/forrest/trunk/site-author/status.xml?rev=1058395&r1=1058394&r2=1058395&view=diff ============================================================================== --- forrest/trunk/site-author/status.xml (original) +++ forrest/trunk/site-author/status.xml Thu Jan 13 02:48:19 2011 @@ -154,6 +154,10 @@ upgrading to v0.9 + + ForrestBar: Enabled access to some more intermediate processing data + via the "Dev" menu. + Improved the FAQ about "version and properties" and linked to the documentation of the new Properties system. @@ -491,6 +495,10 @@ How to do development with Apache Forrest as a way to easily view the internal processing steps. + + ForrestBar: Re-instated access to some intermediate processing data + via the "Dev" menu (**/*.xml and **/*.fo) + Add explanation of ForrestBar menu items. Modified: forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.js URL: http://svn.apache.org/viewvc/forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.js?rev=1058395&r1=1058394&r2=1058395&view=diff ============================================================================== --- forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.js (original) +++ forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.js Thu Jan 13 02:48:19 2011 @@ -152,6 +152,7 @@ function navProject(searchID) { function viewXML(xmltype) { + // View an aspect of the internal data of the current page. var href = gBrowser.currentURI.spec; if( isLocalUrlOrWarnMe() ) { @@ -159,6 +160,16 @@ function viewXML(xmltype) } } +function getXML(xmltype) +{ + // Get an aspect of the internal data. + var href = gBrowser.currentURI.spec; + if( isLocalUrlOrWarnMe() ) + { + navigate(getLocalWebServerUrl()+xmltype); + } +} + function isLocalUrl () { var href = gBrowser.currentURI.spec; Modified: forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul URL: http://svn.apache.org/viewvc/forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul?rev=1058395&r1=1058394&r2=1058395&view=diff ============================================================================== --- forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul (original) +++ forrest/trunk/tools/forrestbar/xpi/chrome/content/forrestbarOverlay.xul Thu Jan 13 02:48:19 2011 @@ -70,16 +70,21 @@ @@ -137,7 +142,6 @@