Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

T8 #705

Merged
merged 3 commits into from
Sep 21, 2023
Merged

T8 #705

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildos.js
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ try {
"xml": OPENAF_BUILD_HOME + "/src/openaf/plugins/XML.java",
//"xls": OPENAF_BUILD_HOME + "/src/openaf/plugins/XLS.java",
//"svn": OPENAF_BUILD_HOME + "/src/openaf/plugins/SVN.java",
"git": OPENAF_BUILD_HOME + "/src/openaf/plugins/GIT.java",
//"git": OPENAF_BUILD_HOME + "/src/openaf/plugins/GIT.java",
//"smb": OPENAF_BUILD_HOME + "/src/openaf/plugins/SMB.java",
"zip": OPENAF_BUILD_HOME + "/src/openaf/plugins/ZIP.java",
//"ignite": OPENAF_BUILD_HOME + "/src/openaf/plugins/Ignite.java",
Expand Down
3 changes: 3 additions & 0 deletions js/openaf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3365,6 +3365,9 @@ const plugin = function(aPlugin, aClass) {
if (String(e).indexOf("java.lang.ClassNotFoundException: DOC") >= 0) {
throw("The DOC plugin is no longer included. Please install the XLS oPack (\"opack install plugin-xls\").");
}
if (String(e).indexOf("java.lang.ClassNotFoundException: GIT") >= 0) {
throw("The GIT plugin is no longer included. Please install the GIT oPack (\"opack install plugin-git\").");
}
}
}

Expand Down
Binary file removed lib/org.eclipse.jgit-5.13.2.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion ojob.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ojob.saved.json

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions ojob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1395,10 +1395,11 @@ jobs:
if (isDef(args.__from)) f = $path(f, args.__from)

ow.loadObj()
if (isDef(args.__type) && args.__type == "path") {
f = $path(f, args.__query)
} else {
f = ( isString(args.__query) ? $from(f).query(af.fromNLinq(args.__query)) : $from(f).query(args.__query) )
switch(args.__type) {
case "path" : f = $path(f, args.__query); break
case "sql" : f = $sql(f, args.__query); break
case "nlinq":
default : f = ( isString(args.__query) ? $from(f).query(af.fromNLinq(args.__query)) : $from(f).query(args.__query) )
}

if (args.__key != "args") {
Expand Down
Loading
Loading