aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/developer
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2024-12-17 08:29:34 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2024-12-17 15:00:05 +0100
commitdc41b6a9fb736bb0b6e86470c3d3d016fa88711a (patch)
tree4f8137b45e30def4fe8fe49264147593af92d41b /sources/pyside6/doc/developer
parente89255f981821967330c6046187c8942f7ca32a0 (diff)
Documentation: Add missing pages
Add pages referenced from the overviews-main page and various module pages. Do a scan and add all (non-class reference) documents found except qtcore/qtdoc (too many) and deprecated modules. As a drive-by, developer the documentation. Pick-to: 6.8 Change-Id: Ibe16ff70b627274fbbbffeb93030ddea230295a8 Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io>
Diffstat (limited to 'sources/pyside6/doc/developer')
-rw-r--r--sources/pyside6/doc/developer/documentation.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/doc/developer/documentation.rst b/sources/pyside6/doc/developer/documentation.rst
index f768798fa..53e912918 100644
--- a/sources/pyside6/doc/developer/documentation.rst
+++ b/sources/pyside6/doc/developer/documentation.rst
@@ -53,12 +53,12 @@ Pages of examples that exist in Python should be removed.
for F in *.webxml
do
- echo "$F" | egrep '(-index)|(-module)|(-qmlmodule)\.webxml$' > /dev/null
+ echo "$F" | egrep '(-index|example|cmake|private-module|-changes-qt6|-module.web|-qmlmodule.web)' > /dev/null
if [ $? -ne 0 ]
then
if fgrep '<para>' "$F" > /dev/null # Exclude reference only
then
- egrep "(<class )|(<namespace )" $F > /dev/null || echo $F
+ egrep "(<namespace|<class|<struct|<group|<union)" $F > /dev/null || echo $F
fi
fi
done