[Assorted-commits] SF.net SVN: assorted: [537] cpp-commons/trunk/publish.bash
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-02-29 08:03:45
|
Revision: 537 http://assorted.svn.sourceforge.net/assorted/?rev=537&view=rev Author: yangzhang Date: 2008-02-29 00:03:50 -0800 (Fri, 29 Feb 2008) Log Message: ----------- new publishing framework Modified Paths: -------------- cpp-commons/trunk/publish.bash Modified: cpp-commons/trunk/publish.bash =================================================================== --- cpp-commons/trunk/publish.bash 2008-02-29 08:00:08 UTC (rev 536) +++ cpp-commons/trunk/publish.bash 2008-02-29 08:03:50 UTC (rev 537) @@ -1,26 +1,9 @@ #!/usr/bin/env bash -HTMLFRAG=../../assorted-site/trunk +doxygen -set -o errexit -o nounset - -pandoc -s -S --tab-stop=2 -c ../main.css -H $HTMLFRAG/header.html -A $HTMLFRAG/google-footer.html -o index.html README - -doxyfile - -tmp=/tmp/cpp-commons-site -rm -rf $tmp/ -mkdir -p $tmp -cp -r doc/html /$tmp/doc -cp index.html $tmp/ - -tar czf - -C $tmp index.html doc | -ssh shell-sf ' - set -o errexit -o nounset - d=assorted/htdocs/cpp-commons - rm -rf $d/ - mkdir -p $d - cd $d/ - tar xzmf - -' - +project=cpp-commons +clean=false +websrcs=( README ) +webfiles=( doc:doc/html ) +. assorted.bash "$@" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |