What are CAD applications (Rhino, Autocad) of today written in and how are they organized internally ?
I gave as an example, Autocad and Rhino, although I would love to hear of ... |
I'm using java to run a command line utility written in Rhino but if there is an error I need to return that error back to the shell so processing stops. ... |
Anyone understands the rhino javascript Contexts? I cannot find any useful documentation about it. My main problem is the Context.exit() (really should be cx.exit()) which from what I understand ... |
I'd like fileName, lineNumber and stack traces to automatically be provided by Rhino for any errors.
I've been told that I need to set FEATURE_LOCATION_INFORMATION_IN_ERROR on the current context, but I'm not ... |
I'm using Rhino to generate XHTML but my urls are being encoded as in:
-http://www.example.com/test.html?a=b&c=d
becomes
-http://www.example.com/test.html?a=b&c=d
Failing test case as follows:
public class E4XUrlTest extends TestCase {
public void testJavascript() throws Exception ...
|
I'm trying to use a recent version of Rhino in an ant tag, but it seems to be using the version of Rhino that comes bundled with the JVM instead. ... |
In my current project I am working with Boo/Rhino DSL (what a great thing(s) by the way).
In digging in the code I came across the following piece ... |
|
I have some services which i want to be able to publish and subscribe to messages from.
I have a backend bus console app which has the following configuration:
<configSections>
<section name="castle" type="Castle.Windsor.Configuration.AppDomain.CastleSectionHandler, Castle.Windsor" ...
|
I am trying to set up a pub sub using msmq and rhino.esb. I have the publisher on one server and the subscriber on the other. When running locally with everything ... |
in the course of writing a robust message infrastructure on a windows network, i've decided to use a service bus on top of msmq; since i wanted to keep the overhead ... |
I'm looking to add scripting into my Java app and JavaScript would be a great language choice. My concern though is the Rhino project and its future.
While Groovy/Jruby etc have seen ... |
For the fun of it, I tried running JSLinux in Rhino using envjs and it doesn't seem to throw any errors, nor does it seem to work.
As mentioned here: How ... |
I want do compile all *.less scripts in a specific folder and it subdirs with less-rhino-1.1.3.js.
There is an example on github for doing this for a specific file, which works ... |
Has anyone managed to parse and write JSON in a task in Ant?
I need to parse a json file, modify it and then write it back on disk. I managed ... |
Is it possible to redirect the output from the Context.evaluateString(...) to a Writer? I am looking for something that is similar to ScriptContext.setWriter (http://download.oracle.com/javase/6/docs/api/javax/script/ScriptContext.html#setWriter%28java.io.Writer%29) provided with jdk 6. ... |
I understand ClojureScript can be executed within a JavaScript REPL or it can be compiled into JavaScript, then run in a browser. I couldn't find a way to use it ... |
I have some javascript code that uses functions defined in Java with Rhino.
I'm trying to test it in the jasmine-maven-plugin. I'm rather flummoxed by how to get the defineClass to happen.
defineClass ... |
Good day,
I have recently started playing with RingoJS along with Stick middleware and I am now stuck with sessions. I can't make it work.
main.js
var {Application} = require( ...
|