iolanta 2.1.14__tar.gz → 2.1.15__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.
- {iolanta-2.1.14 → iolanta-2.1.15}/PKG-INFO +2 -1
- {iolanta-2.1.14 → iolanta-2.1.15}/pyproject.toml +2 -1
- {iolanta-2.1.14 → iolanta-2.1.15}/README.md +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/base_plugin.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/cli/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/cli/formatters/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/cli/formatters/choose.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/cli/formatters/csv.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/cli/formatters/json.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/cli/formatters/pretty.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/cli/main.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/cli/models.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/cli/pretty_print.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/context.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/conversions.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/data/context.yaml +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/data/graph-triples.yamlld +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/data/iolanta.yaml +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/data/textual-browser.yaml +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/declension/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/declension/data/declension.yamlld +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/declension/facet.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/declension/sparql/declension.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/ensure_is_context.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/entry_points.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/errors.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/cli/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/cli/base.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/cli/default.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/cli/record.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/cli/sparql/link.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/cli/sparql/record.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/errors.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/facet.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/foaf_person_title/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/foaf_person_title/facet.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/foaf_person_title/sparql/names.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/generic/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/generic/bool_literal.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/generic/date_literal.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/generic/default.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/generic/sparql/default.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/html/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/html/base.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/html/code_literal.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/html/default.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/icon.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/locator/sparql/get-query-to-facet.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/locator.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/mermaid_roadmap/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/mermaid_roadmap/facet.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/mermaid_roadmap/inference/blocks.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/mermaid_roadmap/inference/has-task-default-type.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/mermaid_roadmap/inference/task.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/mermaid_roadmap/inference/unblocked.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/mermaid_roadmap/mermaid_roadmap.yamlld +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/mermaid_roadmap/sparql/edges.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/mermaid_roadmap/sparql/nodes.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/mkdocs_material_insiders_markdown/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/mkdocs_material_insiders_markdown/data/mkdocs_material_insiders_markdown.yamlld +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/mkdocs_material_insiders_markdown/facet.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/mkdocs_material_insiders_markdown/templates/datatype.jinja2.md +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/page_title.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/qname.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/query/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/query/ask_result_csv.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/query/ask_result_json.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/query/ask_result_table.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/query/construct_result_csv.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/query/construct_result_json.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/query/construct_result_table.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/query/data/query_result.yamlld +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/query/select_result_csv.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/query/select_result_json.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/query/select_result_table.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_browser/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_browser/app.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_browser/facet.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_browser/history.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_browser/home.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_browser/location.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_browser/models.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_browser/page.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_browser/page_switcher.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_class/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_class/facets.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_class/sparql/instances.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_class/textual-class.yamlld +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_default/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_default/facets.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_default/sparql/inverse-properties.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_default/sparql/label.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_default/sparql/nodes-for-property.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_default/sparql/properties.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_default/tcss/default.tcss +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_default/templates/default.md +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_default/textual-inverse-properties.yamlld +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_default/triple_uri_ref.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_default/widgets.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_graph/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_graph/facets.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_graph/sparql/triples.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_graph_triples.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_graphs/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_graphs/data/textual_graphs.yamlld +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_graphs/facets.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_graphs/sparql/graphs.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_link/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_link/facet.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_nanopublication/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_nanopublication/facet.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_nanopublication/models.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_nanopublication/nanopublication_widget.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_nanopublication/term_list_widget.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_nanopublication/term_widget.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_no_facet_found.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_ontology/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_ontology/facets.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_ontology/sparql/terms.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_ontology/sparql/visualization-vocab.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_property_pairs_table.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_provenance/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_provenance/facets.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_provenance/sparql/graphs.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_provenance/sparql/triples.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/title/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/title/facets.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/title/sparql/title.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/title/title.yamlld +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/wikibase_statement_title/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/wikibase_statement_title/facets.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/wikibase_statement_title/sparql/statement-title.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/iolanta.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/labeled_triple_set/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/labeled_triple_set/data/labeled_triple_set.yamlld +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/labeled_triple_set/labeled_triple_set.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/labeled_triple_set/sparql/triples.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/mcp/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/mcp/cli.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/mermaid/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/mermaid/facet.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/mermaid/mermaid.yamlld +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/mermaid/models.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/mermaid/sparql/ask-has-triples.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/mermaid/sparql/graph.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/mermaid/sparql/subgraphs.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/models.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/namespaces.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/node_to_qname.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/parse_quads.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/plugin.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/query_result.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/reformat_blank_nodes.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/resolvers/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/resolvers/base.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/resolvers/dispatch.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/resolvers/pypi.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/resolvers/python_import.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/sparqlspace/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/sparqlspace/cli.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/sparqlspace/inference/wikidata-prop-label.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/sparqlspace/inference/wikidata-statement-label.sparql +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/sparqlspace/processor.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/sparqlspace/redirects.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/sparqlspace/sparqlspace.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/widgets/__init__.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/widgets/description.py +0 -0
- {iolanta-2.1.14 → iolanta-2.1.15}/iolanta/widgets/mixin.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: iolanta
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.15
|
|
4
4
|
Summary: Semantic Web browser
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Anatoly Scherbakov
|
|
@@ -20,6 +20,7 @@ Requires-Dist: documented (>=0.1.1)
|
|
|
20
20
|
Requires-Dist: dominate (>=2.6.0)
|
|
21
21
|
Requires-Dist: fastmcp (>=2.12.4,<3.0.0)
|
|
22
22
|
Requires-Dist: funcy (>=2.0)
|
|
23
|
+
Requires-Dist: jinja2 (>=3.1.0)
|
|
23
24
|
Requires-Dist: loguru (>=0.7.3)
|
|
24
25
|
Requires-Dist: more-itertools (>=9.0.0)
|
|
25
26
|
Requires-Dist: nanopub (>=2.1.0,<3.0.0)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "iolanta"
|
|
3
|
-
version = "2.1.
|
|
3
|
+
version = "2.1.15"
|
|
4
4
|
description = "Semantic Web browser"
|
|
5
5
|
authors = ["Anatoly Scherbakov <altaisoft@gmail.com>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -8,6 +8,7 @@ readme = "README.md"
|
|
|
8
8
|
|
|
9
9
|
[tool.poetry.dependencies]
|
|
10
10
|
python = ">=3.12,<4.0"
|
|
11
|
+
jinja2 = ">=3.1.0"
|
|
11
12
|
rdflib = "<8.0"
|
|
12
13
|
python-frontmatter = ">=0.5.0"
|
|
13
14
|
requests = ">=2.25.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/mkdocs_material_insiders_markdown/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_default/sparql/inverse-properties.sparql
RENAMED
|
File without changes
|
|
File without changes
|
{iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_default/sparql/nodes-for-property.sparql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_default/textual-inverse-properties.yamlld
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_nanopublication/nanopublication_widget.py
RENAMED
|
File without changes
|
{iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_nanopublication/term_list_widget.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{iolanta-2.1.14 → iolanta-2.1.15}/iolanta/facets/textual_ontology/sparql/visualization-vocab.sparql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{iolanta-2.1.14 → iolanta-2.1.15}/iolanta/sparqlspace/inference/wikidata-statement-label.sparql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|