Mozilla Rhino is a JavaScript interpreter written in Java.
1
vote
0answers
16 views
GPL v 3 & Scripts
I'm not asking for legal advice; just some rough guidance.
I have a host application in Java that uses the Rhino JS engine to execute JavaScript. That JavaScript can then make calls into other Java ...
-2
votes
0answers
39 views
Change names of variables in javascript using rhino
I am trying to create a very simple JavaScript obfuscator.
Can someone give me examples of changing variable name and altering the code using rhino?
If I have some code like this:
x = 2
if(x>1)
z ...
2
votes
1answer
26 views
Rhino: Access Java interface variables in Javascript implementation
Rhino: How to access Java interface variables in Javascript implementation?
I expose a java interface for some other party to let them provide an implementation for the same in javascript.
public ...
1
vote
0answers
18 views
Java Scripting (jsr223): is it possible to (re)add the rhino compile feature
Oracle incuded a stripped rhino in jdk6
One of the stripped features is the rhino js to bytecode compiler
Is it possible to include it at application level?
Id like to increase the performance ...
0
votes
0answers
5 views
record action rhinoscript? similar to photoshop
I'm learning some python script at the moment, very new to it. I am having some trouble with the overall syntax I have read the Python for rhino 5 manual but it seems to take me a lot of trial and ...
0
votes
1answer
30 views
Running JavaScript within a Service in Android
I have business logic that is written in JavaScript, this code is shared with other non-android apps.
What is the best way to use the functions in this piece of JavaScript from within a Service in ...
0
votes
0answers
46 views
How to get the style content from html file?
I have 1 html file with internal styles defined within head.
I am using Rhino and reading this file using readFile(welcome.html)
I want to get all the contents between ... tags and have to write in ...
0
votes
2answers
34 views
using Rhino, I've got a “ReferenceError” exception
I've got an error using Rhino(17R4).
My Goal is indent a javascript source code using jsbeautifier.js.
here's my code:
import java.io.InputStream;
import org.mozilla.javascript.Context;
import ...
1
vote
1answer
29 views
Instantiating an abstract class in Rhino interpreter in Java Scripting
I am using javax.script.* with Rhino for scripting in a Java program.
A script can implement an interface just fine, but when I try to use similar syntax to instantiate an abstract class(giving the ...
0
votes
1answer
12 views
csslint cli running in rhino gets stuck (win7)
I am trying to get the csslint - cli ( https://github.com/stubbornella/csslint ) to run on my system (windows 7).
After typing in java -jar rhino\js.jar csslint-rhino.js styles.css and hitting enter ...
1
vote
1answer
9 views
CSSlint 'overqualified' error with unknown tokens ''
For some reason when I run Css lint with Rhino I get the following errors:
I'm working with:
Windows server Server 2008
Visual Studio 2012 (MVC 4)
Java version "1.7.0_21"
rhino version 1_6R7
...
1
vote
0answers
27 views
Cannot compile javascript files in NetBeans using Rhino
My goal is to create a project (don't know yet if it has to be html5 or java project) in netbeans, add js file with any line of code and then press compile it and run.
I wuld like to have my js files ...
0
votes
0answers
33 views
Can I use Xtext for a DSL containing javascript?
I am looking at using Xtext to create an eclipse plugin for a custom language. This language is xml-like for the most part, however javascript can also be using within script tags- see below for ...
1
vote
1answer
79 views
Call javascript(jQuery/Envjs) from java code
I am trying to execute Javascript code from Java. Javascript code uses jquery so I prepend the jquery.js before my code. But it throws following exception,
Exception in thread "main" ...
1
vote
0answers
27 views
What does Rhino accept as valid names for object properties?
I am trying to process the data from a NativeObject, but I have found a small issue with the naming of the object properties. The JavaScript code for the object is:
var mainObject = {
...
1
vote
1answer
20 views
Rhino: Retrieving the Line No and Column No
I am running my own proxy objects which extend org.mozilla.javascript.ScriptableObject.
I also have my own functions which extend org.mozilla.javascript.Function.
My desire is to have any exceptions ...
1
vote
0answers
25 views
Batik/Rhino JavaScript support?
Just want to get a sanity check on this before wasting too much time - does Batik actually have usable JavaScript support in its SVG display and rasteriser?
Problem: I've got code which generates SVG ...
0
votes
1answer
34 views
How to stub a function and define equality comparer for a Reference Type parameter
I basically want to stub a function, but define my own equality comparer for a Reference Type parameter.
I want to stub a function to return data. I want the parameter of the method to compare by a ...
0
votes
1answer
49 views
Rhino and envjs: share Javascript objects with Java application
I'm using rhino and envjs embedded in my java application as described in the envjs guide
Java code:
import org.mozilla.javascript.Context;
import org.mozilla.javascript.ContextFactory;
import ...
1
vote
1answer
36 views
Dojo not getting loaded into rhino emmbedded in java
I'm trying to render the dojo charts server side. I came across the Rhino and envjs for server side browser emulation. when I tried to an example program to load the dojo.js in the rhino embedded in ...
0
votes
0answers
24 views
Getting EvaluatorException in an ANT script
I have a target in my build.xml that looks like this:
<target name="-ValidateManifest" depends="init">
<echo message="Validating manifest from ${load.file}"/>
<script ...
2
votes
1answer
35 views
How to write “AstRoot” object to a file including comments using Rhino?
I've already parsed javascript source using Rhino and reconstructed it successfully.
and when I call astroot.toSource(), it shows to me reconstructed source well.
but .toSource() method can't prints ...
0
votes
0answers
20 views
Orientdb javascript functions import external js libraries
I was wondering if it were possibile to load external javascript libraries ( require()? load()?) from within a orientdb javascript server function. Rhino should support it, right?
Any help ...
0
votes
1answer
47 views
mocking database objects with Rhino mock
I am sorry if this question is already been asked. I am very new to Unit Testing and I am suppose to use Rhino for mocking.
So the problem is...I have a method to test and that method is suppose to ...
1
vote
2answers
148 views
How do I wrap a call to a Google Apps Script function that accepts unlimited arguments
Some Google Apps Script functions like Logger.log() and Utility.formatString() accept unlimited arguments.
I would like to wrap a call to Logger.log() or Utility.formatString() so that in the ...
1
vote
0answers
82 views
Generate JQPlot charts in Server
We are using JQplot for generating charts and so far everything has worked like a charm. However we are facing a blocking issue.
As per the user requirements, we need to display all charts in form ...
0
votes
1answer
41 views
Mozilla Rhino NativeArray.add() is throwing an error - always
I'm looking for build a javascript array in java using mozilla rhino NativeArray class,
however when I try to add elements to NativeArray a java.lang.UnsupportedOperationException is thrown.
here is ...
0
votes
1answer
157 views
Insert multiple rows - java prepared statement failing
--SOLVED--Turned out to be a problem with our Shareplow install--Thanks for the tries guys--
Per the answer on Performance of MySQL Insert statements in Java: Batch mode prepared statements vs single ...
0
votes
1answer
26 views
Mozilla Rhino Character Encoding
Can somebody describe how to specify character encodings properly in JavaScript Rhino for me please?
I am reasonably familiar with sorting out encoding issues between a Java application and the ...
2
votes
1answer
35 views
in Rhino, can I enumerate the list of available Java packages? How?
I tried doing this:
var r = {};
for (p in Packages) {
if (Packages.hasOwnProperty(p)) {
r[p] = p.toString();
}
}
...But I got an error:
TypeError: Invalid iterator value ... at line xx ...
1
vote
3answers
87 views
List built in Javascript standard object methods
Is there a way to list all javascript standard object method?
I mean I'm trying to get all the built in methods of String so I was thinking and I did tried doing this:
for( var method in String ){
...
1
vote
1answer
82 views
AMD Optimizer (r.js) doesn't produce any output
Disclaimer: I'm a total AMD n00b.
I have a project that I'm trying to convert over to AMD. Originally, all the code was in a single file. I was able to split functional units into their own modules, ...
0
votes
1answer
98 views
Rhino setting a NativeObject property in java
I have a javascript script which when evaluated returns a NativeObject
obj = context.evaluateString(scope,"({age:3, name:'bob'})", "<source">, 1, null)
I then cast obj as either a ...
1
vote
1answer
128 views
Using Rhino's Javascript parser, how to get the comments?
I have some javascript files and parse it using Rhino's javascript parser.
but I can't get the comments.
How can I get the comments?
here's a part of my code.
run this code, "comment" variable has ...
3
votes
1answer
52 views
Rhino: load multiple scripts in command line with -e 'load([…])' option
I'm trying to run multiple scripts with Rhino shell using the command:
java org.mozilla.javascript.tools.shell.Main -e 'load(["script_a.js", "script_b.js"])'
And here is the error:
js: Couldn't ...
1
vote
2answers
72 views
Rhino JS / ScriptEngine from Java - integers in, doubles out?
I'm trying out Rhino to embed Javascript in Java. I noticed that when I eval a script that adds two ints together in Javascript, the result comes back as a Double.
ScriptEngine engine = new ...
0
votes
0answers
60 views
Why am I unable to return empty string in Javscript [closed]
I am using Javas Rhino javascript engine, this function is valid
function pad(number, length) {
var str = '' + number;
while (str.length < length) {
str = '0' + str;
}
...
0
votes
1answer
69 views
Envjs and Rhino in a Java application - Where to find env.rhino.js?
I'm trying to run envjs and Rhino in a java application to render SVGs with D3.js.
So far, I can evaluate smaller functions using Rhino but when it comes to setting up envjs, the problems begin. The ...
0
votes
1answer
79 views
Mozilla Rhino 1_7R4 Extending Abstract Class ( JS )
I'm using Mozilla's implementation of Rhino (not the one bundled with the JDK). Having read this thread: How to subclass an inner (static) class in Rhino? -- I thought that I was on the right track, ...
0
votes
0answers
44 views
Is there an alternate way to get console input from Rhino to Javascript?
I'm attempting to run Javascript program through Rhino. Part of this program will require Cyrillic characters to be read from the console. I've come to the conclusion (perhaps incorrectly) that Rhino ...
1
vote
1answer
129 views
JavaScript function invocation in Java Code
I pass a function from JavaScript file into Java code. JavaScript function looks like:
entity.handler = function(arg1, arg2) {
//do something
};
In Java code the class implements the Scriptable ...
0
votes
0answers
70 views
YUI Compressor 2.4.7 - No class def error ErrorReporter
I have a problem with the YUI Compressor for js: I've added version 2.4.7 to my build path in Eclipse ( tried with rhino jar and also without) - no effect whatsoever. I dont get compile errors, I can ...
2
votes
1answer
155 views
BIRT report designer can't see my java classes
We are developing a couple reports with BIRT, that will be run through the report engine API to produce .XLS or .PDF output according to user's choice. We are using BIRT RCP Designer 4.2.1 ...
0
votes
1answer
99 views
A Windows application which uses Rhino JavaScript engine?
Is there a Windows application and a solution which is an IDE, and can execute the JavaScript sources, as if it is in Mozilla Firefox, meaning that it uses Rhino JavaScript Engine.
Except Mozilla ...
1
vote
0answers
29 views
Passing custom build options to closure when building with stealjs
I am using JavascriptMVC to build an app with StealJS build functionality. This is my build.js:
load("steal/rhino/rhino.js");
...
0
votes
1answer
56 views
Problems generating ant scripts for java when linking to Rhino
When I try to build my project using ant, I get:
"java.lang.NoClassDefFoundError: sun/org/mozilla/javascript/internal/Scriptable"
This stems from my usage of Rhino (the bundled java-script that comes ...
0
votes
1answer
33 views
very backwards compatible .every function
I'm implementing the .every function on an array. I'm in an old javascript engine environment and the function below didn't make the compiler too happy (Rhino). The version of javascript is ECMA 262 ...
0
votes
0answers
41 views
Rhino Shell, -sandbox option. What does it do?
I expect that new '-sandbox' (Rhino 1.7 R3) shell option do something like this.
But rhino allow me to successfully execute the following code:
js> importClass(java.io.File)
js> f = new ...
0
votes
1answer
30 views
Unable to set up rhino debugger as a project in my IDE
I am trying to tweak Rhino debugger work with my servlet so I downloaded the sources and for some reason I having some difficulties to set up the project properly in my IDE (intellij).
I have tried ...
2
votes
1answer
265 views
Recursive method 10x slower than interative [closed]
The code is cleaned as far as i could to show my problem.
Basically its an octree search+intersect.
the intersect function comes from an SDK (the whole project is a plugin for rhino).
If i make a loop ...



