Overview
Chorus is version control system designed to enable workflows appropriate for typical language development teams who are geographically distributed. These teams need to edit a set of common files, working towards a publication. They want to share their work while, crucially, being able to defer dealing with conflicting edits for periods of time or until a qualified team member can make decisions about the conflicts. The system is implemented on top of a commonly used Open Source Distributed Version Control System. It works in scenarios in which users are connected by Local Area Network, Internet, or hand-carried storage devices. Chorus supports several workflow models, including those that maintain a “master” database separate from the incoming submissions of team members. Quite unlike the version control systems commonly in use, the system works invisibly for the common cases and is kept simple for even beginner computer users.
Distinctive Features
These features come for free with any Distribute Version Control System:
- Share files between users, even if they are never connected to the internet.
- Every member of the team has access to a full history of all work done by the rest of the team.
- In a crisis, work can be "rolled back" to a previous version.
However, "raw" Distributed Version Controls Systems are relatively difficult to understand, configure and use, even for computer-savvy workers.
The following list of features should help you understand why we built this layer over a raw version control system:
- silently synchronize; will never tell the user to manually merge conflicts first
- automatically check for team members & devices with which to synchronize
- Support a Master branch which does not automatically accept changes from anyone
- Files can be marked as shared by the team or user-specific. This allows things like preferences/configurations to be part of the repository, but kept separate for each individual. This will also allow one team member to make configuration changes for another, remote member, and push those changes through the system to that user, without physically accessing their computer.
- 3-Way, schema-savvy XML merging. Various policies can be implemented for choosing a winner in the case of conflicts. Regardless of the policy, details of the conflict are logged in an xml file which also under version control. At a time and place of the team's choosing, these automatic choices can be reviewed and reversed.
- Configuration help from applications. Applications generally know where their important files are, which files are individual-specific, and which should not be backed-up/shared at all. Applications that know about Chorus pass this information to it, so that users don't need to become experts in how all the files work.
- Synchronization help from application. Applications often know what points are good ones for checking data in. For example, when exiting, before doing a large and possibly undesirable operation, like deleting a large number of items or importing a new data set.
- In-Application conflict and change history. Rather than ask users to learn version-control specific tools, the Chorus model is that Chorus provides the raw information applications need to provide a smooth, integrated workflow in the same environment as the user has for editing. For example, a dictionary-editing program using Chorus will allow the user to see a full history of the current record, including who made what changes, and what conflicts (if any) were encountered during synchronization.
- A built-in "notes" system which makes it very cheap to give users the ability to add notes to any piece of data, and to carry on conversations about about the data until they mark the issue as "resolved".
Status¶
Chorus is functional and being used in 4 applications, by 4 different development teams, while a 5th (FieldWorks) is building it in. However, we are not really interested in supporting any further uses until things mature and someone writes good develop documentation. Documentation, where it exists, drips out in the form of occasional blogs here .
Technical¶
Chorus is written in c#. The UI widgets uses Windows Forms, but you could make your own using a different platform and just use the engine.
Chorus is based on Mercurial, but we can imagine moving to a different platform as things progress (we're watching git# mature, with interest). Mercurial lacks some things we'd really like, especially a way to track its progress during slow operations, or tolerance of the really bad Internet connections available in many poor countries.
To get the code, install mercurial, and do
hg clone http://hg.palaso.org/chorus
On Windows, you'll need some version of Visual Studio (the free Express version would be fine).
If developing on windows immediately, unzip the file lib/net2.0/mercurial.zip into output/common/mercurial. That way, you know the tests are running against the approved version of Mercurial, not whatever you happen to have on your machine.
- Subprojects: SampleDictionary
Members
Manager:
john hatton, Cambell Prince
Developer:
Timothy Armstrong, Bob Eaton, Stephen Moore, Randy Regnier, Keith Stribley, John Wimbish
Latest news
Blog moving
The Chorus blog has moved.
Using Chorus to download a project from the internet
Using Chorus to grab a project from a USB drive
How to use the Chorus Synchronization Dialog from .net apps
How To Use the Chorus Synchronization Dialog from .net apps.