Skip to content
Snippets Groups Projects
Commit 58dda2dc authored by florian's avatar florian
Browse files

Merge branch 'main' into dev

parents ed19f2ff 1cec64c8
No related branches found
No related tags found
1 merge request!131FIX: error in regexp to match URLs
...@@ -40,7 +40,6 @@ linting: ...@@ -40,7 +40,6 @@ linting:
stage: test stage: test
script: script:
- make pylint - make pylint
allow_failure: true
# run qunit tests # run qunit tests
test: test:
......
========================
The concepts of pycaosdb
========================
Some text...
...@@ -9,7 +9,6 @@ Welcome to the documentation of LinkAhead's web UI! ...@@ -9,7 +9,6 @@ Welcome to the documentation of LinkAhead's web UI!
Manual installation <install> Manual installation <install>
Tutorials <tutorials/index> Tutorials <tutorials/index>
Concepts <concepts>
administration/index.rst administration/index.rst
Extending the UI <extension> Extending the UI <extension>
API <api/index> API <api/index>
...@@ -19,8 +18,9 @@ Welcome to the documentation of LinkAhead's web UI! ...@@ -19,8 +18,9 @@ Welcome to the documentation of LinkAhead's web UI!
Go to `demo.indiscale.com <https://demo.indiscale.com>`__ and take the interactive tour to learn Go to `demo.indiscale.com <https://demo.indiscale.com>`__ and take the interactive tour to learn
how to use LinkAhead's web interface. how to use LinkAhead's web interface.
This documentation helps you to :doc:`install the web UI <install>`, explains the most important This documentation helps you to :doc:`install the web UI <install>`, explains
:doc:`concepts<concepts>` and offers a range of :doc:`tutorials<tutorials/index>`. the most important concepts and offers a range of
:doc:`tutorials<tutorials/index>`.
Indices and tables Indices and tables
......
...@@ -96,7 +96,7 @@ def read_file(fipath, ftype): ...@@ -96,7 +96,7 @@ def read_file(fipath, ftype):
return df return df
def create_table_preview(fi): def create_table_preview(fi, entity_id):
if not ending_is_valid(fi.path): if not ending_is_valid(fi.path):
print("Cannot create preview for Entity with ID={}, because download" print("Cannot create preview for Entity with ID={}, because download"
"failed.".format(fi.id), file=sys.stderr) "failed.".format(fi.id), file=sys.stderr)
...@@ -142,4 +142,4 @@ if __name__ == "__main__": ...@@ -142,4 +142,4 @@ if __name__ == "__main__":
fi = get_file(entity_id) fi = get_file(entity_id)
create_table_preview(fi) create_table_preview(fi, entity_id)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment