Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

TOD convert to JSON

Code Block
languagejava
{
	"display": string, 
	"globals": { } // see GlobalScriptPojo below
}

//////////////////////////////////
	public static class GlobalScriptPojo {
		public List<String> imports; // An optional list of URLs that get imported before the scripts below are run
		public List<String> scripts; // A list of (java)script code blocks that are evaluated in order (normally only need to specify one)
		public String scriptlang; // Currently only "javascript" is supported
	}

...