Accessing the Repository
The DWT repository is hosted at github. The original mercurial repository is split up in several smaller repositories, one for each project. All repositories are under the organization: https://github.com/d-widget-toolkit. There is one "super repository", DWT, which uses git submodules to include the most common repositories and contains the build script.
To get a new copy of the repository, you need to 'clone' them to your local hard disk. With the command line client you can do that with
git clone git://github.com/d-widget-toolkit/dwt.git
To clone the submodules run:
git submodule init git submodule update
For more info about git submodule: http://help.github.com/submodules/
See also the Contribution info page.
Old Repositories
DWT uses the Mercurial version control system.
Note windows users:
Beside the official binary, there is "batteries include" installer here.
You can also use the Windows Explorer Extension TortoiseHG.
To get a new copy of the repository, you need to 'clone' them to your local harddisk. With the command line client you can do that with
hg clone http://hg.dsource.org/projects/dwt-linux hg clone http://hg.dsource.org/projects/dwt-win hg clone http://hg.dsource.org/projects/dwt-addons hg clone http://hg.dsource.org/projects/dwt-samples
If you later want to do an update, change into that repository and do
hg pull -u
See also the Contribution info page.
Type "hg view" to see a GUI view of all changes to the source listed by revision. If no gui shows up, you probably need a TCL/TK installation or the hgk tool is missing.
