Versions Compared

Key

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

...

To commit changes to the website and re-publish them:

Code Block
% svn co https://svn.apache.org/repos/asf/hive/site hive-site
% cd hive-site
ant
firefox publish/index.html # preview the changes
svn stat  
# Make your changes in the author/src/documentation/content/xdocs subdirectory.
# Then run 'ant' to generate the new website. This will cause
# files to be updated/added in the publish/ subdirectory.
% ant

% svn status
M       author/src/documentation/content/xdocs/credits.xml
X       author/src/documentation/skins
M   # check for new pages
svn addpublish/credits.html
M       publish/credits.pdf

# Inspect the modified/added files in the publish directory,
# and commit the changes once #you addare anysatisfied newwith pagesthem:

% svn commit
ssh people.apache.org
cd /www/hive.apache.org
svn up
 -m "Add Bob to list of committers on credits page (cws)"

Changes committed to the website repository will be automatically published to the website using svnpubsubChanges to website (via svn up) might take upto an hour to be reflected on hive site.

Backporting commits to previous branches

...