summaryrefslogtreecommitdiff
path: root/src/plugins/cvs
Commit message (Collapse)AuthorAgeFilesLines
* Corrected a bunch of capitalizations in label textsThorbjørn Lindeijer2010-04-151-3/+7
|
* Create a single parent options page for the Version Control categoryThorbjørn Lindeijer2010-04-122-20/+3
| | | | | | Cleans up some duplication for each page. Reviewed-by: Friedemann Kleint
* Renamed VCSBaseSettingsPage to CommonSettingsPageThorbjørn Lindeijer2010-04-122-5/+6
| | | | | | | To free up the name for an upcoming VCSBaseOptionsPage class that forms the base for all version control option pages. Reviewed-by: Friedemann Kleint
* Version bumpcon2010-03-311-5/+5
|
* Replace QWizard with Utils::WizardJarek Kobus2010-03-311-0/+1
|
* Added icons to options dialog categoriesThorbjørn Lindeijer2010-03-262-0/+6
| | | | Some categories do not have icons yet, unfortunately.
* VCS: Add 'Annotate' context menu entry to build issues task window.Friedemann Kleint2010-03-194-3/+13
|
* Header cleaning spree in Core/Debugger and Symbian/Maemo-code of Qt4.Friedemann Kleint2010-03-181-0/+2
|
* Plugin manager for enabling/disabling pluginsLasse Holmstedt2010-03-121-0/+1
| | | | | | Go to About Plugins and enable/disable plugins from there. Reviewed-by: mae
* Long live the king!hjk2010-03-0522-22/+22
|
* Version bump.con2010-03-011-5/+5
|
* Fix FileManager to correctly handle multiple IFile's for the same filedt2010-02-171-1/+0
| | | | | | | And port the Qt4ProjectManager to use that API for synchronization between editors and the .pro file tree. Reviewed-By: con
* Add command locator.Friedemann Kleint2010-02-122-3/+32
| | | | | | | | | Make it possible to trigger actions from the locator bar by registering an instance of Locator::CommandLocator by prefix. Currently used for VCS systems. Acked-by: con Initial-patch-by: Roberto Raggi <roberto.raggi@nokia.com>
* Merge remote branch 'origin/1.3'Oswald Buddenhagen2010-01-291-1/+1
|\ | | | | | | Trailing whitespace removal re-applied manually.
| * Version bump.con2010-01-071-5/+5
| |
* | VCS[git]: Add support for stashes.Friedemann Kleint2010-01-152-0/+25
| | | | | | | | | | | | | | | | | | | | | | Add non-modal stash management dialog and additional menu option "Stash snapshot..." to stash away changes prompting for a description, which will immediately replay the stash (take snapshot and continue working). Add interface to IVersionControl for creating/restoring/deleting snapshots for backup/complex undo operations (currently supported by git only). Add test options to VCSBasePlugin. Clean up and extend git client accordingly.
* | VCS[hg, git]: Add support for repository creation.Friedemann Kleint2010-01-123-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | Add repository creation operation to IVersionControl, implement for hg and git, add convenience slot with prompts to VCSBasePlugin. Add respective menu options and make menus are visible in case no VCS is active. Change project wizards extension page to list VCS that are capable of repository creation in a QComboBox in case the directory is not managed by another VCS (in which case it lists that one for operation 'add'). On that occasion, polish the Project selection to use a QComboBox as well and add some smartness to find the most suitable project to add via path matching.
* | VCS[p4,cvs,svn]: Reorder menu options.Friedemann Kleint2010-01-112-48/+72
| | | | | | | | Add "revert all" to cvs,svn.
* | Fixes: Diff editors don't get correct name.con2010-01-111-1/+0
| | | | | | | | | | They were no longer showing e.g. the file name of the diffed file. Also separate editor id and editor context a bit.
* | VCS[vcs,p4,svn,hg]: Use VCManager for delete operations.Friedemann Kleint2010-01-112-12/+3
| | | | | | | | | | | | ...and its dialog prompt consistently. Rename method and introduce overload taking IVersionControl. Add convenience slot to VCSBasePlugin.
* | Add display name to VCS plugin structsTobias Hunger2010-01-082-8/+14
| | | | | | | | Reviewed-by: Friedemann Kleint
* | Make method naming more consistent.Tobias Hunger2010-01-077-11/+11
| | | | | | | | | | | | | | | | | | | | | | | | * Use id() for methods returning a string used to represent some type of object. * Use displayName() for strings that are meant to be user visible. * Quieten some warnings while touching the files anyway. * Move Factories to their products in the plugins where that was not done before. Reviewed-by: dt
* | VCS[Perforce/SVN/CVS]: Add "Annotate" to single file logs.Friedemann Kleint2010-01-074-9/+52
| | | | | | | | | | | | ...over change numbers. Add missing "Log project/repository" actions and log count limits. Task-number: QTCREATORBUG-503
* | VCS[SVN, CVS, Perforce]: Implement "Annotate Previous" context menu.Friedemann Kleint2010-01-066-21/+52
| | | | | | | | | | | | | | | | in annotation editor, including base infrastructure in VCSBaseEditor. Pass signals of VCSBaseEditor to opaque VCSBaseEditable (IEditor) for convenience. Task-number: QTCREATORBUG-503
* | VCS: Correct timeout values.Friedemann Kleint2010-01-051-2/+2
| |
* | VCS: Introduce configureable timeout to vcs,svn, p4.Friedemann Kleint2009-12-145-25/+61
| | | | | | | | | | | | as already present for git, mercurial. Task-number: QTCREATORBUG-475
* | VCS Submit: Run check script in repository, do not front-trim message.Friedemann Kleint2009-12-141-0/+1
| | | | | | | | | | | | | | Make checkscript a bit more verbose. Task-number: QTCREATORBUG-451 Task-number: QTCREATORBUG-422
* | CVS: Use new VCSBasePlugin-class.Friedemann Kleint2009-12-095-329/+192
| | | | | | | | | | Make the diff-base directory a property of VCSBaseEditor and use everywhere.
* | VCS: Introduce Base class for VCS plugins, use in git.Friedemann Kleint2009-12-084-76/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: - Cannot diff a file that does not belong to a project - Cannot commit when a temporary diff/log view is open due to the current file pointing to a temporary directory - git's project-related actions not passing the correct relative path. Implementation: - Centralize code to listen for Qt Creator's relevant state changes in VCSBasePlugin, dispatching the changes to the instances affected. (avoiding multiple invocations of searches/QFileInfo on current). - Do the same for the corelistener catching closing SubmitEditors. - Introduce VCSBasePluginState representing the relevant state (current file/project). - Call git with working directory set and relative arguments - Remove setEnabled/isEnabled() logic of IVersionControl - Pass toplevel from VCSManager to avoid duplicate searches.
* | Options: Sort by category, id.Friedemann Kleint2009-11-271-2/+2
| | | | | | | | | | Separate category and trCategory and introduce sorting characters to the categories. Same for id/name.
* | Wizards: SortFriedemann Kleint2009-11-271-0/+2
| | | | | | | | | | | | Introduce new QString id() const-API and sort wizards by [untranslated] category and id. Introduce respective constants. Rubber-stamped-by: con <qtc-committer@nokia.com>
* | Wizards: Improve list of files displayed.Friedemann Kleint2009-11-251-39/+4
| | | | | | | | | | | | Extract the common root directory and display in separate line. Use the routine from the cvs plugin for that, moving it to stringutils.h.
* | Polish the settings dialog.Friedemann Kleint2009-11-243-102/+91
| | | | | | | | | | | | | | | | | | Add a title label to the pages. Use QGroupBoxes throughout. Extend SavedAction to work with checkable QGroupBoxes. Polish UI files, use common layout for VCS plugins. Performance: Apply only visited settings pages. Add search keywords. Task-number: QTCREATOR-26
* | Improved line wrapping of plugin license texts.Alessandro Portale2009-11-201-9/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The paragraphs are now long lines that get wrapped by the text browser. Reviewed-by: TrustMe modified: src/plugins/bineditor/BinEditor.pluginspec modified: src/plugins/bookmarks/Bookmarks.pluginspec modified: src/plugins/cmakeprojectmanager/CMakeProjectManager.pluginspec modified: src/plugins/coreplugin/Core.pluginspec modified: src/plugins/cpaster/CodePaster.pluginspec modified: src/plugins/cppeditor/CppEditor.pluginspec modified: src/plugins/cpptools/CppTools.pluginspec modified: src/plugins/cvs/CVS.pluginspec modified: src/plugins/debugger/Debugger.pluginspec modified: src/plugins/designer/Designer.pluginspec modified: src/plugins/fakevim/FakeVim.pluginspec modified: src/plugins/find/Find.pluginspec modified: src/plugins/genericprojectmanager/GenericProjectManager.pluginspec modified: src/plugins/git/ScmGit.pluginspec modified: src/plugins/helloworld/HelloWorld.pluginspec modified: src/plugins/help/Help.pluginspec modified: src/plugins/locator/Locator.pluginspec modified: src/plugins/mercurial/Mercurial.pluginspec modified: src/plugins/perforce/Perforce.pluginspec modified: src/plugins/projectexplorer/ProjectExplorer.pluginspec modified: src/plugins/qmleditor/QmlEditor.pluginspec modified: src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec modified: src/plugins/qt4projectmanager/Qt4ProjectManager.pluginspec modified: src/plugins/qtscripteditor/QtScriptEditor.pluginspec modified: src/plugins/regexp/RegExp.pluginspec modified: src/plugins/resourceeditor/ResourceEditor.pluginspec modified: src/plugins/snippets/Snippets.pluginspec modified: src/plugins/subversion/Subversion.pluginspec modified: src/plugins/texteditor/TextEditor.pluginspec modified: src/plugins/vcsbase/VCSBase.pluginspec modified: src/plugins/welcome/Welcome.pluginspec
* | Indentation: Tabs -> whitespacesAlessandro Portale2009-11-201-1/+1
| | | | | | | | | | | | modified: src/plugins/cvs/CVS.pluginspec modified: src/plugins/git/ScmGit.pluginspec modified: src/plugins/perforce/Perforce.pluginspec
* | Merge commit 'origin/1.3'con2009-11-114-3/+23
|\ \ | |/ | | | | | | | | | | Conflicts: src/plugins/debugger/debuggermanager.h src/plugins/qmleditor/qmleditorplugin.cpp src/plugins/qt4projectmanager/qt4runconfiguration.cpp
| * Code model: Update on changes from the versioning system.Friedemann Kleint2009-11-114-3/+23
| | | | | | | | | | | | | | | | | | Add changed signals to IVersionControl and VCSManager and wire them to the update methods. Add a menu action for manually updating. Improved version of reverted 7aa24116935249a840e1350a6f8de73bc794fb09. Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
| * Revert "Code model: Update on changes from the versioning system."con2009-11-104-23/+3
| | | | | | | | | | | | | | | | This reverts commit 7aa24116935249a840e1350a6f8de73bc794fb09. It breaks the code model updates completely. So reverting this change until we have the right thing. Reviewed-by: Roberto Raggi
| * Code model: Update on changes from the versioning system.Friedemann Kleint2009-11-094-3/+23
| | | | | | | | | | | | | | | | | | | | | | Add state logic to CppCodeModelManagerInterface, making it aware whether an indexer is running, protect the update methods from another invocation while running. Add changed signals to IVersionControl and VCSManager and wire them to the update methods. Add a menu action for manually updating. Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com> Reviewed-by: con <qtc-committer@nokia.com>
* | Merge commit 'origin/1.3'con2009-10-302-13/+31
|\ \ | |/
| * CVS: Enable click on revision in filelogFriedemann Kleint2009-10-302-13/+31
| | | | | | | | | | | | Match regular expression depending on mode. Improve common VCS settings layout. Reviewed-by: Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
| * Version bump.con2009-10-291-5/+5
| |
| * Version bump.con2009-10-291-5/+5
| |
* | Merge commit 'origin/1.3'con2009-10-091-6/+0
|\ \ | |/
| * Enable multi key shortcuts on the Mac.con2009-10-091-6/+0
| | | | | | | | Since that was fixed in Qt.
* | Merge remote branch 'origin/1.3'Erik Verbruggen2009-10-065-28/+29
|\ \ | |/ | | | | | | | | Conflicts: src/libs/cplusplus/CheckUndefinedSymbols.cpp src/plugins/qmleditor/qmlcodecompletion.cpp
| * Rename namespace Core::Utils into UtilsFriedemann Kleint2009-10-055-28/+29
| | | | | | | | | | Also move Designer::Internal::FormWindowEditor -> Designer::FormWindowEditor.
* | Version bump.con2009-10-021-5/+5
|/
* Version bump.con2009-10-021-5/+5
|
* VCS: perforce, cvs, subversion: Goto current line in blame.Friedemann Kleint2009-10-011-0/+3
|