Skip to content

Commit c33da3f

Browse files
committed
updated documentation and deleted some unused files
1 parent 2e5d96f commit c33da3f

File tree

18 files changed

+151
-151
lines changed

18 files changed

+151
-151
lines changed

application/Dockerfile.application

-25
This file was deleted.

application/src/tira_nginx.conf

-59
This file was deleted.

application/src/uwsgi.ini

-11
This file was deleted.

application/src/uwsgi_params

-17
This file was deleted.

documentation/conf.py

+30-27
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@
1212
#
1313
import os
1414
import sys
15-
sys.path.insert(0, os.path.abspath('../'))
15+
16+
sys.path.insert(0, os.path.abspath("./sphinxext"))
17+
sys.path.insert(0, os.path.abspath("../"))
1618

1719

1820
# -- Project information -----------------------------------------------------
1921

20-
project = 'TIRA'
21-
copyright = '2024, Webis'
22-
author = 'Webis'
22+
project = "TIRA"
23+
copyright = "2024, Webis"
24+
author = "Webis"
2325

2426

2527
# -- General configuration ---------------------------------------------------
@@ -28,42 +30,43 @@
2830
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
2931
# ones.
3032
extensions = [
31-
'sphinx.ext.autodoc',
32-
'sphinx.ext.todo',
33-
'sphinx.ext.doctest',
34-
'sphinx.ext.viewcode',
35-
'sphinx_design',
36-
'sphinxcontrib.plantuml',
37-
'sphinxcontrib.umlet',
38-
'myst_parser',
33+
"sphinx.ext.autodoc",
34+
"sphinx.ext.todo",
35+
"sphinx.ext.doctest",
36+
"sphinx.ext.viewcode",
37+
"sphinx_design",
38+
"sphinxcontrib.plantuml",
39+
"sphinxcontrib.umlet",
40+
"myst_parser",
41+
"openapi",
3942
]
4043

41-
todo_include_todos=True
42-
python_display_short_literal_types=True
43-
python_use_unqualified_type_names=True
44-
viewcode_line_numbers=True
44+
todo_include_todos = True
45+
python_display_short_literal_types = True
46+
python_use_unqualified_type_names = True
47+
viewcode_line_numbers = True
4548

46-
doctest_global_setup = '''
49+
doctest_global_setup = """
4750
from tira.io_utils import *
48-
'''
51+
"""
4952

5053
# Add any paths that contain templates here, relative to this directory.
51-
templates_path = ['_templates']
54+
templates_path = ["_templates"]
5255

5356
# List of patterns, relative to source directory, that match files and
5457
# directories to ignore when looking for source files.
5558
# This pattern also affects html_static_path and html_extra_path.
56-
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
59+
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
5760

5861

5962
# -- Options for HTML output -------------------------------------------------
6063

6164
# The theme to use for HTML and HTML Help pages. See the documentation for
6265
# a list of builtin themes.
6366
#
64-
html_theme = 'furo'
65-
html_title = 'TIRA'
66-
language = 'en'
67+
html_theme = "furo"
68+
html_title = "TIRA"
69+
language = "en"
6770

6871
html_logo = "https://assets.tira.io/tira-icons/tira-logo.svg"
6972
html_theme_options: Dict[str, Any] = {
@@ -87,15 +90,15 @@
8790
}
8891

8992

90-
plantuml_output_format = 'svg_img'
93+
plantuml_output_format = "svg_img"
9194

9295
umlet_binary_path = "/usr/share/umlet/Umlet/umlet.sh"
9396

9497
# Add any paths that contain custom static files (such as style sheets) here,
9598
# relative to this directory. They are copied after the builtin static files,
9699
# so a file named "default.css" will overwrite the builtin "default.css".
97-
html_static_path = ['_static']
100+
html_static_path = ["_static"]
98101

99102
html_css_files = [
100-
'custom.css',
101-
]
103+
"custom.css",
104+
]

documentation/development/changelog.rst

+9-3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ Removed
1818

1919

2020

21-
Alpha
22-
-----
23-
- Initial release
21+
22+
23+
24+
25+
0.0.136
26+
-------
27+
For more information, we refer to the `Release Page <https://github.com/tira-io/tira/releases/tag/0.0.136>`_.
28+
29+
- First Release using the Release Pipeline

documentation/development/devenvironment.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The development environment is quite similar to the production environment and c
8787
.. umlet-figure:: images/devenv.uxf
8888

8989
Lookup Tables for Useful Information
90-
-----------------------------------
90+
------------------------------------
9191
Root Password
9292
~~~~~~~~~~~~~
9393
You may occasionally need root privileges in the development container. The password for the root user is ``1234`` (if

documentation/development/documentation.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Documentation
2-
=============
1+
Adding Documentation
2+
====================
33
General
44
-------
55
All files relevant to TIRA's documentation can be found in the `documentation` subdirectory of the

documentation/development/specification/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Specification
1414
:link-type: doc
1515

1616
.. grid-item-card:: :octicon:`broadcast` REST API
17-
:link: restapi
17+
:link: restapi/index
1818
:link-type: doc
1919

2020
.. grid-item-card:: :octicon:`plug` Technology
@@ -28,5 +28,5 @@ Specification
2828

2929
userstories
3030
architecture
31-
restapi
31+
restapi/index
3232
technology/index

documentation/development/specification/restapi.rst documentation/development/specification/restapi/guidelines.rst

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
REST-API
2-
===================
3-
41
Guidelines
52
----------
63

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
REST-API
2+
========
3+
4+
.. toctree::
5+
:maxdepth: 2
6+
:glob:
7+
:hidden:
8+
9+
*
10+
11+
.. include-openapi:: ./development/specification/rest-api.yml
12+
:filter-tags: v1

documentation/development/specification/technology/index.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,7 @@ Technology
1010

1111
Other Resources
1212
---------------
13-
* `Semantic Versioning <https://semver.org>`_
13+
* `Semantic Versioning <https://semver.org>`_
14+
* :RFC:`3986` -- URI Syntax (esp. Section 3)
15+
* :RFC:`4395` -- Registration Guidelines for new URI Schemes
16+
* :RFC:`8615` -- ``/.well-known`` URIs

documentation/organizers/intro.rst

+1
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,5 @@ How do I...
5959

6060
.. _orgfaq:
6161
.. rubric:: Frequently Asked Questions
62+
6263
No questions yet :material-regular:`mood;1.5em;sd-text-success`.

documentation/participants/participate.rst

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Participating in a Shared Task
88

99

1010
.. _JoinTask:
11+
1112
Joining a Task and preparing your Environment
1213
---------------------------------------------
1314

@@ -59,6 +60,7 @@ out more):
5960

6061

6162
.. _SubmitSubmission:
63+
6264
Submitting your Submission
6365
--------------------------
6466
At this point, you came up with a brilliant idea and would like to submit it to TIRA for evaluation and to take pride in

0 commit comments

Comments
 (0)