ose-plugin-addicto 0.2.5__tar.gz → 0.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/PKG-INFO +3 -3
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/pyproject.toml +3 -3
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto/__init__.py +7 -0
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto.egg-info/PKG-INFO +3 -3
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto.egg-info/SOURCES.txt +0 -1
- ose_plugin_addicto-0.3.1/src/ose_plugin_addicto.egg-info/requires.txt +2 -0
- ose_plugin_addicto-0.2.5/src/ose_plugin_addicto/static/ose-plugin-addicto.js +0 -39
- ose_plugin_addicto-0.2.5/src/ose_plugin_addicto.egg-info/requires.txt +0 -2
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/README.md +0 -0
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/setup.cfg +0 -0
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto/AddictOVocabClient.py +0 -0
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto/AddictOVocabReleaseStep.py +0 -0
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto/AddictOVocabService.py +0 -0
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto/main.py +0 -0
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto/static/ose-plugin-addicto.umd.cjs +0 -0
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto.egg-info/dependency_links.txt +0 -0
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto.egg-info/entry_points.txt +0 -0
- {ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto.egg-info/top_level.txt +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ose-plugin-addicto
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: OntoSpreadEd plugin for AddictO services and workflows
|
|
5
5
|
Requires-Python: >=3.12
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
7
|
-
Requires-Dist: ose-core==0.
|
|
8
|
-
Requires-Dist: ose-plugin-hbcp==0.
|
|
7
|
+
Requires-Dist: ose-core==0.3.1
|
|
8
|
+
Requires-Dist: ose-plugin-hbcp==0.3.1
|
|
9
9
|
|
|
10
10
|
# OSE Plugin: AddictO
|
|
11
11
|
|
|
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ose-plugin-addicto"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.3.1"
|
|
8
8
|
description = "OntoSpreadEd plugin for AddictO services and workflows"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.12"
|
|
11
11
|
dependencies = [
|
|
12
|
-
"ose-core==0.
|
|
13
|
-
"ose-plugin-hbcp==0.
|
|
12
|
+
"ose-core==0.3.1",
|
|
13
|
+
"ose-plugin-hbcp==0.3.1",
|
|
14
14
|
]
|
|
15
15
|
|
|
16
16
|
[project.entry-points.'ose.plugins']
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
from importlib.metadata import version, PackageNotFoundError
|
|
2
|
+
|
|
3
|
+
try:
|
|
4
|
+
__version__ = version("ose-plugin-addicto")
|
|
5
|
+
except PackageNotFoundError:
|
|
6
|
+
__version__ = "unknown"
|
|
7
|
+
|
|
1
8
|
from ose.model.Plugin import Plugin, PluginComponent
|
|
2
9
|
from .AddictOVocabReleaseStep import AddictOVocabReleaseStep
|
|
3
10
|
|
{ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto.egg-info/PKG-INFO
RENAMED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ose-plugin-addicto
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: OntoSpreadEd plugin for AddictO services and workflows
|
|
5
5
|
Requires-Python: >=3.12
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
7
|
-
Requires-Dist: ose-core==0.
|
|
8
|
-
Requires-Dist: ose-plugin-hbcp==0.
|
|
7
|
+
Requires-Dist: ose-core==0.3.1
|
|
8
|
+
Requires-Dist: ose-plugin-hbcp==0.3.1
|
|
9
9
|
|
|
10
10
|
# OSE Plugin: AddictO
|
|
11
11
|
|
{ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto.egg-info/SOURCES.txt
RENAMED
|
@@ -11,5 +11,4 @@ src/ose_plugin_addicto.egg-info/dependency_links.txt
|
|
|
11
11
|
src/ose_plugin_addicto.egg-info/entry_points.txt
|
|
12
12
|
src/ose_plugin_addicto.egg-info/requires.txt
|
|
13
13
|
src/ose_plugin_addicto.egg-info/top_level.txt
|
|
14
|
-
src/ose_plugin_addicto/static/ose-plugin-addicto.js
|
|
15
14
|
src/ose_plugin_addicto/static/ose-plugin-addicto.umd.cjs
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { defineComponent as r, createElementBlock as a, openBlock as e, Fragment as o, createElementVNode as s, createBlock as d, createCommentVNode as c, renderList as u, toDisplayString as n, unref as h, withCtx as m, createTextVNode as p } from "vue";
|
|
2
|
-
import { ProgressIndicator as g } from "@ose/js-core";
|
|
3
|
-
const b = { class: "alert alert-danger" }, y = { key: 1 }, k = { key: 2 }, O = /* @__PURE__ */ r({
|
|
4
|
-
__name: "AddictOVocab",
|
|
5
|
-
props: {
|
|
6
|
-
data: {},
|
|
7
|
-
release: {},
|
|
8
|
-
selectedSubStep: {}
|
|
9
|
-
},
|
|
10
|
-
emits: ["release-control"],
|
|
11
|
-
setup(t) {
|
|
12
|
-
return (f, i) => (e(), a(o, null, [
|
|
13
|
-
i[1] || (i[1] = s("h3", null, "Publishing the release", -1)),
|
|
14
|
-
t.release.state === "waiting-for-user" && t.data?.errors?.length > 0 ? (e(!0), a(o, { key: 0 }, u(t.data.errors, (l) => (e(), a("div", b, [
|
|
15
|
-
l.details && l?.response?.["hydra:description"] ? (e(), a(o, { key: 0 }, [
|
|
16
|
-
s("h4", null, n(l.response["hydra:title"]), 1),
|
|
17
|
-
s("p", null, n(l.details), 1),
|
|
18
|
-
s("p", null, n(l.response["hydra:description"]), 1)
|
|
19
|
-
], 64)) : (e(), a("pre", y, n(JSON.stringify(l, void 0, 2)), 1))
|
|
20
|
-
]))), 256)) : (e(), d(h(g), {
|
|
21
|
-
key: 1,
|
|
22
|
-
details: t.data,
|
|
23
|
-
release: t.release
|
|
24
|
-
}, {
|
|
25
|
-
default: m(() => [...i[0] || (i[0] = [
|
|
26
|
-
s("p", null, [
|
|
27
|
-
p(" The ontologies are being published to AddictOVocab. This will take a while."),
|
|
28
|
-
s("br")
|
|
29
|
-
], -1)
|
|
30
|
-
])]),
|
|
31
|
-
_: 1
|
|
32
|
-
}, 8, ["details", "release"])),
|
|
33
|
-
t.release.state === "completed" ? (e(), a("p", k, " The ontologies were published to AddictOVocab. ")) : c("", !0)
|
|
34
|
-
], 64));
|
|
35
|
-
}
|
|
36
|
-
});
|
|
37
|
-
export {
|
|
38
|
-
O as AddictOVocab
|
|
39
|
-
};
|
|
File without changes
|
|
File without changes
|
{ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto/AddictOVocabClient.py
RENAMED
|
File without changes
|
|
File without changes
|
{ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto/AddictOVocabService.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ose_plugin_addicto-0.2.5 → ose_plugin_addicto-0.3.1}/src/ose_plugin_addicto.egg-info/top_level.txt
RENAMED
|
File without changes
|