Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 35 additions & 30 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,36 +18,41 @@ I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
.PHONY: help
help:
@echo "Please use \`make <target>' where <target> is one of"
@echo " build to build the documentation in all formats (PDF, HTML and ePUB)"
@echo " build_html to build the documentation in HTML format only"
@echo " html to make standalone HTML files"
@echo " dirhtml to make HTML files named index.html in directories"
@echo " singlehtml to make a single large HTML file"
@echo " pickle to make pickle files"
@echo " json to make JSON files"
@echo " htmlhelp to make HTML files and a HTML help project"
@echo " qthelp to make HTML files and a qthelp project"
@echo " applehelp to make an Apple Help Book"
@echo " devhelp to make HTML files and a Devhelp project"
@echo " epub to make an epub"
@echo " epub3 to make an epub3"
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
@echo " latexpdf to make LaTeX files and run them through pdflatex"
@echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
@echo " text to make text files"
@echo " man to make manual pages"
@echo " texinfo to make Texinfo files"
@echo " info to make Texinfo files and run them through makeinfo"
@echo " gettext to make PO message catalogs"
@echo " changes to make an overview of all changed/added/deprecated items"
@echo " xml to make Docutils-native XML files"
@echo " pseudoxml to make pseudoxml-XML files for display purposes"
@echo " linkcheck to check all external links for integrity"
@echo " doctest to run all doctests embedded in the documentation (if enabled)"
@echo " coverage to run coverage check of the documentation (if enabled)"
@echo " dummy to check syntax errors of document sources"
@echo " version_map to generate a data strucutre which holds a map of all the pages"
@echo " spellcheck to perform a spell check"
@echo " build to build the documentation in all formats (PDF, HTML and ePUB)"
@echo " build_html to build the documentation in HTML format only"
@echo " release_notes to generate the release notes for a specific version (default: 25.10). Use 'make changelog VERSION=XX' to specify."
@echo " html to make standalone HTML files"
@echo " dirhtml to make HTML files named index.html in directories"
@echo " singlehtml to make a single large HTML file"
@echo " pickle to make pickle files"
@echo " json to make JSON files"
@echo " htmlhelp to make HTML files and a HTML help project"
@echo " qthelp to make HTML files and a qthelp project"
@echo " applehelp to make an Apple Help Book"
@echo " devhelp to make HTML files and a Devhelp project"
@echo " epub to make an epub"
@echo " epub3 to make an epub3"
@echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
@echo " latexpdf to make LaTeX files and run them through pdflatex"
@echo " latexpdfja to make LaTeX files and run them through platex/dvipdfmx"
@echo " text to make text files"
@echo " man to make manual pages"
@echo " texinfo to make Texinfo files"
@echo " info to make Texinfo files and run them through makeinfo"
@echo " gettext to make PO message catalogs"
@echo " changes to make an overview of all changed/added/deprecated items"
@echo " xml to make Docutils-native XML files"
@echo " pseudoxml to make pseudoxml-XML files for display purposes"
@echo " linkcheck to check all external links for integrity"
@echo " doctest to run all doctests embedded in the documentation (if enabled)"
@echo " coverage to run coverage check of the documentation (if enabled)"
@echo " dummy to check syntax errors of document sources"
@echo " version_map to generate a data strucutre which holds a map of all the pages"
@echo " spellcheck to perform a spell check"

.PHONY: release_notes
release_notes:
./generate_release_notes.py $(if $(VERSION),$(VERSION))

.PHONY: clean
clean:
Expand Down
16 changes: 8 additions & 8 deletions config.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
---
modules:
- name: openwisp-users
dir_name: users
- name: openwisp-notifications
dir_name: notifications
- name: openwisp-controller
dir_name: controller
- name: openwisp-monitoring
dir_name: monitoring
- name: openwisp-firmware-upgrader
dir_name: firmware-upgrader
- name: openwisp-radius
dir_name: radius
- name: openwisp-notifications
dir_name: notifications
- name: openwisp-ipam
dir_name: ipam
- name: openwisp-network-topology
dir_name: network-topology
- name: openwisp-users
dir_name: users
- name: openwisp-radius
dir_name: radius
- name: openwisp-utils
dir_name: utils
- name: openwisp-wifi-login-pages
dir_name: wifi-login-pages
- name: openwisp-ipam
dir_name: ipam
- name: openwisp-config
dir_name: openwrt-config-agent
- name: openwrt-openwisp-monitoring
Expand Down
Loading