bill stoddard wrote:
Spent some time this evening getting the bluesky website cleaned up in
the svn repository. If you want to make updates to the site, here is
how you do it:
First: On your machine... checkout the bluesky website from the svn repo
$ svn co https://svn.apache.org/repos/asf/incubator/bluesky/webpage .
Edit the website files as needed.
Second: Check-in your changes to the website svn repo
$ svn commit -m "a brief message describing what you changed"
Your changes & updates are now checked into the svn repo, next you
need to 'publish' the site:
Third: ssh into people.apache.org
$ ssh people.apache.org
$ cd /www/incubator.apache.org/bluesky/
Fourth: check out the website from svn
$ svn co https://svn.apache.org/repos/asf/incubator/bluesky/webpage .
It's late, has been a long day and I'm not thinking clearly... this
fourth step is wrong. Should do an svn update rather than a checkout:
$ svn update
That should pull in all files that have changed in the svn repo.
You still need to issue chmod g+w on any files that were updated to give
them group write permissions.
very simple isn't it? :-)
Bill