Merge lp:~verterok/bzr-eclipse/fix-license into lp:bzr-eclipse
- fix-license
- Merge into trunk
Proposed by
Guillermo Gonzalez
| Status: | Merged |
|---|---|
| Merged at revision: | 374 |
| Proposed branch: | lp:~verterok/bzr-eclipse/fix-license |
| Merge into: | lp:bzr-eclipse |
| Diff against target: |
4483 lines (+1708/-1217) 192 files modified
COPYRIGHT (+13/-0) Contributers (+42/-0) LICENSE (+10/-0) org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/AbstractCoreTestCase.java (+9/-3) org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/TestCaseWithProject.java (+9/-3) org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/WorkspaceUtil.java (+9/-0) org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/BundledPluginsTest.java (+9/-3) org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/commands/CommitCommandTest.java (+9/-0) org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/commands/IgnoredCommandTest.java (+9/-0) org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/listeners/BzrChangeStateEventTest.java (+9/-0) org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/listeners/FileModificationManagerTest.java (+9/-3) org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/repository/BranchFactoryTest.java (+9/-3) org.vcs.bazaar.eclipse.core/COPYRIGHT (+0/-13) org.vcs.bazaar.eclipse.core/Contributers (+0/-31) org.vcs.bazaar.eclipse.core/LICENSE (+0/-20) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/BzrWorkspaceRoot.java (+9/-0) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/CoreTexts.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/EclipseBazaarCore.java (+9/-0) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/IBazaarCoreConstants.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/PreferenceInitializer.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/BzrSaveParticipant.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/ITracingOptions.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/client/IConsoleListener.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/AddCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/AnnotateCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/BazaarCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/BindCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/BranchCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CatCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CheckoutCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CommandProgressListener.java (+9/-0) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CommitCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/IBazaarCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/IgnoreCommand.java (+9/-17) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/IgnoredCommand.java (+9/-17) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/InfoCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/InitCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/LogCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/LsCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/MergeCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/MetaModifyCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/NickCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/PullCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/PushCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/RemoveCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/ResolveCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/ResourceChangeCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/RevertCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/RevnoCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/SendCommand.java (+9/-17) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/StateChangeCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/StatusCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/SwitchCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/UnBindCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/UnCommitCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/UpdateCommand.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/history/BazaarFileHistory.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/history/BazaarFileRevision.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/history/BazaarHistoryProvider.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/AbstractResourceChangeListener.java (+10/-1) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/BzrChangeStateEvent.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/IResourceStateListener.java (+9/-0) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/SyncFileChangeListener.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/log/LogCacheManager.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/log/LogUpdater.java (+9/-0) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBranchStatus.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrBranch.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrFile.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrFolder.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrMissingRevisions.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrObject.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrResource.java (+9/-0) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrResourceStatus.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrTag.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalBranch.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalFile.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalFolder.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalResource.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/remote/IBzrRemoteFile.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/remote/IBzrRemoteFolder.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/remote/IBzrRemoteResource.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BazaarTeamProvider.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BazaarTeamProviderType.java (+9/-0) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BranchFactory.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BranchTypeException.java (+9/-0) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/resources/BazaarMoveDeleteHook.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/resources/IStorageBazaarRevision.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/subscriber/BazaarLocalVariantComparator.java (+10/-4) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/subscriber/BazaarResourceVariant.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/subscriber/BazaarStatusSuscriber.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/BzrJobStatus.java (+9/-0) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/BzrTeamStatus.java (+9/-0) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/ResourceUtil.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/TracingUtils.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/BazaarException.java (+9/-0) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrBranch.java (+9/-0) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrMissingRevisions.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrObject.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrResource.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrResourceStatus.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/LocalBranch.java (+1/-1) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/LpBranch.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/RemoteBranch.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/local/BzrLocalFile.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/local/BzrLocalFolder.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/local/BzrLocalResource.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/remote/BzrRemoteFile.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/remote/BzrRemoteFolder.java (+9/-3) org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/remote/BzrRemoteResource.java (+9/-3) org.vcs.bazaar.eclipse.feature/feature.properties (+5/-18) org.vcs.bazaar.eclipse.feature/feature_epl.properties (+5/-6) org.vcs.bazaar.eclipse.feature/gpl-v20.html (+0/-487) org.vcs.bazaar.eclipse.ui/Contributers (+0/-31) org.vcs.bazaar.eclipse.ui/LICENSE (+0/-20) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/BazaarRepositoriesPerspectiveFactory.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/EclipseBazaarUI.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/UITexts.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/AbstractCompareAction.java (+10/-4) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ActionNick.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/AddAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/AnnotateAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/BindAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/BranchAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/BzrAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/DiffAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/DisconnectAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/IgnoreAction.java (+9/-17) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/IgnoredAction.java (+9/-17) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/InitAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/LogAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/MergeAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/MissingAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/OpenBazaarRevisionAction.java (+10/-6) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/PullAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/PushAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ResolveAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ResolveTakeOtherAction.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ResolveTakeThisAction.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/RevertAction.java (+9/-4) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/SendAction.java (+9/-17) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ShowConflictsAction.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/SwitchAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/SynchronizeAction.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/UnBindAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/UnCommitAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/UpdateAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/WorkbenchAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/WorkspaceAction.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/BazaarCompareEditorInput.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/BazaarResourceNode.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/BazaarRevisionNode.java (+10/-4) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/CompareUtils.java (+10/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/SaveableBazaarCompareEditorInput.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/BazaarLightweightDecorator.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/DecoratorImages.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/DecoratorResources.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/DecoratorTextLabels.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/IgnoredDialog.java (+9/-17) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/IgnoredFilesLabelProvider.java (+9/-17) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/InputDialog.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/LocationInputDialog.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/MergeDialog.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/RevertDialog.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/SendDialog.java (+9/-17) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/ShowLogDialog.java (+11/-4) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/UncommitDialog.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/UntrackedFilesFilter.java (+11/-4) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/history/BazaarHistoryPage.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/history/BazaarHistoryPageSource.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/history/HistoryTreeViewer.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/operations/BzrOperation.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/operations/PushOperation.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/operations/SendOperation.java (+9/-17) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarDecoratorPreferencePage.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarPerformancePreferencePage.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarPreferenceConstants.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarPreferencePage.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/PreferenceInitializer.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/properties/BazaarPropertyPage.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/repository/BazaarAdapterFactory.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/team/BzrQuickDiffReferenceProvider.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/team/RefreshExecutionListener.java (+10/-4) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/views/BazaarView.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/views/MissingView.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/widgets/BzrResourceHeaderSelectionListener.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/widgets/BzrResourceSelectionComposite.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/widgets/RevisionNumber.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/BzrWizardPage.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/configuration/BazaarConfigurationWizard.java (+9/-3) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/configuration/BranchRootPage.java (+10/-4) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/synchronize/BazaarSynchronizeWizard.java (+9/-0) org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/synchronize/BazaarSynchronizeWizardPage.java (+9/-0) |
| To merge this branch: | bzr merge lp:~verterok/bzr-eclipse/fix-license |
| Related bugs: |
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| bzr-eclipse developers | Pending | ||
|
Review via email:
|
|||
Commit message
Update license to EPL, and also update copyright in some .java files
Description of the change
Update license to EPL and copyright (only in some .java files):
- Move COPYRIGHT, LICENSE and Contributers files to a single place (root of the proyect)
- change LICENSE and feature license to EPL
- set EPL license and default copyright in all java files with LICENSE + COPYRIGHT header.
To post a comment you must log in.
- 361. By Guillermo Gonzalez
-
add copyright to other files wihtout
Preview Diff
[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
| 1 | === added file 'COPYRIGHT' |
| 2 | --- COPYRIGHT 1970-01-01 00:00:00 +0000 |
| 3 | +++ COPYRIGHT 2013-10-31 17:23:32 +0000 |
| 4 | @@ -0,0 +1,13 @@ |
| 5 | +Copyright (c) 2007-2012 Guillermo Gonzalez. |
| 6 | +Copyright (c) 2013 Bzr-Eclipse Team |
| 7 | +All Rights Reserved |
| 8 | + |
| 9 | +Most of the UI is from MercurialEclispe - Copyright (c) 2006 Zingo Andersen (VecTrace). |
| 10 | + |
| 11 | +Icon's and Logo of Bazaar - Copyright (c) 2006 Canonical Ltd. All Rights Reserved |
| 12 | + |
| 13 | +Eclipse - Copyright (c) 2007 The Eclipse Foundation. All Rights Reserved |
| 14 | + |
| 15 | +Portions of this plugin are based or use code from: |
| 16 | + * eclipsedarcs - Copyright (c) 2004-2005 by Leif Frenzel and others. but I'm the process to remove all of it (license issues) |
| 17 | + |
| 18 | |
| 19 | === added file 'Contributers' |
| 20 | --- Contributers 1970-01-01 00:00:00 +0000 |
| 21 | +++ Contributers 2013-10-31 17:23:32 +0000 |
| 22 | @@ -0,0 +1,42 @@ |
| 23 | +MercurialEclipse Plugin |
| 24 | + |
| 25 | +Here is a list of people that has been contributing to this project |
| 26 | +if you supply a patch please dont forget to patch this file also add |
| 27 | +your name, a few lines about yourself and if you want an email. |
| 28 | +By adding your name here you indicate Your acceptance of the License |
| 29 | +and all of its terms and conditions. |
| 30 | + |
| 31 | + |
| 32 | +Contributors: |
| 33 | + |
| 34 | +Zingo Andersen - Creator of this nice pice of software. |
| 35 | + I'm an old Amiga fart, that likes hacking around. |
| 36 | + I have two kids and a wife, both take there share of my private Life so |
| 37 | + lately there has not been so much hacking after I come home from my day |
| 38 | + job as a Realtime Consultant from Enea. |
| 39 | + I live in Sweden in the town called Lund. |
| 40 | + More info about me migth be found at http://www.zingo.org |
| 41 | + |
| 42 | +Gunnar Ahlberg - I'm a developer. Other than that, I'm generally |
| 43 | + outdoors playing in the woods and archipelago of sunny Stockholm, |
| 44 | + Sweden. Cheers! |
| 45 | + Zingo's Comment: Gunnar is the first external contributor, he started the work on |
| 46 | + getting the plugin configurable, thanks for the help. |
| 47 | + |
| 48 | +----------- |
| 49 | +Bazaar Eclipse Plugin |
| 50 | + |
| 51 | +Contributors: |
| 52 | + Adrian Wilkins |
| 53 | + Alexander Taler |
| 54 | + Craig Hewetson |
| 55 | + geoffreyfishing AT gmail.com |
| 56 | + Guillermo Gonzalez |
| 57 | + Javier Derderian |
| 58 | + Johan Walles |
| 59 | + Luis Arias |
| 60 | + Piotr Piastucki |
| 61 | + Renato Silva |
| 62 | + |
| 63 | + |
| 64 | +Thanks to the Bzr team for a great DVCS |
| 65 | |
| 66 | === added file 'LICENSE' |
| 67 | --- LICENSE 1970-01-01 00:00:00 +0000 |
| 68 | +++ LICENSE 2013-10-31 17:23:32 +0000 |
| 69 | @@ -0,0 +1,10 @@ |
| 70 | +License |
| 71 | +------- |
| 72 | +This content is made available under the terms of the Eclipse Public License Version 1.0, |
| 73 | +available at: http://www.eclipse.org/legal/epl-v10.html and in the root of thebranch epl-v10.html. |
| 74 | + |
| 75 | +The portions devired from mercurialeclipse are under zlib/png license. |
| 76 | + |
| 77 | +As a special exception, the copyright holders of Bzr-Eclipse give you permission to combine Bzr-Eclipse with free software programs or |
| 78 | +libraries that are released under the GNU LGPL. |
| 79 | + |
| 80 | |
| 81 | === modified file 'org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/AbstractCoreTestCase.java' |
| 82 | --- org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/AbstractCoreTestCase.java 2013-05-31 05:50:54 +0000 |
| 83 | +++ org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/AbstractCoreTestCase.java 2013-10-31 17:23:32 +0000 |
| 84 | @@ -1,6 +1,12 @@ |
| 85 | -/** |
| 86 | - * |
| 87 | - */ |
| 88 | +/******************************************************************************* |
| 89 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 90 | +* |
| 91 | +* All rights reserved. This program and the accompanying materials |
| 92 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 93 | +* which accompanies this distribution, and is available at |
| 94 | +* http://www.eclipse.org/legal/epl-v10.html |
| 95 | +* |
| 96 | +*******************************************************************************/ |
| 97 | package org.vcs.bazaar.eclipse; |
| 98 | |
| 99 | import org.eclipse.core.runtime.Preferences; |
| 100 | |
| 101 | === modified file 'org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/TestCaseWithProject.java' |
| 102 | --- org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/TestCaseWithProject.java 2011-07-30 22:37:22 +0000 |
| 103 | +++ org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/TestCaseWithProject.java 2013-10-31 17:23:32 +0000 |
| 104 | @@ -1,6 +1,12 @@ |
| 105 | -/** |
| 106 | - * LICENSE + COPYRIGHT |
| 107 | - */ |
| 108 | +/******************************************************************************* |
| 109 | + * Copyright (c) 2007-2011 Guillermo Gonzalez |
| 110 | + * |
| 111 | + * All rights reserved. This program and the accompanying materials |
| 112 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 113 | + * which accompanies this distribution, and is available at |
| 114 | + * http://www.eclipse.org/legal/epl-v10.html |
| 115 | + * |
| 116 | + *******************************************************************************/ |
| 117 | package org.vcs.bazaar.eclipse; |
| 118 | |
| 119 | import java.io.File; |
| 120 | |
| 121 | === modified file 'org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/WorkspaceUtil.java' |
| 122 | --- org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/WorkspaceUtil.java 2011-07-30 22:37:22 +0000 |
| 123 | +++ org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/WorkspaceUtil.java 2013-10-31 17:23:32 +0000 |
| 124 | @@ -1,3 +1,12 @@ |
| 125 | +/******************************************************************************* |
| 126 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 127 | +* |
| 128 | +* All rights reserved. This program and the accompanying materials |
| 129 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 130 | +* which accompanies this distribution, and is available at |
| 131 | +* http://www.eclipse.org/legal/epl-v10.html |
| 132 | +* |
| 133 | +*******************************************************************************/ |
| 134 | package org.vcs.bazaar.eclipse; |
| 135 | |
| 136 | import java.io.File; |
| 137 | |
| 138 | === modified file 'org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/BundledPluginsTest.java' |
| 139 | --- org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/BundledPluginsTest.java 2011-07-30 22:37:22 +0000 |
| 140 | +++ org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/BundledPluginsTest.java 2013-10-31 17:23:32 +0000 |
| 141 | @@ -1,6 +1,12 @@ |
| 142 | -/** |
| 143 | - * |
| 144 | - */ |
| 145 | +/******************************************************************************* |
| 146 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 147 | +* |
| 148 | +* All rights reserved. This program and the accompanying materials |
| 149 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 150 | +* which accompanies this distribution, and is available at |
| 151 | +* http://www.eclipse.org/legal/epl-v10.html |
| 152 | +* |
| 153 | +*******************************************************************************/ |
| 154 | package org.vcs.bazaar.eclipse.core; |
| 155 | |
| 156 | import org.junit.Assert; |
| 157 | |
| 158 | === modified file 'org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/commands/CommitCommandTest.java' |
| 159 | --- org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/commands/CommitCommandTest.java 2009-11-18 08:48:22 +0000 |
| 160 | +++ org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/commands/CommitCommandTest.java 2013-10-31 17:23:32 +0000 |
| 161 | @@ -1,3 +1,12 @@ |
| 162 | +/******************************************************************************* |
| 163 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 164 | +* |
| 165 | +* All rights reserved. This program and the accompanying materials |
| 166 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 167 | +* which accompanies this distribution, and is available at |
| 168 | +* http://www.eclipse.org/legal/epl-v10.html |
| 169 | +* |
| 170 | +*******************************************************************************/ |
| 171 | package org.vcs.bazaar.eclipse.core.commands; |
| 172 | |
| 173 | import static org.junit.Assert.assertEquals; |
| 174 | |
| 175 | === modified file 'org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/commands/IgnoredCommandTest.java' |
| 176 | --- org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/commands/IgnoredCommandTest.java 2009-11-18 08:48:22 +0000 |
| 177 | +++ org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/commands/IgnoredCommandTest.java 2013-10-31 17:23:32 +0000 |
| 178 | @@ -1,3 +1,12 @@ |
| 179 | +/******************************************************************************* |
| 180 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 181 | +* |
| 182 | +* All rights reserved. This program and the accompanying materials |
| 183 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 184 | +* which accompanies this distribution, and is available at |
| 185 | +* http://www.eclipse.org/legal/epl-v10.html |
| 186 | +* |
| 187 | +*******************************************************************************/ |
| 188 | package org.vcs.bazaar.eclipse.core.commands; |
| 189 | |
| 190 | import static org.junit.Assert.assertEquals; |
| 191 | |
| 192 | === modified file 'org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/listeners/BzrChangeStateEventTest.java' |
| 193 | --- org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/listeners/BzrChangeStateEventTest.java 2009-11-18 08:48:22 +0000 |
| 194 | +++ org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/listeners/BzrChangeStateEventTest.java 2013-10-31 17:23:32 +0000 |
| 195 | @@ -1,3 +1,12 @@ |
| 196 | +/******************************************************************************* |
| 197 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 198 | +* |
| 199 | +* All rights reserved. This program and the accompanying materials |
| 200 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 201 | +* which accompanies this distribution, and is available at |
| 202 | +* http://www.eclipse.org/legal/epl-v10.html |
| 203 | +* |
| 204 | +*******************************************************************************/ |
| 205 | package org.vcs.bazaar.eclipse.core.listeners; |
| 206 | |
| 207 | import static org.junit.Assert.assertEquals; |
| 208 | |
| 209 | === modified file 'org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/listeners/FileModificationManagerTest.java' |
| 210 | --- org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/listeners/FileModificationManagerTest.java 2009-11-18 08:48:22 +0000 |
| 211 | +++ org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/listeners/FileModificationManagerTest.java 2013-10-31 17:23:32 +0000 |
| 212 | @@ -1,6 +1,12 @@ |
| 213 | -/** |
| 214 | - * LICENSE + COPYRIGHT |
| 215 | - */ |
| 216 | +/******************************************************************************* |
| 217 | + * Copyright (c) 2007-2011 Guillermo Gonzalez |
| 218 | + * |
| 219 | + * All rights reserved. This program and the accompanying materials |
| 220 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 221 | + * which accompanies this distribution, and is available at |
| 222 | + * http://www.eclipse.org/legal/epl-v10.html |
| 223 | + * |
| 224 | + *******************************************************************************/ |
| 225 | package org.vcs.bazaar.eclipse.core.listeners; |
| 226 | |
| 227 | import java.util.ArrayList; |
| 228 | |
| 229 | === modified file 'org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/repository/BranchFactoryTest.java' |
| 230 | --- org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/repository/BranchFactoryTest.java 2013-02-10 07:57:48 +0000 |
| 231 | +++ org.vcs.bazaar.eclipse.core.tests/src/org/vcs/bazaar/eclipse/core/repository/BranchFactoryTest.java 2013-10-31 17:23:32 +0000 |
| 232 | @@ -1,6 +1,12 @@ |
| 233 | -/** |
| 234 | - * |
| 235 | - */ |
| 236 | +/******************************************************************************* |
| 237 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 238 | +* |
| 239 | +* All rights reserved. This program and the accompanying materials |
| 240 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 241 | +* which accompanies this distribution, and is available at |
| 242 | +* http://www.eclipse.org/legal/epl-v10.html |
| 243 | +* |
| 244 | +*******************************************************************************/ |
| 245 | package org.vcs.bazaar.eclipse.core.repository; |
| 246 | |
| 247 | import static org.junit.Assert.assertEquals; |
| 248 | |
| 249 | === removed file 'org.vcs.bazaar.eclipse.core/COPYRIGHT' |
| 250 | --- org.vcs.bazaar.eclipse.core/COPYRIGHT 2013-06-21 09:01:06 +0000 |
| 251 | +++ org.vcs.bazaar.eclipse.core/COPYRIGHT 1970-01-01 00:00:00 +0000 |
| 252 | @@ -1,13 +0,0 @@ |
| 253 | -Copyright (c) 2007-2012 Guillermo Gonzalez. |
| 254 | -Copyright (c) 2013 Bzr-Eclipse Team |
| 255 | -All Rights Reserved |
| 256 | - |
| 257 | -Most of the UI is from MercurialEclispe - Copyright (c) 2006 Zingo Andersen (VecTrace). |
| 258 | - |
| 259 | -Icon's and Logo of Bazaar - Copyright (c) 2006 Canonical Ltd. All Rights Reserved |
| 260 | - |
| 261 | -Eclipse - Copyright (c) 2007 The Eclipse Foundation. All Rights Reserved |
| 262 | - |
| 263 | -Portions of this plugin are based or use code from: |
| 264 | - * eclipsedarcs - Copyright (c) 2004-2005 by Leif Frenzel and others. but I'm the process to remove all of it (license issues) |
| 265 | - |
| 266 | |
| 267 | === removed file 'org.vcs.bazaar.eclipse.core/Contributers' |
| 268 | --- org.vcs.bazaar.eclipse.core/Contributers 2007-03-14 12:15:50 +0000 |
| 269 | +++ org.vcs.bazaar.eclipse.core/Contributers 1970-01-01 00:00:00 +0000 |
| 270 | @@ -1,31 +0,0 @@ |
| 271 | -MercurialEclipse Plugin |
| 272 | - |
| 273 | -Here is a list of people that has been contributing to this project |
| 274 | -if you supply a patch please dont forget to patch this file also add |
| 275 | -your name, a few lines about yourself and if you want an email. |
| 276 | -By adding your name here you indicate Your acceptance of the License |
| 277 | -and all of its terms and conditions. |
| 278 | - |
| 279 | - |
| 280 | -Contributors: |
| 281 | - |
| 282 | -Zingo Andersen - Creator of this nice pice of software. |
| 283 | - I'm an old Amiga fart, that likes hacking around. |
| 284 | - I have two kids and a wife, both take there share of my private Life so |
| 285 | - lately there has not been so much hacking after I come home from my day |
| 286 | - job as a Realtime Consultant from Enea. |
| 287 | - I live in Sweden in the town called Lund. |
| 288 | - More info about me migth be found at http://www.zingo.org |
| 289 | - |
| 290 | -Gunnar Ahlberg - I'm a developer. Other than that, I'm generally |
| 291 | - outdoors playing in the woods and archipelago of sunny Stockholm, |
| 292 | - Sweden. Cheers! |
| 293 | - Zingo's Comment: Gunnar is the first external contributor, he started the work on |
| 294 | - getting the plugin configurable, thanks for the help. |
| 295 | - |
| 296 | ------------ |
| 297 | -Bazaar Eclipse Plugin |
| 298 | - |
| 299 | -Here must be the people who help (once released) |
| 300 | - |
| 301 | -Thanks to the Bzr team for a great DVCS |
| 302 | \ No newline at end of file |
| 303 | |
| 304 | === removed file 'org.vcs.bazaar.eclipse.core/LICENSE' |
| 305 | --- org.vcs.bazaar.eclipse.core/LICENSE 2013-06-21 09:01:06 +0000 |
| 306 | +++ org.vcs.bazaar.eclipse.core/LICENSE 1970-01-01 00:00:00 +0000 |
| 307 | @@ -1,20 +0,0 @@ |
| 308 | -License |
| 309 | -------- |
| 310 | -This content is made available under the terms of the GNU General Public License Version 2, June 1991 (GPL). |
| 311 | -A copy of the GPL is provided with this content. (see gpl.txt) |
| 312 | - |
| 313 | -As a special exception, the copyright holders of Bzr-Eclipse give you permission to combine Bzr-Eclipse with free software programs or\n\ |
| 314 | -libraries that are released under the GNU LGPL and with code included in the standard release of Eclipse under the Eclipse Public License\n\ |
| 315 | -(or modified versions of such code, with unchanged license). You may copy and distribute such a system following the terms of the GNU GPL\n\ |
| 316 | -for Bzr-Eclipse and the licenses of the other code concerned.\n\ |
| 317 | - |
| 318 | -The portions devired from mercurialeclipse are under zlib/png license |
| 319 | - |
| 320 | -Remainin portions of this content based in subclipse are under the EPL, which is |
| 321 | -available at http://www.eclipse.org/legal/epl-v10.html and in the root of the |
| 322 | -branch epl-v10.html. |
| 323 | - |
| 324 | -------- |
| 325 | -Icon's and Logo of Bazaar <http://www.bazaar-vcs.org> Copyright (c) 2006 Canonical Ltd. |
| 326 | - |
| 327 | -Eclipse <http://www.eclipse.org> Copyright (c) 2007 The Eclipse Foundation. All Rights Reserved |
| 328 | |
| 329 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/BzrWorkspaceRoot.java' |
| 330 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/BzrWorkspaceRoot.java 2013-09-29 21:47:12 +0000 |
| 331 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/BzrWorkspaceRoot.java 2013-10-31 17:23:32 +0000 |
| 332 | @@ -1,3 +1,12 @@ |
| 333 | +/******************************************************************************* |
| 334 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 335 | +* |
| 336 | +* All rights reserved. This program and the accompanying materials |
| 337 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 338 | +* which accompanies this distribution, and is available at |
| 339 | +* http://www.eclipse.org/legal/epl-v10.html |
| 340 | +* |
| 341 | +*******************************************************************************/ |
| 342 | package org.vcs.bazaar.eclipse; |
| 343 | |
| 344 | import java.io.File; |
| 345 | |
| 346 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/CoreTexts.java' |
| 347 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/CoreTexts.java 2013-09-20 20:27:15 +0000 |
| 348 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/CoreTexts.java 2013-10-31 17:23:32 +0000 |
| 349 | @@ -1,6 +1,12 @@ |
| 350 | -/** |
| 351 | - * LICENSE + COPYRIGHT |
| 352 | - */ |
| 353 | +/******************************************************************************* |
| 354 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 355 | + * |
| 356 | + * All rights reserved. This program and the accompanying materials |
| 357 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 358 | + * which accompanies this distribution, and is available at |
| 359 | + * http://www.eclipse.org/legal/epl-v10.html |
| 360 | + * |
| 361 | + *******************************************************************************/ |
| 362 | package org.vcs.bazaar.eclipse; |
| 363 | |
| 364 | import org.eclipse.osgi.util.NLS; |
| 365 | |
| 366 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/EclipseBazaarCore.java' |
| 367 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/EclipseBazaarCore.java 2013-09-26 12:16:59 +0000 |
| 368 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/EclipseBazaarCore.java 2013-10-31 17:23:32 +0000 |
| 369 | @@ -1,3 +1,12 @@ |
| 370 | +/******************************************************************************* |
| 371 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 372 | +* |
| 373 | +* All rights reserved. This program and the accompanying materials |
| 374 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 375 | +* which accompanies this distribution, and is available at |
| 376 | +* http://www.eclipse.org/legal/epl-v10.html |
| 377 | +* |
| 378 | +*******************************************************************************/ |
| 379 | package org.vcs.bazaar.eclipse; |
| 380 | |
| 381 | import java.io.File; |
| 382 | |
| 383 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/IBazaarCoreConstants.java' |
| 384 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/IBazaarCoreConstants.java 2013-07-17 17:21:42 +0000 |
| 385 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/IBazaarCoreConstants.java 2013-10-31 17:23:32 +0000 |
| 386 | @@ -1,6 +1,12 @@ |
| 387 | -/** |
| 388 | - * |
| 389 | - */ |
| 390 | +/******************************************************************************* |
| 391 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 392 | +* |
| 393 | +* All rights reserved. This program and the accompanying materials |
| 394 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 395 | +* which accompanies this distribution, and is available at |
| 396 | +* http://www.eclipse.org/legal/epl-v10.html |
| 397 | +* |
| 398 | +*******************************************************************************/ |
| 399 | package org.vcs.bazaar.eclipse; |
| 400 | |
| 401 | |
| 402 | |
| 403 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/PreferenceInitializer.java' |
| 404 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/PreferenceInitializer.java 2013-09-07 18:25:50 +0000 |
| 405 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/PreferenceInitializer.java 2013-10-31 17:23:32 +0000 |
| 406 | @@ -1,6 +1,12 @@ |
| 407 | -/** |
| 408 | - * LICENSE + COPYRIGHT |
| 409 | - */ |
| 410 | +/******************************************************************************* |
| 411 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 412 | + * |
| 413 | + * All rights reserved. This program and the accompanying materials |
| 414 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 415 | + * which accompanies this distribution, and is available at |
| 416 | + * http://www.eclipse.org/legal/epl-v10.html |
| 417 | + * |
| 418 | + *******************************************************************************/ |
| 419 | package org.vcs.bazaar.eclipse; |
| 420 | |
| 421 | import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer; |
| 422 | |
| 423 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/BzrSaveParticipant.java' |
| 424 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/BzrSaveParticipant.java 2009-11-18 08:48:22 +0000 |
| 425 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/BzrSaveParticipant.java 2013-10-31 17:23:32 +0000 |
| 426 | @@ -1,6 +1,12 @@ |
| 427 | -/** |
| 428 | - * |
| 429 | - */ |
| 430 | +/******************************************************************************* |
| 431 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 432 | +* |
| 433 | +* All rights reserved. This program and the accompanying materials |
| 434 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 435 | +* which accompanies this distribution, and is available at |
| 436 | +* http://www.eclipse.org/legal/epl-v10.html |
| 437 | +* |
| 438 | +*******************************************************************************/ |
| 439 | package org.vcs.bazaar.eclipse.core; |
| 440 | |
| 441 | import org.eclipse.core.resources.ISaveContext; |
| 442 | |
| 443 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/ITracingOptions.java' |
| 444 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/ITracingOptions.java 2013-03-13 11:41:52 +0000 |
| 445 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/ITracingOptions.java 2013-10-31 17:23:32 +0000 |
| 446 | @@ -1,6 +1,12 @@ |
| 447 | -/** |
| 448 | - * LICENSE + COPYRIGHT |
| 449 | - */ |
| 450 | +/******************************************************************************* |
| 451 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 452 | + * |
| 453 | + * All rights reserved. This program and the accompanying materials |
| 454 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 455 | + * which accompanies this distribution, and is available at |
| 456 | + * http://www.eclipse.org/legal/epl-v10.html |
| 457 | + * |
| 458 | + *******************************************************************************/ |
| 459 | package org.vcs.bazaar.eclipse.core; |
| 460 | |
| 461 | /** |
| 462 | |
| 463 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/client/IConsoleListener.java' |
| 464 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/client/IConsoleListener.java 2009-11-18 08:48:22 +0000 |
| 465 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/client/IConsoleListener.java 2013-10-31 17:23:32 +0000 |
| 466 | @@ -1,6 +1,12 @@ |
| 467 | -/** |
| 468 | - * LICENSE + COPYRIGHT |
| 469 | - */ |
| 470 | +/******************************************************************************* |
| 471 | + * Copyright (c) 2007-2011 Guillermo Gonzalez |
| 472 | + * |
| 473 | + * All rights reserved. This program and the accompanying materials |
| 474 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 475 | + * which accompanies this distribution, and is available at |
| 476 | + * http://www.eclipse.org/legal/epl-v10.html |
| 477 | + * |
| 478 | + *******************************************************************************/ |
| 479 | package org.vcs.bazaar.eclipse.core.client; |
| 480 | |
| 481 | import org.vcs.bazaar.client.IBazaarNotifyListener; |
| 482 | |
| 483 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/AddCommand.java' |
| 484 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/AddCommand.java 2013-09-14 22:05:16 +0000 |
| 485 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/AddCommand.java 2013-10-31 17:23:32 +0000 |
| 486 | @@ -1,6 +1,12 @@ |
| 487 | -/** |
| 488 | - * LICENSE + COPYRIGHT |
| 489 | - */ |
| 490 | +/******************************************************************************* |
| 491 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 492 | + * |
| 493 | + * All rights reserved. This program and the accompanying materials |
| 494 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 495 | + * which accompanies this distribution, and is available at |
| 496 | + * http://www.eclipse.org/legal/epl-v10.html |
| 497 | + * |
| 498 | + *******************************************************************************/ |
| 499 | package org.vcs.bazaar.eclipse.core.commands; |
| 500 | |
| 501 | import java.io.File; |
| 502 | |
| 503 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/AnnotateCommand.java' |
| 504 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/AnnotateCommand.java 2013-03-19 15:05:13 +0000 |
| 505 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/AnnotateCommand.java 2013-10-31 17:23:32 +0000 |
| 506 | @@ -1,6 +1,12 @@ |
| 507 | -/** |
| 508 | - * LICENSE + COPYRIGHT |
| 509 | - */ |
| 510 | +/******************************************************************************* |
| 511 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 512 | + * |
| 513 | + * All rights reserved. This program and the accompanying materials |
| 514 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 515 | + * which accompanies this distribution, and is available at |
| 516 | + * http://www.eclipse.org/legal/epl-v10.html |
| 517 | + * |
| 518 | + *******************************************************************************/ |
| 519 | package org.vcs.bazaar.eclipse.core.commands; |
| 520 | |
| 521 | import org.eclipse.core.runtime.IProgressMonitor; |
| 522 | |
| 523 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/BazaarCommand.java' |
| 524 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/BazaarCommand.java 2013-04-05 19:38:49 +0000 |
| 525 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/BazaarCommand.java 2013-10-31 17:23:32 +0000 |
| 526 | @@ -1,6 +1,12 @@ |
| 527 | -/** |
| 528 | - * LICENSE + COPYRIGHT |
| 529 | - */ |
| 530 | +/******************************************************************************* |
| 531 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 532 | + * |
| 533 | + * All rights reserved. This program and the accompanying materials |
| 534 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 535 | + * which accompanies this distribution, and is available at |
| 536 | + * http://www.eclipse.org/legal/epl-v10.html |
| 537 | + * |
| 538 | + *******************************************************************************/ |
| 539 | package org.vcs.bazaar.eclipse.core.commands; |
| 540 | |
| 541 | import java.io.File; |
| 542 | |
| 543 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/BindCommand.java' |
| 544 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/BindCommand.java 2013-02-20 18:14:46 +0000 |
| 545 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/BindCommand.java 2013-10-31 17:23:32 +0000 |
| 546 | @@ -1,6 +1,12 @@ |
| 547 | -/** |
| 548 | - * LICENSE + COPYRIGHT |
| 549 | - */ |
| 550 | +/******************************************************************************* |
| 551 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 552 | + * |
| 553 | + * All rights reserved. This program and the accompanying materials |
| 554 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 555 | + * which accompanies this distribution, and is available at |
| 556 | + * http://www.eclipse.org/legal/epl-v10.html |
| 557 | + * |
| 558 | + *******************************************************************************/ |
| 559 | package org.vcs.bazaar.eclipse.core.commands; |
| 560 | |
| 561 | import org.eclipse.core.resources.IResource; |
| 562 | |
| 563 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/BranchCommand.java' |
| 564 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/BranchCommand.java 2013-06-09 06:57:37 +0000 |
| 565 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/BranchCommand.java 2013-10-31 17:23:32 +0000 |
| 566 | @@ -1,6 +1,12 @@ |
| 567 | -/** |
| 568 | - * LICENSE + COPYRIGHT |
| 569 | - */ |
| 570 | +/******************************************************************************* |
| 571 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 572 | + * |
| 573 | + * All rights reserved. This program and the accompanying materials |
| 574 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 575 | + * which accompanies this distribution, and is available at |
| 576 | + * http://www.eclipse.org/legal/epl-v10.html |
| 577 | + * |
| 578 | + *******************************************************************************/ |
| 579 | package org.vcs.bazaar.eclipse.core.commands; |
| 580 | |
| 581 | import java.io.File; |
| 582 | |
| 583 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CatCommand.java' |
| 584 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CatCommand.java 2013-05-16 17:30:33 +0000 |
| 585 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CatCommand.java 2013-10-31 17:23:32 +0000 |
| 586 | @@ -1,6 +1,12 @@ |
| 587 | -/** |
| 588 | - * LICENSE + COPYRIGHT |
| 589 | - */ |
| 590 | +/******************************************************************************* |
| 591 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 592 | + * |
| 593 | + * All rights reserved. This program and the accompanying materials |
| 594 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 595 | + * which accompanies this distribution, and is available at |
| 596 | + * http://www.eclipse.org/legal/epl-v10.html |
| 597 | + * |
| 598 | + *******************************************************************************/ |
| 599 | package org.vcs.bazaar.eclipse.core.commands; |
| 600 | |
| 601 | import java.io.ByteArrayInputStream; |
| 602 | |
| 603 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CheckoutCommand.java' |
| 604 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CheckoutCommand.java 2013-06-09 06:57:37 +0000 |
| 605 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CheckoutCommand.java 2013-10-31 17:23:32 +0000 |
| 606 | @@ -1,6 +1,12 @@ |
| 607 | -/** |
| 608 | - * |
| 609 | - */ |
| 610 | +/******************************************************************************* |
| 611 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 612 | +* |
| 613 | +* All rights reserved. This program and the accompanying materials |
| 614 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 615 | +* which accompanies this distribution, and is available at |
| 616 | +* http://www.eclipse.org/legal/epl-v10.html |
| 617 | +* |
| 618 | +*******************************************************************************/ |
| 619 | package org.vcs.bazaar.eclipse.core.commands; |
| 620 | |
| 621 | import java.io.File; |
| 622 | |
| 623 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CommandProgressListener.java' |
| 624 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CommandProgressListener.java 2013-08-12 19:17:55 +0000 |
| 625 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CommandProgressListener.java 2013-10-31 17:23:32 +0000 |
| 626 | @@ -1,3 +1,12 @@ |
| 627 | +/******************************************************************************* |
| 628 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 629 | +* |
| 630 | +* All rights reserved. This program and the accompanying materials |
| 631 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 632 | +* which accompanies this distribution, and is available at |
| 633 | +* http://www.eclipse.org/legal/epl-v10.html |
| 634 | +* |
| 635 | +*******************************************************************************/ |
| 636 | package org.vcs.bazaar.eclipse.core.commands; |
| 637 | |
| 638 | import java.util.regex.Matcher; |
| 639 | |
| 640 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CommitCommand.java' |
| 641 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CommitCommand.java 2013-09-14 22:05:16 +0000 |
| 642 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/CommitCommand.java 2013-10-31 17:23:32 +0000 |
| 643 | @@ -1,6 +1,12 @@ |
| 644 | -/** |
| 645 | - * LICENSE + COPYRIGHT |
| 646 | - */ |
| 647 | +/******************************************************************************* |
| 648 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 649 | + * |
| 650 | + * All rights reserved. This program and the accompanying materials |
| 651 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 652 | + * which accompanies this distribution, and is available at |
| 653 | + * http://www.eclipse.org/legal/epl-v10.html |
| 654 | + * |
| 655 | + *******************************************************************************/ |
| 656 | package org.vcs.bazaar.eclipse.core.commands; |
| 657 | |
| 658 | import java.io.File; |
| 659 | |
| 660 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/IBazaarCommand.java' |
| 661 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/IBazaarCommand.java 2009-11-18 08:48:22 +0000 |
| 662 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/IBazaarCommand.java 2013-10-31 17:23:32 +0000 |
| 663 | @@ -1,6 +1,12 @@ |
| 664 | -/** |
| 665 | - * LICENSE + COPYRIGHT |
| 666 | - */ |
| 667 | +/******************************************************************************* |
| 668 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 669 | + * |
| 670 | + * All rights reserved. This program and the accompanying materials |
| 671 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 672 | + * which accompanies this distribution, and is available at |
| 673 | + * http://www.eclipse.org/legal/epl-v10.html |
| 674 | + * |
| 675 | + *******************************************************************************/ |
| 676 | package org.vcs.bazaar.eclipse.core.commands; |
| 677 | |
| 678 | import org.eclipse.core.resources.IWorkspaceRunnable; |
| 679 | |
| 680 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/IgnoreCommand.java' |
| 681 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/IgnoreCommand.java 2013-02-19 13:36:56 +0000 |
| 682 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/IgnoreCommand.java 2013-10-31 17:23:32 +0000 |
| 683 | @@ -1,20 +1,12 @@ |
| 684 | -/** |
| 685 | -* Copyright (C) 2009 Canonical Ltd |
| 686 | -* |
| 687 | -* This program is free software; you can redistribute it and/or modify |
| 688 | -* it under the terms of the GNU General Public License as published by |
| 689 | -* the Free Software Foundation; either version 2 of the License, or |
| 690 | -* (at your option) any later version. |
| 691 | -* |
| 692 | -* This program is distributed in the hope that it will be useful, |
| 693 | -* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 694 | -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 695 | -* GNU General Public License for more details. |
| 696 | -* |
| 697 | -* You should have received a copy of the GNU General Public License |
| 698 | -* along with this program; if not, write to the Free Software |
| 699 | -* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 700 | -*/ |
| 701 | +/******************************************************************************* |
| 702 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 703 | +* |
| 704 | +* All rights reserved. This program and the accompanying materials |
| 705 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 706 | +* which accompanies this distribution, and is available at |
| 707 | +* http://www.eclipse.org/legal/epl-v10.html |
| 708 | +* |
| 709 | +*******************************************************************************/ |
| 710 | package org.vcs.bazaar.eclipse.core.commands; |
| 711 | |
| 712 | import java.io.File; |
| 713 | |
| 714 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/IgnoredCommand.java' |
| 715 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/IgnoredCommand.java 2013-03-19 15:05:13 +0000 |
| 716 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/IgnoredCommand.java 2013-10-31 17:23:32 +0000 |
| 717 | @@ -1,20 +1,12 @@ |
| 718 | -/** |
| 719 | -* Copyright (C) 2009 Canonical Ltd |
| 720 | -* |
| 721 | -* This program is free software; you can redistribute it and/or modify |
| 722 | -* it under the terms of the GNU General Public License as published by |
| 723 | -* the Free Software Foundation; either version 2 of the License, or |
| 724 | -* (at your option) any later version. |
| 725 | -* |
| 726 | -* This program is distributed in the hope that it will be useful, |
| 727 | -* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 728 | -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 729 | -* GNU General Public License for more details. |
| 730 | -* |
| 731 | -* You should have received a copy of the GNU General Public License |
| 732 | -* along with this program; if not, write to the Free Software |
| 733 | -* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 734 | -*/ |
| 735 | +/******************************************************************************* |
| 736 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 737 | +* |
| 738 | +* All rights reserved. This program and the accompanying materials |
| 739 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 740 | +* which accompanies this distribution, and is available at |
| 741 | +* http://www.eclipse.org/legal/epl-v10.html |
| 742 | +* |
| 743 | +*******************************************************************************/ |
| 744 | package org.vcs.bazaar.eclipse.core.commands; |
| 745 | |
| 746 | import java.util.HashMap; |
| 747 | |
| 748 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/InfoCommand.java' |
| 749 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/InfoCommand.java 2013-04-05 19:38:49 +0000 |
| 750 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/InfoCommand.java 2013-10-31 17:23:32 +0000 |
| 751 | @@ -1,6 +1,12 @@ |
| 752 | -/** |
| 753 | - * LICENSE + COPYRIGHT |
| 754 | - */ |
| 755 | +/******************************************************************************* |
| 756 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 757 | + * |
| 758 | + * All rights reserved. This program and the accompanying materials |
| 759 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 760 | + * which accompanies this distribution, and is available at |
| 761 | + * http://www.eclipse.org/legal/epl-v10.html |
| 762 | + * |
| 763 | + *******************************************************************************/ |
| 764 | package org.vcs.bazaar.eclipse.core.commands; |
| 765 | |
| 766 | import org.eclipse.core.runtime.IProgressMonitor; |
| 767 | |
| 768 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/InitCommand.java' |
| 769 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/InitCommand.java 2009-11-18 08:48:22 +0000 |
| 770 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/InitCommand.java 2013-10-31 17:23:32 +0000 |
| 771 | @@ -1,6 +1,12 @@ |
| 772 | -/** |
| 773 | - * LICENSE + COPYRIGHT |
| 774 | - */ |
| 775 | +/******************************************************************************* |
| 776 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 777 | + * |
| 778 | + * All rights reserved. This program and the accompanying materials |
| 779 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 780 | + * which accompanies this distribution, and is available at |
| 781 | + * http://www.eclipse.org/legal/epl-v10.html |
| 782 | + * |
| 783 | + *******************************************************************************/ |
| 784 | package org.vcs.bazaar.eclipse.core.commands; |
| 785 | |
| 786 | import java.io.File; |
| 787 | |
| 788 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/LogCommand.java' |
| 789 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/LogCommand.java 2013-08-30 14:38:43 +0000 |
| 790 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/LogCommand.java 2013-10-31 17:23:32 +0000 |
| 791 | @@ -1,6 +1,12 @@ |
| 792 | -/** |
| 793 | - * LICENSE + COPYRIGHT |
| 794 | - */ |
| 795 | +/******************************************************************************* |
| 796 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 797 | + * |
| 798 | + * All rights reserved. This program and the accompanying materials |
| 799 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 800 | + * which accompanies this distribution, and is available at |
| 801 | + * http://www.eclipse.org/legal/epl-v10.html |
| 802 | + * |
| 803 | + *******************************************************************************/ |
| 804 | package org.vcs.bazaar.eclipse.core.commands; |
| 805 | |
| 806 | import java.util.ArrayList; |
| 807 | |
| 808 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/LsCommand.java' |
| 809 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/LsCommand.java 2013-04-05 19:38:49 +0000 |
| 810 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/LsCommand.java 2013-10-31 17:23:32 +0000 |
| 811 | @@ -1,6 +1,12 @@ |
| 812 | -/** |
| 813 | - * LICENSE + COPYRIGHT |
| 814 | - */ |
| 815 | +/******************************************************************************* |
| 816 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 817 | + * |
| 818 | + * All rights reserved. This program and the accompanying materials |
| 819 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 820 | + * which accompanies this distribution, and is available at |
| 821 | + * http://www.eclipse.org/legal/epl-v10.html |
| 822 | + * |
| 823 | + *******************************************************************************/ |
| 824 | package org.vcs.bazaar.eclipse.core.commands; |
| 825 | |
| 826 | import org.eclipse.core.resources.IResource; |
| 827 | |
| 828 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/MergeCommand.java' |
| 829 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/MergeCommand.java 2013-09-20 20:27:15 +0000 |
| 830 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/MergeCommand.java 2013-10-31 17:23:32 +0000 |
| 831 | @@ -1,6 +1,12 @@ |
| 832 | -/** |
| 833 | - * LICENSE + COPYRIGHT |
| 834 | - */ |
| 835 | +/******************************************************************************* |
| 836 | + * Copyright (c) 2008-2013 Guillermo Gonzalez |
| 837 | + * |
| 838 | + * All rights reserved. This program and the accompanying materials |
| 839 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 840 | + * which accompanies this distribution, and is available at |
| 841 | + * http://www.eclipse.org/legal/epl-v10.html |
| 842 | + * |
| 843 | + *******************************************************************************/ |
| 844 | package org.vcs.bazaar.eclipse.core.commands; |
| 845 | |
| 846 | import org.eclipse.core.resources.IResource; |
| 847 | |
| 848 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/MetaModifyCommand.java' |
| 849 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/MetaModifyCommand.java 2013-09-21 18:36:21 +0000 |
| 850 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/MetaModifyCommand.java 2013-10-31 17:23:32 +0000 |
| 851 | @@ -1,6 +1,12 @@ |
| 852 | -/** |
| 853 | - * |
| 854 | - */ |
| 855 | +/******************************************************************************* |
| 856 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 857 | +* |
| 858 | +* All rights reserved. This program and the accompanying materials |
| 859 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 860 | +* which accompanies this distribution, and is available at |
| 861 | +* http://www.eclipse.org/legal/epl-v10.html |
| 862 | +* |
| 863 | +*******************************************************************************/ |
| 864 | package org.vcs.bazaar.eclipse.core.commands; |
| 865 | |
| 866 | import java.util.ArrayList; |
| 867 | |
| 868 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/NickCommand.java' |
| 869 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/NickCommand.java 2013-04-05 19:38:49 +0000 |
| 870 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/NickCommand.java 2013-10-31 17:23:32 +0000 |
| 871 | @@ -1,6 +1,12 @@ |
| 872 | -/** |
| 873 | - * LICENSE + COPYRIGHT |
| 874 | - */ |
| 875 | +/******************************************************************************* |
| 876 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 877 | + * |
| 878 | + * All rights reserved. This program and the accompanying materials |
| 879 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 880 | + * which accompanies this distribution, and is available at |
| 881 | + * http://www.eclipse.org/legal/epl-v10.html |
| 882 | + * |
| 883 | + *******************************************************************************/ |
| 884 | package org.vcs.bazaar.eclipse.core.commands; |
| 885 | |
| 886 | import org.eclipse.core.runtime.IProgressMonitor; |
| 887 | |
| 888 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/PullCommand.java' |
| 889 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/PullCommand.java 2013-09-20 20:27:15 +0000 |
| 890 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/PullCommand.java 2013-10-31 17:23:32 +0000 |
| 891 | @@ -1,6 +1,12 @@ |
| 892 | -/** |
| 893 | - * LICENSE + COPYRIGHT |
| 894 | - */ |
| 895 | +/******************************************************************************* |
| 896 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 897 | + * |
| 898 | + * All rights reserved. This program and the accompanying materials |
| 899 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 900 | + * which accompanies this distribution, and is available at |
| 901 | + * http://www.eclipse.org/legal/epl-v10.html |
| 902 | + * |
| 903 | + *******************************************************************************/ |
| 904 | package org.vcs.bazaar.eclipse.core.commands; |
| 905 | |
| 906 | import java.util.ArrayList; |
| 907 | |
| 908 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/PushCommand.java' |
| 909 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/PushCommand.java 2013-05-13 11:47:17 +0000 |
| 910 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/PushCommand.java 2013-10-31 17:23:32 +0000 |
| 911 | @@ -1,6 +1,12 @@ |
| 912 | -/** |
| 913 | - * LICENSE + COPYRIGHT |
| 914 | - */ |
| 915 | +/******************************************************************************* |
| 916 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 917 | + * |
| 918 | + * All rights reserved. This program and the accompanying materials |
| 919 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 920 | + * which accompanies this distribution, and is available at |
| 921 | + * http://www.eclipse.org/legal/epl-v10.html |
| 922 | + * |
| 923 | + *******************************************************************************/ |
| 924 | package org.vcs.bazaar.eclipse.core.commands; |
| 925 | |
| 926 | import java.util.ArrayList; |
| 927 | |
| 928 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/RemoveCommand.java' |
| 929 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/RemoveCommand.java 2013-03-19 15:05:13 +0000 |
| 930 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/RemoveCommand.java 2013-10-31 17:23:32 +0000 |
| 931 | @@ -1,6 +1,12 @@ |
| 932 | -/** |
| 933 | - * LICENSE + COPYRIGHT |
| 934 | - */ |
| 935 | +/******************************************************************************* |
| 936 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 937 | + * |
| 938 | + * All rights reserved. This program and the accompanying materials |
| 939 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 940 | + * which accompanies this distribution, and is available at |
| 941 | + * http://www.eclipse.org/legal/epl-v10.html |
| 942 | + * |
| 943 | + *******************************************************************************/ |
| 944 | package org.vcs.bazaar.eclipse.core.commands; |
| 945 | |
| 946 | import java.io.File; |
| 947 | |
| 948 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/ResolveCommand.java' |
| 949 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/ResolveCommand.java 2013-05-17 18:36:24 +0000 |
| 950 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/ResolveCommand.java 2013-10-31 17:23:32 +0000 |
| 951 | @@ -1,6 +1,12 @@ |
| 952 | -/** |
| 953 | - * LICENSE + COPYRIGHT |
| 954 | - */ |
| 955 | +/******************************************************************************* |
| 956 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 957 | + * |
| 958 | + * All rights reserved. This program and the accompanying materials |
| 959 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 960 | + * which accompanies this distribution, and is available at |
| 961 | + * http://www.eclipse.org/legal/epl-v10.html |
| 962 | + * |
| 963 | + *******************************************************************************/ |
| 964 | package org.vcs.bazaar.eclipse.core.commands; |
| 965 | |
| 966 | import java.io.File; |
| 967 | |
| 968 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/ResourceChangeCommand.java' |
| 969 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/ResourceChangeCommand.java 2009-11-18 08:48:22 +0000 |
| 970 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/ResourceChangeCommand.java 2013-10-31 17:23:32 +0000 |
| 971 | @@ -1,6 +1,12 @@ |
| 972 | -/** |
| 973 | - * |
| 974 | - */ |
| 975 | +/******************************************************************************* |
| 976 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 977 | +* |
| 978 | +* All rights reserved. This program and the accompanying materials |
| 979 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 980 | +* which accompanies this distribution, and is available at |
| 981 | +* http://www.eclipse.org/legal/epl-v10.html |
| 982 | +* |
| 983 | +*******************************************************************************/ |
| 984 | package org.vcs.bazaar.eclipse.core.commands; |
| 985 | |
| 986 | import org.vcs.bazaar.eclipse.core.listeners.BzrChangeStateEvent; |
| 987 | |
| 988 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/RevertCommand.java' |
| 989 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/RevertCommand.java 2013-09-14 22:05:16 +0000 |
| 990 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/RevertCommand.java 2013-10-31 17:23:32 +0000 |
| 991 | @@ -1,6 +1,12 @@ |
| 992 | -/** |
| 993 | - * LICENSE + COPYRIGHT |
| 994 | - */ |
| 995 | +/******************************************************************************* |
| 996 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 997 | + * |
| 998 | + * All rights reserved. This program and the accompanying materials |
| 999 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1000 | + * which accompanies this distribution, and is available at |
| 1001 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1002 | + * |
| 1003 | + *******************************************************************************/ |
| 1004 | package org.vcs.bazaar.eclipse.core.commands; |
| 1005 | |
| 1006 | import java.io.File; |
| 1007 | |
| 1008 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/RevnoCommand.java' |
| 1009 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/RevnoCommand.java 2013-04-05 19:38:49 +0000 |
| 1010 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/RevnoCommand.java 2013-10-31 17:23:32 +0000 |
| 1011 | @@ -1,6 +1,12 @@ |
| 1012 | -/** |
| 1013 | - * LICENSE + COPYRIGHT |
| 1014 | - */ |
| 1015 | +/******************************************************************************* |
| 1016 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1017 | + * |
| 1018 | + * All rights reserved. This program and the accompanying materials |
| 1019 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1020 | + * which accompanies this distribution, and is available at |
| 1021 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1022 | + * |
| 1023 | + *******************************************************************************/ |
| 1024 | package org.vcs.bazaar.eclipse.core.commands; |
| 1025 | |
| 1026 | import org.eclipse.core.resources.IResource; |
| 1027 | |
| 1028 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/SendCommand.java' |
| 1029 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/SendCommand.java 2013-03-07 13:13:01 +0000 |
| 1030 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/SendCommand.java 2013-10-31 17:23:32 +0000 |
| 1031 | @@ -1,20 +1,12 @@ |
| 1032 | -/** |
| 1033 | -* Copyright (C) 2009 Canonical Ltd |
| 1034 | -* |
| 1035 | -* This program is free software; you can redistribute it and/or modify |
| 1036 | -* it under the terms of the GNU General Public License as published by |
| 1037 | -* the Free Software Foundation; either version 2 of the License, or |
| 1038 | -* (at your option) any later version. |
| 1039 | -* |
| 1040 | -* This program is distributed in the hope that it will be useful, |
| 1041 | -* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 1042 | -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 1043 | -* GNU General Public License for more details. |
| 1044 | -* |
| 1045 | -* You should have received a copy of the GNU General Public License |
| 1046 | -* along with this program; if not, write to the Free Software |
| 1047 | -* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 1048 | -*/ |
| 1049 | +/******************************************************************************* |
| 1050 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1051 | +* |
| 1052 | +* All rights reserved. This program and the accompanying materials |
| 1053 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1054 | +* which accompanies this distribution, and is available at |
| 1055 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1056 | +* |
| 1057 | +*******************************************************************************/ |
| 1058 | package org.vcs.bazaar.eclipse.core.commands; |
| 1059 | |
| 1060 | import org.eclipse.core.runtime.IProgressMonitor; |
| 1061 | |
| 1062 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/StateChangeCommand.java' |
| 1063 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/StateChangeCommand.java 2009-11-18 08:48:22 +0000 |
| 1064 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/StateChangeCommand.java 2013-10-31 17:23:32 +0000 |
| 1065 | @@ -1,6 +1,12 @@ |
| 1066 | -/** |
| 1067 | - * |
| 1068 | - */ |
| 1069 | +/******************************************************************************* |
| 1070 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1071 | +* |
| 1072 | +* All rights reserved. This program and the accompanying materials |
| 1073 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1074 | +* which accompanies this distribution, and is available at |
| 1075 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1076 | +* |
| 1077 | +*******************************************************************************/ |
| 1078 | package org.vcs.bazaar.eclipse.core.commands; |
| 1079 | |
| 1080 | import org.vcs.bazaar.eclipse.core.listeners.BzrChangeStateEvent; |
| 1081 | |
| 1082 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/StatusCommand.java' |
| 1083 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/StatusCommand.java 2013-09-14 21:15:41 +0000 |
| 1084 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/StatusCommand.java 2013-10-31 17:23:32 +0000 |
| 1085 | @@ -1,6 +1,12 @@ |
| 1086 | -/** |
| 1087 | - * LICENSE + COPYRIGHT |
| 1088 | - */ |
| 1089 | +/******************************************************************************* |
| 1090 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1091 | + * |
| 1092 | + * All rights reserved. This program and the accompanying materials |
| 1093 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1094 | + * which accompanies this distribution, and is available at |
| 1095 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1096 | + * |
| 1097 | + *******************************************************************************/ |
| 1098 | package org.vcs.bazaar.eclipse.core.commands; |
| 1099 | |
| 1100 | import java.io.File; |
| 1101 | |
| 1102 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/SwitchCommand.java' |
| 1103 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/SwitchCommand.java 2013-08-12 19:44:58 +0000 |
| 1104 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/SwitchCommand.java 2013-10-31 17:23:32 +0000 |
| 1105 | @@ -1,6 +1,12 @@ |
| 1106 | -/** |
| 1107 | - * LICENSE + COPYRIGHT |
| 1108 | - */ |
| 1109 | +/******************************************************************************* |
| 1110 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1111 | + * |
| 1112 | + * All rights reserved. This program and the accompanying materials |
| 1113 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1114 | + * which accompanies this distribution, and is available at |
| 1115 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1116 | + * |
| 1117 | + *******************************************************************************/ |
| 1118 | package org.vcs.bazaar.eclipse.core.commands; |
| 1119 | |
| 1120 | import java.util.ArrayList; |
| 1121 | |
| 1122 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/UnBindCommand.java' |
| 1123 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/UnBindCommand.java 2013-03-19 15:05:13 +0000 |
| 1124 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/UnBindCommand.java 2013-10-31 17:23:32 +0000 |
| 1125 | @@ -1,6 +1,12 @@ |
| 1126 | -/** |
| 1127 | - * LICENSE + COPYRIGHT |
| 1128 | - */ |
| 1129 | +/******************************************************************************* |
| 1130 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1131 | + * |
| 1132 | + * All rights reserved. This program and the accompanying materials |
| 1133 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1134 | + * which accompanies this distribution, and is available at |
| 1135 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1136 | + * |
| 1137 | + *******************************************************************************/ |
| 1138 | package org.vcs.bazaar.eclipse.core.commands; |
| 1139 | |
| 1140 | import org.eclipse.core.resources.IResource; |
| 1141 | |
| 1142 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/UnCommitCommand.java' |
| 1143 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/UnCommitCommand.java 2013-03-19 15:05:13 +0000 |
| 1144 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/UnCommitCommand.java 2013-10-31 17:23:32 +0000 |
| 1145 | @@ -1,6 +1,12 @@ |
| 1146 | -/** |
| 1147 | - * LICENSE + COPYRIGHT |
| 1148 | - */ |
| 1149 | +/******************************************************************************* |
| 1150 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1151 | + * |
| 1152 | + * All rights reserved. This program and the accompanying materials |
| 1153 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1154 | + * which accompanies this distribution, and is available at |
| 1155 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1156 | + * |
| 1157 | + *******************************************************************************/ |
| 1158 | package org.vcs.bazaar.eclipse.core.commands; |
| 1159 | |
| 1160 | import org.eclipse.core.resources.IResource; |
| 1161 | |
| 1162 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/UpdateCommand.java' |
| 1163 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/UpdateCommand.java 2013-09-20 20:27:15 +0000 |
| 1164 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/commands/UpdateCommand.java 2013-10-31 17:23:32 +0000 |
| 1165 | @@ -1,6 +1,12 @@ |
| 1166 | -/** |
| 1167 | - * LICENSE + COPYRIGHT |
| 1168 | - */ |
| 1169 | +/******************************************************************************* |
| 1170 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1171 | + * |
| 1172 | + * All rights reserved. This program and the accompanying materials |
| 1173 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1174 | + * which accompanies this distribution, and is available at |
| 1175 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1176 | + * |
| 1177 | + *******************************************************************************/ |
| 1178 | package org.vcs.bazaar.eclipse.core.commands; |
| 1179 | |
| 1180 | import org.eclipse.core.resources.IResource; |
| 1181 | |
| 1182 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/history/BazaarFileHistory.java' |
| 1183 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/history/BazaarFileHistory.java 2013-03-18 09:38:13 +0000 |
| 1184 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/history/BazaarFileHistory.java 2013-10-31 17:23:32 +0000 |
| 1185 | @@ -1,6 +1,12 @@ |
| 1186 | -/** |
| 1187 | - * LICENSE + COPYRIGHT |
| 1188 | - */ |
| 1189 | +/******************************************************************************* |
| 1190 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1191 | + * |
| 1192 | + * All rights reserved. This program and the accompanying materials |
| 1193 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1194 | + * which accompanies this distribution, and is available at |
| 1195 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1196 | + * |
| 1197 | + *******************************************************************************/ |
| 1198 | package org.vcs.bazaar.eclipse.core.history; |
| 1199 | |
| 1200 | import java.util.ArrayList; |
| 1201 | |
| 1202 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/history/BazaarFileRevision.java' |
| 1203 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/history/BazaarFileRevision.java 2013-04-15 10:16:38 +0000 |
| 1204 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/history/BazaarFileRevision.java 2013-10-31 17:23:32 +0000 |
| 1205 | @@ -1,6 +1,12 @@ |
| 1206 | -/** |
| 1207 | - * LICENSE + COPYRIGHT |
| 1208 | - */ |
| 1209 | +/******************************************************************************* |
| 1210 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1211 | + * |
| 1212 | + * All rights reserved. This program and the accompanying materials |
| 1213 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1214 | + * which accompanies this distribution, and is available at |
| 1215 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1216 | + * |
| 1217 | + *******************************************************************************/ |
| 1218 | package org.vcs.bazaar.eclipse.core.history; |
| 1219 | |
| 1220 | import java.util.ArrayList; |
| 1221 | |
| 1222 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/history/BazaarHistoryProvider.java' |
| 1223 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/history/BazaarHistoryProvider.java 2013-04-15 10:16:38 +0000 |
| 1224 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/history/BazaarHistoryProvider.java 2013-10-31 17:23:32 +0000 |
| 1225 | @@ -1,6 +1,12 @@ |
| 1226 | -/** |
| 1227 | - * LICENSE + COPYRIGHT |
| 1228 | - */ |
| 1229 | +/******************************************************************************* |
| 1230 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1231 | + * |
| 1232 | + * All rights reserved. This program and the accompanying materials |
| 1233 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1234 | + * which accompanies this distribution, and is available at |
| 1235 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1236 | + * |
| 1237 | + *******************************************************************************/ |
| 1238 | package org.vcs.bazaar.eclipse.core.history; |
| 1239 | |
| 1240 | import org.eclipse.core.filesystem.IFileStore; |
| 1241 | |
| 1242 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/AbstractResourceChangeListener.java' |
| 1243 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/AbstractResourceChangeListener.java 2013-03-17 13:10:17 +0000 |
| 1244 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/AbstractResourceChangeListener.java 2013-10-31 17:23:32 +0000 |
| 1245 | @@ -1,3 +1,12 @@ |
| 1246 | +/******************************************************************************* |
| 1247 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1248 | +* |
| 1249 | +* All rights reserved. This program and the accompanying materials |
| 1250 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1251 | +* which accompanies this distribution, and is available at |
| 1252 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1253 | +* |
| 1254 | +*******************************************************************************/ |
| 1255 | package org.vcs.bazaar.eclipse.core.listeners; |
| 1256 | |
| 1257 | import java.util.Collection; |
| 1258 | @@ -23,4 +32,4 @@ |
| 1259 | super(); |
| 1260 | } |
| 1261 | |
| 1262 | -} |
| 1263 | \ No newline at end of file |
| 1264 | +} |
| 1265 | |
| 1266 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/BzrChangeStateEvent.java' |
| 1267 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/BzrChangeStateEvent.java 2009-11-18 08:48:22 +0000 |
| 1268 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/BzrChangeStateEvent.java 2013-10-31 17:23:32 +0000 |
| 1269 | @@ -1,6 +1,12 @@ |
| 1270 | -/** |
| 1271 | - * |
| 1272 | - */ |
| 1273 | +/******************************************************************************* |
| 1274 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1275 | +* |
| 1276 | +* All rights reserved. This program and the accompanying materials |
| 1277 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1278 | +* which accompanies this distribution, and is available at |
| 1279 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1280 | +* |
| 1281 | +*******************************************************************************/ |
| 1282 | package org.vcs.bazaar.eclipse.core.listeners; |
| 1283 | |
| 1284 | import java.util.Collection; |
| 1285 | |
| 1286 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/IResourceStateListener.java' |
| 1287 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/IResourceStateListener.java 2008-12-13 23:37:48 +0000 |
| 1288 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/IResourceStateListener.java 2013-10-31 17:23:32 +0000 |
| 1289 | @@ -1,3 +1,12 @@ |
| 1290 | +/******************************************************************************* |
| 1291 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1292 | +* |
| 1293 | +* All rights reserved. This program and the accompanying materials |
| 1294 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1295 | +* which accompanies this distribution, and is available at |
| 1296 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1297 | +* |
| 1298 | +*******************************************************************************/ |
| 1299 | package org.vcs.bazaar.eclipse.core.listeners; |
| 1300 | |
| 1301 | import java.util.EventListener; |
| 1302 | |
| 1303 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/SyncFileChangeListener.java' |
| 1304 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/SyncFileChangeListener.java 2013-07-17 17:21:42 +0000 |
| 1305 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/listeners/SyncFileChangeListener.java 2013-10-31 17:23:32 +0000 |
| 1306 | @@ -1,6 +1,12 @@ |
| 1307 | -/** |
| 1308 | - * LICENSE + COPYRIGHT |
| 1309 | - */ |
| 1310 | +/******************************************************************************* |
| 1311 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1312 | + * |
| 1313 | + * All rights reserved. This program and the accompanying materials |
| 1314 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1315 | + * which accompanies this distribution, and is available at |
| 1316 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1317 | + * |
| 1318 | + *******************************************************************************/ |
| 1319 | package org.vcs.bazaar.eclipse.core.listeners; |
| 1320 | |
| 1321 | import static org.vcs.bazaar.eclipse.core.utils.ResourceUtil.shouldHandle; |
| 1322 | |
| 1323 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/log/LogCacheManager.java' |
| 1324 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/log/LogCacheManager.java 2013-09-04 16:00:11 +0000 |
| 1325 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/log/LogCacheManager.java 2013-10-31 17:23:32 +0000 |
| 1326 | @@ -1,6 +1,12 @@ |
| 1327 | -/** |
| 1328 | - * LICENSE + COPYRIGHT |
| 1329 | - */ |
| 1330 | +/******************************************************************************* |
| 1331 | + * Copyright (c) 2008-2013 Guillermo Gonzalez |
| 1332 | + * |
| 1333 | + * All rights reserved. This program and the accompanying materials |
| 1334 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1335 | + * which accompanies this distribution, and is available at |
| 1336 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1337 | + * |
| 1338 | + *******************************************************************************/ |
| 1339 | package org.vcs.bazaar.eclipse.core.log; |
| 1340 | |
| 1341 | import java.util.Collections; |
| 1342 | |
| 1343 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/log/LogUpdater.java' |
| 1344 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/log/LogUpdater.java 2013-03-18 09:38:13 +0000 |
| 1345 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/log/LogUpdater.java 2013-10-31 17:23:32 +0000 |
| 1346 | @@ -1,3 +1,12 @@ |
| 1347 | +/******************************************************************************* |
| 1348 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1349 | +* |
| 1350 | +* All rights reserved. This program and the accompanying materials |
| 1351 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1352 | +* which accompanies this distribution, and is available at |
| 1353 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1354 | +* |
| 1355 | +*******************************************************************************/ |
| 1356 | package org.vcs.bazaar.eclipse.core.log; |
| 1357 | |
| 1358 | import java.util.List; |
| 1359 | |
| 1360 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBranchStatus.java' |
| 1361 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBranchStatus.java 2009-11-18 08:48:22 +0000 |
| 1362 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBranchStatus.java 2013-10-31 17:23:32 +0000 |
| 1363 | @@ -1,6 +1,12 @@ |
| 1364 | -/** |
| 1365 | - * LICENSE + COPYRIGHT |
| 1366 | - */ |
| 1367 | +/******************************************************************************* |
| 1368 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1369 | + * |
| 1370 | + * All rights reserved. This program and the accompanying materials |
| 1371 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1372 | + * which accompanies this distribution, and is available at |
| 1373 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1374 | + * |
| 1375 | + *******************************************************************************/ |
| 1376 | package org.vcs.bazaar.eclipse.core.model; |
| 1377 | |
| 1378 | import java.util.Set; |
| 1379 | |
| 1380 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrBranch.java' |
| 1381 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrBranch.java 2013-09-29 21:47:12 +0000 |
| 1382 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrBranch.java 2013-10-31 17:23:32 +0000 |
| 1383 | @@ -1,6 +1,12 @@ |
| 1384 | -/** |
| 1385 | - * LICENSE + COPYRIGHT |
| 1386 | - */ |
| 1387 | +/******************************************************************************* |
| 1388 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1389 | + * |
| 1390 | + * All rights reserved. This program and the accompanying materials |
| 1391 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1392 | + * which accompanies this distribution, and is available at |
| 1393 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1394 | + * |
| 1395 | + *******************************************************************************/ |
| 1396 | package org.vcs.bazaar.eclipse.core.model; |
| 1397 | |
| 1398 | import java.io.File; |
| 1399 | |
| 1400 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrFile.java' |
| 1401 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrFile.java 2009-11-18 08:48:22 +0000 |
| 1402 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrFile.java 2013-10-31 17:23:32 +0000 |
| 1403 | @@ -1,6 +1,12 @@ |
| 1404 | -/** |
| 1405 | - * LICENSE + COPYRIGHT |
| 1406 | - */ |
| 1407 | +/******************************************************************************* |
| 1408 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1409 | + * |
| 1410 | + * All rights reserved. This program and the accompanying materials |
| 1411 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1412 | + * which accompanies this distribution, and is available at |
| 1413 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1414 | + * |
| 1415 | + *******************************************************************************/ |
| 1416 | package org.vcs.bazaar.eclipse.core.model; |
| 1417 | |
| 1418 | /** |
| 1419 | |
| 1420 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrFolder.java' |
| 1421 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrFolder.java 2009-11-18 08:48:22 +0000 |
| 1422 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrFolder.java 2013-10-31 17:23:32 +0000 |
| 1423 | @@ -1,6 +1,12 @@ |
| 1424 | -/** |
| 1425 | - * LICENSE + COPYRIGHT |
| 1426 | - */ |
| 1427 | +/******************************************************************************* |
| 1428 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1429 | + * |
| 1430 | + * All rights reserved. This program and the accompanying materials |
| 1431 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1432 | + * which accompanies this distribution, and is available at |
| 1433 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1434 | + * |
| 1435 | + *******************************************************************************/ |
| 1436 | package org.vcs.bazaar.eclipse.core.model; |
| 1437 | |
| 1438 | import org.eclipse.core.runtime.CoreException; |
| 1439 | |
| 1440 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrMissingRevisions.java' |
| 1441 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrMissingRevisions.java 2009-11-18 08:48:22 +0000 |
| 1442 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrMissingRevisions.java 2013-10-31 17:23:32 +0000 |
| 1443 | @@ -1,6 +1,12 @@ |
| 1444 | -/** |
| 1445 | - * LICENSE + COPYRIGHT |
| 1446 | - */ |
| 1447 | +/******************************************************************************* |
| 1448 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1449 | + * |
| 1450 | + * All rights reserved. This program and the accompanying materials |
| 1451 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1452 | + * which accompanies this distribution, and is available at |
| 1453 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1454 | + * |
| 1455 | + *******************************************************************************/ |
| 1456 | package org.vcs.bazaar.eclipse.core.model; |
| 1457 | |
| 1458 | import java.util.List; |
| 1459 | |
| 1460 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrObject.java' |
| 1461 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrObject.java 2009-11-18 08:48:22 +0000 |
| 1462 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrObject.java 2013-10-31 17:23:32 +0000 |
| 1463 | @@ -1,6 +1,12 @@ |
| 1464 | -/** |
| 1465 | - * LICENSE + COPYRIGHT |
| 1466 | - */ |
| 1467 | + /******************************************************************************* |
| 1468 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1469 | + * |
| 1470 | + * All rights reserved. This program and the accompanying materials |
| 1471 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1472 | + * which accompanies this distribution, and is available at |
| 1473 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1474 | + * |
| 1475 | + *******************************************************************************/* |
| 1476 | package org.vcs.bazaar.eclipse.core.model; |
| 1477 | |
| 1478 | import org.eclipse.core.runtime.IAdaptable; |
| 1479 | |
| 1480 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrResource.java' |
| 1481 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrResource.java 2009-11-18 08:48:22 +0000 |
| 1482 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrResource.java 2013-10-31 17:23:32 +0000 |
| 1483 | @@ -1,3 +1,12 @@ |
| 1484 | +/******************************************************************************* |
| 1485 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1486 | +* |
| 1487 | +* All rights reserved. This program and the accompanying materials |
| 1488 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1489 | +* which accompanies this distribution, and is available at |
| 1490 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1491 | +* |
| 1492 | +*******************************************************************************/ |
| 1493 | package org.vcs.bazaar.eclipse.core.model; |
| 1494 | |
| 1495 | import java.net.URI; |
| 1496 | |
| 1497 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrResourceStatus.java' |
| 1498 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrResourceStatus.java 2013-03-12 13:36:34 +0000 |
| 1499 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrResourceStatus.java 2013-10-31 17:23:32 +0000 |
| 1500 | @@ -1,6 +1,12 @@ |
| 1501 | -/** |
| 1502 | - * LICENSE + COPYRIGHT |
| 1503 | - */ |
| 1504 | +/******************************************************************************* |
| 1505 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1506 | + * |
| 1507 | + * All rights reserved. This program and the accompanying materials |
| 1508 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1509 | + * which accompanies this distribution, and is available at |
| 1510 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1511 | + * |
| 1512 | + *******************************************************************************/ |
| 1513 | package org.vcs.bazaar.eclipse.core.model; |
| 1514 | |
| 1515 | import org.vcs.bazaar.client.BazaarStatusKind; |
| 1516 | |
| 1517 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrTag.java' |
| 1518 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrTag.java 2009-11-18 08:48:22 +0000 |
| 1519 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/IBzrTag.java 2013-10-31 17:23:32 +0000 |
| 1520 | @@ -1,6 +1,12 @@ |
| 1521 | -/** |
| 1522 | - * LICENSE + COPYRIGHT |
| 1523 | - */ |
| 1524 | +/******************************************************************************* |
| 1525 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1526 | + * |
| 1527 | + * All rights reserved. This program and the accompanying materials |
| 1528 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1529 | + * which accompanies this distribution, and is available at |
| 1530 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1531 | + * |
| 1532 | + *******************************************************************************/ |
| 1533 | package org.vcs.bazaar.eclipse.core.model; |
| 1534 | |
| 1535 | /** |
| 1536 | |
| 1537 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalBranch.java' |
| 1538 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalBranch.java 2013-07-17 17:22:00 +0000 |
| 1539 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalBranch.java 2013-10-31 17:23:32 +0000 |
| 1540 | @@ -1,6 +1,12 @@ |
| 1541 | -/** |
| 1542 | - * LICENSE + COPYRIGHT |
| 1543 | - */ |
| 1544 | +/******************************************************************************* |
| 1545 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1546 | + * |
| 1547 | + * All rights reserved. This program and the accompanying materials |
| 1548 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1549 | + * which accompanies this distribution, and is available at |
| 1550 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1551 | + * |
| 1552 | + *******************************************************************************/ |
| 1553 | package org.vcs.bazaar.eclipse.core.model.local; |
| 1554 | |
| 1555 | import org.vcs.bazaar.client.core.BranchLocation; |
| 1556 | |
| 1557 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalFile.java' |
| 1558 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalFile.java 2009-11-18 08:48:22 +0000 |
| 1559 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalFile.java 2013-10-31 17:23:32 +0000 |
| 1560 | @@ -1,6 +1,12 @@ |
| 1561 | -/** |
| 1562 | - * LICENSE + COPYRIGHT |
| 1563 | - */ |
| 1564 | +/******************************************************************************* |
| 1565 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1566 | + * |
| 1567 | + * All rights reserved. This program and the accompanying materials |
| 1568 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1569 | + * which accompanies this distribution, and is available at |
| 1570 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1571 | + * |
| 1572 | + *******************************************************************************/ |
| 1573 | package org.vcs.bazaar.eclipse.core.model.local; |
| 1574 | |
| 1575 | import org.eclipse.core.resources.IFile; |
| 1576 | |
| 1577 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalFolder.java' |
| 1578 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalFolder.java 2009-11-18 08:48:22 +0000 |
| 1579 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalFolder.java 2013-10-31 17:23:32 +0000 |
| 1580 | @@ -1,6 +1,12 @@ |
| 1581 | -/** |
| 1582 | - * LICENSE + COPYRIGHT |
| 1583 | - */ |
| 1584 | +/******************************************************************************* |
| 1585 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1586 | + * |
| 1587 | + * All rights reserved. This program and the accompanying materials |
| 1588 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1589 | + * which accompanies this distribution, and is available at |
| 1590 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1591 | + * |
| 1592 | + *******************************************************************************/ |
| 1593 | package org.vcs.bazaar.eclipse.core.model.local; |
| 1594 | |
| 1595 | import org.vcs.bazaar.eclipse.core.model.IBzrFolder; |
| 1596 | |
| 1597 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalResource.java' |
| 1598 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalResource.java 2013-09-12 10:03:07 +0000 |
| 1599 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/local/IBzrLocalResource.java 2013-10-31 17:23:32 +0000 |
| 1600 | @@ -1,6 +1,12 @@ |
| 1601 | -/** |
| 1602 | - * |
| 1603 | - */ |
| 1604 | +/******************************************************************************* |
| 1605 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1606 | +* |
| 1607 | +* All rights reserved. This program and the accompanying materials |
| 1608 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1609 | +* which accompanies this distribution, and is available at |
| 1610 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1611 | +* |
| 1612 | +*******************************************************************************/ |
| 1613 | package org.vcs.bazaar.eclipse.core.model.local; |
| 1614 | |
| 1615 | import java.io.File; |
| 1616 | |
| 1617 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/remote/IBzrRemoteFile.java' |
| 1618 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/remote/IBzrRemoteFile.java 2009-11-18 08:48:22 +0000 |
| 1619 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/remote/IBzrRemoteFile.java 2013-10-31 17:23:32 +0000 |
| 1620 | @@ -1,6 +1,12 @@ |
| 1621 | -/** |
| 1622 | - * LICENSE + COPYRIGHT |
| 1623 | - */ |
| 1624 | +/******************************************************************************* |
| 1625 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1626 | + * |
| 1627 | + * All rights reserved. This program and the accompanying materials |
| 1628 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1629 | + * which accompanies this distribution, and is available at |
| 1630 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1631 | + * |
| 1632 | + *******************************************************************************/ |
| 1633 | package org.vcs.bazaar.eclipse.core.model.remote; |
| 1634 | |
| 1635 | |
| 1636 | |
| 1637 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/remote/IBzrRemoteFolder.java' |
| 1638 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/remote/IBzrRemoteFolder.java 2009-11-18 08:48:22 +0000 |
| 1639 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/remote/IBzrRemoteFolder.java 2013-10-31 17:23:32 +0000 |
| 1640 | @@ -1,6 +1,12 @@ |
| 1641 | -/** |
| 1642 | - * LICENSE + COPYRIGHT |
| 1643 | - */ |
| 1644 | +/******************************************************************************* |
| 1645 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1646 | + * |
| 1647 | + * All rights reserved. This program and the accompanying materials |
| 1648 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1649 | + * which accompanies this distribution, and is available at |
| 1650 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1651 | + * |
| 1652 | + *******************************************************************************/ |
| 1653 | package org.vcs.bazaar.eclipse.core.model.remote; |
| 1654 | |
| 1655 | import org.eclipse.core.runtime.CoreException; |
| 1656 | |
| 1657 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/remote/IBzrRemoteResource.java' |
| 1658 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/remote/IBzrRemoteResource.java 2009-11-18 08:48:22 +0000 |
| 1659 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/model/remote/IBzrRemoteResource.java 2013-10-31 17:23:32 +0000 |
| 1660 | @@ -1,6 +1,12 @@ |
| 1661 | -/** |
| 1662 | - * |
| 1663 | - */ |
| 1664 | +/******************************************************************************* |
| 1665 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1666 | +* |
| 1667 | +* All rights reserved. This program and the accompanying materials |
| 1668 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1669 | +* which accompanies this distribution, and is available at |
| 1670 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1671 | +* |
| 1672 | +*******************************************************************************/ |
| 1673 | package org.vcs.bazaar.eclipse.core.model.remote; |
| 1674 | |
| 1675 | import org.vcs.bazaar.eclipse.core.model.IBzrResource; |
| 1676 | |
| 1677 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BazaarTeamProvider.java' |
| 1678 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BazaarTeamProvider.java 2013-09-03 09:05:27 +0000 |
| 1679 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BazaarTeamProvider.java 2013-10-31 17:23:32 +0000 |
| 1680 | @@ -1,6 +1,12 @@ |
| 1681 | -/** |
| 1682 | - * LICENSE + COPYRIGHT |
| 1683 | - */ |
| 1684 | +/******************************************************************************* |
| 1685 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1686 | + * |
| 1687 | + * All rights reserved. This program and the accompanying materials |
| 1688 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1689 | + * which accompanies this distribution, and is available at |
| 1690 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1691 | + * |
| 1692 | + *******************************************************************************/ |
| 1693 | package org.vcs.bazaar.eclipse.core.repository; |
| 1694 | |
| 1695 | import org.eclipse.core.resources.IProject; |
| 1696 | |
| 1697 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BazaarTeamProviderType.java' |
| 1698 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BazaarTeamProviderType.java 2013-09-18 09:51:10 +0000 |
| 1699 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BazaarTeamProviderType.java 2013-10-31 17:23:32 +0000 |
| 1700 | @@ -1,3 +1,12 @@ |
| 1701 | +/******************************************************************************* |
| 1702 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1703 | +* |
| 1704 | +* All rights reserved. This program and the accompanying materials |
| 1705 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1706 | +* which accompanies this distribution, and is available at |
| 1707 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1708 | +* |
| 1709 | +*******************************************************************************/ |
| 1710 | package org.vcs.bazaar.eclipse.core.repository; |
| 1711 | |
| 1712 | import org.eclipse.core.resources.IContainer; |
| 1713 | |
| 1714 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BranchFactory.java' |
| 1715 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BranchFactory.java 2013-02-19 14:12:06 +0000 |
| 1716 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BranchFactory.java 2013-10-31 17:23:32 +0000 |
| 1717 | @@ -1,6 +1,12 @@ |
| 1718 | -/** |
| 1719 | - * LICENCSE + COPYRIGHT |
| 1720 | - */ |
| 1721 | +/******************************************************************************* |
| 1722 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1723 | + * |
| 1724 | + * All rights reserved. This program and the accompanying materials |
| 1725 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1726 | + * which accompanies this distribution, and is available at |
| 1727 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1728 | + * |
| 1729 | + *******************************************************************************/ |
| 1730 | package org.vcs.bazaar.eclipse.core.repository; |
| 1731 | |
| 1732 | import java.net.URI; |
| 1733 | |
| 1734 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BranchTypeException.java' |
| 1735 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BranchTypeException.java 2007-09-15 15:24:56 +0000 |
| 1736 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/repository/BranchTypeException.java 2013-10-31 17:23:32 +0000 |
| 1737 | @@ -1,3 +1,12 @@ |
| 1738 | +/******************************************************************************* |
| 1739 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1740 | +* |
| 1741 | +* All rights reserved. This program and the accompanying materials |
| 1742 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1743 | +* which accompanies this distribution, and is available at |
| 1744 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1745 | +* |
| 1746 | +*******************************************************************************/ |
| 1747 | package org.vcs.bazaar.eclipse.core.repository; |
| 1748 | |
| 1749 | import java.net.URI; |
| 1750 | |
| 1751 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/resources/BazaarMoveDeleteHook.java' |
| 1752 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/resources/BazaarMoveDeleteHook.java 2013-07-17 17:21:42 +0000 |
| 1753 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/resources/BazaarMoveDeleteHook.java 2013-10-31 17:23:32 +0000 |
| 1754 | @@ -1,6 +1,12 @@ |
| 1755 | -/** |
| 1756 | - * LICENSE + COPYRIGHT |
| 1757 | - */ |
| 1758 | +/******************************************************************************* |
| 1759 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1760 | + * |
| 1761 | + * All rights reserved. This program and the accompanying materials |
| 1762 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1763 | + * which accompanies this distribution, and is available at |
| 1764 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1765 | + * |
| 1766 | + *******************************************************************************/ |
| 1767 | package org.vcs.bazaar.eclipse.core.resources; |
| 1768 | |
| 1769 | import static org.vcs.bazaar.eclipse.core.utils.ResourceUtil.shouldHandle; |
| 1770 | |
| 1771 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/resources/IStorageBazaarRevision.java' |
| 1772 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/resources/IStorageBazaarRevision.java 2013-09-20 06:47:39 +0000 |
| 1773 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/resources/IStorageBazaarRevision.java 2013-10-31 17:23:32 +0000 |
| 1774 | @@ -1,6 +1,12 @@ |
| 1775 | -/** |
| 1776 | - * LICENSE + COPYRIGHT |
| 1777 | - */ |
| 1778 | +/******************************************************************************* |
| 1779 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1780 | + * |
| 1781 | + * All rights reserved. This program and the accompanying materials |
| 1782 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1783 | + * which accompanies this distribution, and is available at |
| 1784 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1785 | + * |
| 1786 | + *******************************************************************************/ |
| 1787 | package org.vcs.bazaar.eclipse.core.resources; |
| 1788 | |
| 1789 | import java.io.IOException; |
| 1790 | |
| 1791 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/subscriber/BazaarLocalVariantComparator.java' |
| 1792 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/subscriber/BazaarLocalVariantComparator.java 2009-11-18 08:48:22 +0000 |
| 1793 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/subscriber/BazaarLocalVariantComparator.java 2013-10-31 17:23:32 +0000 |
| 1794 | @@ -1,6 +1,12 @@ |
| 1795 | -/** |
| 1796 | - * |
| 1797 | - */ |
| 1798 | +/******************************************************************************* |
| 1799 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1800 | +* |
| 1801 | +* All rights reserved. This program and the accompanying materials |
| 1802 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1803 | +* which accompanies this distribution, and is available at |
| 1804 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1805 | +* |
| 1806 | +*******************************************************************************/ |
| 1807 | package org.vcs.bazaar.eclipse.core.subscriber; |
| 1808 | |
| 1809 | import org.eclipse.core.resources.IResource; |
| 1810 | @@ -22,4 +28,4 @@ |
| 1811 | public boolean isThreeWay() { |
| 1812 | return false; |
| 1813 | } |
| 1814 | -} |
| 1815 | \ No newline at end of file |
| 1816 | +} |
| 1817 | |
| 1818 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/subscriber/BazaarResourceVariant.java' |
| 1819 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/subscriber/BazaarResourceVariant.java 2013-09-20 06:05:50 +0000 |
| 1820 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/subscriber/BazaarResourceVariant.java 2013-10-31 17:23:32 +0000 |
| 1821 | @@ -1,6 +1,12 @@ |
| 1822 | -/** |
| 1823 | - * LICENSE + COPYRIGHT |
| 1824 | - */ |
| 1825 | +/******************************************************************************* |
| 1826 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1827 | + * |
| 1828 | + * All rights reserved. This program and the accompanying materials |
| 1829 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1830 | + * which accompanies this distribution, and is available at |
| 1831 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1832 | + * |
| 1833 | + *******************************************************************************/ |
| 1834 | package org.vcs.bazaar.eclipse.core.subscriber; |
| 1835 | |
| 1836 | import java.io.BufferedInputStream; |
| 1837 | |
| 1838 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/subscriber/BazaarStatusSuscriber.java' |
| 1839 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/subscriber/BazaarStatusSuscriber.java 2013-09-18 14:56:34 +0000 |
| 1840 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/subscriber/BazaarStatusSuscriber.java 2013-10-31 17:23:32 +0000 |
| 1841 | @@ -1,6 +1,12 @@ |
| 1842 | -/** |
| 1843 | - * LICENCSE + COPYRIGHT |
| 1844 | - */ |
| 1845 | +/******************************************************************************* |
| 1846 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1847 | + * |
| 1848 | + * All rights reserved. This program and the accompanying materials |
| 1849 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1850 | + * which accompanies this distribution, and is available at |
| 1851 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1852 | + * |
| 1853 | + *******************************************************************************/ |
| 1854 | package org.vcs.bazaar.eclipse.core.subscriber; |
| 1855 | |
| 1856 | import static org.vcs.bazaar.eclipse.core.utils.ResourceUtil.shouldHandle; |
| 1857 | |
| 1858 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/BzrJobStatus.java' |
| 1859 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/BzrJobStatus.java 2009-11-18 08:48:22 +0000 |
| 1860 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/BzrJobStatus.java 2013-10-31 17:23:32 +0000 |
| 1861 | @@ -1,3 +1,12 @@ |
| 1862 | +/******************************************************************************* |
| 1863 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1864 | +* |
| 1865 | +* All rights reserved. This program and the accompanying materials |
| 1866 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1867 | +* which accompanies this distribution, and is available at |
| 1868 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1869 | +* |
| 1870 | +*******************************************************************************/ |
| 1871 | package org.vcs.bazaar.eclipse.core.utils; |
| 1872 | |
| 1873 | import org.eclipse.core.runtime.IStatus; |
| 1874 | |
| 1875 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/BzrTeamStatus.java' |
| 1876 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/BzrTeamStatus.java 2013-09-18 09:51:10 +0000 |
| 1877 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/BzrTeamStatus.java 2013-10-31 17:23:32 +0000 |
| 1878 | @@ -1,3 +1,12 @@ |
| 1879 | +/******************************************************************************* |
| 1880 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1881 | +* |
| 1882 | +* All rights reserved. This program and the accompanying materials |
| 1883 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1884 | +* which accompanies this distribution, and is available at |
| 1885 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1886 | +* |
| 1887 | +*******************************************************************************/ |
| 1888 | package org.vcs.bazaar.eclipse.core.utils; |
| 1889 | |
| 1890 | import org.eclipse.core.resources.IResource; |
| 1891 | |
| 1892 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/ResourceUtil.java' |
| 1893 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/ResourceUtil.java 2013-09-20 06:05:50 +0000 |
| 1894 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/ResourceUtil.java 2013-10-31 17:23:32 +0000 |
| 1895 | @@ -1,6 +1,12 @@ |
| 1896 | -/** |
| 1897 | - * LICENSE + COPYRIGHT |
| 1898 | - */ |
| 1899 | +/******************************************************************************* |
| 1900 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1901 | + * |
| 1902 | + * All rights reserved. This program and the accompanying materials |
| 1903 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1904 | + * which accompanies this distribution, and is available at |
| 1905 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1906 | + * |
| 1907 | + *******************************************************************************/ |
| 1908 | package org.vcs.bazaar.eclipse.core.utils; |
| 1909 | |
| 1910 | import java.io.File; |
| 1911 | |
| 1912 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/TracingUtils.java' |
| 1913 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/TracingUtils.java 2009-11-18 08:48:22 +0000 |
| 1914 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/core/utils/TracingUtils.java 2013-10-31 17:23:32 +0000 |
| 1915 | @@ -1,6 +1,12 @@ |
| 1916 | -/** |
| 1917 | - * |
| 1918 | - */ |
| 1919 | +/******************************************************************************* |
| 1920 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1921 | +* |
| 1922 | +* All rights reserved. This program and the accompanying materials |
| 1923 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1924 | +* which accompanies this distribution, and is available at |
| 1925 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1926 | +* |
| 1927 | +*******************************************************************************/ |
| 1928 | package org.vcs.bazaar.eclipse.core.utils; |
| 1929 | |
| 1930 | import org.eclipse.core.resources.IResource; |
| 1931 | |
| 1932 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/BazaarException.java' |
| 1933 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/BazaarException.java 2013-09-20 20:27:15 +0000 |
| 1934 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/BazaarException.java 2013-10-31 17:23:32 +0000 |
| 1935 | @@ -1,3 +1,12 @@ |
| 1936 | +/******************************************************************************* |
| 1937 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1938 | +* |
| 1939 | +* All rights reserved. This program and the accompanying materials |
| 1940 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1941 | +* which accompanies this distribution, and is available at |
| 1942 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1943 | +* |
| 1944 | +*******************************************************************************/ |
| 1945 | package org.vcs.bazaar.eclipse.internal.core; |
| 1946 | |
| 1947 | import java.io.IOException; |
| 1948 | |
| 1949 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrBranch.java' |
| 1950 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrBranch.java 2013-02-09 21:34:26 +0000 |
| 1951 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrBranch.java 2013-10-31 17:23:32 +0000 |
| 1952 | @@ -1,3 +1,12 @@ |
| 1953 | +/******************************************************************************* |
| 1954 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1955 | +* |
| 1956 | +* All rights reserved. This program and the accompanying materials |
| 1957 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 1958 | +* which accompanies this distribution, and is available at |
| 1959 | +* http://www.eclipse.org/legal/epl-v10.html |
| 1960 | +* |
| 1961 | +*******************************************************************************/ |
| 1962 | package org.vcs.bazaar.eclipse.internal.core.model; |
| 1963 | |
| 1964 | import java.net.URI; |
| 1965 | |
| 1966 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrMissingRevisions.java' |
| 1967 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrMissingRevisions.java 2009-11-18 08:48:22 +0000 |
| 1968 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrMissingRevisions.java 2013-10-31 17:23:32 +0000 |
| 1969 | @@ -1,6 +1,12 @@ |
| 1970 | -/** |
| 1971 | - * LICENSE + COPYRIGHT |
| 1972 | - */ |
| 1973 | +/******************************************************************************* |
| 1974 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 1975 | + * |
| 1976 | + * All rights reserved. This program and the accompanying materials |
| 1977 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1978 | + * which accompanies this distribution, and is available at |
| 1979 | + * http://www.eclipse.org/legal/epl-v10.html |
| 1980 | + * |
| 1981 | + *******************************************************************************/ |
| 1982 | package org.vcs.bazaar.eclipse.internal.core.model; |
| 1983 | |
| 1984 | import java.util.List; |
| 1985 | |
| 1986 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrObject.java' |
| 1987 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrObject.java 2009-11-18 08:48:22 +0000 |
| 1988 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrObject.java 2013-10-31 17:23:32 +0000 |
| 1989 | @@ -1,6 +1,12 @@ |
| 1990 | -/** |
| 1991 | - * LICENSE + COPYRIGHT |
| 1992 | - */ |
| 1993 | +/******************************************************************************* |
| 1994 | + * Copyright (c) 2007-2011 Guillermo Gonzalez |
| 1995 | + * |
| 1996 | + * All rights reserved. This program and the accompanying materials |
| 1997 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 1998 | + * which accompanies this distribution, and is available at |
| 1999 | + * http://www.eclipse.org/legal/epl-v10.html |
| 2000 | + * |
| 2001 | + *******************************************************************************/ |
| 2002 | package org.vcs.bazaar.eclipse.internal.core.model; |
| 2003 | |
| 2004 | import org.eclipse.core.runtime.PlatformObject; |
| 2005 | |
| 2006 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrResource.java' |
| 2007 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrResource.java 2009-11-18 08:48:22 +0000 |
| 2008 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrResource.java 2013-10-31 17:23:32 +0000 |
| 2009 | @@ -1,6 +1,12 @@ |
| 2010 | -/** |
| 2011 | - * LICENSE + COPYRIGHT |
| 2012 | - */ |
| 2013 | +/******************************************************************************* |
| 2014 | + * Copyright (c) 2007-2011 Guillermo Gonzalez |
| 2015 | + * |
| 2016 | + * All rights reserved. This program and the accompanying materials |
| 2017 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 2018 | + * which accompanies this distribution, and is available at |
| 2019 | + * http://www.eclipse.org/legal/epl-v10.html |
| 2020 | + * |
| 2021 | + *******************************************************************************/ |
| 2022 | package org.vcs.bazaar.eclipse.internal.core.model; |
| 2023 | |
| 2024 | import org.vcs.bazaar.eclipse.core.model.IBzrBranch; |
| 2025 | |
| 2026 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrResourceStatus.java' |
| 2027 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrResourceStatus.java 2013-09-18 09:51:23 +0000 |
| 2028 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/BzrResourceStatus.java 2013-10-31 17:23:32 +0000 |
| 2029 | @@ -1,6 +1,12 @@ |
| 2030 | -/** |
| 2031 | - * LICENSE + COPYRIGHT |
| 2032 | - */ |
| 2033 | +/******************************************************************************* |
| 2034 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 2035 | + * |
| 2036 | + * All rights reserved. This program and the accompanying materials |
| 2037 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 2038 | + * which accompanies this distribution, and is available at |
| 2039 | + * http://www.eclipse.org/legal/epl-v10.html |
| 2040 | + * |
| 2041 | + *******************************************************************************/ |
| 2042 | package org.vcs.bazaar.eclipse.internal.core.model; |
| 2043 | |
| 2044 | import org.vcs.bazaar.client.BazaarStatusKind; |
| 2045 | |
| 2046 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/LocalBranch.java' |
| 2047 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/LocalBranch.java 2013-09-02 12:31:55 +0000 |
| 2048 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/LocalBranch.java 2013-10-31 17:23:32 +0000 |
| 2049 | @@ -142,4 +142,4 @@ |
| 2050 | return null; |
| 2051 | } |
| 2052 | |
| 2053 | -} |
| 2054 | \ No newline at end of file |
| 2055 | +} |
| 2056 | |
| 2057 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/LpBranch.java' |
| 2058 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/LpBranch.java 2013-09-08 17:22:22 +0000 |
| 2059 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/LpBranch.java 2013-10-31 17:23:32 +0000 |
| 2060 | @@ -1,6 +1,12 @@ |
| 2061 | -/** |
| 2062 | - * |
| 2063 | - */ |
| 2064 | +/******************************************************************************* |
| 2065 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 2066 | +* |
| 2067 | +* All rights reserved. This program and the accompanying materials |
| 2068 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 2069 | +* which accompanies this distribution, and is available at |
| 2070 | +* http://www.eclipse.org/legal/epl-v10.html |
| 2071 | +* |
| 2072 | +*******************************************************************************/ |
| 2073 | package org.vcs.bazaar.eclipse.internal.core.model; |
| 2074 | |
| 2075 | import java.net.URI; |
| 2076 | |
| 2077 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/RemoteBranch.java' |
| 2078 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/RemoteBranch.java 2013-02-09 21:34:26 +0000 |
| 2079 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/RemoteBranch.java 2013-10-31 17:23:32 +0000 |
| 2080 | @@ -1,6 +1,12 @@ |
| 2081 | -/** |
| 2082 | - * LICENSE + COPYRIGHT |
| 2083 | - */ |
| 2084 | +/******************************************************************************* |
| 2085 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 2086 | + * |
| 2087 | + * All rights reserved. This program and the accompanying materials |
| 2088 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 2089 | + * which accompanies this distribution, and is available at |
| 2090 | + * http://www.eclipse.org/legal/epl-v10.html |
| 2091 | + * |
| 2092 | + *******************************************************************************/ |
| 2093 | package org.vcs.bazaar.eclipse.internal.core.model; |
| 2094 | |
| 2095 | import java.io.File; |
| 2096 | |
| 2097 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/local/BzrLocalFile.java' |
| 2098 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/local/BzrLocalFile.java 2009-11-18 08:48:22 +0000 |
| 2099 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/local/BzrLocalFile.java 2013-10-31 17:23:32 +0000 |
| 2100 | @@ -1,6 +1,12 @@ |
| 2101 | -/** |
| 2102 | - * |
| 2103 | - */ |
| 2104 | +/******************************************************************************* |
| 2105 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 2106 | +* |
| 2107 | +* All rights reserved. This program and the accompanying materials |
| 2108 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 2109 | +* which accompanies this distribution, and is available at |
| 2110 | +* http://www.eclipse.org/legal/epl-v10.html |
| 2111 | +* |
| 2112 | +*******************************************************************************/ |
| 2113 | package org.vcs.bazaar.eclipse.internal.core.model.local; |
| 2114 | |
| 2115 | import org.eclipse.core.resources.IFile; |
| 2116 | |
| 2117 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/local/BzrLocalFolder.java' |
| 2118 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/local/BzrLocalFolder.java 2009-11-18 08:48:22 +0000 |
| 2119 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/local/BzrLocalFolder.java 2013-10-31 17:23:32 +0000 |
| 2120 | @@ -1,6 +1,12 @@ |
| 2121 | -/** |
| 2122 | - * LICENSE + COPYRIGHT |
| 2123 | - */ |
| 2124 | +/******************************************************************************* |
| 2125 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 2126 | + * |
| 2127 | + * All rights reserved. This program and the accompanying materials |
| 2128 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 2129 | + * which accompanies this distribution, and is available at |
| 2130 | + * http://www.eclipse.org/legal/epl-v10.html |
| 2131 | + * |
| 2132 | + *******************************************************************************/ |
| 2133 | package org.vcs.bazaar.eclipse.internal.core.model.local; |
| 2134 | |
| 2135 | import java.util.ArrayList; |
| 2136 | |
| 2137 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/local/BzrLocalResource.java' |
| 2138 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/local/BzrLocalResource.java 2013-09-12 10:03:07 +0000 |
| 2139 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/local/BzrLocalResource.java 2013-10-31 17:23:32 +0000 |
| 2140 | @@ -1,6 +1,12 @@ |
| 2141 | -/** |
| 2142 | - * |
| 2143 | - */ |
| 2144 | +/******************************************************************************* |
| 2145 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 2146 | +* |
| 2147 | +* All rights reserved. This program and the accompanying materials |
| 2148 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 2149 | +* which accompanies this distribution, and is available at |
| 2150 | +* http://www.eclipse.org/legal/epl-v10.html |
| 2151 | +* |
| 2152 | +*******************************************************************************/ |
| 2153 | package org.vcs.bazaar.eclipse.internal.core.model.local; |
| 2154 | |
| 2155 | import java.io.File; |
| 2156 | |
| 2157 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/remote/BzrRemoteFile.java' |
| 2158 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/remote/BzrRemoteFile.java 2009-11-18 08:48:22 +0000 |
| 2159 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/remote/BzrRemoteFile.java 2013-10-31 17:23:32 +0000 |
| 2160 | @@ -1,6 +1,12 @@ |
| 2161 | -/** |
| 2162 | - * LICENSE + COPYRIGHT |
| 2163 | - */ |
| 2164 | +/******************************************************************************* |
| 2165 | + * Copyright (c) 2008-2013 Guillermo Gonzalez |
| 2166 | + * |
| 2167 | + * All rights reserved. This program and the accompanying materials |
| 2168 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 2169 | + * which accompanies this distribution, and is available at |
| 2170 | + * http://www.eclipse.org/legal/epl-v10.html |
| 2171 | + * |
| 2172 | + *******************************************************************************/ |
| 2173 | package org.vcs.bazaar.eclipse.internal.core.model.remote; |
| 2174 | |
| 2175 | import java.net.URI; |
| 2176 | |
| 2177 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/remote/BzrRemoteFolder.java' |
| 2178 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/remote/BzrRemoteFolder.java 2009-11-18 08:48:22 +0000 |
| 2179 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/remote/BzrRemoteFolder.java 2013-10-31 17:23:32 +0000 |
| 2180 | @@ -1,6 +1,12 @@ |
| 2181 | -/** |
| 2182 | - * LICENSE + COPYRIGHT |
| 2183 | - */ |
| 2184 | +/******************************************************************************* |
| 2185 | + * Copyright (c) 2008-2013 Guillermo Gonzalez |
| 2186 | + * |
| 2187 | + * All rights reserved. This program and the accompanying materials |
| 2188 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 2189 | + * which accompanies this distribution, and is available at |
| 2190 | + * http://www.eclipse.org/legal/epl-v10.html |
| 2191 | + * |
| 2192 | + *******************************************************************************/ |
| 2193 | package org.vcs.bazaar.eclipse.internal.core.model.remote; |
| 2194 | |
| 2195 | import java.net.URI; |
| 2196 | |
| 2197 | === modified file 'org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/remote/BzrRemoteResource.java' |
| 2198 | --- org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/remote/BzrRemoteResource.java 2009-11-18 08:48:22 +0000 |
| 2199 | +++ org.vcs.bazaar.eclipse.core/src/org/vcs/bazaar/eclipse/internal/core/model/remote/BzrRemoteResource.java 2013-10-31 17:23:32 +0000 |
| 2200 | @@ -1,6 +1,12 @@ |
| 2201 | -/** |
| 2202 | - * |
| 2203 | - */ |
| 2204 | +/******************************************************************************* |
| 2205 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 2206 | +* |
| 2207 | +* All rights reserved. This program and the accompanying materials |
| 2208 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 2209 | +* which accompanies this distribution, and is available at |
| 2210 | +* http://www.eclipse.org/legal/epl-v10.html |
| 2211 | +* |
| 2212 | +*******************************************************************************/ |
| 2213 | package org.vcs.bazaar.eclipse.internal.core.model.remote; |
| 2214 | |
| 2215 | import java.net.URI; |
| 2216 | |
| 2217 | === modified file 'org.vcs.bazaar.eclipse.feature/feature.properties' |
| 2218 | --- org.vcs.bazaar.eclipse.feature/feature.properties 2013-06-21 09:01:06 +0000 |
| 2219 | +++ org.vcs.bazaar.eclipse.feature/feature.properties 2013-10-31 17:23:32 +0000 |
| 2220 | @@ -5,11 +5,6 @@ |
| 2221 | copyright=\ |
| 2222 | Copyright (c) 2007-2012 Guillermo Gonzalez\n\ |
| 2223 | Copyright (c) 2013 Bzr-Eclipse Team\n\ |
| 2224 | -All rights reserved. This content is made available under the terms of the GNU General Public License Version 2, June 1991 (GPL).\n\ |
| 2225 | -As a special exception, the copyright holders of Bzr-Eclipse give you permission to combine Bzr-Eclipse with free software programs or \ |
| 2226 | -libraries that are released under the GNU LGPL and with code included in the standard release of Eclipse under the Eclipse Public License \ |
| 2227 | -(or modified versions of such code, with unchanged license). You may copy and distribute such a system following the terms of the GNU GPL \ |
| 2228 | -for Bzr-Eclipse and the licenses of the other code concerned.\n\ |
| 2229 | Portions of this plugin are based on MercurialEclispe - Copyright (c) 2006 Zingo Andersen (VecTrace).\n\ |
| 2230 | Portions of this plugin are based on Subclipse - Copyright (c) 2003, 2006 Subclipse project and others.\n\ |
| 2231 | Portions of this plugin are based on eclipsedarcs - Copyright (c) 2004-2005 by Leif Frenzel and others.\n\ |
| 2232 | @@ -17,16 +12,8 @@ |
| 2233 | Icons and logo of Bazaar - Copyright (c) 2006 Canonical Ltd. All Rights Reserved.\n |
| 2234 | licenceUrl=gpl-v20.html |
| 2235 | licence=\ |
| 2236 | -Copyright (c) 2007-2012 Guillermo Gonzalez\n\ |
| 2237 | -Copyright (c) 2013 Bzr-Eclipse Team\n\ |
| 2238 | -This content is made available under the terms of the GNU General Public License Version 2, June 1991 (GPL).\n\ |
| 2239 | -As a special exception, the copyright holders of Bzr-Eclipse give you permission to combine Bzr-Eclipse with free software programs or \ |
| 2240 | -libraries that are released under the GNU LGPL and with code included in the standard release of Eclipse under the Eclipse Public License \ |
| 2241 | -(or modified versions of such code, with unchanged license). You may copy and distribute such a system following the terms of the GNU GPL \ |
| 2242 | -for Bzr-Eclipse and the licenses of the other code concerned.\n\ |
| 2243 | -Portions of this plugin are based on MercurialEclispe - Copyright (c) 2006 Zingo Andersen (VecTrace).\n\ |
| 2244 | -Portions of this plugin are based on Subclipse - Copyright (c) 2003, 2006 Subclipse project and others.\n\ |
| 2245 | -Portions of this plugin are based on eclipsedarcs - Copyright (c) 2004-2005 by Leif Frenzel and others.\n\ |
| 2246 | -Portions of this plugin are based on EGit - Copyright (c) 2005, 2009 EGit project committers and others.\n\ |
| 2247 | -Icons and logo of Bazaar - Copyright (c) 2006 Canonical Ltd. All Rights Reserved.\n |
| 2248 | - |
| 2249 | +This content is made available under the terms of the Eclipse Public License Version 1.0,\n\ |
| 2250 | +available at: http://www.eclipse.org/legal/epl-v10.html and in the root of thebranch epl-v10.html.\n\ |
| 2251 | +The portions devired from mercurialeclipse are under zlib/png license.\n\ |
| 2252 | +As a special exception, the copyright holders of Bzr-Eclipse give you permission to combine Bzr-Eclipse with free software programs or\n\ |
| 2253 | +libraries that are released under the GNU LGPL.\n\ |
| 2254 | |
| 2255 | === modified file 'org.vcs.bazaar.eclipse.feature/feature_epl.properties' |
| 2256 | --- org.vcs.bazaar.eclipse.feature/feature_epl.properties 2013-05-11 07:47:42 +0000 |
| 2257 | +++ org.vcs.bazaar.eclipse.feature/feature_epl.properties 2013-10-31 17:23:32 +0000 |
| 2258 | @@ -16,9 +16,8 @@ |
| 2259 | Icons and logo of Bazaar - Copyright (c) 2006 Canonical Ltd. All Rights Reserved.\n |
| 2260 | licenceUrl=epl-v10.html |
| 2261 | licence=\ |
| 2262 | -Copyright (c) 2007-2008 Guillermo Gonzalez\n\ |
| 2263 | -Copyright (c) 2013 Piotr Piastucki\n\ |
| 2264 | -All rights reserved. This program and the accompanying materials\n\ |
| 2265 | -are made available under the terms of the Eclipse Public License v1.0\n\ |
| 2266 | -which accompanies this distribution, and is available at\n\ |
| 2267 | -http://www.eclipse.org/legal/epl-v10.html\n\ |
| 2268 | +This content is made available under the terms of the Eclipse Public License Version 1.0,\n\ |
| 2269 | +available at: http://www.eclipse.org/legal/epl-v10.html and in the root of thebranch epl-v10.html.\n\ |
| 2270 | +The portions devired from mercurialeclipse are under zlib/png license.\n\ |
| 2271 | +As a special exception, the copyright holders of Bzr-Eclipse give you permission to combine Bzr-Eclipse with free software programs or\n\ |
| 2272 | +libraries that are released under the GNU LGPL.\n\ |
| 2273 | |
| 2274 | === removed file 'org.vcs.bazaar.eclipse.feature/gpl-v20.html' |
| 2275 | --- org.vcs.bazaar.eclipse.feature/gpl-v20.html 2013-05-11 07:47:42 +0000 |
| 2276 | +++ org.vcs.bazaar.eclipse.feature/gpl-v20.html 1970-01-01 00:00:00 +0000 |
| 2277 | @@ -1,487 +0,0 @@ |
| 2278 | -<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
| 2279 | - |
| 2280 | -<html><head> |
| 2281 | - <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| 2282 | - <title>GNU General Public License v2.0 - GNU Project - Free Software Foundation (FSF)</title> |
| 2283 | - <link rel="alternate" type="application/rdf+xml" |
| 2284 | - href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.rdf"> |
| 2285 | -</head> |
| 2286 | -<body> |
| 2287 | -<h3><a id="SEC1">GNU GENERAL PUBLIC LICENSE</a></h3> |
| 2288 | -<p> |
| 2289 | -Version 2, June 1991 |
| 2290 | -</p> |
| 2291 | - |
| 2292 | -<pre> |
| 2293 | -Copyright (C) 1989, 1991 Free Software Foundation, Inc. |
| 2294 | -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA |
| 2295 | - |
| 2296 | -Everyone is permitted to copy and distribute verbatim copies |
| 2297 | -of this license document, but changing it is not allowed. |
| 2298 | -</pre> |
| 2299 | - |
| 2300 | -<h3><a id="preamble"></a><a id="SEC2">Preamble</a></h3> |
| 2301 | - |
| 2302 | -<p> |
| 2303 | - The licenses for most software are designed to take away your |
| 2304 | -freedom to share and change it. By contrast, the GNU General Public |
| 2305 | -License is intended to guarantee your freedom to share and change free |
| 2306 | -software--to make sure the software is free for all its users. This |
| 2307 | -General Public License applies to most of the Free Software |
| 2308 | -Foundation's software and to any other program whose authors commit to |
| 2309 | -using it. (Some other Free Software Foundation software is covered by |
| 2310 | -the GNU Lesser General Public License instead.) You can apply it to |
| 2311 | -your programs, too. |
| 2312 | -</p> |
| 2313 | - |
| 2314 | -<p> |
| 2315 | - When we speak of free software, we are referring to freedom, not |
| 2316 | -price. Our General Public Licenses are designed to make sure that you |
| 2317 | -have the freedom to distribute copies of free software (and charge for |
| 2318 | -this service if you wish), that you receive source code or can get it |
| 2319 | -if you want it, that you can change the software or use pieces of it |
| 2320 | -in new free programs; and that you know you can do these things. |
| 2321 | -</p> |
| 2322 | - |
| 2323 | -<p> |
| 2324 | - To protect your rights, we need to make restrictions that forbid |
| 2325 | -anyone to deny you these rights or to ask you to surrender the rights. |
| 2326 | -These restrictions translate to certain responsibilities for you if you |
| 2327 | -distribute copies of the software, or if you modify it. |
| 2328 | -</p> |
| 2329 | - |
| 2330 | -<p> |
| 2331 | - For example, if you distribute copies of such a program, whether |
| 2332 | -gratis or for a fee, you must give the recipients all the rights that |
| 2333 | -you have. You must make sure that they, too, receive or can get the |
| 2334 | -source code. And you must show them these terms so they know their |
| 2335 | -rights. |
| 2336 | -</p> |
| 2337 | - |
| 2338 | -<p> |
| 2339 | - We protect your rights with two steps: (1) copyright the software, and |
| 2340 | -(2) offer you this license which gives you legal permission to copy, |
| 2341 | -distribute and/or modify the software. |
| 2342 | -</p> |
| 2343 | - |
| 2344 | -<p> |
| 2345 | - Also, for each author's protection and ours, we want to make certain |
| 2346 | -that everyone understands that there is no warranty for this free |
| 2347 | -software. If the software is modified by someone else and passed on, we |
| 2348 | -want its recipients to know that what they have is not the original, so |
| 2349 | -that any problems introduced by others will not reflect on the original |
| 2350 | -authors' reputations. |
| 2351 | -</p> |
| 2352 | - |
| 2353 | -<p> |
| 2354 | - Finally, any free program is threatened constantly by software |
| 2355 | -patents. We wish to avoid the danger that redistributors of a free |
| 2356 | -program will individually obtain patent licenses, in effect making the |
| 2357 | -program proprietary. To prevent this, we have made it clear that any |
| 2358 | -patent must be licensed for everyone's free use or not licensed at all. |
| 2359 | -</p> |
| 2360 | - |
| 2361 | -<p> |
| 2362 | - The precise terms and conditions for copying, distribution and |
| 2363 | -modification follow. |
| 2364 | -</p> |
| 2365 | - |
| 2366 | - |
| 2367 | -<h3><a id="terms"></a><a id="SEC3">TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</a></h3> |
| 2368 | - |
| 2369 | - |
| 2370 | -<a id="section0"></a><p> |
| 2371 | -<strong>0.</strong> |
| 2372 | - This License applies to any program or other work which contains |
| 2373 | -a notice placed by the copyright holder saying it may be distributed |
| 2374 | -under the terms of this General Public License. The "Program", below, |
| 2375 | -refers to any such program or work, and a "work based on the Program" |
| 2376 | -means either the Program or any derivative work under copyright law: |
| 2377 | -that is to say, a work containing the Program or a portion of it, |
| 2378 | -either verbatim or with modifications and/or translated into another |
| 2379 | -language. (Hereinafter, translation is included without limitation in |
| 2380 | -the term "modification".) Each licensee is addressed as "you". |
| 2381 | -</p> |
| 2382 | - |
| 2383 | -<p> |
| 2384 | -Activities other than copying, distribution and modification are not |
| 2385 | -covered by this License; they are outside its scope. The act of |
| 2386 | -running the Program is not restricted, and the output from the Program |
| 2387 | -is covered only if its contents constitute a work based on the |
| 2388 | -Program (independent of having been made by running the Program). |
| 2389 | -Whether that is true depends on what the Program does. |
| 2390 | -</p> |
| 2391 | - |
| 2392 | -<a id="section1"></a><p> |
| 2393 | -<strong>1.</strong> |
| 2394 | - You may copy and distribute verbatim copies of the Program's |
| 2395 | -source code as you receive it, in any medium, provided that you |
| 2396 | -conspicuously and appropriately publish on each copy an appropriate |
| 2397 | -copyright notice and disclaimer of warranty; keep intact all the |
| 2398 | -notices that refer to this License and to the absence of any warranty; |
| 2399 | -and give any other recipients of the Program a copy of this License |
| 2400 | -along with the Program. |
| 2401 | -</p> |
| 2402 | - |
| 2403 | -<p> |
| 2404 | -You may charge a fee for the physical act of transferring a copy, and |
| 2405 | -you may at your option offer warranty protection in exchange for a fee. |
| 2406 | -</p> |
| 2407 | - |
| 2408 | -<a id="section2"></a><p> |
| 2409 | -<strong>2.</strong> |
| 2410 | - You may modify your copy or copies of the Program or any portion |
| 2411 | -of it, thus forming a work based on the Program, and copy and |
| 2412 | -distribute such modifications or work under the terms of Section 1 |
| 2413 | -above, provided that you also meet all of these conditions: |
| 2414 | -</p> |
| 2415 | - |
| 2416 | -<dl> |
| 2417 | - <dt></dt> |
| 2418 | - <dd> |
| 2419 | - <strong>a)</strong> |
| 2420 | - You must cause the modified files to carry prominent notices |
| 2421 | - stating that you changed the files and the date of any change. |
| 2422 | - </dd> |
| 2423 | - <dt></dt> |
| 2424 | - <dd> |
| 2425 | - <strong>b)</strong> |
| 2426 | - You must cause any work that you distribute or publish, that in |
| 2427 | - whole or in part contains or is derived from the Program or any |
| 2428 | - part thereof, to be licensed as a whole at no charge to all third |
| 2429 | - parties under the terms of this License. |
| 2430 | - </dd> |
| 2431 | - <dt></dt> |
| 2432 | - <dd> |
| 2433 | - <strong>c)</strong> |
| 2434 | - If the modified program normally reads commands interactively |
| 2435 | - when run, you must cause it, when started running for such |
| 2436 | - interactive use in the most ordinary way, to print or display an |
| 2437 | - announcement including an appropriate copyright notice and a |
| 2438 | - notice that there is no warranty (or else, saying that you provide |
| 2439 | - a warranty) and that users may redistribute the program under |
| 2440 | - these conditions, and telling the user how to view a copy of this |
| 2441 | - License. (Exception: if the Program itself is interactive but |
| 2442 | - does not normally print such an announcement, your work based on |
| 2443 | - the Program is not required to print an announcement.) |
| 2444 | - </dd> |
| 2445 | -</dl> |
| 2446 | - |
| 2447 | -<p> |
| 2448 | -These requirements apply to the modified work as a whole. If |
| 2449 | -identifiable sections of that work are not derived from the Program, |
| 2450 | -and can be reasonably considered independent and separate works in |
| 2451 | -themselves, then this License, and its terms, do not apply to those |
| 2452 | -sections when you distribute them as separate works. But when you |
| 2453 | -distribute the same sections as part of a whole which is a work based |
| 2454 | -on the Program, the distribution of the whole must be on the terms of |
| 2455 | -this License, whose permissions for other licensees extend to the |
| 2456 | -entire whole, and thus to each and every part regardless of who wrote it. |
| 2457 | -</p> |
| 2458 | - |
| 2459 | -<p> |
| 2460 | -Thus, it is not the intent of this section to claim rights or contest |
| 2461 | -your rights to work written entirely by you; rather, the intent is to |
| 2462 | -exercise the right to control the distribution of derivative or |
| 2463 | -collective works based on the Program. |
| 2464 | -</p> |
| 2465 | - |
| 2466 | -<p> |
| 2467 | -In addition, mere aggregation of another work not based on the Program |
| 2468 | -with the Program (or with a work based on the Program) on a volume of |
| 2469 | -a storage or distribution medium does not bring the other work under |
| 2470 | -the scope of this License. |
| 2471 | -</p> |
| 2472 | - |
| 2473 | -<a id="section3"></a><p> |
| 2474 | -<strong>3.</strong> |
| 2475 | - You may copy and distribute the Program (or a work based on it, |
| 2476 | -under Section 2) in object code or executable form under the terms of |
| 2477 | -Sections 1 and 2 above provided that you also do one of the following: |
| 2478 | -</p> |
| 2479 | - |
| 2480 | -<!-- we use this doubled UL to get the sub-sections indented, --> |
| 2481 | -<!-- while making the bullets as unobvious as possible. --> |
| 2482 | - |
| 2483 | -<dl> |
| 2484 | - <dt></dt> |
| 2485 | - <dd> |
| 2486 | - <strong>a)</strong> |
| 2487 | - Accompany it with the complete corresponding machine-readable |
| 2488 | - source code, which must be distributed under the terms of Sections |
| 2489 | - 1 and 2 above on a medium customarily used for software interchange; or, |
| 2490 | - </dd> |
| 2491 | - <dt></dt> |
| 2492 | - <dd> |
| 2493 | - <strong>b)</strong> |
| 2494 | - Accompany it with a written offer, valid for at least three |
| 2495 | - years, to give any third party, for a charge no more than your |
| 2496 | - cost of physically performing source distribution, a complete |
| 2497 | - machine-readable copy of the corresponding source code, to be |
| 2498 | - distributed under the terms of Sections 1 and 2 above on a medium |
| 2499 | - customarily used for software interchange; or, |
| 2500 | - </dd> |
| 2501 | - <dt></dt> |
| 2502 | - <dd> |
| 2503 | - <strong>c)</strong> |
| 2504 | - Accompany it with the information you received as to the offer |
| 2505 | - to distribute corresponding source code. (This alternative is |
| 2506 | - allowed only for noncommercial distribution and only if you |
| 2507 | - received the program in object code or executable form with such |
| 2508 | - an offer, in accord with Subsection b above.) |
| 2509 | - </dd> |
| 2510 | -</dl> |
| 2511 | - |
| 2512 | -<p> |
| 2513 | -The source code for a work means the preferred form of the work for |
| 2514 | -making modifications to it. For an executable work, complete source |
| 2515 | -code means all the source code for all modules it contains, plus any |
| 2516 | -associated interface definition files, plus the scripts used to |
| 2517 | -control compilation and installation of the executable. However, as a |
| 2518 | -special exception, the source code distributed need not include |
| 2519 | -anything that is normally distributed (in either source or binary |
| 2520 | -form) with the major components (compiler, kernel, and so on) of the |
| 2521 | -operating system on which the executable runs, unless that component |
| 2522 | -itself accompanies the executable. |
| 2523 | -</p> |
| 2524 | - |
| 2525 | -<p> |
| 2526 | -If distribution of executable or object code is made by offering |
| 2527 | -access to copy from a designated place, then offering equivalent |
| 2528 | -access to copy the source code from the same place counts as |
| 2529 | -distribution of the source code, even though third parties are not |
| 2530 | -compelled to copy the source along with the object code. |
| 2531 | -</p> |
| 2532 | - |
| 2533 | -<a id="section4"></a><p> |
| 2534 | -<strong>4.</strong> |
| 2535 | - You may not copy, modify, sublicense, or distribute the Program |
| 2536 | -except as expressly provided under this License. Any attempt |
| 2537 | -otherwise to copy, modify, sublicense or distribute the Program is |
| 2538 | -void, and will automatically terminate your rights under this License. |
| 2539 | -However, parties who have received copies, or rights, from you under |
| 2540 | -this License will not have their licenses terminated so long as such |
| 2541 | -parties remain in full compliance. |
| 2542 | -</p> |
| 2543 | - |
| 2544 | -<a id="section5"></a><p> |
| 2545 | -<strong>5.</strong> |
| 2546 | - You are not required to accept this License, since you have not |
| 2547 | -signed it. However, nothing else grants you permission to modify or |
| 2548 | -distribute the Program or its derivative works. These actions are |
| 2549 | -prohibited by law if you do not accept this License. Therefore, by |
| 2550 | -modifying or distributing the Program (or any work based on the |
| 2551 | -Program), you indicate your acceptance of this License to do so, and |
| 2552 | -all its terms and conditions for copying, distributing or modifying |
| 2553 | -the Program or works based on it. |
| 2554 | -</p> |
| 2555 | - |
| 2556 | -<a id="section6"></a><p> |
| 2557 | -<strong>6.</strong> |
| 2558 | - Each time you redistribute the Program (or any work based on the |
| 2559 | -Program), the recipient automatically receives a license from the |
| 2560 | -original licensor to copy, distribute or modify the Program subject to |
| 2561 | -these terms and conditions. You may not impose any further |
| 2562 | -restrictions on the recipients' exercise of the rights granted herein. |
| 2563 | -You are not responsible for enforcing compliance by third parties to |
| 2564 | -this License. |
| 2565 | -</p> |
| 2566 | - |
| 2567 | -<a id="section7"></a><p> |
| 2568 | -<strong>7.</strong> |
| 2569 | - If, as a consequence of a court judgment or allegation of patent |
| 2570 | -infringement or for any other reason (not limited to patent issues), |
| 2571 | -conditions are imposed on you (whether by court order, agreement or |
| 2572 | -otherwise) that contradict the conditions of this License, they do not |
| 2573 | -excuse you from the conditions of this License. If you cannot |
| 2574 | -distribute so as to satisfy simultaneously your obligations under this |
| 2575 | -License and any other pertinent obligations, then as a consequence you |
| 2576 | -may not distribute the Program at all. For example, if a patent |
| 2577 | -license would not permit royalty-free redistribution of the Program by |
| 2578 | -all those who receive copies directly or indirectly through you, then |
| 2579 | -the only way you could satisfy both it and this License would be to |
| 2580 | -refrain entirely from distribution of the Program. |
| 2581 | -</p> |
| 2582 | - |
| 2583 | -<p> |
| 2584 | -If any portion of this section is held invalid or unenforceable under |
| 2585 | -any particular circumstance, the balance of the section is intended to |
| 2586 | -apply and the section as a whole is intended to apply in other |
| 2587 | -circumstances. |
| 2588 | -</p> |
| 2589 | - |
| 2590 | -<p> |
| 2591 | -It is not the purpose of this section to induce you to infringe any |
| 2592 | -patents or other property right claims or to contest validity of any |
| 2593 | -such claims; this section has the sole purpose of protecting the |
| 2594 | -integrity of the free software distribution system, which is |
| 2595 | -implemented by public license practices. Many people have made |
| 2596 | -generous contributions to the wide range of software distributed |
| 2597 | -through that system in reliance on consistent application of that |
| 2598 | -system; it is up to the author/donor to decide if he or she is willing |
| 2599 | -to distribute software through any other system and a licensee cannot |
| 2600 | -impose that choice. |
| 2601 | -</p> |
| 2602 | - |
| 2603 | -<p> |
| 2604 | -This section is intended to make thoroughly clear what is believed to |
| 2605 | -be a consequence of the rest of this License. |
| 2606 | -</p> |
| 2607 | - |
| 2608 | -<a id="section8"></a><p> |
| 2609 | -<strong>8.</strong> |
| 2610 | - If the distribution and/or use of the Program is restricted in |
| 2611 | -certain countries either by patents or by copyrighted interfaces, the |
| 2612 | -original copyright holder who places the Program under this License |
| 2613 | -may add an explicit geographical distribution limitation excluding |
| 2614 | -those countries, so that distribution is permitted only in or among |
| 2615 | -countries not thus excluded. In such case, this License incorporates |
| 2616 | -the limitation as if written in the body of this License. |
| 2617 | -</p> |
| 2618 | - |
| 2619 | -<a id="section9"></a><p> |
| 2620 | -<strong>9.</strong> |
| 2621 | - The Free Software Foundation may publish revised and/or new versions |
| 2622 | -of the General Public License from time to time. Such new versions will |
| 2623 | -be similar in spirit to the present version, but may differ in detail to |
| 2624 | -address new problems or concerns. |
| 2625 | -</p> |
| 2626 | - |
| 2627 | -<p> |
| 2628 | -Each version is given a distinguishing version number. If the Program |
| 2629 | -specifies a version number of this License which applies to it and "any |
| 2630 | -later version", you have the option of following the terms and conditions |
| 2631 | -either of that version or of any later version published by the Free |
| 2632 | -Software Foundation. If the Program does not specify a version number of |
| 2633 | -this License, you may choose any version ever published by the Free Software |
| 2634 | -Foundation. |
| 2635 | -</p> |
| 2636 | - |
| 2637 | -<a id="section10"></a><p> |
| 2638 | -<strong>10.</strong> |
| 2639 | - If you wish to incorporate parts of the Program into other free |
| 2640 | -programs whose distribution conditions are different, write to the author |
| 2641 | -to ask for permission. For software which is copyrighted by the Free |
| 2642 | -Software Foundation, write to the Free Software Foundation; we sometimes |
| 2643 | -make exceptions for this. Our decision will be guided by the two goals |
| 2644 | -of preserving the free status of all derivatives of our free software and |
| 2645 | -of promoting the sharing and reuse of software generally. |
| 2646 | -</p> |
| 2647 | - |
| 2648 | -<a id="section11"></a><p><strong>NO WARRANTY</strong></p> |
| 2649 | - |
| 2650 | -<p> |
| 2651 | -<strong>11.</strong> |
| 2652 | - BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY |
| 2653 | -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN |
| 2654 | -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES |
| 2655 | -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED |
| 2656 | -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 2657 | -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS |
| 2658 | -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE |
| 2659 | -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, |
| 2660 | -REPAIR OR CORRECTION. |
| 2661 | -</p> |
| 2662 | - |
| 2663 | -<a id="section12"></a><p> |
| 2664 | -<strong>12.</strong> |
| 2665 | - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING |
| 2666 | -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR |
| 2667 | -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, |
| 2668 | -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING |
| 2669 | -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED |
| 2670 | -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY |
| 2671 | -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER |
| 2672 | -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE |
| 2673 | -POSSIBILITY OF SUCH DAMAGES. |
| 2674 | -</p> |
| 2675 | - |
| 2676 | -<h3>END OF TERMS AND CONDITIONS</h3> |
| 2677 | - |
| 2678 | -<h3><a id="howto"></a><a id="SEC4">How to Apply These Terms to Your New Programs</a></h3> |
| 2679 | - |
| 2680 | -<p> |
| 2681 | - If you develop a new program, and you want it to be of the greatest |
| 2682 | -possible use to the public, the best way to achieve this is to make it |
| 2683 | -free software which everyone can redistribute and change under these terms. |
| 2684 | -</p> |
| 2685 | - |
| 2686 | -<p> |
| 2687 | - To do so, attach the following notices to the program. It is safest |
| 2688 | -to attach them to the start of each source file to most effectively |
| 2689 | -convey the exclusion of warranty; and each file should have at least |
| 2690 | -the "copyright" line and a pointer to where the full notice is found. |
| 2691 | -</p> |
| 2692 | - |
| 2693 | -<pre> |
| 2694 | -<var>one line to give the program's name and an idea of what it does.</var> |
| 2695 | -Copyright (C) <var>yyyy</var> <var>name of author</var> |
| 2696 | - |
| 2697 | -This program is free software; you can redistribute it and/or |
| 2698 | -modify it under the terms of the GNU General Public License |
| 2699 | -as published by the Free Software Foundation; either version 2 |
| 2700 | -of the License, or (at your option) any later version. |
| 2701 | - |
| 2702 | -This program is distributed in the hope that it will be useful, |
| 2703 | -but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 2704 | -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 2705 | -GNU General Public License for more details. |
| 2706 | - |
| 2707 | -You should have received a copy of the GNU General Public License |
| 2708 | -along with this program; if not, write to the Free Software |
| 2709 | -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 2710 | -</pre> |
| 2711 | - |
| 2712 | -<p> |
| 2713 | -Also add information on how to contact you by electronic and paper mail. |
| 2714 | -</p> |
| 2715 | - |
| 2716 | -<p> |
| 2717 | -If the program is interactive, make it output a short notice like this |
| 2718 | -when it starts in an interactive mode: |
| 2719 | -</p> |
| 2720 | - |
| 2721 | -<pre> |
| 2722 | -Gnomovision version 69, Copyright (C) <var>year</var> <var>name of author</var> |
| 2723 | -Gnomovision comes with ABSOLUTELY NO WARRANTY; for details |
| 2724 | -type `show w'. This is free software, and you are welcome |
| 2725 | -to redistribute it under certain conditions; type `show c' |
| 2726 | -for details. |
| 2727 | -</pre> |
| 2728 | - |
| 2729 | -<p> |
| 2730 | -The hypothetical commands <samp>`show w'</samp> and <samp>`show c'</samp> should show |
| 2731 | -the appropriate parts of the General Public License. Of course, the |
| 2732 | -commands you use may be called something other than <samp>`show w'</samp> and |
| 2733 | -<samp>`show c'</samp>; they could even be mouse-clicks or menu items--whatever |
| 2734 | -suits your program. |
| 2735 | -</p> |
| 2736 | - |
| 2737 | -<p> |
| 2738 | -You should also get your employer (if you work as a programmer) or your |
| 2739 | -school, if any, to sign a "copyright disclaimer" for the program, if |
| 2740 | -necessary. Here is a sample; alter the names: |
| 2741 | -</p> |
| 2742 | - |
| 2743 | - |
| 2744 | -<pre> |
| 2745 | -Yoyodyne, Inc., hereby disclaims all copyright |
| 2746 | -interest in the program `Gnomovision' |
| 2747 | -(which makes passes at compilers) written |
| 2748 | -by James Hacker. |
| 2749 | - |
| 2750 | -<var>signature of Ty Coon</var>, 1 April 1989 |
| 2751 | -Ty Coon, President of Vice |
| 2752 | -</pre> |
| 2753 | - |
| 2754 | -<p> |
| 2755 | -This General Public License does not permit incorporating your program into |
| 2756 | -proprietary programs. If your program is a subroutine library, you may |
| 2757 | -consider it more useful to permit linking proprietary applications with the |
| 2758 | -library. If this is what you want to do, use the |
| 2759 | -<a href="http://www.gnu.org/licenses/lgpl.html">GNU Lesser General Public License</a> |
| 2760 | -instead of this License. |
| 2761 | -</p> |
| 2762 | - |
| 2763 | -</body></html> |
| 2764 | - |
| 2765 | |
| 2766 | === removed file 'org.vcs.bazaar.eclipse.ui/Contributers' |
| 2767 | --- org.vcs.bazaar.eclipse.ui/Contributers 2007-03-14 12:15:50 +0000 |
| 2768 | +++ org.vcs.bazaar.eclipse.ui/Contributers 1970-01-01 00:00:00 +0000 |
| 2769 | @@ -1,31 +0,0 @@ |
| 2770 | -MercurialEclipse Plugin |
| 2771 | - |
| 2772 | -Here is a list of people that has been contributing to this project |
| 2773 | -if you supply a patch please dont forget to patch this file also add |
| 2774 | -your name, a few lines about yourself and if you want an email. |
| 2775 | -By adding your name here you indicate Your acceptance of the License |
| 2776 | -and all of its terms and conditions. |
| 2777 | - |
| 2778 | - |
| 2779 | -Contributors: |
| 2780 | - |
| 2781 | -Zingo Andersen - Creator of this nice pice of software. |
| 2782 | - I'm an old Amiga fart, that likes hacking around. |
| 2783 | - I have two kids and a wife, both take there share of my private Life so |
| 2784 | - lately there has not been so much hacking after I come home from my day |
| 2785 | - job as a Realtime Consultant from Enea. |
| 2786 | - I live in Sweden in the town called Lund. |
| 2787 | - More info about me migth be found at http://www.zingo.org |
| 2788 | - |
| 2789 | -Gunnar Ahlberg - I'm a developer. Other than that, I'm generally |
| 2790 | - outdoors playing in the woods and archipelago of sunny Stockholm, |
| 2791 | - Sweden. Cheers! |
| 2792 | - Zingo's Comment: Gunnar is the first external contributor, he started the work on |
| 2793 | - getting the plugin configurable, thanks for the help. |
| 2794 | - |
| 2795 | ------------ |
| 2796 | -Bazaar Eclipse Plugin |
| 2797 | - |
| 2798 | -Here must be the people who help (once released) |
| 2799 | - |
| 2800 | -Thanks to the Bzr team for a great DVCS |
| 2801 | \ No newline at end of file |
| 2802 | |
| 2803 | === removed file 'org.vcs.bazaar.eclipse.ui/LICENSE' |
| 2804 | --- org.vcs.bazaar.eclipse.ui/LICENSE 2013-06-21 09:01:06 +0000 |
| 2805 | +++ org.vcs.bazaar.eclipse.ui/LICENSE 1970-01-01 00:00:00 +0000 |
| 2806 | @@ -1,20 +0,0 @@ |
| 2807 | -License |
| 2808 | -------- |
| 2809 | -This content is made available under the terms of the GNU General Public License Version 2, June 1991 (GPL). |
| 2810 | -A copy of the GPL is provided with this content. (see gpl.txt) |
| 2811 | - |
| 2812 | -As a special exception, the copyright holders of Bzr-Eclipse give you permission to combine Bzr-Eclipse with free software programs or\n\ |
| 2813 | -libraries that are released under the GNU LGPL and with code included in the standard release of Eclipse under the Eclipse Public License\n\ |
| 2814 | -(or modified versions of such code, with unchanged license). You may copy and distribute such a system following the terms of the GNU GPL\n\ |
| 2815 | -for Bzr-Eclipse and the licenses of the other code concerned.\n\ |
| 2816 | - |
| 2817 | -The portions devired from mercurialeclipse are under zlib/png license |
| 2818 | - |
| 2819 | -Remaining portions of this content based in subclipse are under the EPL, which is |
| 2820 | -available at http://www.eclipse.org/legal/epl-v10.html and in the root of the |
| 2821 | -branch epl-v10.html. |
| 2822 | - |
| 2823 | -------- |
| 2824 | -Icon's and Logo of Bazaar <http://www.bazaar-vcs.org> Copyright (c) 2006 Canonical Ltd. |
| 2825 | - |
| 2826 | -Eclipse <http://www.eclipse.org> Copyright (c) 2007 The Eclipse Foundation. All Rights Reserved |
| 2827 | |
| 2828 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/BazaarRepositoriesPerspectiveFactory.java' |
| 2829 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/BazaarRepositoriesPerspectiveFactory.java 2013-02-09 13:02:56 +0000 |
| 2830 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/BazaarRepositoriesPerspectiveFactory.java 2013-10-31 17:23:32 +0000 |
| 2831 | @@ -1,3 +1,12 @@ |
| 2832 | +/******************************************************************************* |
| 2833 | +* Copyright (c) 2013 Piotr Piastucki |
| 2834 | +* |
| 2835 | +* All rights reserved. This program and the accompanying materials |
| 2836 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 2837 | +* which accompanies this distribution, and is available at |
| 2838 | +* http://www.eclipse.org/legal/epl-v10.html |
| 2839 | +* |
| 2840 | +*******************************************************************************/ |
| 2841 | package org.vcs.bazaar.eclipse.ui; |
| 2842 | |
| 2843 | import org.eclipse.team.ui.history.IHistoryView; |
| 2844 | |
| 2845 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/EclipseBazaarUI.java' |
| 2846 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/EclipseBazaarUI.java 2013-09-11 23:03:44 +0000 |
| 2847 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/EclipseBazaarUI.java 2013-10-31 17:23:32 +0000 |
| 2848 | @@ -1,3 +1,12 @@ |
| 2849 | +/******************************************************************************* |
| 2850 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 2851 | +* |
| 2852 | +* All rights reserved. This program and the accompanying materials |
| 2853 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 2854 | +* which accompanies this distribution, and is available at |
| 2855 | +* http://www.eclipse.org/legal/epl-v10.html |
| 2856 | +* |
| 2857 | +*******************************************************************************/ |
| 2858 | package org.vcs.bazaar.eclipse.ui; |
| 2859 | |
| 2860 | import java.lang.reflect.InvocationTargetException; |
| 2861 | |
| 2862 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/UITexts.java' |
| 2863 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/UITexts.java 2013-09-29 21:47:12 +0000 |
| 2864 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/UITexts.java 2013-10-31 17:23:32 +0000 |
| 2865 | @@ -1,6 +1,12 @@ |
| 2866 | -/** |
| 2867 | - * LICENSE + COPYRIGHT |
| 2868 | - */ |
| 2869 | +/******************************************************************************* |
| 2870 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 2871 | + * |
| 2872 | + * All rights reserved. This program and the accompanying materials |
| 2873 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 2874 | + * which accompanies this distribution, and is available at |
| 2875 | + * http://www.eclipse.org/legal/epl-v10.html |
| 2876 | + * |
| 2877 | + *******************************************************************************/ |
| 2878 | package org.vcs.bazaar.eclipse.ui; |
| 2879 | |
| 2880 | import java.util.ResourceBundle; |
| 2881 | |
| 2882 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/AbstractCompareAction.java' |
| 2883 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/AbstractCompareAction.java 2013-09-09 07:05:47 +0000 |
| 2884 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/AbstractCompareAction.java 2013-10-31 17:23:32 +0000 |
| 2885 | @@ -1,6 +1,12 @@ |
| 2886 | -/** |
| 2887 | - * |
| 2888 | - */ |
| 2889 | +/******************************************************************************* |
| 2890 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 2891 | +* |
| 2892 | +* All rights reserved. This program and the accompanying materials |
| 2893 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 2894 | +* which accompanies this distribution, and is available at |
| 2895 | +* http://www.eclipse.org/legal/epl-v10.html |
| 2896 | +* |
| 2897 | +*******************************************************************************/ |
| 2898 | package org.vcs.bazaar.eclipse.ui.actions; |
| 2899 | |
| 2900 | import java.util.Arrays; |
| 2901 | @@ -103,4 +109,4 @@ |
| 2902 | cmd.run(new NullProgressMonitor()); |
| 2903 | return Arrays.asList(cmd.getStatus()); |
| 2904 | } |
| 2905 | -} |
| 2906 | \ No newline at end of file |
| 2907 | +} |
| 2908 | |
| 2909 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ActionNick.java' |
| 2910 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ActionNick.java 2009-11-18 08:48:22 +0000 |
| 2911 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ActionNick.java 2013-10-31 17:23:32 +0000 |
| 2912 | @@ -1,6 +1,12 @@ |
| 2913 | -/** |
| 2914 | - * LICENCSE + COPYRIGHT |
| 2915 | - */ |
| 2916 | +/******************************************************************************* |
| 2917 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 2918 | + * |
| 2919 | + * All rights reserved. This program and the accompanying materials |
| 2920 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 2921 | + * which accompanies this distribution, and is available at |
| 2922 | + * http://www.eclipse.org/legal/epl-v10.html |
| 2923 | + * |
| 2924 | + *******************************************************************************/ |
| 2925 | package org.vcs.bazaar.eclipse.ui.actions; |
| 2926 | |
| 2927 | import org.eclipse.jface.action.IAction; |
| 2928 | |
| 2929 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/AddAction.java' |
| 2930 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/AddAction.java 2013-06-11 11:11:34 +0000 |
| 2931 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/AddAction.java 2013-10-31 17:23:32 +0000 |
| 2932 | @@ -1,6 +1,12 @@ |
| 2933 | -/** |
| 2934 | - * LICENSE + COPYRIGHT |
| 2935 | - */ |
| 2936 | +/******************************************************************************* |
| 2937 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 2938 | +* |
| 2939 | +* All rights reserved. This program and the accompanying materials |
| 2940 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 2941 | +* which accompanies this distribution, and is available at |
| 2942 | +* http://www.eclipse.org/legal/epl-v10.html |
| 2943 | +* |
| 2944 | +*******************************************************************************/ |
| 2945 | package org.vcs.bazaar.eclipse.ui.actions; |
| 2946 | |
| 2947 | import java.lang.reflect.InvocationTargetException; |
| 2948 | |
| 2949 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/AnnotateAction.java' |
| 2950 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/AnnotateAction.java 2009-11-18 08:48:22 +0000 |
| 2951 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/AnnotateAction.java 2013-10-31 17:23:32 +0000 |
| 2952 | @@ -1,6 +1,12 @@ |
| 2953 | -/** |
| 2954 | - * LICENSE + COPYRIGHT |
| 2955 | - */ |
| 2956 | +/******************************************************************************* |
| 2957 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 2958 | + * |
| 2959 | + * All rights reserved. This program and the accompanying materials |
| 2960 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 2961 | + * which accompanies this distribution, and is available at |
| 2962 | + * http://www.eclipse.org/legal/epl-v10.html |
| 2963 | + * |
| 2964 | + *******************************************************************************/ |
| 2965 | package org.vcs.bazaar.eclipse.ui.actions; |
| 2966 | |
| 2967 | import java.lang.reflect.InvocationTargetException; |
| 2968 | |
| 2969 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/BindAction.java' |
| 2970 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/BindAction.java 2013-03-06 20:08:34 +0000 |
| 2971 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/BindAction.java 2013-10-31 17:23:32 +0000 |
| 2972 | @@ -1,6 +1,12 @@ |
| 2973 | -/** |
| 2974 | - * LICENSE + COPYRIGHT |
| 2975 | - */ |
| 2976 | +/******************************************************************************* |
| 2977 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 2978 | + * |
| 2979 | + * All rights reserved. This program and the accompanying materials |
| 2980 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 2981 | + * which accompanies this distribution, and is available at |
| 2982 | + * http://www.eclipse.org/legal/epl-v10.html |
| 2983 | + * |
| 2984 | + *******************************************************************************/ |
| 2985 | package org.vcs.bazaar.eclipse.ui.actions; |
| 2986 | |
| 2987 | import java.lang.reflect.InvocationTargetException; |
| 2988 | |
| 2989 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/BranchAction.java' |
| 2990 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/BranchAction.java 2012-12-18 10:51:20 +0000 |
| 2991 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/BranchAction.java 2013-10-31 17:23:32 +0000 |
| 2992 | @@ -1,6 +1,12 @@ |
| 2993 | -/** |
| 2994 | - * LICENCSE + COPYRIGHT |
| 2995 | - */ |
| 2996 | +/******************************************************************************* |
| 2997 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 2998 | + * |
| 2999 | + * All rights reserved. This program and the accompanying materials |
| 3000 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3001 | + * which accompanies this distribution, and is available at |
| 3002 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3003 | + * |
| 3004 | + *******************************************************************************/ |
| 3005 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3006 | |
| 3007 | import org.eclipse.jface.action.IAction; |
| 3008 | |
| 3009 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/BzrAction.java' |
| 3010 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/BzrAction.java 2013-07-17 17:21:42 +0000 |
| 3011 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/BzrAction.java 2013-10-31 17:23:32 +0000 |
| 3012 | @@ -1,6 +1,12 @@ |
| 3013 | -/** |
| 3014 | - * LICENCSE + COPYRIGHT |
| 3015 | - */ |
| 3016 | +/******************************************************************************* |
| 3017 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3018 | + * |
| 3019 | + * All rights reserved. This program and the accompanying materials |
| 3020 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3021 | + * which accompanies this distribution, and is available at |
| 3022 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3023 | + * |
| 3024 | + *******************************************************************************/ |
| 3025 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3026 | |
| 3027 | import java.lang.reflect.InvocationTargetException; |
| 3028 | |
| 3029 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/DiffAction.java' |
| 3030 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/DiffAction.java 2013-08-24 05:43:28 +0000 |
| 3031 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/DiffAction.java 2013-10-31 17:23:32 +0000 |
| 3032 | @@ -1,6 +1,12 @@ |
| 3033 | -/** |
| 3034 | - * LICENSE + COPYRIGHT |
| 3035 | - */ |
| 3036 | +/******************************************************************************* |
| 3037 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3038 | + * |
| 3039 | + * All rights reserved. This program and the accompanying materials |
| 3040 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3041 | + * which accompanies this distribution, and is available at |
| 3042 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3043 | + * |
| 3044 | + *******************************************************************************/ |
| 3045 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3046 | |
| 3047 | import java.util.List; |
| 3048 | |
| 3049 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/DisconnectAction.java' |
| 3050 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/DisconnectAction.java 2009-11-18 08:48:22 +0000 |
| 3051 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/DisconnectAction.java 2013-10-31 17:23:32 +0000 |
| 3052 | @@ -1,6 +1,12 @@ |
| 3053 | -/** |
| 3054 | - * LICENSE + COPYRIGHT |
| 3055 | - */ |
| 3056 | +/******************************************************************************* |
| 3057 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3058 | + * |
| 3059 | + * All rights reserved. This program and the accompanying materials |
| 3060 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3061 | + * which accompanies this distribution, and is available at |
| 3062 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3063 | + * |
| 3064 | + *******************************************************************************/ |
| 3065 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3066 | |
| 3067 | import java.lang.reflect.InvocationTargetException; |
| 3068 | |
| 3069 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/IgnoreAction.java' |
| 3070 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/IgnoreAction.java 2009-11-18 08:48:22 +0000 |
| 3071 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/IgnoreAction.java 2013-10-31 17:23:32 +0000 |
| 3072 | @@ -1,20 +1,12 @@ |
| 3073 | -/** |
| 3074 | - * Copyright (C) 2009 Canonical Ltd |
| 3075 | - * |
| 3076 | - * This program is free software; you can redistribute it and/or modify |
| 3077 | - * it under the terms of the GNU General Public License as published by |
| 3078 | - * the Free Software Foundation; either version 2 of the License, or |
| 3079 | - * (at your option) any later version. |
| 3080 | - * |
| 3081 | - * This program is distributed in the hope that it will be useful, |
| 3082 | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 3083 | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 3084 | - * GNU General Public License for more details. |
| 3085 | - * |
| 3086 | - * You should have received a copy of the GNU General Public License |
| 3087 | - * along with this program; if not, write to the Free Software |
| 3088 | - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 3089 | - */ |
| 3090 | +/******************************************************************************* |
| 3091 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3092 | +* |
| 3093 | +* All rights reserved. This program and the accompanying materials |
| 3094 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3095 | +* which accompanies this distribution, and is available at |
| 3096 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3097 | +* |
| 3098 | +*******************************************************************************/ |
| 3099 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3100 | |
| 3101 | import java.lang.reflect.InvocationTargetException; |
| 3102 | |
| 3103 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/IgnoredAction.java' |
| 3104 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/IgnoredAction.java 2009-11-18 08:48:22 +0000 |
| 3105 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/IgnoredAction.java 2013-10-31 17:23:32 +0000 |
| 3106 | @@ -1,20 +1,12 @@ |
| 3107 | -/** |
| 3108 | -* Copyright (C) 2009 Canonical Ltd |
| 3109 | -* |
| 3110 | -* This program is free software; you can redistribute it and/or modify |
| 3111 | -* it under the terms of the GNU General Public License as published by |
| 3112 | -* the Free Software Foundation; either version 2 of the License, or |
| 3113 | -* (at your option) any later version. |
| 3114 | -* |
| 3115 | -* This program is distributed in the hope that it will be useful, |
| 3116 | -* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 3117 | -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 3118 | -* GNU General Public License for more details. |
| 3119 | -* |
| 3120 | -* You should have received a copy of the GNU General Public License |
| 3121 | -* along with this program; if not, write to the Free Software |
| 3122 | -* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 3123 | -*/ |
| 3124 | +/******************************************************************************* |
| 3125 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3126 | +* |
| 3127 | +* All rights reserved. This program and the accompanying materials |
| 3128 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3129 | +* which accompanies this distribution, and is available at |
| 3130 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3131 | +* |
| 3132 | +*******************************************************************************/ |
| 3133 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3134 | |
| 3135 | import java.lang.reflect.InvocationTargetException; |
| 3136 | |
| 3137 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/InitAction.java' |
| 3138 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/InitAction.java 2009-11-18 08:48:22 +0000 |
| 3139 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/InitAction.java 2013-10-31 17:23:32 +0000 |
| 3140 | @@ -1,6 +1,12 @@ |
| 3141 | -/** |
| 3142 | - * LICENSE + COPYRIGHT |
| 3143 | - */ |
| 3144 | +/******************************************************************************* |
| 3145 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3146 | + * |
| 3147 | + * All rights reserved. This program and the accompanying materials |
| 3148 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3149 | + * which accompanies this distribution, and is available at |
| 3150 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3151 | + * |
| 3152 | + *******************************************************************************/ |
| 3153 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3154 | |
| 3155 | import java.lang.reflect.InvocationTargetException; |
| 3156 | |
| 3157 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/LogAction.java' |
| 3158 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/LogAction.java 2013-09-08 17:22:22 +0000 |
| 3159 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/LogAction.java 2013-10-31 17:23:32 +0000 |
| 3160 | @@ -1,6 +1,12 @@ |
| 3161 | -/** |
| 3162 | - * LICENSE + COPYRIGHT |
| 3163 | - */ |
| 3164 | +/******************************************************************************* |
| 3165 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3166 | + * |
| 3167 | + * All rights reserved. This program and the accompanying materials |
| 3168 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3169 | + * which accompanies this distribution, and is available at |
| 3170 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3171 | + * |
| 3172 | + *******************************************************************************/ |
| 3173 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3174 | |
| 3175 | import org.eclipse.core.resources.IProject; |
| 3176 | |
| 3177 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/MergeAction.java' |
| 3178 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/MergeAction.java 2013-09-20 20:27:15 +0000 |
| 3179 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/MergeAction.java 2013-10-31 17:23:32 +0000 |
| 3180 | @@ -1,6 +1,12 @@ |
| 3181 | -/** |
| 3182 | - * LICENSE + COPYRIGHT |
| 3183 | - */ |
| 3184 | +/******************************************************************************* |
| 3185 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3186 | + * |
| 3187 | + * All rights reserved. This program and the accompanying materials |
| 3188 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3189 | + * which accompanies this distribution, and is available at |
| 3190 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3191 | + * |
| 3192 | + *******************************************************************************/ |
| 3193 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3194 | |
| 3195 | import java.lang.reflect.InvocationTargetException; |
| 3196 | |
| 3197 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/MissingAction.java' |
| 3198 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/MissingAction.java 2013-09-18 09:51:10 +0000 |
| 3199 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/MissingAction.java 2013-10-31 17:23:32 +0000 |
| 3200 | @@ -1,6 +1,12 @@ |
| 3201 | -/** |
| 3202 | - * LICENSE + COPYRIGHT |
| 3203 | - */ |
| 3204 | +/******************************************************************************* |
| 3205 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3206 | + * |
| 3207 | + * All rights reserved. This program and the accompanying materials |
| 3208 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3209 | + * which accompanies this distribution, and is available at |
| 3210 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3211 | + * |
| 3212 | + *******************************************************************************/ |
| 3213 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3214 | |
| 3215 | import java.util.ArrayList; |
| 3216 | |
| 3217 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/OpenBazaarRevisionAction.java' |
| 3218 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/OpenBazaarRevisionAction.java 2013-09-20 06:05:50 +0000 |
| 3219 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/OpenBazaarRevisionAction.java 2013-10-31 17:23:32 +0000 |
| 3220 | @@ -1,9 +1,13 @@ |
| 3221 | -/* |
| 3222 | - * OpenBazaarRevisionAction |
| 3223 | - * |
| 3224 | - * Open an "old" revision in an editor from like "History" view. |
| 3225 | - * |
| 3226 | - */ |
| 3227 | +/******************************************************************************* |
| 3228 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 3229 | +* Copyright (c) 2013 Piotr Piastucki |
| 3230 | +* |
| 3231 | +* All rights reserved. This program and the accompanying materials |
| 3232 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3233 | +* which accompanies this distribution, and is available at |
| 3234 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3235 | +* |
| 3236 | +*******************************************************************************/ |
| 3237 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3238 | |
| 3239 | import java.io.IOException; |
| 3240 | |
| 3241 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/PullAction.java' |
| 3242 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/PullAction.java 2013-09-20 20:27:15 +0000 |
| 3243 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/PullAction.java 2013-10-31 17:23:32 +0000 |
| 3244 | @@ -1,6 +1,12 @@ |
| 3245 | -/** |
| 3246 | - * LICENSE + COPYRIGHT |
| 3247 | - */ |
| 3248 | +/******************************************************************************* |
| 3249 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3250 | + * |
| 3251 | + * All rights reserved. This program and the accompanying materials |
| 3252 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3253 | + * which accompanies this distribution, and is available at |
| 3254 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3255 | + * |
| 3256 | + *******************************************************************************/ |
| 3257 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3258 | |
| 3259 | import java.lang.reflect.InvocationTargetException; |
| 3260 | |
| 3261 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/PushAction.java' |
| 3262 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/PushAction.java 2013-07-17 17:21:42 +0000 |
| 3263 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/PushAction.java 2013-10-31 17:23:32 +0000 |
| 3264 | @@ -1,6 +1,12 @@ |
| 3265 | -/** |
| 3266 | - * LICENSE + COPYRIGHT |
| 3267 | - */ |
| 3268 | +/******************************************************************************* |
| 3269 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3270 | + * |
| 3271 | + * All rights reserved. This program and the accompanying materials |
| 3272 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3273 | + * which accompanies this distribution, and is available at |
| 3274 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3275 | + * |
| 3276 | + *******************************************************************************/ |
| 3277 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3278 | |
| 3279 | import java.lang.reflect.InvocationTargetException; |
| 3280 | |
| 3281 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ResolveAction.java' |
| 3282 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ResolveAction.java 2013-03-19 15:05:13 +0000 |
| 3283 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ResolveAction.java 2013-10-31 17:23:32 +0000 |
| 3284 | @@ -1,6 +1,12 @@ |
| 3285 | -/** |
| 3286 | - * LICENSE + COPYRIGHT |
| 3287 | - */ |
| 3288 | +/******************************************************************************* |
| 3289 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3290 | + * |
| 3291 | + * All rights reserved. This program and the accompanying materials |
| 3292 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3293 | + * which accompanies this distribution, and is available at |
| 3294 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3295 | + * |
| 3296 | + *******************************************************************************/ |
| 3297 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3298 | |
| 3299 | import java.lang.reflect.InvocationTargetException; |
| 3300 | |
| 3301 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ResolveTakeOtherAction.java' |
| 3302 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ResolveTakeOtherAction.java 2013-03-08 09:23:17 +0000 |
| 3303 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ResolveTakeOtherAction.java 2013-10-31 17:23:32 +0000 |
| 3304 | @@ -1,3 +1,12 @@ |
| 3305 | +/******************************************************************************* |
| 3306 | +* Copyright (c) 2013 Piotr Piastucki |
| 3307 | +* |
| 3308 | +* All rights reserved. This program and the accompanying materials |
| 3309 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3310 | +* which accompanies this distribution, and is available at |
| 3311 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3312 | +* |
| 3313 | +*******************************************************************************/ |
| 3314 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3315 | |
| 3316 | import org.vcs.bazaar.client.commandline.commands.options.Option; |
| 3317 | |
| 3318 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ResolveTakeThisAction.java' |
| 3319 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ResolveTakeThisAction.java 2013-03-08 09:23:17 +0000 |
| 3320 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ResolveTakeThisAction.java 2013-10-31 17:23:32 +0000 |
| 3321 | @@ -1,3 +1,12 @@ |
| 3322 | +/******************************************************************************* |
| 3323 | +* Copyright (c) 2013 Piotr Piastucki |
| 3324 | +* |
| 3325 | +* All rights reserved. This program and the accompanying materials |
| 3326 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3327 | +* which accompanies this distribution, and is available at |
| 3328 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3329 | +* |
| 3330 | +*******************************************************************************/ |
| 3331 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3332 | |
| 3333 | import org.vcs.bazaar.client.commandline.commands.options.Option; |
| 3334 | |
| 3335 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/RevertAction.java' |
| 3336 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/RevertAction.java 2013-03-06 20:08:34 +0000 |
| 3337 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/RevertAction.java 2013-10-31 17:23:32 +0000 |
| 3338 | @@ -1,7 +1,12 @@ |
| 3339 | -/** |
| 3340 | - * org.vcs.bazaar.eclipse (c) Vectrace Sep 12, 2006 |
| 3341 | - * Created by zingo |
| 3342 | - */ |
| 3343 | +/******************************************************************************* |
| 3344 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3345 | +* |
| 3346 | +* All rights reserved. This program and the accompanying materials |
| 3347 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3348 | +* which accompanies this distribution, and is available at |
| 3349 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3350 | +* |
| 3351 | +*******************************************************************************/ |
| 3352 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3353 | |
| 3354 | import java.lang.reflect.InvocationTargetException; |
| 3355 | |
| 3356 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/SendAction.java' |
| 3357 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/SendAction.java 2013-03-06 20:08:34 +0000 |
| 3358 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/SendAction.java 2013-10-31 17:23:32 +0000 |
| 3359 | @@ -1,20 +1,12 @@ |
| 3360 | -/** |
| 3361 | -* Copyright (C) 2009 Canonical Ltd |
| 3362 | -* |
| 3363 | -* This program is free software; you can redistribute it and/or modify |
| 3364 | -* it under the terms of the GNU General Public License as published by |
| 3365 | -* the Free Software Foundation; either version 2 of the License, or |
| 3366 | -* (at your option) any later version. |
| 3367 | -* |
| 3368 | -* This program is distributed in the hope that it will be useful, |
| 3369 | -* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 3370 | -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 3371 | -* GNU General Public License for more details. |
| 3372 | -* |
| 3373 | -* You should have received a copy of the GNU General Public License |
| 3374 | -* along with this program; if not, write to the Free Software |
| 3375 | -* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 3376 | -*/ |
| 3377 | +/******************************************************************************* |
| 3378 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3379 | +* |
| 3380 | +* All rights reserved. This program and the accompanying materials |
| 3381 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3382 | +* which accompanies this distribution, and is available at |
| 3383 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3384 | +* |
| 3385 | +*******************************************************************************/ |
| 3386 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3387 | |
| 3388 | import java.lang.reflect.InvocationTargetException; |
| 3389 | |
| 3390 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ShowConflictsAction.java' |
| 3391 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ShowConflictsAction.java 2013-09-05 12:15:52 +0000 |
| 3392 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/ShowConflictsAction.java 2013-10-31 17:23:32 +0000 |
| 3393 | @@ -1,3 +1,12 @@ |
| 3394 | +/******************************************************************************* |
| 3395 | +* Copyright (c) 2013 Piotr Piastucki |
| 3396 | +* |
| 3397 | +* All rights reserved. This program and the accompanying materials |
| 3398 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3399 | +* which accompanies this distribution, and is available at |
| 3400 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3401 | +* |
| 3402 | +*******************************************************************************/ |
| 3403 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3404 | |
| 3405 | import org.eclipse.core.resources.IProject; |
| 3406 | |
| 3407 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/SwitchAction.java' |
| 3408 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/SwitchAction.java 2013-08-12 19:44:58 +0000 |
| 3409 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/SwitchAction.java 2013-10-31 17:23:32 +0000 |
| 3410 | @@ -1,6 +1,12 @@ |
| 3411 | -/** |
| 3412 | - * LICENSE + COPYRIGHT |
| 3413 | - */ |
| 3414 | +/******************************************************************************* |
| 3415 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3416 | + * |
| 3417 | + * All rights reserved. This program and the accompanying materials |
| 3418 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3419 | + * which accompanies this distribution, and is available at |
| 3420 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3421 | + * |
| 3422 | + *******************************************************************************/ |
| 3423 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3424 | |
| 3425 | import java.lang.reflect.InvocationTargetException; |
| 3426 | |
| 3427 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/SynchronizeAction.java' |
| 3428 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/SynchronizeAction.java 2013-05-13 11:47:17 +0000 |
| 3429 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/SynchronizeAction.java 2013-10-31 17:23:32 +0000 |
| 3430 | @@ -1,3 +1,12 @@ |
| 3431 | +/******************************************************************************* |
| 3432 | +* Copyright (c) 2013 Piotr Piastucki |
| 3433 | +* |
| 3434 | +* All rights reserved. This program and the accompanying materials |
| 3435 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3436 | +* which accompanies this distribution, and is available at |
| 3437 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3438 | +* |
| 3439 | +*******************************************************************************/ |
| 3440 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3441 | |
| 3442 | import java.util.ArrayList; |
| 3443 | |
| 3444 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/UnBindAction.java' |
| 3445 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/UnBindAction.java 2013-03-06 20:08:34 +0000 |
| 3446 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/UnBindAction.java 2013-10-31 17:23:32 +0000 |
| 3447 | @@ -1,6 +1,12 @@ |
| 3448 | -/** |
| 3449 | - * LICENCSE + COPYRIGHT |
| 3450 | - */ |
| 3451 | +/******************************************************************************* |
| 3452 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3453 | + * |
| 3454 | + * All rights reserved. This program and the accompanying materials |
| 3455 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3456 | + * which accompanies this distribution, and is available at |
| 3457 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3458 | + * |
| 3459 | + *******************************************************************************/ |
| 3460 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3461 | |
| 3462 | import java.lang.reflect.InvocationTargetException; |
| 3463 | |
| 3464 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/UnCommitAction.java' |
| 3465 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/UnCommitAction.java 2013-02-20 11:54:26 +0000 |
| 3466 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/UnCommitAction.java 2013-10-31 17:23:32 +0000 |
| 3467 | @@ -1,6 +1,12 @@ |
| 3468 | -/** |
| 3469 | - * LICENCSE + COPYRIGHT |
| 3470 | - */ |
| 3471 | +/******************************************************************************* |
| 3472 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3473 | + * |
| 3474 | + * All rights reserved. This program and the accompanying materials |
| 3475 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3476 | + * which accompanies this distribution, and is available at |
| 3477 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3478 | + * |
| 3479 | + *******************************************************************************/ |
| 3480 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3481 | |
| 3482 | import java.lang.reflect.InvocationTargetException; |
| 3483 | |
| 3484 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/UpdateAction.java' |
| 3485 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/UpdateAction.java 2013-09-20 20:27:15 +0000 |
| 3486 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/UpdateAction.java 2013-10-31 17:23:32 +0000 |
| 3487 | @@ -1,6 +1,12 @@ |
| 3488 | -/** |
| 3489 | - * LICENSE + COPYRIGHT |
| 3490 | - */ |
| 3491 | +/******************************************************************************* |
| 3492 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3493 | + * |
| 3494 | + * All rights reserved. This program and the accompanying materials |
| 3495 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3496 | + * which accompanies this distribution, and is available at |
| 3497 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3498 | + * |
| 3499 | + *******************************************************************************/ |
| 3500 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3501 | |
| 3502 | import java.lang.reflect.InvocationTargetException; |
| 3503 | |
| 3504 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/WorkbenchAction.java' |
| 3505 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/WorkbenchAction.java 2013-09-26 12:16:59 +0000 |
| 3506 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/WorkbenchAction.java 2013-10-31 17:23:32 +0000 |
| 3507 | @@ -1,6 +1,12 @@ |
| 3508 | -/** |
| 3509 | - * LICENCSE + COPYRIGHT |
| 3510 | - */ |
| 3511 | +/******************************************************************************* |
| 3512 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3513 | + * |
| 3514 | + * All rights reserved. This program and the accompanying materials |
| 3515 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3516 | + * which accompanies this distribution, and is available at |
| 3517 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3518 | + * |
| 3519 | + *******************************************************************************/ |
| 3520 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3521 | |
| 3522 | import java.lang.reflect.InvocationTargetException; |
| 3523 | |
| 3524 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/WorkspaceAction.java' |
| 3525 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/WorkspaceAction.java 2013-09-12 10:03:07 +0000 |
| 3526 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/actions/WorkspaceAction.java 2013-10-31 17:23:32 +0000 |
| 3527 | @@ -1,6 +1,12 @@ |
| 3528 | -/** |
| 3529 | - * LICENCSE + COPYRIGHT |
| 3530 | - */ |
| 3531 | +/******************************************************************************* |
| 3532 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3533 | + * |
| 3534 | + * All rights reserved. This program and the accompanying materials |
| 3535 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3536 | + * which accompanies this distribution, and is available at |
| 3537 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3538 | + * |
| 3539 | + *******************************************************************************/ |
| 3540 | package org.vcs.bazaar.eclipse.ui.actions; |
| 3541 | |
| 3542 | import static org.vcs.bazaar.eclipse.core.utils.ResourceUtil.shouldHandle; |
| 3543 | |
| 3544 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/BazaarCompareEditorInput.java' |
| 3545 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/BazaarCompareEditorInput.java 2013-08-24 05:38:18 +0000 |
| 3546 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/BazaarCompareEditorInput.java 2013-10-31 17:23:32 +0000 |
| 3547 | @@ -1,6 +1,12 @@ |
| 3548 | -/** |
| 3549 | - * LICENSE + COPYRIGHT |
| 3550 | - */ |
| 3551 | +/******************************************************************************* |
| 3552 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3553 | +* |
| 3554 | +* All rights reserved. This program and the accompanying materials |
| 3555 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3556 | +* which accompanies this distribution, and is available at |
| 3557 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3558 | +* |
| 3559 | +*******************************************************************************/ |
| 3560 | package org.vcs.bazaar.eclipse.ui.compare; |
| 3561 | |
| 3562 | import java.lang.reflect.InvocationTargetException; |
| 3563 | |
| 3564 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/BazaarResourceNode.java' |
| 3565 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/BazaarResourceNode.java 2013-09-09 07:05:47 +0000 |
| 3566 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/BazaarResourceNode.java 2013-10-31 17:23:32 +0000 |
| 3567 | @@ -1,6 +1,12 @@ |
| 3568 | -/** |
| 3569 | - * |
| 3570 | - */ |
| 3571 | +/******************************************************************************* |
| 3572 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3573 | +* |
| 3574 | +* All rights reserved. This program and the accompanying materials |
| 3575 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3576 | +* which accompanies this distribution, and is available at |
| 3577 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3578 | +* |
| 3579 | +*******************************************************************************/ |
| 3580 | package org.vcs.bazaar.eclipse.ui.compare; |
| 3581 | |
| 3582 | import java.util.ArrayList; |
| 3583 | |
| 3584 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/BazaarRevisionNode.java' |
| 3585 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/BazaarRevisionNode.java 2013-09-09 07:05:47 +0000 |
| 3586 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/BazaarRevisionNode.java 2013-10-31 17:23:32 +0000 |
| 3587 | @@ -1,6 +1,12 @@ |
| 3588 | -/** |
| 3589 | - * LICENSE + COPYRIGHT |
| 3590 | - */ |
| 3591 | +/******************************************************************************* |
| 3592 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3593 | + * |
| 3594 | + * All rights reserved. This program and the accompanying materials |
| 3595 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3596 | + * which accompanies this distribution, and is available at |
| 3597 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3598 | + * |
| 3599 | + *******************************************************************************/ |
| 3600 | package org.vcs.bazaar.eclipse.ui.compare; |
| 3601 | |
| 3602 | import java.io.InputStream; |
| 3603 | @@ -75,4 +81,4 @@ |
| 3604 | } |
| 3605 | return false; |
| 3606 | } |
| 3607 | -} |
| 3608 | \ No newline at end of file |
| 3609 | +} |
| 3610 | |
| 3611 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/CompareUtils.java' |
| 3612 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/CompareUtils.java 2013-09-09 07:05:47 +0000 |
| 3613 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/CompareUtils.java 2013-10-31 17:23:32 +0000 |
| 3614 | @@ -1,6 +1,13 @@ |
| 3615 | -/** |
| 3616 | - * |
| 3617 | - */ |
| 3618 | +/******************************************************************************* |
| 3619 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 3620 | +* Copyright (c) 2007-2013 Piotr Piastucki |
| 3621 | +* |
| 3622 | +* All rights reserved. This program and the accompanying materials |
| 3623 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3624 | +* which accompanies this distribution, and is available at |
| 3625 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3626 | +* |
| 3627 | +*******************************************************************************/ |
| 3628 | package org.vcs.bazaar.eclipse.ui.compare; |
| 3629 | |
| 3630 | import java.util.List; |
| 3631 | |
| 3632 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/SaveableBazaarCompareEditorInput.java' |
| 3633 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/SaveableBazaarCompareEditorInput.java 2013-08-24 05:38:18 +0000 |
| 3634 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/compare/SaveableBazaarCompareEditorInput.java 2013-10-31 17:23:32 +0000 |
| 3635 | @@ -1,6 +1,12 @@ |
| 3636 | -/** |
| 3637 | - * LICENSE + COPYRIGHT |
| 3638 | - */ |
| 3639 | +/******************************************************************************* |
| 3640 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3641 | + * |
| 3642 | + * All rights reserved. This program and the accompanying materials |
| 3643 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3644 | + * which accompanies this distribution, and is available at |
| 3645 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3646 | + * |
| 3647 | + *******************************************************************************/ |
| 3648 | package org.vcs.bazaar.eclipse.ui.compare; |
| 3649 | |
| 3650 | import java.lang.reflect.InvocationTargetException; |
| 3651 | |
| 3652 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/BazaarLightweightDecorator.java' |
| 3653 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/BazaarLightweightDecorator.java 2013-09-12 10:03:07 +0000 |
| 3654 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/BazaarLightweightDecorator.java 2013-10-31 17:23:32 +0000 |
| 3655 | @@ -1,6 +1,12 @@ |
| 3656 | -/** |
| 3657 | - * LICENSE + COPYRIGHT |
| 3658 | - */ |
| 3659 | +/******************************************************************************* |
| 3660 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3661 | + * |
| 3662 | + * All rights reserved. This program and the accompanying materials |
| 3663 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3664 | + * which accompanies this distribution, and is available at |
| 3665 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3666 | + * |
| 3667 | + *******************************************************************************/ |
| 3668 | package org.vcs.bazaar.eclipse.ui.decorator; |
| 3669 | |
| 3670 | import java.text.DateFormat; |
| 3671 | |
| 3672 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/DecoratorImages.java' |
| 3673 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/DecoratorImages.java 2013-09-25 11:44:07 +0000 |
| 3674 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/DecoratorImages.java 2013-10-31 17:23:32 +0000 |
| 3675 | @@ -1,3 +1,12 @@ |
| 3676 | +/******************************************************************************* |
| 3677 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3678 | +* |
| 3679 | +* All rights reserved. This program and the accompanying materials |
| 3680 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3681 | +* which accompanies this distribution, and is available at |
| 3682 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3683 | +* |
| 3684 | +*******************************************************************************/ |
| 3685 | package org.vcs.bazaar.eclipse.ui.decorator; |
| 3686 | |
| 3687 | import java.util.HashMap; |
| 3688 | |
| 3689 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/DecoratorResources.java' |
| 3690 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/DecoratorResources.java 2013-09-25 11:19:48 +0000 |
| 3691 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/DecoratorResources.java 2013-10-31 17:23:32 +0000 |
| 3692 | @@ -1,6 +1,12 @@ |
| 3693 | -/** |
| 3694 | - * |
| 3695 | - */ |
| 3696 | +/******************************************************************************* |
| 3697 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3698 | +* |
| 3699 | +* All rights reserved. This program and the accompanying materials |
| 3700 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3701 | +* which accompanies this distribution, and is available at |
| 3702 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3703 | +* |
| 3704 | +*******************************************************************************/ |
| 3705 | package org.vcs.bazaar.eclipse.ui.decorator; |
| 3706 | |
| 3707 | import org.vcs.bazaar.client.BazaarStatusKind; |
| 3708 | |
| 3709 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/DecoratorTextLabels.java' |
| 3710 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/DecoratorTextLabels.java 2013-09-12 10:03:07 +0000 |
| 3711 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/decorator/DecoratorTextLabels.java 2013-10-31 17:23:32 +0000 |
| 3712 | @@ -1,3 +1,12 @@ |
| 3713 | +/******************************************************************************* |
| 3714 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3715 | +* |
| 3716 | +* All rights reserved. This program and the accompanying materials |
| 3717 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3718 | +* which accompanies this distribution, and is available at |
| 3719 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3720 | +* |
| 3721 | +*******************************************************************************/ |
| 3722 | package org.vcs.bazaar.eclipse.ui.decorator; |
| 3723 | |
| 3724 | import java.util.HashMap; |
| 3725 | |
| 3726 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/IgnoredDialog.java' |
| 3727 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/IgnoredDialog.java 2009-11-18 08:48:22 +0000 |
| 3728 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/IgnoredDialog.java 2013-10-31 17:23:32 +0000 |
| 3729 | @@ -1,20 +1,12 @@ |
| 3730 | -/** |
| 3731 | -* Copyright (C) 2009 Canonical Ltd |
| 3732 | -* |
| 3733 | -* This program is free software; you can redistribute it and/or modify |
| 3734 | -* it under the terms of the GNU General Public License as published by |
| 3735 | -* the Free Software Foundation; either version 2 of the License, or |
| 3736 | -* (at your option) any later version. |
| 3737 | -* |
| 3738 | -* This program is distributed in the hope that it will be useful, |
| 3739 | -* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 3740 | -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 3741 | -* GNU General Public License for more details. |
| 3742 | -* |
| 3743 | -* You should have received a copy of the GNU General Public License |
| 3744 | -* along with this program; if not, write to the Free Software |
| 3745 | -* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 3746 | -*/ |
| 3747 | +/******************************************************************************* |
| 3748 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3749 | +* |
| 3750 | +* All rights reserved. This program and the accompanying materials |
| 3751 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3752 | +* which accompanies this distribution, and is available at |
| 3753 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3754 | +* |
| 3755 | +*******************************************************************************/ |
| 3756 | package org.vcs.bazaar.eclipse.ui.dialogs; |
| 3757 | |
| 3758 | import java.util.ArrayList; |
| 3759 | |
| 3760 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/IgnoredFilesLabelProvider.java' |
| 3761 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/IgnoredFilesLabelProvider.java 2009-11-18 08:48:22 +0000 |
| 3762 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/IgnoredFilesLabelProvider.java 2013-10-31 17:23:32 +0000 |
| 3763 | @@ -1,20 +1,12 @@ |
| 3764 | -/** |
| 3765 | - * Copyright (C) 2009 Canonical Ltd |
| 3766 | - * |
| 3767 | - * This program is free software; you can redistribute it and/or modify |
| 3768 | - * it under the terms of the GNU General Public License as published by |
| 3769 | - * the Free Software Foundation; either version 2 of the License, or |
| 3770 | - * (at your option) any later version. |
| 3771 | - * |
| 3772 | - * This program is distributed in the hope that it will be useful, |
| 3773 | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 3774 | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 3775 | - * GNU General Public License for more details. |
| 3776 | - * |
| 3777 | - * You should have received a copy of the GNU General Public License |
| 3778 | - * along with this program; if not, write to the Free Software |
| 3779 | - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 3780 | - */ |
| 3781 | +/******************************************************************************* |
| 3782 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3783 | +* |
| 3784 | +* All rights reserved. This program and the accompanying materials |
| 3785 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3786 | +* which accompanies this distribution, and is available at |
| 3787 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3788 | +* |
| 3789 | +*******************************************************************************/ |
| 3790 | package org.vcs.bazaar.eclipse.ui.dialogs; |
| 3791 | |
| 3792 | import java.util.Map.Entry; |
| 3793 | |
| 3794 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/InputDialog.java' |
| 3795 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/InputDialog.java 2013-04-08 22:46:56 +0000 |
| 3796 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/InputDialog.java 2013-10-31 17:23:32 +0000 |
| 3797 | @@ -1,3 +1,12 @@ |
| 3798 | +/******************************************************************************* |
| 3799 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3800 | +* |
| 3801 | +* All rights reserved. This program and the accompanying materials |
| 3802 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3803 | +* which accompanies this distribution, and is available at |
| 3804 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3805 | +* |
| 3806 | +*******************************************************************************/ |
| 3807 | package org.vcs.bazaar.eclipse.ui.dialogs; |
| 3808 | |
| 3809 | import org.eclipse.jface.dialogs.IDialogConstants; |
| 3810 | |
| 3811 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/LocationInputDialog.java' |
| 3812 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/LocationInputDialog.java 2013-09-26 12:16:59 +0000 |
| 3813 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/LocationInputDialog.java 2013-10-31 17:23:32 +0000 |
| 3814 | @@ -1,6 +1,12 @@ |
| 3815 | -/** |
| 3816 | - * LICENSE + COPYRIGHT |
| 3817 | - */ |
| 3818 | +/******************************************************************************* |
| 3819 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3820 | + * |
| 3821 | + * All rights reserved. This program and the accompanying materials |
| 3822 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3823 | + * which accompanies this distribution, and is available at |
| 3824 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3825 | + * |
| 3826 | + *******************************************************************************/ |
| 3827 | package org.vcs.bazaar.eclipse.ui.dialogs; |
| 3828 | |
| 3829 | import java.util.ArrayList; |
| 3830 | |
| 3831 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/MergeDialog.java' |
| 3832 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/MergeDialog.java 2013-08-12 19:44:58 +0000 |
| 3833 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/MergeDialog.java 2013-10-31 17:23:32 +0000 |
| 3834 | @@ -1,6 +1,12 @@ |
| 3835 | -/** |
| 3836 | - * LICENSE + COPYRIGHT |
| 3837 | - */ |
| 3838 | +/******************************************************************************* |
| 3839 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3840 | + * |
| 3841 | + * All rights reserved. This program and the accompanying materials |
| 3842 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3843 | + * which accompanies this distribution, and is available at |
| 3844 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3845 | + * |
| 3846 | + *******************************************************************************/ |
| 3847 | package org.vcs.bazaar.eclipse.ui.dialogs; |
| 3848 | |
| 3849 | import java.util.ArrayList; |
| 3850 | |
| 3851 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/RevertDialog.java' |
| 3852 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/RevertDialog.java 2013-04-05 08:59:10 +0000 |
| 3853 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/RevertDialog.java 2013-10-31 17:23:32 +0000 |
| 3854 | @@ -1,6 +1,12 @@ |
| 3855 | -/** |
| 3856 | - * LICENSE + COPYRIGHT |
| 3857 | - */ |
| 3858 | +/******************************************************************************* |
| 3859 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3860 | + * |
| 3861 | + * All rights reserved. This program and the accompanying materials |
| 3862 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3863 | + * which accompanies this distribution, and is available at |
| 3864 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3865 | + * |
| 3866 | + *******************************************************************************/ |
| 3867 | package org.vcs.bazaar.eclipse.ui.dialogs; |
| 3868 | |
| 3869 | import java.util.ArrayList; |
| 3870 | |
| 3871 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/SendDialog.java' |
| 3872 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/SendDialog.java 2013-08-12 19:44:58 +0000 |
| 3873 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/SendDialog.java 2013-10-31 17:23:32 +0000 |
| 3874 | @@ -1,20 +1,12 @@ |
| 3875 | -/** |
| 3876 | -* Copyright (C) 2009 Canonical Ltd |
| 3877 | -* |
| 3878 | -* This program is free software; you can redistribute it and/or modify |
| 3879 | -* it under the terms of the GNU General Public License as published by |
| 3880 | -* the Free Software Foundation; either version 2 of the License, or |
| 3881 | -* (at your option) any later version. |
| 3882 | -* |
| 3883 | -* This program is distributed in the hope that it will be useful, |
| 3884 | -* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 3885 | -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 3886 | -* GNU General Public License for more details. |
| 3887 | -* |
| 3888 | -* You should have received a copy of the GNU General Public License |
| 3889 | -* along with this program; if not, write to the Free Software |
| 3890 | -* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 3891 | -*/ |
| 3892 | +/******************************************************************************* |
| 3893 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3894 | +* |
| 3895 | +* All rights reserved. This program and the accompanying materials |
| 3896 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3897 | +* which accompanies this distribution, and is available at |
| 3898 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3899 | +* |
| 3900 | +*******************************************************************************/ |
| 3901 | package org.vcs.bazaar.eclipse.ui.dialogs; |
| 3902 | |
| 3903 | import java.util.ArrayList; |
| 3904 | |
| 3905 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/ShowLogDialog.java' |
| 3906 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/ShowLogDialog.java 2013-04-17 09:44:10 +0000 |
| 3907 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/ShowLogDialog.java 2013-10-31 17:23:32 +0000 |
| 3908 | @@ -1,6 +1,13 @@ |
| 3909 | -/** |
| 3910 | - * |
| 3911 | - */ |
| 3912 | +/******************************************************************************* |
| 3913 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3914 | +* Copyright (c) 2013 Piotr Piastucki |
| 3915 | +* |
| 3916 | +* All rights reserved. This program and the accompanying materials |
| 3917 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3918 | +* which accompanies this distribution, and is available at |
| 3919 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3920 | +* |
| 3921 | +*******************************************************************************/ |
| 3922 | package org.vcs.bazaar.eclipse.ui.dialogs; |
| 3923 | |
| 3924 | import org.eclipse.core.resources.IResource; |
| 3925 | @@ -172,4 +179,4 @@ |
| 3926 | return super.close(); |
| 3927 | } |
| 3928 | |
| 3929 | -} |
| 3930 | \ No newline at end of file |
| 3931 | +} |
| 3932 | |
| 3933 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/UncommitDialog.java' |
| 3934 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/UncommitDialog.java 2009-11-18 08:48:22 +0000 |
| 3935 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/UncommitDialog.java 2013-10-31 17:23:32 +0000 |
| 3936 | @@ -1,3 +1,12 @@ |
| 3937 | +/******************************************************************************* |
| 3938 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 3939 | +* |
| 3940 | +* All rights reserved. This program and the accompanying materials |
| 3941 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3942 | +* which accompanies this distribution, and is available at |
| 3943 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3944 | +* |
| 3945 | +*******************************************************************************/ |
| 3946 | package org.vcs.bazaar.eclipse.ui.dialogs; |
| 3947 | |
| 3948 | import java.text.SimpleDateFormat; |
| 3949 | |
| 3950 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/UntrackedFilesFilter.java' |
| 3951 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/UntrackedFilesFilter.java 2013-02-05 13:26:26 +0000 |
| 3952 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/dialogs/UntrackedFilesFilter.java 2013-10-31 17:23:32 +0000 |
| 3953 | @@ -1,6 +1,13 @@ |
| 3954 | -/** |
| 3955 | - * |
| 3956 | - */ |
| 3957 | +/******************************************************************************* |
| 3958 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 3959 | +* Copyright (c) 2013 Piotr Piastucki |
| 3960 | +* |
| 3961 | +* All rights reserved. This program and the accompanying materials |
| 3962 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 3963 | +* which accompanies this distribution, and is available at |
| 3964 | +* http://www.eclipse.org/legal/epl-v10.html |
| 3965 | +* |
| 3966 | +*******************************************************************************/ |
| 3967 | package org.vcs.bazaar.eclipse.ui.dialogs; |
| 3968 | |
| 3969 | import org.eclipse.jface.viewers.Viewer; |
| 3970 | @@ -23,4 +30,4 @@ |
| 3971 | } |
| 3972 | return true; |
| 3973 | } |
| 3974 | -} |
| 3975 | \ No newline at end of file |
| 3976 | +} |
| 3977 | |
| 3978 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/history/BazaarHistoryPage.java' |
| 3979 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/history/BazaarHistoryPage.java 2013-09-18 09:51:10 +0000 |
| 3980 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/history/BazaarHistoryPage.java 2013-10-31 17:23:32 +0000 |
| 3981 | @@ -1,6 +1,12 @@ |
| 3982 | -/** |
| 3983 | - * LICENSE + COPYRIGHT |
| 3984 | - */ |
| 3985 | +/******************************************************************************* |
| 3986 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 3987 | + * |
| 3988 | + * All rights reserved. This program and the accompanying materials |
| 3989 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 3990 | + * which accompanies this distribution, and is available at |
| 3991 | + * http://www.eclipse.org/legal/epl-v10.html |
| 3992 | + * |
| 3993 | + *******************************************************************************/ |
| 3994 | package org.vcs.bazaar.eclipse.ui.history; |
| 3995 | |
| 3996 | import java.util.ArrayList; |
| 3997 | |
| 3998 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/history/BazaarHistoryPageSource.java' |
| 3999 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/history/BazaarHistoryPageSource.java 2013-09-08 17:22:22 +0000 |
| 4000 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/history/BazaarHistoryPageSource.java 2013-10-31 17:23:32 +0000 |
| 4001 | @@ -1,6 +1,12 @@ |
| 4002 | -/** |
| 4003 | - * LICENSE + COPYRIGHT |
| 4004 | - */ |
| 4005 | +/******************************************************************************* |
| 4006 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 4007 | + * |
| 4008 | + * All rights reserved. This program and the accompanying materials |
| 4009 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 4010 | + * which accompanies this distribution, and is available at |
| 4011 | + * http://www.eclipse.org/legal/epl-v10.html |
| 4012 | + * |
| 4013 | + *******************************************************************************/ |
| 4014 | package org.vcs.bazaar.eclipse.ui.history; |
| 4015 | |
| 4016 | import org.eclipse.core.resources.IResource; |
| 4017 | |
| 4018 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/history/HistoryTreeViewer.java' |
| 4019 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/history/HistoryTreeViewer.java 2013-09-05 12:15:52 +0000 |
| 4020 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/history/HistoryTreeViewer.java 2013-10-31 17:23:32 +0000 |
| 4021 | @@ -1,6 +1,12 @@ |
| 4022 | -/** |
| 4023 | - * LICENSE + COPYRIGHT |
| 4024 | - */ |
| 4025 | +/******************************************************************************* |
| 4026 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 4027 | + * |
| 4028 | + * All rights reserved. This program and the accompanying materials |
| 4029 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 4030 | + * which accompanies this distribution, and is available at |
| 4031 | + * http://www.eclipse.org/legal/epl-v10.html |
| 4032 | + * |
| 4033 | + *******************************************************************************/ |
| 4034 | package org.vcs.bazaar.eclipse.ui.history; |
| 4035 | |
| 4036 | import java.text.DateFormat; |
| 4037 | |
| 4038 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/operations/BzrOperation.java' |
| 4039 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/operations/BzrOperation.java 2009-11-18 08:48:22 +0000 |
| 4040 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/operations/BzrOperation.java 2013-10-31 17:23:32 +0000 |
| 4041 | @@ -1,6 +1,12 @@ |
| 4042 | -/** |
| 4043 | - * LICENCSE + COPYRIGHT |
| 4044 | - */ |
| 4045 | +/******************************************************************************* |
| 4046 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 4047 | + * |
| 4048 | + * All rights reserved. This program and the accompanying materials |
| 4049 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 4050 | + * which accompanies this distribution, and is available at |
| 4051 | + * http://www.eclipse.org/legal/epl-v10.html |
| 4052 | + * |
| 4053 | + *******************************************************************************/ |
| 4054 | package org.vcs.bazaar.eclipse.ui.operations; |
| 4055 | |
| 4056 | import org.eclipse.jface.operation.IRunnableContext; |
| 4057 | |
| 4058 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/operations/PushOperation.java' |
| 4059 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/operations/PushOperation.java 2013-07-17 17:21:42 +0000 |
| 4060 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/operations/PushOperation.java 2013-10-31 17:23:32 +0000 |
| 4061 | @@ -1,6 +1,12 @@ |
| 4062 | -/** |
| 4063 | - * |
| 4064 | - */ |
| 4065 | +/******************************************************************************* |
| 4066 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 4067 | +* |
| 4068 | +* All rights reserved. This program and the accompanying materials |
| 4069 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4070 | +* which accompanies this distribution, and is available at |
| 4071 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4072 | +* |
| 4073 | +*******************************************************************************/ |
| 4074 | package org.vcs.bazaar.eclipse.ui.operations; |
| 4075 | |
| 4076 | import java.lang.reflect.InvocationTargetException; |
| 4077 | |
| 4078 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/operations/SendOperation.java' |
| 4079 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/operations/SendOperation.java 2013-03-06 21:27:53 +0000 |
| 4080 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/operations/SendOperation.java 2013-10-31 17:23:32 +0000 |
| 4081 | @@ -1,20 +1,12 @@ |
| 4082 | -/** |
| 4083 | -* Copyright (C) 2009 Canonical Ltd |
| 4084 | -* |
| 4085 | -* This program is free software; you can redistribute it and/or modify |
| 4086 | -* it under the terms of the GNU General Public License as published by |
| 4087 | -* the Free Software Foundation; either version 2 of the License, or |
| 4088 | -* (at your option) any later version. |
| 4089 | -* |
| 4090 | -* This program is distributed in the hope that it will be useful, |
| 4091 | -* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 4092 | -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 4093 | -* GNU General Public License for more details. |
| 4094 | -* |
| 4095 | -* You should have received a copy of the GNU General Public License |
| 4096 | -* along with this program; if not, write to the Free Software |
| 4097 | -* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 4098 | -*/ |
| 4099 | +/******************************************************************************* |
| 4100 | +* Copyright (c) 2007-2013 Guillermo Gonzalez |
| 4101 | +* |
| 4102 | +* All rights reserved. This program and the accompanying materials |
| 4103 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4104 | +* which accompanies this distribution, and is available at |
| 4105 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4106 | +* |
| 4107 | +*******************************************************************************/ |
| 4108 | package org.vcs.bazaar.eclipse.ui.operations; |
| 4109 | |
| 4110 | import java.lang.reflect.InvocationTargetException; |
| 4111 | |
| 4112 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarDecoratorPreferencePage.java' |
| 4113 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarDecoratorPreferencePage.java 2013-09-11 23:03:44 +0000 |
| 4114 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarDecoratorPreferencePage.java 2013-10-31 17:23:32 +0000 |
| 4115 | @@ -1,6 +1,12 @@ |
| 4116 | -/** |
| 4117 | - * |
| 4118 | - */ |
| 4119 | +/******************************************************************************* |
| 4120 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 4121 | +* |
| 4122 | +* All rights reserved. This program and the accompanying materials |
| 4123 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4124 | +* which accompanies this distribution, and is available at |
| 4125 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4126 | +* |
| 4127 | +*******************************************************************************/ |
| 4128 | package org.vcs.bazaar.eclipse.ui.preferences; |
| 4129 | |
| 4130 | import org.eclipse.jface.preference.BooleanFieldEditor; |
| 4131 | |
| 4132 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarPerformancePreferencePage.java' |
| 4133 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarPerformancePreferencePage.java 2013-07-17 17:21:42 +0000 |
| 4134 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarPerformancePreferencePage.java 2013-10-31 17:23:32 +0000 |
| 4135 | @@ -1,6 +1,12 @@ |
| 4136 | -/** |
| 4137 | - * |
| 4138 | - */ |
| 4139 | +/******************************************************************************* |
| 4140 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 4141 | +* |
| 4142 | +* All rights reserved. This program and the accompanying materials |
| 4143 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4144 | +* which accompanies this distribution, and is available at |
| 4145 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4146 | +* |
| 4147 | +*******************************************************************************/ |
| 4148 | package org.vcs.bazaar.eclipse.ui.preferences; |
| 4149 | |
| 4150 | import org.eclipse.core.runtime.preferences.InstanceScope; |
| 4151 | |
| 4152 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarPreferenceConstants.java' |
| 4153 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarPreferenceConstants.java 2013-09-26 12:16:59 +0000 |
| 4154 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarPreferenceConstants.java 2013-10-31 17:23:32 +0000 |
| 4155 | @@ -1,3 +1,12 @@ |
| 4156 | +/******************************************************************************* |
| 4157 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 4158 | +* |
| 4159 | +* All rights reserved. This program and the accompanying materials |
| 4160 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4161 | +* which accompanies this distribution, and is available at |
| 4162 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4163 | +* |
| 4164 | +*******************************************************************************/ |
| 4165 | package org.vcs.bazaar.eclipse.ui.preferences; |
| 4166 | |
| 4167 | |
| 4168 | |
| 4169 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarPreferencePage.java' |
| 4170 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarPreferencePage.java 2013-09-07 18:25:50 +0000 |
| 4171 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/BazaarPreferencePage.java 2013-10-31 17:23:32 +0000 |
| 4172 | @@ -1,3 +1,12 @@ |
| 4173 | +/******************************************************************************* |
| 4174 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 4175 | +* |
| 4176 | +* All rights reserved. This program and the accompanying materials |
| 4177 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4178 | +* which accompanies this distribution, and is available at |
| 4179 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4180 | +* |
| 4181 | +*******************************************************************************/ |
| 4182 | package org.vcs.bazaar.eclipse.ui.preferences; |
| 4183 | |
| 4184 | import org.eclipse.core.runtime.preferences.InstanceScope; |
| 4185 | |
| 4186 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/PreferenceInitializer.java' |
| 4187 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/PreferenceInitializer.java 2013-09-11 21:26:43 +0000 |
| 4188 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/preferences/PreferenceInitializer.java 2013-10-31 17:23:32 +0000 |
| 4189 | @@ -1,3 +1,12 @@ |
| 4190 | +/******************************************************************************* |
| 4191 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 4192 | +* |
| 4193 | +* All rights reserved. This program and the accompanying materials |
| 4194 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4195 | +* which accompanies this distribution, and is available at |
| 4196 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4197 | +* |
| 4198 | +*******************************************************************************/ |
| 4199 | package org.vcs.bazaar.eclipse.ui.preferences; |
| 4200 | |
| 4201 | import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer; |
| 4202 | |
| 4203 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/properties/BazaarPropertyPage.java' |
| 4204 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/properties/BazaarPropertyPage.java 2013-09-03 09:05:27 +0000 |
| 4205 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/properties/BazaarPropertyPage.java 2013-10-31 17:23:32 +0000 |
| 4206 | @@ -1,6 +1,12 @@ |
| 4207 | -/** |
| 4208 | - * LICENSE + COPYRIGHT |
| 4209 | - */ |
| 4210 | +/******************************************************************************* |
| 4211 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 4212 | + * |
| 4213 | + * All rights reserved. This program and the accompanying materials |
| 4214 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 4215 | + * which accompanies this distribution, and is available at |
| 4216 | + * http://www.eclipse.org/legal/epl-v10.html |
| 4217 | + * |
| 4218 | + *******************************************************************************/ |
| 4219 | package org.vcs.bazaar.eclipse.ui.properties; |
| 4220 | |
| 4221 | import org.eclipse.core.resources.IResource; |
| 4222 | |
| 4223 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/repository/BazaarAdapterFactory.java' |
| 4224 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/repository/BazaarAdapterFactory.java 2013-09-08 17:22:22 +0000 |
| 4225 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/repository/BazaarAdapterFactory.java 2013-10-31 17:23:32 +0000 |
| 4226 | @@ -1,6 +1,12 @@ |
| 4227 | -/** |
| 4228 | - * COPYRIGHT + LICENSE |
| 4229 | - */ |
| 4230 | +/******************************************************************************* |
| 4231 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 4232 | + * |
| 4233 | + * All rights reserved. This program and the accompanying materials |
| 4234 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 4235 | + * which accompanies this distribution, and is available at |
| 4236 | + * http://www.eclipse.org/legal/epl-v10.html |
| 4237 | + * |
| 4238 | + *******************************************************************************/ |
| 4239 | package org.vcs.bazaar.eclipse.ui.repository; |
| 4240 | |
| 4241 | import org.eclipse.core.runtime.IAdapterFactory; |
| 4242 | |
| 4243 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/team/BzrQuickDiffReferenceProvider.java' |
| 4244 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/team/BzrQuickDiffReferenceProvider.java 2013-05-31 10:55:02 +0000 |
| 4245 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/team/BzrQuickDiffReferenceProvider.java 2013-10-31 17:23:32 +0000 |
| 4246 | @@ -1,6 +1,12 @@ |
| 4247 | -/** |
| 4248 | - * LICENSE + COPYRIGHT |
| 4249 | - */ |
| 4250 | +/******************************************************************************* |
| 4251 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 4252 | + * |
| 4253 | + * All rights reserved. This program and the accompanying materials |
| 4254 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 4255 | + * which accompanies this distribution, and is available at |
| 4256 | + * http://www.eclipse.org/legal/epl-v10.html |
| 4257 | + * |
| 4258 | + *******************************************************************************/ |
| 4259 | package org.vcs.bazaar.eclipse.ui.team; |
| 4260 | |
| 4261 | import java.io.BufferedReader; |
| 4262 | |
| 4263 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/team/RefreshExecutionListener.java' |
| 4264 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/team/RefreshExecutionListener.java 2013-07-17 17:21:42 +0000 |
| 4265 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/team/RefreshExecutionListener.java 2013-10-31 17:23:32 +0000 |
| 4266 | @@ -1,6 +1,12 @@ |
| 4267 | -/** |
| 4268 | - * |
| 4269 | - */ |
| 4270 | +/******************************************************************************* |
| 4271 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 4272 | +* |
| 4273 | +* All rights reserved. This program and the accompanying materials |
| 4274 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4275 | +* which accompanies this distribution, and is available at |
| 4276 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4277 | +* |
| 4278 | +*******************************************************************************/ |
| 4279 | package org.vcs.bazaar.eclipse.ui.team; |
| 4280 | |
| 4281 | import java.util.HashSet; |
| 4282 | @@ -75,4 +81,4 @@ |
| 4283 | } |
| 4284 | } |
| 4285 | } |
| 4286 | -} |
| 4287 | \ No newline at end of file |
| 4288 | +} |
| 4289 | |
| 4290 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/views/BazaarView.java' |
| 4291 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/views/BazaarView.java 2007-12-24 23:18:20 +0000 |
| 4292 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/views/BazaarView.java 2013-10-31 17:23:32 +0000 |
| 4293 | @@ -1,3 +1,12 @@ |
| 4294 | +/******************************************************************************* |
| 4295 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 4296 | +* |
| 4297 | +* All rights reserved. This program and the accompanying materials |
| 4298 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4299 | +* which accompanies this distribution, and is available at |
| 4300 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4301 | +* |
| 4302 | +*******************************************************************************/ |
| 4303 | package org.vcs.bazaar.eclipse.ui.views; |
| 4304 | |
| 4305 | import org.eclipse.core.runtime.IConfigurationElement; |
| 4306 | |
| 4307 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/views/MissingView.java' |
| 4308 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/views/MissingView.java 2013-09-05 12:15:52 +0000 |
| 4309 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/views/MissingView.java 2013-10-31 17:23:32 +0000 |
| 4310 | @@ -1,6 +1,12 @@ |
| 4311 | -/** |
| 4312 | - * LICENSE + COPYRIGHT |
| 4313 | - */ |
| 4314 | +/******************************************************************************* |
| 4315 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 4316 | + * |
| 4317 | + * All rights reserved. This program and the accompanying materials |
| 4318 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 4319 | + * which accompanies this distribution, and is available at |
| 4320 | + * http://www.eclipse.org/legal/epl-v10.html |
| 4321 | + * |
| 4322 | + *******************************************************************************/ |
| 4323 | package org.vcs.bazaar.eclipse.ui.views; |
| 4324 | |
| 4325 | import org.eclipse.jface.viewers.TreeViewer; |
| 4326 | |
| 4327 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/widgets/BzrResourceHeaderSelectionListener.java' |
| 4328 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/widgets/BzrResourceHeaderSelectionListener.java 2013-02-01 14:04:42 +0000 |
| 4329 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/widgets/BzrResourceHeaderSelectionListener.java 2013-10-31 17:23:32 +0000 |
| 4330 | @@ -1,3 +1,12 @@ |
| 4331 | +/******************************************************************************* |
| 4332 | +* Copyright (c) 2013 Piotr Piastucki |
| 4333 | +* |
| 4334 | +* All rights reserved. This program and the accompanying materials |
| 4335 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4336 | +* which accompanies this distribution, and is available at |
| 4337 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4338 | +* |
| 4339 | +*******************************************************************************/ |
| 4340 | package org.vcs.bazaar.eclipse.ui.widgets; |
| 4341 | |
| 4342 | import org.eclipse.jface.viewers.TableViewer; |
| 4343 | |
| 4344 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/widgets/BzrResourceSelectionComposite.java' |
| 4345 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/widgets/BzrResourceSelectionComposite.java 2013-09-14 15:08:32 +0000 |
| 4346 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/widgets/BzrResourceSelectionComposite.java 2013-10-31 17:23:32 +0000 |
| 4347 | @@ -1,6 +1,12 @@ |
| 4348 | -/** |
| 4349 | - * |
| 4350 | - */ |
| 4351 | +/******************************************************************************* |
| 4352 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 4353 | +* |
| 4354 | +* All rights reserved. This program and the accompanying materials |
| 4355 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4356 | +* which accompanies this distribution, and is available at |
| 4357 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4358 | +* |
| 4359 | +*******************************************************************************/ |
| 4360 | package org.vcs.bazaar.eclipse.ui.widgets; |
| 4361 | |
| 4362 | import java.util.Collections; |
| 4363 | |
| 4364 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/widgets/RevisionNumber.java' |
| 4365 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/widgets/RevisionNumber.java 2013-04-08 22:34:55 +0000 |
| 4366 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/widgets/RevisionNumber.java 2013-10-31 17:23:32 +0000 |
| 4367 | @@ -1,6 +1,12 @@ |
| 4368 | -/** |
| 4369 | - * |
| 4370 | - */ |
| 4371 | +/******************************************************************************* |
| 4372 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 4373 | +* |
| 4374 | +* All rights reserved. This program and the accompanying materials |
| 4375 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4376 | +* which accompanies this distribution, and is available at |
| 4377 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4378 | +* |
| 4379 | +*******************************************************************************/ |
| 4380 | package org.vcs.bazaar.eclipse.ui.widgets; |
| 4381 | |
| 4382 | import org.eclipse.swt.SWT; |
| 4383 | |
| 4384 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/BzrWizardPage.java' |
| 4385 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/BzrWizardPage.java 2013-09-11 21:26:43 +0000 |
| 4386 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/BzrWizardPage.java 2013-10-31 17:23:32 +0000 |
| 4387 | @@ -1,6 +1,12 @@ |
| 4388 | -/** |
| 4389 | - * LICENSE + COPYRIGHT |
| 4390 | - */ |
| 4391 | +/******************************************************************************* |
| 4392 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 4393 | + * |
| 4394 | + * All rights reserved. This program and the accompanying materials |
| 4395 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 4396 | + * which accompanies this distribution, and is available at |
| 4397 | + * http://www.eclipse.org/legal/epl-v10.html |
| 4398 | + * |
| 4399 | + *******************************************************************************/ |
| 4400 | package org.vcs.bazaar.eclipse.ui.wizards; |
| 4401 | |
| 4402 | import org.eclipse.jface.resource.ImageDescriptor; |
| 4403 | |
| 4404 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/configuration/BazaarConfigurationWizard.java' |
| 4405 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/configuration/BazaarConfigurationWizard.java 2013-07-17 17:21:42 +0000 |
| 4406 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/configuration/BazaarConfigurationWizard.java 2013-10-31 17:23:32 +0000 |
| 4407 | @@ -1,6 +1,12 @@ |
| 4408 | -/** |
| 4409 | - * |
| 4410 | - */ |
| 4411 | +/******************************************************************************* |
| 4412 | +* Copyright (c) 2007-2011 Guillermo Gonzalez |
| 4413 | +* |
| 4414 | +* All rights reserved. This program and the accompanying materials |
| 4415 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4416 | +* which accompanies this distribution, and is available at |
| 4417 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4418 | +* |
| 4419 | +*******************************************************************************/ |
| 4420 | package org.vcs.bazaar.eclipse.ui.wizards.configuration; |
| 4421 | |
| 4422 | import org.eclipse.core.resources.IProject; |
| 4423 | |
| 4424 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/configuration/BranchRootPage.java' |
| 4425 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/configuration/BranchRootPage.java 2013-09-11 21:26:43 +0000 |
| 4426 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/configuration/BranchRootPage.java 2013-10-31 17:23:32 +0000 |
| 4427 | @@ -1,6 +1,12 @@ |
| 4428 | -/** |
| 4429 | - * LICENSE + COPYRIGHT |
| 4430 | - */ |
| 4431 | +/******************************************************************************* |
| 4432 | + * Copyright (c) 2007-2013 Guillermo Gonzalez |
| 4433 | + * |
| 4434 | + * All rights reserved. This program and the accompanying materials |
| 4435 | + * are made available under the terms of the Eclipse Public License v1.0 |
| 4436 | + * which accompanies this distribution, and is available at |
| 4437 | + * http://www.eclipse.org/legal/epl-v10.html |
| 4438 | + * |
| 4439 | + *******************************************************************************/ |
| 4440 | package org.vcs.bazaar.eclipse.ui.wizards.configuration; |
| 4441 | |
| 4442 | import org.eclipse.core.resources.IProject; |
| 4443 | @@ -124,4 +130,4 @@ |
| 4444 | public void setDefaultPath() { |
| 4445 | bzrPath = bzrPathOriginal; |
| 4446 | } |
| 4447 | -} |
| 4448 | \ No newline at end of file |
| 4449 | +} |
| 4450 | |
| 4451 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/synchronize/BazaarSynchronizeWizard.java' |
| 4452 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/synchronize/BazaarSynchronizeWizard.java 2013-04-15 10:16:38 +0000 |
| 4453 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/synchronize/BazaarSynchronizeWizard.java 2013-10-31 17:23:32 +0000 |
| 4454 | @@ -1,3 +1,12 @@ |
| 4455 | +/******************************************************************************* |
| 4456 | +* Copyright (c) 2013 Piotr Piastucki |
| 4457 | +* |
| 4458 | +* All rights reserved. This program and the accompanying materials |
| 4459 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4460 | +* which accompanies this distribution, and is available at |
| 4461 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4462 | +* |
| 4463 | +*******************************************************************************/ |
| 4464 | package org.vcs.bazaar.eclipse.ui.wizards.synchronize; |
| 4465 | |
| 4466 | import org.eclipse.jface.wizard.Wizard; |
| 4467 | |
| 4468 | === modified file 'org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/synchronize/BazaarSynchronizeWizardPage.java' |
| 4469 | --- org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/synchronize/BazaarSynchronizeWizardPage.java 2013-09-11 21:26:43 +0000 |
| 4470 | +++ org.vcs.bazaar.eclipse.ui/src/org/vcs/bazaar/eclipse/ui/wizards/synchronize/BazaarSynchronizeWizardPage.java 2013-10-31 17:23:32 +0000 |
| 4471 | @@ -1,3 +1,12 @@ |
| 4472 | +/******************************************************************************* |
| 4473 | +* Copyright (c) 2013 Piotr Piastucki |
| 4474 | +* |
| 4475 | +* All rights reserved. This program and the accompanying materials |
| 4476 | +* are made available under the terms of the Eclipse Public License v1.0 |
| 4477 | +* which accompanies this distribution, and is available at |
| 4478 | +* http://www.eclipse.org/legal/epl-v10.html |
| 4479 | +* |
| 4480 | +*******************************************************************************/ |
| 4481 | package org.vcs.bazaar.eclipse.ui.wizards.synchronize; |
| 4482 | |
| 4483 | import org.eclipse.swt.SWT; |
