Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: missing a 'oodt' in the folder spec for final desination of site

...

  1. Make a play area: mkdir oodt-site
  2. Go there: cd oodt-site
  3. Grab the buildout bootstrapper: curl -LO 'http://svn.zope.org/*checkout*/zc.buildout/trunk/bootstrap/bootstrap.py'
  4. Check out the static HTML docs: svn co https://svn.apache.org/repos/asf/incubator/oodt/docs/site static
  5. Make and commit any last-minute changes to the docs in static
  6. Check out the OODT source code (replace trunk with a tag as appropriate): svn co https://svn.apache.org/repos/asf/incubator/oodt/trunk oodt
  7. Build the Maven site artifacts: cd oodt; mvn site; cd ..
  8. Check out the oodtsite.publisher: svn co https://svn.apache.org/repos/asf/incubator/oodt/tools/oodtsite.publisher/trunk oodtsite.publisher
  9. Check out the final destination of the site: svn co https://svn.apache.org/repos/asf/incubator/oodt/site
  10. Create buildout.cfg from the contents listed under "The Buildout Configuration" below.
  11. Bootstrap the buildout: python bootstrap.py -d
  12. Build it out: bin/buildout
  13. Make sure the publisher works: bin/test
  14. Publish: bin/oodtsitepublish --base=http://incubator.apache.org/oodt --target=site static oodt
  15. Commit: cd site; svn add *; svn ci

...