summaryrefslogtreecommitdiffstats
path: root/old/doc/src/gendoc.sh
diff options
context:
space:
mode:
Diffstat (limited to 'old/doc/src/gendoc.sh')
-rwxr-xr-xold/doc/src/gendoc.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/old/doc/src/gendoc.sh b/old/doc/src/gendoc.sh
new file mode 100755
index 0000000..bfb1bfe
--- /dev/null
+++ b/old/doc/src/gendoc.sh
@@ -0,0 +1,6 @@
+QTUITEST=../.. qdoc3 qtuitest.qdocconf
+THISYEAR=`date +%Y`
+for f in $( ls ../html/*.html ); do
+ sed s/%THISYEAR%/$THISYEAR/g ../html/$f > ../html/$f.temp
+ mv ../html/$f.temp ../html/$f
+done