Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info
titleWarning

Out of date as we use Apache CMS, kept for posterity.

 

The Apache OODT website is populated onto minotaur.apache.org:/www/oodt.apache.org by an "svn checkout" from the Apache Subversion repository at https://svn.apache.org/repos/asf/oodt. To populate that directory, we feed our Maven artifacts and some static HTML documentation into some Python code. That code then generates files that can then be checked into https://svn.apache.org/repos/asf/oodt/site.

...

The following should go into the buildout.cfg file in your play area:

Code Block
borderStyledashed
titlebuildout.cfgborderStyledashed
[buildout]
parts =
    publisher
    test
eggs = oodtsite.publisher
develop = oodtsite.publisher

[publisher]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}

[test]
recipe = zc.recipe.testrunner
eggs = ${buildout:eggs}
defaults = ['--auto-color', '--auto-progress']