You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2023/03/23 13:16:48 UTC

[jena] branch main updated (3a0ba71ea7 -> 3e883d945d)

This is an automated email from the ASF dual-hosted git repository.

andy pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/jena.git


    from 3a0ba71ea7 Merge pull request #1806 from afs/misc
     new 7e912718a8 Disallow some interpreter built-in functions
     new 795233e930 System property to enable scripting
     new abecfb7a15 Don't log stacktrace for ExprException
     new 3e883d945d Merge pull request #1809 from afs/js

The 10608 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/main/java/org/apache/jena/query/ARQ.java   |  12 ++-
 .../sparql/function/scripting/ScriptFunction.java  |  84 +++++++++------
 ...LanguageSymbols.java => ScriptLangSymbols.java} |   2 +-
 .../function/scripting/TS_FunctionScripting.java   |   2 +
 .../sparql/function/scripting/TestNoScripting.java | 116 +++++++++++++++++++++
 .../function/scripting/TestSPARQL_Scripting.java   |  16 ++-
 .../function/scripting/TestScriptFunction.java     |  20 ++--
 .../apache/jena/fuseki/servlets/ActionExecLib.java |   4 +
 8 files changed, 210 insertions(+), 46 deletions(-)
 rename jena-arq/src/main/java/org/apache/jena/sparql/function/scripting/{LanguageSymbols.java => ScriptLangSymbols.java} (97%)
 create mode 100644 jena-arq/src/test/java/org/apache/jena/sparql/function/scripting/TestNoScripting.java