Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 10931 invoked from network); 21 Nov 2010 16:05:47 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 21 Nov 2010 16:05:47 -0000 Received: (qmail 85183 invoked by uid 500); 21 Nov 2010 16:06:18 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 85064 invoked by uid 500); 21 Nov 2010 16:06:16 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 85057 invoked by uid 99); 21 Nov 2010 16:06:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Nov 2010 16:06:16 +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; Sun, 21 Nov 2010 16:06:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6348E23889B3; Sun, 21 Nov 2010 16:05:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1037488 - in /commons/sandbox/gsoc/2010/scxml-js/trunk: ./ src/javascript/scxml/cgf/ src/javascript/scxml/cgf/backends/js/ src/python/scxml/cgf/ src/python/scxml/cgf/backends/ src/xslt/util/language-frontend-module-generators/ Date: Sun, 21 Nov 2010 16:05:01 -0000 To: commits@commons.apache.org From: jbeard@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101121160501.6348E23889B3@eris.apache.org> Author: jbeard Date: Sun Nov 21 16:05:00 2010 New Revision: 1037488 URL: http://svn.apache.org/viewvc?rev=1037488&view=rev Log: Intermediate commit. Python and JavaScript frontends should be connected with new dependency resolution targets. Next step is to test it. Added: commons/sandbox/gsoc/2010/scxml-js/trunk/src/python/scxml/cgf/backends/js (with props) commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/py-from-topo-sort-list-generator.xsl (contents, props changed) - copied, changed from r1037485, commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/python-from-topo-sort-list-generator.xsl commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/sh-from-topo-sort-list-generator.xsl (contents, props changed) - copied, changed from r1037485, commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/bash-xsltproc-from-topo-sort-list-generator.xsl Removed: commons/sandbox/gsoc/2010/scxml-js/trunk/src/javascript/scxml/cgf/backends/js/AbstractEnumeratedStatechartGenerator.js commons/sandbox/gsoc/2010/scxml-js/trunk/src/javascript/scxml/cgf/backends/js/AbstractStatechartGenerator.js commons/sandbox/gsoc/2010/scxml-js/trunk/src/javascript/scxml/cgf/backends/js/StatePatternStatechartGenerator.js commons/sandbox/gsoc/2010/scxml-js/trunk/src/javascript/scxml/cgf/backends/js/StateTableStatechartGenerator.js commons/sandbox/gsoc/2010/scxml-js/trunk/src/javascript/scxml/cgf/backends/js/SwitchyardStatechartGenerator.js commons/sandbox/gsoc/2010/scxml-js/trunk/src/python/scxml/cgf/xsl commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/bash-xsltproc-from-topo-sort-list-generator.xsl commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/python-from-topo-sort-list-generator.xsl Modified: commons/sandbox/gsoc/2010/scxml-js/trunk/build-common.xml commons/sandbox/gsoc/2010/scxml-js/trunk/src/javascript/scxml/cgf/SCXMLCompiler.js Modified: commons/sandbox/gsoc/2010/scxml-js/trunk/build-common.xml URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/build-common.xml?rev=1037488&r1=1037487&r2=1037488&view=diff ============================================================================== --- commons/sandbox/gsoc/2010/scxml-js/trunk/build-common.xml (original) +++ commons/sandbox/gsoc/2010/scxml-js/trunk/build-common.xml Sun Nov 21 16:05:00 2010 @@ -43,7 +43,7 @@ - + + + + + + + + Modified: commons/sandbox/gsoc/2010/scxml-js/trunk/src/javascript/scxml/cgf/SCXMLCompiler.js URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/src/javascript/scxml/cgf/SCXMLCompiler.js?rev=1037488&r1=1037487&r2=1037488&view=diff ============================================================================== --- commons/sandbox/gsoc/2010/scxml-js/trunk/src/javascript/scxml/cgf/SCXMLCompiler.js (original) +++ commons/sandbox/gsoc/2010/scxml-js/trunk/src/javascript/scxml/cgf/SCXMLCompiler.js Sun Nov 21 16:05:00 2010 @@ -71,15 +71,15 @@ require.def("src/javascript/scxml/cgf/SC //this slightly clunky construction is used to accomodate RequireJS's builder if(options.backend==="state"){ - require(["src/javascript/scxml/cgf/backends/js/StatePatternStatechartGenerator"],function(backend){ + require(["target/language-frontend-modules/js/StatePatternStatechartGenerator"],function(backend){ onModuleLoad(backend); }); }else if(options.backend==="table"){ - require(["src/javascript/scxml/cgf/backends/js/StateTableStatechartGenerator"],function(backend){ + require(["target/language-frontend-modules/js/StateTableStatechartGenerator"],function(backend){ onModuleLoad(backend); }); }else if(options.backend==="switch"){ - require(["src/javascript/scxml/cgf/backends/js/SwitchyardStatechartGenerator"],function(backend){ + require(["target/language-frontend-modules/js/SwitchyardStatechartGenerator"],function(backend){ onModuleLoad(backend); }); } Added: commons/sandbox/gsoc/2010/scxml-js/trunk/src/python/scxml/cgf/backends/js URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/src/python/scxml/cgf/backends/js?rev=1037488&view=auto ============================================================================== --- commons/sandbox/gsoc/2010/scxml-js/trunk/src/python/scxml/cgf/backends/js (added) +++ commons/sandbox/gsoc/2010/scxml-js/trunk/src/python/scxml/cgf/backends/js Sun Nov 21 16:05:00 2010 @@ -0,0 +1 @@ +link ../../../../../target/language-frontend-modules/python/ \ No newline at end of file Propchange: commons/sandbox/gsoc/2010/scxml-js/trunk/src/python/scxml/cgf/backends/js ------------------------------------------------------------------------------ svn:special = * Copied: commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/py-from-topo-sort-list-generator.xsl (from r1037485, commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/python-from-topo-sort-list-generator.xsl) URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/py-from-topo-sort-list-generator.xsl?p2=commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/py-from-topo-sort-list-generator.xsl&p1=commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/python-from-topo-sort-list-generator.xsl&r1=1037485&r2=1037488&rev=1037488&view=diff ============================================================================== (empty) Propchange: commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/py-from-topo-sort-list-generator.xsl ------------------------------------------------------------------------------ svn:eol-style = native Copied: commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/sh-from-topo-sort-list-generator.xsl (from r1037485, commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/bash-xsltproc-from-topo-sort-list-generator.xsl) URL: http://svn.apache.org/viewvc/commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/sh-from-topo-sort-list-generator.xsl?p2=commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/sh-from-topo-sort-list-generator.xsl&p1=commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/bash-xsltproc-from-topo-sort-list-generator.xsl&r1=1037485&r2=1037488&rev=1037488&view=diff ============================================================================== (empty) Propchange: commons/sandbox/gsoc/2010/scxml-js/trunk/src/xslt/util/language-frontend-module-generators/sh-from-topo-sort-list-generator.xsl ------------------------------------------------------------------------------ svn:eol-style = native