diff --git a/docs/source/changes.html b/docs/source/changes.html index e4aef6073a..966b0c97b2 100644 --- a/docs/source/changes.html +++ b/docs/source/changes.html @@ -47,461 +47,16 @@

Recent Changes What's been happening?

-

This is an incomplete list of recent changes to DevStack. For the complete list see the DevStack project in Gerrit.

-
+

These are the commits to DevStack for the last six months. For the complete list see the DevStack project in Gerrit.

+ +
+ + +
diff --git a/tools/build_docs.sh b/tools/build_docs.sh index 77c2f4e02e..e999eff751 100755 --- a/tools/build_docs.sh +++ b/tools/build_docs.sh @@ -113,6 +113,15 @@ FQ_HTML_BUILD=$(cd $HTML_BUILD && pwd) # Get repo static cp -pr $FQ_DOCS_SOURCE/* $FQ_HTML_BUILD +# Insert automated bits +GLOG=$(mktemp gitlogXXXX) +git log \ + --pretty=format:'
  • %s - Commit %h %cd
  • ' \ + --date=short \ + --since '6 months ago' | grep -v Merge >$GLOG +sed -e $"/%GIT_LOG%/r $GLOG" $FQ_DOCS_SOURCE/changes.html >$FQ_HTML_BUILD/changes.html +rm -f $GLOG + # Build list of scripts to process FILES="" for f in $(find . -name .git -prune -o \( -type f -name \*.sh -not -path \*shocco/\* -print \)); do