From baa8b37fe683828cb2471f1616d5d8ad36e91920 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 13 Jun 2024 16:54:19 +0200 Subject: 🐛 documentation - add missing fields, sections in technical values, fix translations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile.example | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'Makefile.example') diff --git a/Makefile.example b/Makefile.example index 0ec951651..ece0024e7 100644 --- a/Makefile.example +++ b/Makefile.example @@ -58,11 +58,15 @@ compilemessages: ## compile translations cd $(CURDIR); \ $(PYTHON) $(project)/manage.py compilemessages; \ -build_doc_values: +##@ Documentation + +build_doc: build_doc_values build_doc_model_graph build_doc_changelog ## generate all documentation + +build_doc_values: ## generate technical annex 3 - values cd $(project);\ echo 'exec(open("../docs/generate_values_doc.py").read())' | $(PYTHON) ./manage.py shell -build_doc_model_graph: +build_doc_model_graph: ## generate graph models cd $(project);\ $(PYTHON) manage.py graph_models --pydot -g -I "ImporterModel,ImporterType,ImporterDefault,ImporterDefaultValues,ImporterColumn,Regexp,ImportTarget,FormaterType,Import" ishtar_common > /tmp/ishtar-imports.dot ;\ dot -Tsvg /tmp/ishtar-imports.dot -o ../docs/source/_static/db-imports.svg @@ -74,7 +78,7 @@ build_doc_model_graph: rm /tmp/ishtar-$$APP.dot ; \ done -build_doc_changelog: +build_doc_changelog: ## generate changelog - deprecated? mkdir -p docs/changelog/build/ cp -r docs/changelog/css docs/changelog/build/ cp -r docs/changelog/img docs/changelog/build/ @@ -110,8 +114,6 @@ build_doc_changelog: done ;\ done -build_doc: build_doc_values build_doc_model_graph build_doc_changelog ## generate documentation - ##@ Development: tests test: clean ## launch tests -- cgit v1.2.3