├── .gitignore ├── .gitlab-ci.yml ├── .pre-commit-config.yaml ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.rst ├── assets └── nagare.js ├── conf └── assets.yaml ├── entry-points.txt ├── pyproject.toml ├── src └── nagare │ ├── __init__.py │ ├── action.py │ ├── component.py │ ├── continuation.py │ ├── custom_build │ ├── __init__.py │ ├── backend.py │ └── build_assets.py │ ├── renderers │ ├── __init__.py │ ├── html.py │ ├── html5.py │ ├── xhtml.py │ └── xhtml5.py │ ├── server │ ├── __init__.py │ └── application.py │ ├── services │ ├── __init__.py │ ├── callbacks.py │ ├── core_exceptions.py │ ├── core_static.py │ ├── create_root.py │ ├── prg.py │ └── state.py │ └── state.py └── tests ├── test_component.py ├── test_html.py └── test_view.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | prune doc 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/README.rst -------------------------------------------------------------------------------- /assets/nagare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/assets/nagare.js -------------------------------------------------------------------------------- /conf/assets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/conf/assets.yaml -------------------------------------------------------------------------------- /entry-points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/entry-points.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/nagare/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/__init__.py -------------------------------------------------------------------------------- /src/nagare/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/action.py -------------------------------------------------------------------------------- /src/nagare/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/component.py -------------------------------------------------------------------------------- /src/nagare/continuation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/continuation.py -------------------------------------------------------------------------------- /src/nagare/custom_build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/custom_build/__init__.py -------------------------------------------------------------------------------- /src/nagare/custom_build/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/custom_build/backend.py -------------------------------------------------------------------------------- /src/nagare/custom_build/build_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/custom_build/build_assets.py -------------------------------------------------------------------------------- /src/nagare/renderers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/renderers/__init__.py -------------------------------------------------------------------------------- /src/nagare/renderers/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/renderers/html.py -------------------------------------------------------------------------------- /src/nagare/renderers/html5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/renderers/html5.py -------------------------------------------------------------------------------- /src/nagare/renderers/xhtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/renderers/xhtml.py -------------------------------------------------------------------------------- /src/nagare/renderers/xhtml5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/renderers/xhtml5.py -------------------------------------------------------------------------------- /src/nagare/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/server/__init__.py -------------------------------------------------------------------------------- /src/nagare/server/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/server/application.py -------------------------------------------------------------------------------- /src/nagare/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/services/__init__.py -------------------------------------------------------------------------------- /src/nagare/services/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/services/callbacks.py -------------------------------------------------------------------------------- /src/nagare/services/core_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/services/core_exceptions.py -------------------------------------------------------------------------------- /src/nagare/services/core_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/services/core_static.py -------------------------------------------------------------------------------- /src/nagare/services/create_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/services/create_root.py -------------------------------------------------------------------------------- /src/nagare/services/prg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/services/prg.py -------------------------------------------------------------------------------- /src/nagare/services/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/services/state.py -------------------------------------------------------------------------------- /src/nagare/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/src/nagare/state.py -------------------------------------------------------------------------------- /tests/test_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/tests/test_component.py -------------------------------------------------------------------------------- /tests/test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/tests/test_html.py -------------------------------------------------------------------------------- /tests/test_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nagareproject/core/HEAD/tests/test_view.py --------------------------------------------------------------------------------