Revision: 4221 http://vexi.svn.sourceforge.net/vexi/?rev=4221&view=rev Author: mkpg2 Date: 2011-09-11 21:48:13 +0000 (Sun, 11 Sep 2011) Log Message: ----------- Update build. Checkin trivial uncommited changes.
Modified Paths: -------------- trunk/_ebuild/seed/version trunk/org.vexi-build.shared/meta/module.revisions trunk/org.vexi-core.devtools/meta/module.xml trunk/org.vexi-core.devtools/src/main/java/org/ibex/js/ObjTree.java trunk/org.vexi-library.js/src/test/java/test/js/exec/traps/TestTraps.java trunk/org.vexi-library.net/meta/module.xml trunk/org.vexi-tools.certify/src/poke/java/dev/security/GenSigCerts.java Added Paths: ----------- trunk/org.vexi-core.devtools/src/poke/ trunk/org.vexi-core.devtools/src/poke/java/ trunk/org.vexi-core.devtools/src/poke/java/poke/ trunk/org.vexi-core.devtools/src/poke/java/poke/check/ trunk/org.vexi-library.js/src/poke/java/dev/poke_filtertrace.js trunk/org.vexi-library.js/src/test/java/test/js/exec/traps/remove_auto.js Removed Paths: ------------- trunk/org.vexi-library.js/src/poke/java/dev/poke.js Property Changed: ---------------- trunk/org.vexi-core.devtools/ Modified: trunk/_ebuild/seed/version =================================================================== --- trunk/_ebuild/seed/version 2011-09-09 04:05:37 UTC (rev 4220) +++ trunk/_ebuild/seed/version 2011-09-11 21:48:13 UTC (rev 4221) @@ -1,2 +1,2 @@ #nofetch=true -tag=0.8beta3 +tag=0.8beta5 Modified: trunk/org.vexi-build.shared/meta/module.revisions =================================================================== --- trunk/org.vexi-build.shared/meta/module.revisions 2011-09-09 04:05:37 UTC (rev 4220) +++ trunk/org.vexi-build.shared/meta/module.revisions 2011-09-11 21:48:13 UTC (rev 4221) @@ -1 +1 @@ -{"https:\/\/svn.origo.ethz.ch\/ebuild":"454"} \ No newline at end of file +{"https:\/\/svn.origo.ethz.ch\/ebuild":"464"} \ No newline at end of file Property changes on: trunk/org.vexi-core.devtools ___________________________________________________________________ Modified: svn:ignore - src_gen _vexi_test _temp_ bin .project .settings .classpath build gen lib release .configuration + src_gen _vexi_test _temp_ bin .project .settings .classpath build gen release .configuration Modified: trunk/org.vexi-core.devtools/meta/module.xml =================================================================== --- trunk/org.vexi-core.devtools/meta/module.xml 2011-09-09 04:05:37 UTC (rev 4220) +++ trunk/org.vexi-core.devtools/meta/module.xml 2011-09-11 21:48:13 UTC (rev 4221) @@ -1,11 +1,14 @@ -<ebuild-module ebuild-version="0.7"> +<ebuild-module ebuild-version="0.8"> + <artifact name="java_classes.jar" /> + <artifact name="java.zip" /> + <artifact name="jpp.zip" /> <dependencies> - <dependency source="ibiblio" org="commons-codec" name="commons-codec" version="1.4" /> - <dependency source="ibiblio" org="xmlrpc" name="xmlrpc" version="2.0.1" /> - + <dependency source="maven-public" org="commons-codec" name="commons-codec" tag="1.4" /> + <dependency source="maven-public" org="xmlrpc" name="xmlrpc" tag="2.0.1" /> + <checked-in type="java_classes.jar" name="insanelib.jar" /> + <dependency source="local" name="core.main"/> - <checked-in type="java.classes.jar" name="insanelib.jar" /> - + </dependencies> </ebuild-module> Modified: trunk/org.vexi-core.devtools/src/main/java/org/ibex/js/ObjTree.java =================================================================== --- trunk/org.vexi-core.devtools/src/main/java/org/ibex/js/ObjTree.java 2011-09-09 04:05:37 UTC (rev 4220) +++ trunk/org.vexi-core.devtools/src/main/java/org/ibex/js/ObjTree.java 2011-09-11 21:48:13 UTC (rev 4221) @@ -163,7 +163,7 @@ if(jsvalue instanceof JSNumber){ if(JSU.isInt(jsvalue)){ value = new Integer(JSU.toInt(jsvalue)); - }else if(jsvalue instanceof JSNumber.B){ + }else if(jsvalue instanceof JSBoolean){ value = new Boolean(JSU.toBoolean(jsvalue)); }else{ value = new Double(JSU.toDouble(jsvalue)); Deleted: trunk/org.vexi-library.js/src/poke/java/dev/poke.js =================================================================== --- trunk/org.vexi-library.js/src/poke/java/dev/poke.js 2011-09-09 04:05:37 UTC (rev 4220) +++ trunk/org.vexi-library.js/src/poke/java/dev/poke.js 2011-09-11 21:48:13 UTC (rev 4221) @@ -1,25 +0,0 @@ - -var f = function(){ - throw "!"; -}; - -var g = function(){ - try{ - f(); - }catch(e){ - var e2 = new sys.js.Exception(); - e2.message = "!!"; - e2.cause = e; - throw e2; - } -}; - - -try{ - g(); -}catch(e){ - sys.trace(e); - sys.log.warn(e); -} - -g(); Copied: trunk/org.vexi-library.js/src/poke/java/dev/poke_filtertrace.js (from rev 4220, trunk/org.vexi-library.js/src/poke/java/dev/poke.js) =================================================================== --- trunk/org.vexi-library.js/src/poke/java/dev/poke_filtertrace.js (rev 0) +++ trunk/org.vexi-library.js/src/poke/java/dev/poke_filtertrace.js 2011-09-11 21:48:13 UTC (rev 4221) @@ -0,0 +1,12 @@ + +var a = {value: "!"}; +var b = {a: a}; +a["parent"] = b; + +sys.trace(b); +sys.trace(a); +sys.trace(a, {ignore: [b]}); + + +var x = {(a): a}; +sys.trace(x); \ No newline at end of file Modified: trunk/org.vexi-library.js/src/test/java/test/js/exec/traps/TestTraps.java =================================================================== --- trunk/org.vexi-library.js/src/test/java/test/js/exec/traps/TestTraps.java 2011-09-09 04:05:37 UTC (rev 4220) +++ trunk/org.vexi-library.js/src/test/java/test/js/exec/traps/TestTraps.java 2011-09-11 21:48:13 UTC (rev 4221) @@ -18,7 +18,7 @@ public static void main(String[] args) throws Throwable { JSTestSuite jts = new JSTestSuite(TestTraps.class); - TestCase t = jts.createTestCase(jts.getResourceDirs(), "dont_cascade.js"); + TestCase t = jts.createTestCase(jts.getResourceDirs(), "remove_auto.js"); t.runBare(); } } Added: trunk/org.vexi-library.js/src/test/java/test/js/exec/traps/remove_auto.js =================================================================== --- trunk/org.vexi-library.js/src/test/java/test/js/exec/traps/remove_auto.js (rev 0) +++ trunk/org.vexi-library.js/src/test/java/test/js/exec/traps/remove_auto.js 2011-09-11 21:48:13 UTC (rev 4221) @@ -0,0 +1,12 @@ + +sys.import("lib"); + +var x = { }; +x.bar ++= function(){ + var r = "foo"; + trapee[trapname] = r; + trapee[trapname] --= callee; + assert(trapee[trapname]); + return r; +}; +sys.log.info("x.bar: " + x.bar); \ No newline at end of file Property changes on: trunk/org.vexi-library.js/src/test/java/test/js/exec/traps/remove_auto.js ___________________________________________________________________ Added: svn:mime-type + text/plain Modified: trunk/org.vexi-library.net/meta/module.xml =================================================================== --- trunk/org.vexi-library.net/meta/module.xml 2011-09-09 04:05:37 UTC (rev 4220) +++ trunk/org.vexi-library.net/meta/module.xml 2011-09-11 21:48:13 UTC (rev 4221) @@ -8,12 +8,15 @@ </configurations> <dependencies> - <checked-in name="httpcore-4.0.1.jar" conf="apache_http" type="java_classes.jar"/> - <dependency source="ibiblio" org="org.mortbay.jetty" name="jetty" tag="6.1.24" scope="test"/> - <dependency source="local" name="library.crypto" /> + <!-- <checked-in name="httpcore-4.0.1.jar" conf="apache_http" type="java_classes.jar"/> --> + + <dependency source="maven-public" conf="apache_http" org="org.apache.httpcomponents" name="httpclient" tag="4.1.1"/> + <dependency source="local" name="library.crypto" /> <!-- Test Dependencies --> - <dependency source="ibiblio" org="junit" name="junit" tag="3.8.2" scope="test"/> - <dependency source="local" org="org.vexi" name="library.testing" scope="test"/> + <dependency source="maven-public" org="junit" name="junit" tag="3.8.2" scope="test"/> + <dependency source="maven-public" org="org.mortbay.jetty" name="jetty" tag="6.1.24" scope="test"/> + <dependency source="local" org="org.vexi" name="library.testing" scope="test"/> + </dependencies> </ebuild-module> Modified: trunk/org.vexi-tools.certify/src/poke/java/dev/security/GenSigCerts.java =================================================================== --- trunk/org.vexi-tools.certify/src/poke/java/dev/security/GenSigCerts.java 2011-09-09 04:05:37 UTC (rev 4220) +++ trunk/org.vexi-tools.certify/src/poke/java/dev/security/GenSigCerts.java 2011-09-11 21:48:13 UTC (rev 4221) @@ -6,8 +6,11 @@ public class GenSigCerts { static public void main(String[] args) throws Exception { - - GenCompactCAList.genBinary( - new FileOutputStream("sigcerts.dat"), new File("certs/vexiroot.crt")); +// File vexi = new File("../_ebuild/credentials/secret.vexi/root.crt"); +// File compact = new File("vexicerts.dat"); + + File emanate = new File("../_ebuild/credentials/secret.emanate/root.crt"); + File compact = new File("emanate_certs.dat"); + GenCompactCAList.genBinary(new FileOutputStream(compact), emanate); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ Using storage to extend the benefits of virtualization and iSCSI Virtualization increases hardware utilization and delivers a new level of agility. Learn what those decisions are and how to modernize your storage and backup environments for virtualization. http://www.accelacomm.com/jaw/sfnl/114/51434361/ _______________________________________________ Vexi-svn mailing list Vexi-svn@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/vexi-svn