You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pig.apache.org by Doug Cutting <cu...@apache.org> on 2007/11/01 00:25:29 UTC

Re: first version of website is now up

I forgot to mention one critical step for updating the website.

To actually publish it you need to:
   ssh people.apache.org
   cd /www/incubator.apache.org/pig
   svn up

Then it takes an hour for the live website to be sync'd from that directory.

Doug

Doug Cutting wrote:
> I've initialized a website for Pig, using Forrest.
> 
>   http://incubator.apache.org/pig/
> 
> To edit the website you must have Apache Forrest installed (and be a Pig 
> committer, of course).  Checkout the site from subversion with:
> 
>   svn co https://svn.apache.org/repos/asf/incubator/pig/site/
> 
> Edit files in author/src/documentation/content/xdocs.  This directory 
> contains XML files, one per page, plus a few special files (site.xml and 
> tabs.xml).  The only other file of much interest is 
> author/src/documentation/skinconf.xml.  Images are in 
> author/src/documentation/resources/images.
> 
> To build the site:
> 
>   cd author
>   forrest
> 
> Then inspect what's in build/site with your browser.  If you like it:
> 
>   cp -pr build/site/* ../publish
>   cd ..
>   svn stat
>   svn add ...
>   svn commit -m "blah blah"
> 
> This process should probably be documented somewhere in the developer 
> section of the Pig wiki, once such a section exists.
> 
> An immediate task is to replace the Pig icon with something without a Y! 
> on it.  I'll file an issue in Jira for that.
> 
> Doug