| 1 | # -*- mode: python; coding: utf-8 -*- |
|---|
| 2 | # :Progetto: vcpx - Version Control Patch eXchanger |
|---|
| 3 | # :Creato: mer 16 giu 2004 00:15:54 CEST |
|---|
| 4 | # :Autore: Lele Gaifax <lele@nautilus.homeip.net> |
|---|
| 5 | # :Licenza: GNU General Public License |
|---|
| 6 | # |
|---|
| 7 | |
|---|
| 8 | """ |
|---|
| 9 | vcpx - Version Control Patch eXchanger |
|---|
| 10 | ====================================== |
|---|
| 11 | |
|---|
| 12 | This is the package `vcpx` (pronounced "veeseepex"). It encapsulates |
|---|
| 13 | the machinery needed to keep the patches in sync across different VC |
|---|
| 14 | systems. |
|---|
| 15 | """ |
|---|
| 16 | |
|---|
| 17 | __docformat__ = 'reStructuredText' |
|---|
| 18 | |
|---|
| 19 | from vcpx.tailor import main, ExistingProjectError, ProjectNotTailored |
|---|
| 20 | from vcpx.target import TargetInitializationFailure |
|---|
| 21 | from vcpx.source import InvocationError, GetUpstreamChangesetsFailure,\ |
|---|
| 22 | ChangesetApplicationFailure |
|---|
| 23 | from vcpx.cvsps import EmptyRepositoriesFoolsMe |
|---|
| 24 | from vcpx.config import ConfigurationError |
|---|
| 25 | from vcpx.project import UnknownProjectError |
|---|
| 26 | |
|---|
| 27 | TailorExceptions = (ExistingProjectError, ProjectNotTailored, |
|---|
| 28 | TargetInitializationFailure, EmptyRepositoriesFoolsMe, |
|---|
| 29 | InvocationError, GetUpstreamChangesetsFailure, |
|---|
| 30 | ChangesetApplicationFailure, ConfigurationError, |
|---|
| 31 | UnknownProjectError) |
|---|