Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Use the bw command to update everything

The simplest way to update Bedework is to use the bw -updateall command:

Code Block
cd <quickstart>
./bw -updateall

This command issues a series of svn update commands against those projects essential to Bedework.

Note
titleRemember to rebuild and restart!

Updates to the source code won't take effect until you rebuild Bedework and (in many cases) restart.

Updating specific files or projects

Bedework code repository

The Bedework project files are kept in several subversion repositories located at https://www.bedework.org/svn/<projectName>/...   For example, the Bedework core trunk is stored at https://www.bedework.org/svn/bedework/trunk, the Bedework core 3.7 branch at https://www.bedework.org/svn/bedework/releases/bedework-3.7, and the Bedework CardDav project trunk at https://www.bedework.org/svn/carddav/trunk.

As long as you know the project name, you can figure out the rest, so here's a guide:

Project

Repository URL

Notes

bedework

https://www.bedework.org/svn/bedework

Many projects, not listed, are linked to Bedework.  When you update Bedework, the linked projects are updated, too.

carddav

https://www.bedework.org/svn/carddav

Carddav server and Addressbook client

bwxml

https://www.bedework.org/svn/bwxml

XML definitions for Bedework

bwtzsvr

https://www.bedework.org/svn/bwtzsvr

Timezone Server

cachedfeeder

https://www.bedework.org/svn/cachedfeeder

Page Caching application and web form front-end

monitoretc

 

 

The quickstart ships with subversion information for some of the directories contained within the quickstart.  This means, assuming you have subversion installed, you can use the svn update command to apply specific fixes or to bring the distribution up to date.

Use the bw command to update

The simplest way to update Bedework is to use the bw command:

...

.

...

This command issues a series of svn update commands against those projects essential to Bedework.

Call svn update to update a single file or directory

To update the bedework folder under the quickstart (which will also update all linked projects, like the caldav server):

Code Block
cd <quickstart>
svn update bedework

...

Code Block
cd <quickstart>
cd bedework/deployment/webpublic/webapp/resources/demoskins/MainCampus/themes/bedeworkTheme
svn update .

Remember to build and restart!

...