up to compat repo
diff --git a/eclipse.platform.ui.compat/pass3/branches.txt b/eclipse.platform.ui.compat/pass3/branches.txt
new file mode 100644
index 0000000..f63373d
--- /dev/null
+++ b/eclipse.platform.ui.compat/pass3/branches.txt
@@ -0,0 +1,3 @@
+  R4_1_maintenance
+* master
+  model_tweaking_round3
diff --git a/eclipse.platform.ui.compat/pass3/cvs2git.options b/eclipse.platform.ui.compat/pass3/cvs2git.options
new file mode 100644
index 0000000..7f2221e
--- /dev/null
+++ b/eclipse.platform.ui.compat/pass3/cvs2git.options
@@ -0,0 +1,692 @@
+# (Be in -*- mode: python; coding: utf-8 -*- mode.)
+#
+# ====================================================================
+# Copyright (c) 2006-2010 CollabNet.  All rights reserved.
+#
+# This software is licensed as described in the file COPYING, which
+# you should have received as part of this distribution.  The terms
+# are also available at http://subversion.tigris.org/license-1.html.
+# If newer versions of this license are posted there, you may use a
+# newer version instead, at your option.
+#
+# This software consists of voluntary contributions made by many
+# individuals.  For exact contribution history, see the revision
+# history and logs, available at http://cvs2svn.tigris.org/.
+# ====================================================================
+
+#                  #####################
+#                  ## PLEASE READ ME! ##
+#                  #####################
+#
+# This is a template for an options file that can be used to configure
+# cvs2svn to convert to git rather than to Subversion.  See
+# www/cvs2git.html and www/cvs2svn.html for general information, and
+# see the comments in this file for information about what options are
+# available and how they can be set.
+#
+# The program that is run to convert from CVS to git is called
+# cvs2git.  Run it with the --options option, passing it this file
+# like this:
+#
+#     cvs2git --options=cvs2git-example.options
+#
+# The output of cvs2git is a blob file and a dump file that can be
+# loaded into git using the "git fast-import" command.  Please read
+# www/cvs2git.html for more information.
+#
+# Many options do not have defaults, so it is easier to copy this file
+# and modify what you need rather than creating a new options file
+# from scratch.  This file is in Python syntax, but you don't need to
+# know Python to modify it.  But if you *do* know Python, then you
+# will be happy to know that you can use arbitary Python constructs to
+# do fancy configuration tricks.
+#
+# But please be aware of the following:
+#
+# * In many places, leading whitespace is significant in Python (it is
+#   used instead of curly braces to group statements together).
+#   Therefore, if you don't know what you are doing, it is best to
+#   leave the whitespace as it is.
+#
+# * In normal strings, Python treats a backslash ("\") as an escape
+#   character.  Therefore, if you want to specify a string that
+#   contains a backslash, you need either to escape the backslash with
+#   another backslash ("\\"), or use a "raw string", as in one if the
+#   following equivalent examples:
+#
+#       cvs_executable = 'c:\\windows\\system32\\cvs.exe'
+#       cvs_executable = r'c:\windows\system32\cvs.exe'
+#
+#   See http://docs.python.org/tutorial/introduction.html#strings for
+#   more information.
+#
+# Two identifiers will have been defined before this file is executed,
+# and can be used freely within this file:
+#
+#     ctx -- a Ctx object (see cvs2svn_lib/context.py), which holds
+#         many configuration options
+#
+#     run_options -- an instance of the GitRunOptions class (see
+#         cvs2svn_lib/git_run_options.py), which holds some variables
+#         governing how cvs2git is run
+
+
+# Import some modules that are used in setting the options:
+import os
+
+from cvs2svn_lib import config
+from cvs2svn_lib import changeset_database
+from cvs2svn_lib.common import CVSTextDecoder
+from cvs2svn_lib.log import logger
+from cvs2svn_lib.project import Project
+from cvs2svn_lib.git_revision_collector import GitRevisionCollector
+from cvs2svn_lib.external_blob_generator import ExternalBlobGenerator
+from cvs2svn_lib.git_output_option import GitRevisionMarkWriter
+from cvs2svn_lib.git_output_option import GitOutputOption
+from cvs2svn_lib.dvcs_common import KeywordHandlingPropertySetter
+from cvs2svn_lib.revision_manager import NullRevisionCollector
+from cvs2svn_lib.rcs_revision_manager import RCSRevisionReader
+from cvs2svn_lib.cvs_revision_manager import CVSRevisionReader
+from cvs2svn_lib.symbol_strategy import AllBranchRule
+from cvs2svn_lib.symbol_strategy import AllTagRule
+from cvs2svn_lib.symbol_strategy import BranchIfCommitsRule
+from cvs2svn_lib.symbol_strategy import ExcludeRegexpStrategyRule
+from cvs2svn_lib.symbol_strategy import ForceBranchRegexpStrategyRule
+from cvs2svn_lib.symbol_strategy import ForceTagRegexpStrategyRule
+from cvs2svn_lib.symbol_strategy import ExcludeTrivialImportBranchRule
+from cvs2svn_lib.symbol_strategy import ExcludeVendorBranchRule
+from cvs2svn_lib.symbol_strategy import HeuristicStrategyRule
+from cvs2svn_lib.symbol_strategy import UnambiguousUsageRule
+from cvs2svn_lib.symbol_strategy import HeuristicPreferredParentRule
+from cvs2svn_lib.symbol_strategy import SymbolHintsFileRule
+from cvs2svn_lib.symbol_transform import ReplaceSubstringsSymbolTransform
+from cvs2svn_lib.symbol_transform import RegexpSymbolTransform
+from cvs2svn_lib.symbol_transform import IgnoreSymbolTransform
+from cvs2svn_lib.symbol_transform import NormalizePathsSymbolTransform
+from cvs2svn_lib.property_setters import AutoPropsPropertySetter
+from cvs2svn_lib.property_setters import ConditionalPropertySetter
+from cvs2svn_lib.property_setters import cvs_file_is_binary
+from cvs2svn_lib.property_setters import CVSBinaryFileDefaultMimeTypeSetter
+from cvs2svn_lib.property_setters import CVSBinaryFileEOLStyleSetter
+from cvs2svn_lib.property_setters import DefaultEOLStyleSetter
+from cvs2svn_lib.property_setters import EOLStyleFromMimeTypeSetter
+from cvs2svn_lib.property_setters import ExecutablePropertySetter
+from cvs2svn_lib.property_setters import KeywordsPropertySetter
+from cvs2svn_lib.property_setters import MimeMapper
+from cvs2svn_lib.property_setters import SVNBinaryFileKeywordsPropertySetter
+
+# To choose the level of logging output, uncomment one of the
+# following lines:
+#logger.log_level = logger.WARN
+#logger.log_level = logger.QUIET
+logger.log_level = logger.NORMAL
+#logger.log_level = logger.VERBOSE
+#logger.log_level = logger.DEBUG
+
+
+# The directory to use for temporary files:
+ctx.tmpdir = r'cvs2svn-tmp'
+
+# During FilterSymbolsPass, cvs2git records the contents of file
+# revisions into a "blob" file in git-fast-import format.  The
+# ctx.revision_collector option configures that process.  Choose one of the two ersions and customize its options.
+
+# This first alternative is much slower but is better tested and has a
+# chance of working with CVSNT repositories.  It invokes CVS or RCS to
+# reconstuct the contents of CVS file revisions:
+#ctx.revision_collector = GitRevisionCollector(
+    # The file in which to write the git-fast-import stream that
+    # contains the file revision contents:
+#    'cvs2svn-tmp/git-blob.dat',
+
+    # The following option specifies how the revision contents of the
+    # RCS files should be read.
+    #
+    # RCSRevisionReader uses RCS's "co" program to extract the
+    # revision contents of the RCS files during CollectRevsPass.  The
+    # constructor argument specifies how to invoke the "co"
+    # executable.
+    #
+    # CVSRevisionReader uses the "cvs" program to extract the revision
+    # contents out of the RCS files during OutputPass.  This option is
+    # considerably slower than RCSRevisionReader because "cvs" is
+    # considerably slower than "co".  However, it works in some
+    # situations where RCSRevisionReader fails; see the HTML
+    # documentation of the "--use-cvs" option for details.  The
+    # constructor argument specifies how to invoke the "co"
+    # executable.
+    #
+    # Uncomment one of the two following lines:
+    #RCSRevisionReader(co_executable=r'co'),
+#    CVSRevisionReader(cvs_executable=r'cvs'),
+#    )
+# This second alternative is vastly faster than the version above.  It
+# uses an external Python program to reconstruct the contents of CVS
+# file revisions:
+ctx.revision_collector = ExternalBlobGenerator('cvs2svn-tmp/git-blob.dat')
+
+# cvs2git doesn't need a revision reader because OutputPass only
+# refers to blobs that were output during CollectRevsPass, so leave
+# this option set to None.
+ctx.revision_reader = None
+
+# Change the following line to True if the conversion should only
+# include the trunk of the repository (i.e., all branches and tags
+# should be omitted from the conversion):
+ctx.trunk_only = False
+
+# How to convert CVS author names, log messages, and filenames to
+# Unicode.  The first argument to CVSTextDecoder is a list of encoders
+# that are tried in order in 'strict' mode until one of them succeeds.
+# If none of those succeeds, then fallback_encoder (if it is
+# specified) is used in lossy 'replace' mode.  Setting a fallback
+# encoder ensures that the encoder always succeeds, but it can cause
+# information loss.
+ctx.cvs_author_decoder = CVSTextDecoder(
+    [
+        'utf8',
+        'latin1',
+        'ascii',
+        ],
+    #fallback_encoding='ascii'
+    )
+ctx.cvs_log_decoder = CVSTextDecoder(
+    [
+        'utf8',
+        'latin1',
+        'ascii',
+        ],
+    #fallback_encoding='ascii',
+    eol_fix='\n',
+    )
+# You might want to be especially strict when converting filenames to
+# Unicode (e.g., maybe not specify a fallback_encoding).
+ctx.cvs_filename_decoder = CVSTextDecoder(
+    [
+        #'utf8',
+        #'latin1',
+        'ascii',
+        ],
+    #fallback_encoding='ascii'
+    )
+
+# Template for the commit message to be used for initial project
+# commits.
+ctx.initial_project_commit_message = (
+    'Standard project directories initialized by cvs2svn.'
+    )
+
+# Template for the commit message to be used for post commits, in
+# which modifications to a vendor branch are copied back to trunk.
+# This message can use '%(revnum)d' to include the SVN revision number
+# of the revision that included the change to the vendor branch
+# (admittedly rather pointless in a cvs2git conversion).
+ctx.post_commit_message = (
+    'This commit was generated by cvs2svn to track changes on a CVS '
+    'vendor branch.'
+    )
+
+# Template for the commit message to be used for commits in which
+# symbols are created.  This message can use '%(symbol_type)s' to
+# include the type of the symbol ('branch' or 'tag') or
+# '%(symbol_name)s' to include the name of the symbol.
+ctx.symbol_commit_message = (
+    "This commit was manufactured by cvs2svn to create %(symbol_type)s "
+    "'%(symbol_name)s'."
+    )
+
+# Template for the commit message to be used for commits in which
+# tags are pseudo-merged back to their source branch.  This message can
+# use '%(symbol_name)s' to include the name of the symbol.
+# (Not used by default unless you enable tie_tag_fixup_branches on
+# GitOutputOption.)
+ctx.tie_tag_ancestry_message = (
+    "This commit was manufactured by cvs2svn to tie ancestry for "
+    "tag '%(symbol_name)s' back to the source branch."
+    )
+
+# Some CVS clients for MacOS store resource fork data into CVS along
+# with the file contents itself by wrapping it all up in a container
+# format called "AppleSingle".  Subversion currently does not support
+# MacOS resource forks.  Nevertheless, sometimes the resource fork
+# information is not necessary and can be discarded.  Set the
+# following option to True if you would like cvs2svn to identify files
+# whose contents are encoded in AppleSingle format, and discard all
+# but the data fork for such files before committing them to
+# Subversion.  (Please note that AppleSingle contents are identified
+# by the AppleSingle magic number as the first four bytes of the file.
+# This check is not failproof, so only set this option if you think
+# you need it.)
+ctx.decode_apple_single = False
+
+# This option can be set to the name of a filename to which are stored
+# statistics and conversion decisions about the CVS symbols.
+#ctx.symbol_info_filename = None
+ctx.symbol_info_filename = 'symbol-info.txt'
+
+# cvs2svn uses "symbol strategy rules" to help decide how to handle
+# CVS symbols.  The rules in a project's symbol_strategy_rules are
+# applied in order, and each rule is allowed to modify the symbol.
+# The result (after each of the rules has been applied) is used for
+# the conversion.
+#
+# 1. A CVS symbol might be used as a tag in one file and as a branch
+#    in another file.  cvs2svn has to decide whether to convert such a
+#    symbol as a tag or as a branch.  cvs2svn uses a series of
+#    heuristic rules to decide how to convert a symbol.  The user can
+#    override the default rules for specific symbols or symbols
+#    matching regular expressions.
+#
+# 2. cvs2svn is also capable of excluding symbols from the conversion
+#    (provided no other symbols depend on them.
+#
+# 3. CVS does not record unambiguously the line of development from
+#    which a symbol sprouted.  cvs2svn uses a heuristic to choose a
+#    symbol's "preferred parents".
+#
+# The standard branch/tag/exclude StrategyRules do not change a symbol
+# that has already been processed by an earlier rule, so in effect the
+# first matching rule is the one that is used.
+
+global_symbol_strategy_rules = [
+    # It is possible to specify manually exactly how symbols should be
+    # converted and what line of development should be used as the
+    # preferred parent.  To do so, create a file containing the symbol
+    # hints and enable the following option.
+    #
+    # The format of the hints file is described in the documentation
+    # for the --symbol-hints command-line option.  The file output by
+    # the --write-symbol-info (i.e., ctx.symbol_info_filename) option
+    # is in the same format.  The simplest way to use this option is
+    # to run the conversion through CollateSymbolsPass with
+    # --write-symbol-info option, copy the symbol info and edit it to
+    # create a hints file, then re-start the conversion at
+    # CollateSymbolsPass with this option enabled.
+    #SymbolHintsFileRule('symbol-hints2.txt'),
+
+    # To force all symbols matching a regular expression to be
+    # converted as branches, add rules like the following:
+    #ForceBranchRegexpStrategyRule(r'branch.*'),
+
+    # To force all symbols matching a regular expression to be
+    # converted as tags, add rules like the following:
+    #ForceTagRegexpStrategyRule(r'tag.*'),
+
+    # To force all symbols matching a regular expression to be
+    # excluded from the conversion, add rules like the following:
+    #ExcludeRegexpStrategyRule(r'unknown-.*'),
+
+    # Sometimes people use "cvs import" to get their own source code
+    # into CVS.  This practice creates a vendor branch 1.1.1 and
+    # imports the code onto the vendor branch as 1.1.1.1, then copies
+    # the same content to the trunk as version 1.1.  Normally, such
+    # vendor branches are useless and they complicate the SVN history
+    # unnecessarily.  The following rule excludes any branches that
+    # only existed as a vendor branch with a single import (leaving
+    # only the 1.1 revision).  If you want to retain such branches,
+    # comment out the following line.  (Please note that this rule
+    # does not exclude vendor *tags*, as they are not so easy to
+    # identify.)
+    ExcludeTrivialImportBranchRule(),
+
+    # To exclude all vendor branches (branches that had "cvs import"s
+    # on them but no other kinds of commits), uncomment the following
+    # line:
+    #ExcludeVendorBranchRule(),
+
+    # Usually you want this rule, to convert unambiguous symbols
+    # (symbols that were only ever used as tags or only ever used as
+    # branches in CVS) the same way they were used in CVS:
+    UnambiguousUsageRule(),
+
+    # If there was ever a commit on a symbol, then it cannot be
+    # converted as a tag.  This rule causes all such symbols to be
+    # converted as branches.  If you would like to resolve such
+    # ambiguities manually, comment out the following line:
+    BranchIfCommitsRule(),
+
+    # Last in the list can be a catch-all rule that is used for
+    # symbols that were not matched by any of the more specific rules
+    # above.  (Assuming that BranchIfCommitsRule() was included above,
+    # then the symbols that are still indeterminate at this point can
+    # sensibly be converted as branches or tags.)  Include at most one
+    # of these lines.  If none of these catch-all rules are included,
+    # then the presence of any ambiguous symbols (that haven't been
+    # disambiguated above) is an error:
+
+    # Convert ambiguous symbols based on whether they were used more
+    # often as branches or as tags:
+    HeuristicStrategyRule(),
+    # Convert all ambiguous symbols as branches:
+    #AllBranchRule(),
+    # Convert all ambiguous symbols as tags:
+    #AllTagRule(),
+
+    # The last rule is here to choose the preferred parent of branches
+    # and tags, that is, the line of development from which the symbol
+    # sprouts.
+    HeuristicPreferredParentRule(),
+    ]
+
+# Specify a username to be used for commits for which CVS doesn't
+# record the original author (for example, the creation of a branch).
+# This should be a simple (unix-style) username, but it can be
+# translated into a git-style name by the author_transforms map.
+ctx.username = 'cvs2svn'
+
+# ctx.file_property_setters and ctx.revision_property_setters contain
+# rules used to set the svn properties on files in the converted
+# archive.  For each file, the rules are tried one by one.  Any rule
+# can add or suppress one or more svn properties.  Typically the rules
+# will not overwrite properties set by a previous rule (though they
+# are free to do so).  ctx.file_property_setters should be used for
+# properties that remain the same for the life of the file; these
+# should implement FilePropertySetter.  ctx.revision_property_setters
+# should be used for properties that are allowed to vary from revision
+# to revision; these should implement RevisionPropertySetter.
+#
+# Obviously, SVN properties per se are not interesting for a cvs2git
+# conversion, but some of these properties have side-effects that do
+# affect the git output.  FIXME: Document this in more detail.
+ctx.file_property_setters.extend([
+    # To read auto-props rules from a file, uncomment the following line
+    # and specify a filename.  The boolean argument specifies whether
+    # case should be ignored when matching filenames to the filename
+    # patterns found in the auto-props file:
+    #AutoPropsPropertySetter(
+    #    r'/home/username/.subversion/config',
+    #    ignore_case=True,
+    #    ),
+
+    # To read mime types from a file and use them to set svn:mime-type
+    # based on the filename extensions, uncomment the following line
+    # and specify a filename (see
+    # http://en.wikipedia.org/wiki/Mime.types for information about
+    # mime.types files):
+    #MimeMapper(r'/etc/mime.types', ignore_case=False),
+
+    # Omit the svn:eol-style property from any files that are listed
+    # as binary (i.e., mode '-kb') in CVS:
+    CVSBinaryFileEOLStyleSetter(),
+
+    # If the file is binary and its svn:mime-type property is not yet
+    # set, set svn:mime-type to 'application/octet-stream'.
+    CVSBinaryFileDefaultMimeTypeSetter(),
+
+    # To try to determine the eol-style from the mime type, uncomment
+    # the following line:
+    #EOLStyleFromMimeTypeSetter(),
+
+    # Choose one of the following lines to set the default
+    # svn:eol-style if none of the above rules applied.  The argument
+    # is the svn:eol-style that should be applied, or None if no
+    # svn:eol-style should be set (i.e., the file should be treated as
+    # binary).
+    #
+    # The default is to treat all files as binary unless one of the
+    # previous rules has determined otherwise, because this is the
+    # safest approach.  However, if you have been diligent about
+    # marking binary files with -kb in CVS and/or you have used the
+    # above rules to definitely mark binary files as binary, then you
+    # might prefer to use 'native' as the default, as it is usually
+    # the most convenient setting for text files.  Other possible
+    # options: 'CRLF', 'CR', 'LF'.
+    DefaultEOLStyleSetter(None),
+    #DefaultEOLStyleSetter('native'),
+
+    # Prevent svn:keywords from being set on files that have
+    # svn:eol-style unset.
+    SVNBinaryFileKeywordsPropertySetter(),
+
+    # If svn:keywords has not been set yet, set it based on the file's
+    # CVS mode:
+    KeywordsPropertySetter(config.SVN_KEYWORDS_VALUE),
+
+    # Set the svn:executable flag on any files that are marked in CVS as
+    # being executable:
+    ExecutablePropertySetter(),
+
+    # The following causes keywords to be untouched in binary files and
+    # collapsed in all text to be committed:
+    ConditionalPropertySetter(
+        cvs_file_is_binary, KeywordHandlingPropertySetter('untouched'),
+        ),
+    KeywordHandlingPropertySetter('collapsed'),
+
+    ])
+ctx.revision_property_setters.extend([
+    ])
+
+# To skip the cleanup of temporary files, uncomment the following
+# option:
+ctx.skip_cleanup = True
+
+
+# In CVS, it is perfectly possible to make a single commit that
+# affects more than one project or more than one branch of a single
+# project.  Subversion also allows such commits.  Therefore, by
+# default, when cvs2svn sees what looks like a cross-project or
+# cross-branch CVS commit, it converts it into a
+# cross-project/cross-branch Subversion commit.
+#
+# However, other tools and SCMs have trouble representing
+# cross-project or cross-branch commits.  (For example, Trac's Revtree
+# plugin, http://www.trac-hacks.org/wiki/RevtreePlugin is confused by
+# such commits.)  Therefore, we provide the following two options to
+# allow cross-project/cross-branch commits to be suppressed.
+
+# cvs2git only supports single-project conversions (multiple-project
+# conversions wouldn't really make sense for git anyway).  So this
+# option must be set to False:
+ctx.cross_project_commits = False
+
+# git itself doesn't allow commits that affect more than one branch,
+# so this option must be set to False:
+ctx.cross_branch_commits = False
+
+# cvs2git does not yet handle translating .cvsignore files into
+# .gitignore files, so by default, the .cvsignore files are included
+# in the conversion output.  If you would like to omit the .cvsignore
+# files from the output, set this option to False:
+ctx.keep_cvsignore = True
+
+# By default, it is a fatal error for a CVS ",v" file to appear both
+# inside and outside of an "Attic" subdirectory (this should never
+# happen, but frequently occurs due to botched repository
+# administration).  If you would like to retain both versions of such
+# files, change the following option to True, and the attic version of
+# the file will be written to a subdirectory called "Attic" in the
+# output repository:
+ctx.retain_conflicting_attic_files = False
+
+# CVS uses unix login names as author names whereas git requires
+# author names to be of the form "foo <bar>".  The default is to set
+# the git author to "cvsauthor <cvsauthor>".  author_transforms can be
+# used to map cvsauthor names (e.g., "jrandom") to a true name and
+# email address (e.g., "J. Random <jrandom@example.com>" for the
+# example shown).  All strings should be either Unicode strings (i.e.,
+# with "u" as a prefix) or 8-bit strings in the utf-8 encoding.  The
+# values can either be strings in the form "name <email>" or tuples
+# (name, email).  Please substitute your own project's usernames here
+# to use with the author_transforms option of GitOutputOption below.
+author_transforms={
+
+'aarcher' : ('Adam Archer', 'aarcher'),
+'ahunter' : ('Anthony Hunter', 'ahunter'),
+'airvine' : ('airvine', 'airvine'),
+'aniefer' : ('Andrew Niefer', 'aniefer'),
+'aweinand' : ('aweinand', 'aweinand'),
+'bbiggs' : ('bbiggs', 'bbiggs'),
+'bbokowski' : ('Boris Bokowski', 'bbokowski'),
+'bcabe' : ('Benjamin Cabe', 'bcabe'),
+'bdealwis' : ('Brian Dealwis', 'bdealwis'),
+'bmuskalla' : ('Benjamin Muskalla', 'bmuskalla'),
+'breynolds' : ('breynolds', 'breynolds'),
+'caniszczyk' : ('Chris Aniszczyk', 'caniszczyk'),
+'cdaniel' : ('Krzysztof Daniel', 'cdaniel'),
+'cgoldthor' : ('Chris Goldthorpe', 'cgoldthor'),
+'cknaus' : ('cknaus', 'cknaus'),
+'cmclaren' : ('cmclaren', 'cmclaren'),
+'curtispd' : ('Curtis D\'Entremont', 'curtispd'),
+'darins' : ('darins', 'darins'),
+'davids' : ('davids', 'davids'),
+'deboer' : ('Timothy Deboer', 'deboer'),
+'dejan' : ('dejan', 'dejan'),
+'dmegert' : ('Dani Megert', 'dmegert'),
+'dorme' : ('Dave Orme', 'dorme'),
+'dpollock' : ('dpollock', 'dpollock'),
+'droberts' : ('Dean Roberts', 'droberts'),
+'drubel' : ('Dan Rubel', 'drubel'),
+'dwilson' : ('dwilson', 'dwilson'),
+'ebb' : ('Ed Burnette', 'ebb'),
+'eduardo' : ('eduardo', 'eduardo'),
+'eidsness' : ('eidsness', 'eidsness'),
+'emoffatt' : ('Eric Moffatt', 'emoffatt'),
+'fuptoniv' : ('Francis Upton IV', 'fuptoniv'),
+'gheorghe' : ('Bogdan Gheorghe', 'gheorghe'),
+'gmendel' : ('gmendel', 'gmendel'),
+'gunnar' : ('Gunnar Wagenknecht', 'gunnar'),
+'hsoliwal' : ('Hitesh Soliwal', 'hsoliwal'),
+'ikhelifi' : ('ikhelifi', 'ikhelifi'),
+'jeem' : ('jeem', 'jeem'),
+'jlebrun' : ('jlebrun', 'jlebrun'),
+'jlemieux' : ('jlemieux', 'jlemieux'),
+'johna' : ('John Arthorne', 'johna'),
+'karice' : ('Karice McIntyre', 'karice'),
+'kevinh' : ('kevinh', 'kevinh'),
+'kevinm' : ('kevinm', 'kevinm'),
+'khorne' : ('khorne', 'khorne'),
+'kmaetzel' : ('kmaetzel', 'kmaetzel'),
+'kmoir' : ('Kim Moir', 'kmoir'),
+'kradloff' : ('kradloff', 'kradloff'),
+'ktoedter' : ('Kai Toedter', 'ktoedter'),
+'lkues' : ('lkues', 'lkues'),
+'lvogel' : ('Lars Vogel', 'lvogel'),
+'marcelop' : ('Marcelo Paternostro', 'marcelop'),
+'melder' : ('melder', 'melder'),
+'mhall' : ('Matthew Hall', 'mhall'),
+'mhatem' : ('mhatem', 'mhatem'),
+'mkeller' : ('Markus Keller', 'mkeller'),
+'mvalenta' : ('mvalenta', 'mvalenta'),
+'mvanmeek' : ('mvanmeek', 'mvanmeek'),
+'nick' : ('Nick Edgar', 'nick'),
+'obesedin' : ('Oleg Besedin', 'obesedin'),
+'omallo' : ('Ovidio Mallo', 'omallo'),
+'prangaraj' : ('Prakash Rangaraj', 'prangaraj'),
+'pwebster' : ('Paul Webster', 'pwebster'),
+'randyg' : ('randyg', 'randyg'),
+'rherrmann' : ('Rudiger Herrmann', 'rherrmann'),
+'rsternber' : ('Ralf Sternberg', 'rsternber'),
+'rsuen' : ('Remy Suen', 'rsuen'),
+'sarsenau' : ('sarsenau', 'sarsenau'),
+'sbeauchamp' : ('Serge Beauchamp', 'sbeauchamp'),
+'sbrandys' : ('Szymon Brandys', 'sbrandys'),
+'sdimitro' : ('Sonia Dimitrov', 'sdimitro'),
+'sfranklin' : ('Susan Franklin', 'sfranklin'),
+'sxenos' : ('sxenos', 'sxenos'),
+'tod' : ('Tod Creasey', 'tod'),
+'tschindl' : ('Thomas Schindl', 'tschindl'),
+'wchoi' : ('wchoi', 'wchoi'),
+'winchest' : ('winchest', 'winchest'),
+'wmelhem' : ('wmelhem', 'wmelhem'),
+'yvyang' : ('Yves YANG', 'yvyang'),
+#    'jrandom' : ('J. Random', 'jrandom@example.com'),
+#    'mhagger' : 'Michael Haggerty <mhagger@alum.mit.edu>',
+#    'brane' : (u'Branko Äibej', 'brane@xbc.nu'),
+#    'ringstrom' : 'Tobias Ringström <tobias@ringstrom.mine.nu>',
+#    'dionisos' : (u'Erik Hülsmann', 'e.huelsmann@gmx.net'),
+
+    # This one will be used for commits for which CVS doesn't record
+    # the original author, as explained above.
+    'cvs2svn' : 'cvs2svn <platform-releng-dev@eclipse.org>',
+    }
+
+# This is the main option that causes cvs2svn to output to a
+# "fastimport"-format dumpfile rather than to Subversion:
+ctx.output_option = GitOutputOption(
+    # The file in which to write the git-fast-import stream that
+    # contains the changesets and branch/tag information:
+    os.path.join(ctx.tmpdir, 'git-dump.dat'),
+
+    # The blobs will be written via the revision recorder, so in
+    # OutputPass we only have to emit references to the blob marks:
+    GitRevisionMarkWriter(),
+
+    # Optional map from CVS author names to git author names:
+    author_transforms=author_transforms,
+    )
+
+# Change this option to True to turn on profiling of cvs2svn (for
+# debugging purposes):
+run_options.profiling = False
+
+
+# Should CVSItem -> Changeset database files be memory mapped?  In
+# some tests, using memory mapping speeded up the overall conversion
+# by about 5%.  But this option can cause the conversion to fail with
+# an out of memory error if the conversion computer runs out of
+# virtual address space (e.g., when running a very large conversion on
+# a 32-bit operating system).  Therefore it is disabled by default.
+# Uncomment the following line to allow these database files to be
+# memory mapped.
+changeset_database.use_mmap_for_cvs_item_to_changeset_table = True
+
+# Now set the project to be converted to git.  cvs2git only supports
+# single-project conversions, so this method must only be called
+# once:
+run_options.set_project(
+    # The filesystem path to the part of the CVS repository (*not* a
+    # CVS working copy) that should be converted.  This may be a
+    # subdirectory (i.e., a module) within a larger CVS repository.
+    r'/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility',
+
+    # A list of symbol transformations that can be used to rename
+    # symbols in this project.
+    symbol_transforms=[
+        # Use IgnoreSymbolTransforms like the following to completely
+        # ignore symbols matching a regular expression when parsing
+        # the CVS repository, for example to avoid warnings about
+        # branches with two names and to choose the preferred name.
+        # It is *not* recommended to use this instead of
+        # ExcludeRegexpStrategyRule; though more efficient,
+        # IgnoreSymbolTransforms are less flexible and don't exclude
+        # branches correctly.  The argument is a Python-style regular
+        # expression that has to match the *whole* CVS symbol name:
+        #IgnoreSymbolTransform(r'nightly-build-tag-.*')
+
+        # RegexpSymbolTransforms transform symbols textually using a
+        # regular expression.  The first argument is a Python regular
+        # expression pattern and the second is a replacement pattern.
+        # The pattern is matched against each symbol name.  If it
+        # matches the whole symbol name, then the symbol name is
+        # replaced with the corresponding replacement text.  The
+        # replacement can include substitution patterns (e.g., r'\1'
+        # or r'\g<name>').  Typically you will want to use raw strings
+        # (strings with a preceding 'r', like shown in the examples)
+        # for the regexp and its replacement to avoid backslash
+        # substitution within those strings.
+        #RegexpSymbolTransform(r'release-(\d+)_(\d+)',
+        #                      r'release-\1.\2'),
+        #RegexpSymbolTransform(r'release-(\d+)_(\d+)_(\d+)',
+        #                      r'release-\1.\2.\3'),
+
+        # Simple 1:1 character replacements can also be done.  The
+        # following transform, which converts backslashes into forward
+        # slashes, should usually be included:
+        ReplaceSubstringsSymbolTransform('\\','/'),
+
+        # This last rule eliminates leading, trailing, and repeated
+        # slashes within the output symbol names:
+        NormalizePathsSymbolTransform(),
+        ],
+
+    # See the definition of global_symbol_strategy_rules above for a
+    # description of this option:
+    symbol_strategy_rules=global_symbol_strategy_rules,
+
+    # Exclude paths from the conversion. Should be relative to
+    # repository path and use forward slashes:
+    #exclude_paths=['file-to-exclude.txt,v', 'dir/to/exclude'],
+    )
+
+
diff --git a/eclipse.platform.ui.compat/pass3/cvs2git_log.txt b/eclipse.platform.ui.compat/pass3/cvs2git_log.txt
new file mode 100644
index 0000000..1ef4406
--- /dev/null
+++ b/eclipse.platform.ui.compat/pass3/cvs2git_log.txt
@@ -0,0 +1,2445 @@
+----- pass 1 (CollectRevsPass) -----
+Examining all CVS ',v' files...
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/.classpath,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/.cvsignore,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/.options,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/.project,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/LegacyIDE.e4xmi,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/about.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/build.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/plugin.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/plugin.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/.settings/.api_filters,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/.settings/org.eclipse.jdt.core.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/.settings/org.eclipse.jdt.ui.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/.settings/org.eclipse.pde.prefs,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/e4/ui/workbench/addons/perspectiveswitcher/PerspectiveSwitcher.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/e4/ui/workbench/addons/perspectiveswitcher/PerspectiveSwitcherCSSHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/AbstractSourceProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ActiveShellExpression.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/BasicWorkingSetElementAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ExtensionFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IActionBars.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IActionBars2.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IActionDelegate.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IActionDelegate2.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IActionDelegateWithEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IActionFilter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IAggregateWorkingSet.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IContainmentAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IDecoratorManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorActionBarContributor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorActionDelegate.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorInput.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorLauncher.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorMatchingStrategy.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IEditorSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IElementFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IExportWizard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IFileEditorMapping.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IFolderLayout.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IImportWizard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IInPlaceEditor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IInPlaceEditorInput.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IKeyBindingService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ILocalWorkingSetManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IMemento.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/INavigationHistory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/INavigationLocation.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/INavigationLocationProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/INestableKeyBindingService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/INewWizard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/INullSelectionListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IObjectActionDelegate.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPageLayout.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPageListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPageService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPartListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPartListener2.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPartService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPathEditorInput.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPersistable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPersistableEditor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPersistableElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveListener2.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveListener3.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveListener4.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPerspectiveRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPlaceholderFolderLayout.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPluginContribution.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IPropertyListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IReusableEditor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISaveableFilter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISaveablePart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISaveablePart2.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISaveablesLifecycleListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISaveablesSource.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISelectionListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISelectionService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISharedImages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IShowEditorInput.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISizeProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISourceProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISourceProviderListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/ISources.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IStartup.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IViewActionDelegate.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IViewLayout.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IViewPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IViewReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IViewSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWindowListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbench.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchActionConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchCommandConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPart2.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPart3.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPartConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPartDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPartReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPartSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPreferenceConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPropertyPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPropertyPageMulti.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchWindow.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchWindowActionDelegate.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchWindowPulldownDelegate.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchWindowPulldownDelegate2.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchWizard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkingSet.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkingSetElementAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkingSetManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkingSetUpdater.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/LegacyHandlerSubmissionExpression.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/MultiPartInitException.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/NavigationLocation.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/OpenAndLinkWithEditorHelper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/PartInitException.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/PerspectiveAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/PlatformUI.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/Saveable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/SaveablesLifecycleEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/SelectionEnabler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/SubActionBars.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/SubActionBars2.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/WorkbenchEncoding.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/WorkbenchException.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/XMLMemento.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/about/IInstallationPageContainer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/about/ISystemSummarySection.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/about/InstallationPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/about/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/ActionContext.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/ActionDelegate.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/ActionFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/ActionGroup.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/BaseNewWizardMenu.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/BaseSelectionListenerAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/CommandNotMappedException.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/CompoundContributionItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/ContributedAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/ContributionItemFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/ExportResourcesAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/ImportResourcesAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/LabelRetargetAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/NewWizardAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/NewWizardDropDownAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/OpenInNewWindowAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/OpenNewPageMenu.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/OpenNewWindowMenu.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/OpenPerspectiveAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/OpenPerspectiveMenu.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/PartEventAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/PerspectiveMenu.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/QuickMenuCreator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/RetargetAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/SelectionProviderAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/SimpleWildcardTester.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/WorkingSetFilterActionGroup.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/ActivitiesPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/ActivityCategoryPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/ActivityEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/ActivityManagerEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/CategoryEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/IActivity.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/IActivityListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/IActivityManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/IActivityManagerListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/IActivityPatternBinding.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/IActivityRequirementBinding.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/ICategory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/ICategoryActivityBinding.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/ICategoryListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/IIdentifier.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/IIdentifierListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/IMutableActivityManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/ITriggerPoint.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/ITriggerPointAdvisor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/ITriggerPointManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/IWorkbenchActivitySupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/IdentifierEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/NotDefinedException.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/WorkbenchActivityHelper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/WorkbenchTriggerPointAdvisor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/activities/Attic/AbstractActivityManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/application/ActionBarAdvisor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/application/DisplayAccess.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/application/IActionBarConfigurer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/application/IWorkbenchConfigurer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/application/IWorkbenchWindowConfigurer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/application/WorkbenchAdvisor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/application/WorkbenchWindowAdvisor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/application/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/branding/IBundleGroupConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/branding/IProductConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/branding/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/browser/AbstractWebBrowser.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/browser/AbstractWorkbenchBrowserSupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/browser/IWebBrowser.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/browser/IWorkbenchBrowserSupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/browser/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/AbstractHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/ActionHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/CategoryEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/CommandEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/CommandException.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/CommandManagerEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/ExecutionException.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/ExtensionParameterValues.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/HandlerEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/HandlerSubmission.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/ICategory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/ICategoryListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/ICommand.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/ICommandImageService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/ICommandListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/ICommandManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/ICommandManagerListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/ICommandService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/IElementReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/IElementUpdater.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/IHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/IHandlerListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/IKeyConfiguration.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/IKeyConfigurationListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/IKeySequenceBinding.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/IWorkbenchCommandSupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/KeyConfigurationEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/NotDefinedException.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/NotHandledException.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/Priority.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/commands/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/contexts/ContextEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/contexts/ContextException.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/contexts/ContextManagerEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/contexts/EnabledSubmission.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/contexts/IContext.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/contexts/IContextActivation.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/contexts/IContextListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/contexts/IContextManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/contexts/IContextManagerListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/contexts/IContextService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/contexts/IWorkbenchContextSupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/contexts/NotDefinedException.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/contexts/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/databinding/WorkbenchObservables.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/databinding/WorkbenchProperties.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/databinding/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/AbstractElementListSelectionDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/CheckedTreeSelectionDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/ContainerCheckedTreeViewer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/EditorSelectionDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/ElementListSelectionDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/ElementTreeSelectionDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FileEditorMappingContentProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FileEditorMappingLabelProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FileSystemElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FilteredItemsSelectionDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FilteredList.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/FilteredTree.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/IOverwriteQuery.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/ISelectionStatusValidator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/ISelectionValidator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/IWorkingSetEditWizard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/IWorkingSetNewWizard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/IWorkingSetPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/IWorkingSetSelectionDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/ListDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/ListSelectionDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/PatternFilter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/PreferenceLinkArea.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/PreferencesUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/PropertyDialogAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/PropertyPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/SearchPattern.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/SelectionDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/SelectionStatusDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/TwoArrayQuickSorter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/TwoPaneElementSelector.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/TypeFilteringDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/WorkingSetConfigurationBlock.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/WorkingSetGroup.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/YesNoCancelListSelectionDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dnd/IDragAndDropService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dnd/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/fieldassist/ContentAssistCommandAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/fieldassist/ContentAssistField.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/fieldassist/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/handlers/CollapseAllHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/handlers/ExpandAllHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/handlers/HandlerUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/handlers/IHandlerActivation.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/handlers/IHandlerService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/handlers/RadioState.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/handlers/RegistryRadioState.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/handlers/RegistryToggleState.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/handlers/ShowPerspectiveHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/handlers/ShowViewHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/handlers/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/help/AbstractHelpUI.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/help/DialogPageContextComputer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/help/IContextComputer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/help/IWorkbenchHelpSystem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/help/ViewContextComputer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/help/WorkbenchHelp.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/help/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/AbstractEnabledHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/AbstractEvaluationHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/AbstractPartSelectionTracker.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/AbstractSelectionService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/AbstractTableInformationControl.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/AbstractWorkingSet.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/AbstractWorkingSetManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ActionDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ActionExpression.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ActionSetActionBars.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ActionSetContributionItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ActionSetManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ActionSetMenuManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ActionSetSeparator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ActionSetsEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ActivateEditorHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ActiveEditorAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ActivityPersistanceHelper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/AggregateWorkingSet.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/AnimatedTabFeedback.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/AnimationEngine.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/AnimationFeedbackBase.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/BaseSaveAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/BasicPartList.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/BindingToModelProcessor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/BrandingProperties.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/BundleGroupProperties.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ChangeToPerspectiveMenu.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/CloseAllHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/CloseAllSavedAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/CloseEditorHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/CloseOthersHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/CommandToModelProcessor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/CompatibleWorkbenchPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ConfigurationInfo.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ContextToModelProcessor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/CoolBarToTrimManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/CycleBaseHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/CycleEditorHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/CyclePerspectiveHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/CycleViewHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/DefaultSaveable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/DefaultStackPresentationSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/DirtyPerspectiveMarker.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/DragCursors.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/DragHandle.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EarlyStartupRunnable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorActionBars.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorActionBuilder.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorHistory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorHistoryItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorMenuManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorPluginAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorSiteDragAndDropServiceImpl.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ErrorEditorPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ErrorViewPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ExceptionHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ExtensionEventHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ExtensionEventHandler.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ExtensionEventHandlerMessages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/FaderAnimationFeedback.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/HeapStatus.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IActionSetContributionItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IBackgroundSaveListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IChangeListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ICompatibleWorkbenchPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IHeapStatusConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IObjectActionContributor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IObjectContributor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IPreferenceConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IReorderListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ISelectionConversionService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ITrimAreaChangeListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IWorkbenchConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IWorkbenchGraphicConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IWorkbenchHelpContextIds.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IWorkbenchThemeConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ImageCycleFeedbackBase.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IntModel.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/InternalHandlerUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/InternalSaveable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IntroAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/JFaceUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/KeyBindingService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/LegacyAnimationFeedback.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/LegacyResourceSupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/LegacyTrim.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/LocalWorkingSetManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/MakeHandlersGo.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/MessageLine.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Model.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/NavigationHistory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/NavigationHistoryAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/NavigationHistoryEditorInfo.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/NavigationHistoryEntry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ObjectActionContributor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ObjectActionContributorManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ObjectActionContributorReader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ObjectContributorManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ObjectFilterTest.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ObjectPluginAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/OpenPerspectivePropertyTester.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/OpenPreferencesAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/OverlayIcon.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PageEventAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PageListenerList.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PagePartSelectionTracker.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PageSelectionService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartListenerList.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartListenerList2.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartPane.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartPluginAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PartTester.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PerspectiveAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PerspectiveBarContributionItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PerspectiveBarManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PerspectiveBarNewContributionItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PerspectiveExtensionReader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PerspectiveListenerList.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PerspectiveSwitcher.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PerspectiveTagger.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PerspectiveTracker.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PlaceholderContributionItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PlatformUIPreferenceListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PluginAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PluginActionBuilder.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PluginActionContributionItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PluginActionCoolBarContributionItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PluginActionSet.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PopupMenuExtender.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ProductInfo.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ProductProperties.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/RadioMenu.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/RectangleAnimationFeedbackBase.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/RectangleAnimationImageFeedback.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ReferenceCounter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ReopenEditorMenu.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ResetPerspectiveAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SaveAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SaveAllAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SaveAsAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SavePerspectiveAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SaveableHelper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SaveablesList.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SelectionAdapterFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SelectionConversionService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Semaphore.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SharedImages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ShellPool.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ShowFastViewContribution.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ShowInHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ShowInMenu.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ShowPartPaneMenuHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ShowViewAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ShowViewMenu.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ShowViewMenuHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SlavePageService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SlavePartService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SlaveSelectionService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/StandardTrim.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/StartupThreading.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SwitchToWindowMenu.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ToggleEditorsVisibilityAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/TrimArea.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/TrimDragPreferences.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/TrimDropTarget.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/TrimFrame.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/TrimLayoutData.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/TrimUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/UILockListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/UISynchronizer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ViewActionBars.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ViewActionBuilder.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ViewIntroAdapterPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ViewIntroAdapterSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ViewPluginAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ViewReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ViewSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ViewerActionBuilder.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WWinActionBars.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WWinPluginAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WWinPluginPulldown.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WindowPartSelectionTracker.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WindowSelectionService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WindowTrimProxy.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchColors.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchConfigurer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchEditorsHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchErrorHandlerProxy.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchImages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchIntroManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchLayout.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchLayoutSettingsTransfer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchMessages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPartReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPlugin.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPreferenceInitializer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchSupportFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindowConfigurer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindowPropertyTester.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbookEditorsHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkingSet.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkingSetComparator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkingSetFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkingSetManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkingSetMenuContributionItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/messages.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutBundleData.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutBundleGroupData.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutData.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutFeaturesButtonManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutFeaturesPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutPluginsPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutSystemPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutTextManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutUtils.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/BundleSigningInfo.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/ConfigurationLogDefaultSection.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/InstallationDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/InstallationHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/ProductInfoDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/ProductInfoPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/actions/AbstractWorkingSetPulldownDelegate.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/actions/ClearWorkingSetAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/actions/CommandAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/actions/DynamicHelpAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/actions/EditWorkingSetAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/actions/HelpContentsAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/actions/HelpSearchAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/actions/HelpSearchContributionItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/actions/ModifyWorkingSetDelegate.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/actions/NewWizardShortcutAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/actions/SelectWorkingSetAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/actions/SelectWorkingSetsAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/AbstractActivityManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/AbstractActivityRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/Activity.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ActivityDefinition.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ActivityPatternBinding.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ActivityPatternBindingDefinition.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ActivityPropertyTester.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ActivityRegistryEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ActivityRequirementBinding.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ActivityRequirementBindingDefinition.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/Category.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/CategoryActivityBinding.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/CategoryActivityBindingDefinition.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/CategoryDefinition.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ExtensionActivityRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/IActivityRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/IActivityRegistryListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/Identifier.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/InternalActivityHelper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/MutableActivityManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/PatternUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/Persistence.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ProxyActivityManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/AbstractTriggerPoint.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/ActivityCategoryContentProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/ActivityCategoryLabelProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/ActivityContentProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/ActivityEnabler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/ActivityLabelProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/ActivityMessages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/ActivityViewerFilter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/CategorizedActivity.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/EnablementDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/EnablementDialog.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/ImageBindingRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/RegistryTriggerPoint.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/TriggerPointAdvisorDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/TriggerPointAdvisorRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/TriggerPointManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/WorkbenchActivitySupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/WorkbenchTriggerPoints.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/activities/ws/messages.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/application/CompatibilityActionBarAdvisor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/application/CompatibilityWorkbenchWindowAdvisor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/browser/DefaultWebBrowser.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/browser/DefaultWorkbenchBrowserSupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/browser/WorkbenchBrowserSupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/CommandImageManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/CommandImageManagerEvent.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/CommandImagePersistence.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/CommandImageService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/CommandLegacyWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/CommandManagerFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/CommandManagerLegacyWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/CommandPersistence.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/CommandService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/CommandServiceFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/CommandStateProxy.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/ElementReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/ICommandImageManagerListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/ILegacyAttributeNames.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/LegacyCommandListenerWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/ParameterValueConverterProxy.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/SlaveCommandService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/WorkbenchCommandSupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/commands/Attic/Parameter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/ActiveContextSourceProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/ContextActivation.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/ContextAuthority.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/ContextLegacyWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/ContextManagerFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/ContextManagerLegacyWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/ContextPersistence.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/ContextService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/ContextServiceFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/LegacyContextListenerWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/NestableContextService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/SlaveContextService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/contexts/WorkbenchContextSupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/ContributingPluginDecorator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/DeclarativeDecorator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/DecorationBuilder.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/DecorationImageBuilder.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/DecorationReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/DecorationResult.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/DecorationScheduler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/DecoratorDefinition.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/DecoratorManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/DecoratorRegistryReader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/FullDecoratorDefinition.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/FullDecoratorRunnable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/FullImageDecoratorRunnable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/FullTextDecoratorRunnable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/LightweightActionDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/LightweightDecoratorDefinition.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/decorators/LightweightDecoratorManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/AboutDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/AboutFeaturesDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/AboutPluginsDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/AbstractWorkingSetDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ActionSetComparator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/AdaptableForwarder.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/CapabilityFilter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ContentTypesPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/DataTransferWizardCollectionComparator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/DecoratorsPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/DelegatingLabelProviderWithTooltip.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/DialogUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/EditorsPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/EmptyPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/EmptyPropertyPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ErrorPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/EventLoopProgressMonitor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ExportPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ExportWizard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/FileEditorsPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/FileExtensionDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/FilteredPreferenceDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/IPropertyPageContributor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ImportExportPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ImportExportWizard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ImportPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ImportWizard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/NewWizard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/NewWizardCollectionComparator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/NewWizardNewPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/NewWizardSelectionPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PerspContentProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PerspectivesPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PreferenceBoldLabelProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PreferenceHistoryEntry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PreferenceLabelProviderWithTooltip.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PreferenceNodeFilter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PreferencePageHistory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PreferencePatternFilter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PreferencesPageContainer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PropertyDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PropertyPageContributorManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PropertyPageManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/PropertyPageNode.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/RegistryPageContributor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/SavePerspectiveDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/SelectPerspectiveDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ShowViewDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/SimpleWorkingSetSelectionDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/StartupPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/TreeManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewComparator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewContentProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewLabelProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewPatternFilter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewsPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WizardActivityFilter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WizardCollectionElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WizardContentProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WizardPatternFilter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WizardTagFilter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchDialogBlockedHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchEditorsDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchPreferenceDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchPreferenceManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchPreferenceNode.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchWizardElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchWizardListSelectionPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchWizardNode.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkbenchWizardSelectionPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkingSetEditWizard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkingSetFilter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkingSetLabelProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkingSetNewWizard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkingSetSelectionDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/WorkingSetTypePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dnd/AbstractDropTarget.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dnd/CompatibilityDragTarget.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dnd/DragBorder.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dnd/DragUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dnd/IDragOverListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dnd/IDropTarget.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dnd/IDropTarget2.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dnd/InsertCaret.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dnd/SwtUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dnd/TestDropLocation.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ActionBars.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityEditor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/CompatibilityView.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/E4Util.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ModeledFolderLayout.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ModeledPageLayout.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ModeledPlaceholderFolderLayout.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/ModeledViewLayout.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/SelectionService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/BindingService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/DefaultPerspectiveProcessor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/EditorReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/EditorSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/FakeCommandService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/FakeHandlerService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/FakeMenuService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/KeyBindingService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/PerspectiveDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/PerspectiveRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/ThemeManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/ViewDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/ViewReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/ViewRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/ViewSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/Workbench.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/WorkbenchPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/WorkbenchPartReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/WorkbenchPartSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/e4/compatibility/Attic/WorkbenchWindow.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/editorsupport/Attic/ComponentSupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/expressions/ActivePartExpression.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/expressions/AlwaysEnabledExpression.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/expressions/AndExpression.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/expressions/CompositeExpression.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/expressions/LegacyActionExpressionWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/expressions/LegacyActionSetExpression.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/expressions/LegacyEditorActionBarExpression.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/expressions/LegacyEditorContributionExpression.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/expressions/LegacySelectionEnablerWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/expressions/LegacyViewContributionExpression.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/expressions/LegacyViewerContributionExpression.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/expressions/WorkbenchWindowExpression.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/ActionCommandMappingService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/ActionDelegateHandlerProxy.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/ActiveContextInfoHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/CloseAllPerspectivesHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/ClosePartHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/ClosePerspectiveHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/CommandLegacyActionWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/CyclePageHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/DisplayHelpHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/E4HandlerProxy.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/EditActionSetsHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/ExecutableExtensionHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/HandlerActivation.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/HandlerPersistence.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/HandlerProxy.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/IActionCommandMappingService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/IWorkbenchWindowHandlerDelegate.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/LegacyHandlerListenerWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/LegacyHandlerProxy.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/LegacyHandlerService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/LegacyHandlerWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/MaximizePartHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/MinimizePartHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/NewEditorHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/OpenInNewWindowHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/PinEditorHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/PropertyDialogHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/QuickMenuHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/QuitHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/RestartWorkbenchHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/ReuseEditorTester.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/SelectAllHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/ShowKeyAssistHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/ShowPreferencePageHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/ToggleCoolbarHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/TraversePageHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/WidgetMethodHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/WizardHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/WorkbenchWindowHandlerDelegate.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/Attic/EHandlerActivation.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/help/WorkbenchHelpSystem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/intro/IIntroConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/intro/IIntroDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/intro/IIntroRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/intro/IntroDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/intro/IntroMessages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/intro/IntroRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/intro/intro.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/AbstractKeyFormatter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/AbstractKeyFormatter.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/AbstractModifierKeyComparator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/AlphabeticModifierKeyComparator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/BindingPersistence.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/BindingService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/CancelOnModifyListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/CategoryPatternFilter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/CompactKeyFormatter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/EmacsKeyFormatter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/EmacsKeyFormatter.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/FormalKeyFormatter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/GnomeKeyFormatter.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/ImageFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/KdeKeyFormatter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/KdeKeyFormatter.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/KeyAssistDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/KeyAssistDialog.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/KeyAssistMessages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/KeyBindingState.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/KeySequenceBinding.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/KeysPreferenceFiltersDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/KeysPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/KeysPreferencePage.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/LegacySchemeListenerWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/MacKeyFormatter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/MacKeyFormatter.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/NativeKeyFormatter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/NativeKeyFormatter.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/NativeModifierKeyComparator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/NewKeysPreferenceMessages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/NewKeysPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/NewKeysPreferencePage.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/NoKeysPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/SchemeLegacyWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/WindowsKeyFormatter.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/WorkbenchKeyboard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/WorkbenchKeyboard.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/model/BindingElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/model/BindingModel.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/model/CommonModel.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/model/ConflictModel.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/model/ContextElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/model/ContextModel.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/model/KeyController.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/model/ModelElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/model/SchemeElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/keys/model/SchemeModel.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/CacheWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/CellData.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/CellLayout.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/CellLayoutUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/GridInfo.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/ICachingLayout.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/ITrimManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/IWindowTrim.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/LayoutCache.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/LayoutUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/Row.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/SizeCache.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/TrimArea.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/TrimCommonUIHandle.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/TrimDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/TrimDragPreferenceDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/TrimLayout.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/TrimToolBarBase.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/AbstractWorkbenchWidget.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/ActionSet.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/CommandMessages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/CompatibilityWorkbenchWindowControlContribution.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/ControlContributionRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/DynamicMenuContributionItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/DynamicToolBarContributionItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/EditorAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/ExtensionContribution.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/FocusControlSourceProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/IActionSetsListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/InternalControlContribution.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/LegacyActionPersistence.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/MenuAdditionCacheEntry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/MenuHelper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/MenuLocationURI.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/MenuPersistence.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/PulldownDelegateWidgetProxy.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/ViewAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/WidgetProxy.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/WorkbenchMenuService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/messages.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/Attic/AbstractMenuAdditionCacheEntry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/Attic/ContributionRoot.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/Attic/IMenuActivation.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/Attic/IMenuLabelProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/Attic/InternalMenuService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/Attic/MenuActivation.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/Attic/MenuServiceFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/Attic/ProxyMenuAdditionCacheEntry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/Attic/SlaveMenuService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/Attic/TrimAdditionCacheEntry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/Attic/TrimBarManager2.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/Attic/TrimContributionManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/misc/ExternalEditor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/misc/ExternalProgramImageDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/misc/Policy.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/misc/ProgramImageDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/misc/StatusUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/misc/StringMatcher.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/misc/TestPartListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/misc/UIListenerLogging.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/misc/UIStats.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/model/ContributionService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/operations/AdvancedValidationUserApprover.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/operations/TimeTriggeredProgressMonitorDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/operations/WorkbenchOperationSupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/part/IMultiPageEditorSiteHolder.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/part/IPageSiteHolder.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/part/IPartHost.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/part/IPartPropertyProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/part/IWorkbenchScopeConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/part/NullEditorInput.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/part/NullPersistable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/part/Part.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/part/SelectionProviderAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/part/StatusPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/AbstractBooleanListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/AbstractIntegerListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/AbstractPropertyListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/Base64.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/IDynamicPropertyMap.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/IPropertyMap.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/IPropertyMapListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/PreferenceStoreAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/PreferenceTransferElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/PreferenceTransferManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/PreferencesAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/PropertyListenerList.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/PropertyMapAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/PropertyMapUnion.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/PropertyUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/SettingsTransferRegistryReader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/ThemeAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/ThemeManagerAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/WorkbenchPreferenceExpressionNode.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/WorkbenchPreferenceExtensionNode.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/WorkbenchSettingsTransfer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/WorkingCopyPreferences.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/WorkingSetPropertyPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/preferences/WorkingSetSettingsTransfer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/AbstractProgressViewer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/AnimationItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/AnimationManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/BlockedJobsDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/DetailedProgressViewer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ErrorInfo.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/FinishedJobs.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/GroupInfo.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/IAnimationProcessor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/IJobBusyListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/IJobProgressManagerListener.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/IProgressUpdateCollector.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/JobInfo.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/JobTreeElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/JobsViewPreferenceDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressAnimationItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressAnimationProcessor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressCanvasViewer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressContentProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressInfoItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressLabelProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressManagerUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressMessages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressMonitorFocusJobDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressMonitorJobsDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressRegion.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressView.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressViewUpdater.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressViewerContentProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressViewerLabelProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/StatusAdapterHelper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/SubTaskInfo.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/TaskInfo.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/WorkbenchSiteProgressService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/messages.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/provisional/application/IActionBarConfigurer2.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/provisional/presentations/IActionBarPresentationFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/ActionElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/ActionProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/CamelUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/CommandElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/CommandProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/EditorElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/EditorProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/PerspectiveElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/PerspectiveProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/PreferenceElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/PreferenceProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/PropertiesElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/PropertiesProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessContents.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessEntry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessMessages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/SearchField.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/ViewElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/ViewProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/WizardElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/WizardProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/messages.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/ActionSetDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/ActionSetRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/CategorizedPageRegistryReader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/Category.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/EditorDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/EditorRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/EditorRegistryReader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/FileEditorMapping.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/IActionSet.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/IActionSetDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/IWorkbenchRegistryConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/KeywordRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/PerspectiveDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/PerspectiveParameterValues.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/PerspectiveRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/PreferencePageParameterValues.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/PreferencePageRegistryReader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/PreferenceTransferRegistryReader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/PropertyPagesRegistryReader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/RegistryReader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/ShowViewHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/StickyViewDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/UIExtensionTracker.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/ViewCategory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/ViewDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/ViewParameterValues.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/ViewRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/WizardParameterValues.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/WizardsRegistryReader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/WorkingSetDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/WorkingSetRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/registry/WorkingSetRegistryReader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/ActionSetSourceProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/EvaluationReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/EvaluationResultCache.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/EvaluationResultCacheComparator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/EvaluationService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/EvaluationServiceFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/ExpressionAuthority.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/IEvaluationResultCache.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/INestable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/IServiceLocatorCreator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/IWorkbenchLocationService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/MenuSourceProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/PreferencePersistence.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/RegistryPersistence.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/ServiceLocator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/ServiceLocatorCreator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/SlaveEvaluationService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/SourcePriorityNameMapping.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/SourceProviderService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/WorkbenchLocationService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/WorkbenchServiceRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/WorkbenchSourceProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/Attic/EEvaluationReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/Attic/LegacyEvalContext.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/services/Attic/LegacyEvaluationService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/splash/EclipseSplashHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/splash/SplashHandlerFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/DefaultDetailsArea.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/DetailsAreaManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/IStatusDialogConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/InternalDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/LabelProviderWrapper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/StackTraceSupportArea.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/StatusHandlerDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/StatusHandlerDescriptorsMap.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/StatusHandlerProductBindingDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/StatusHandlerRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/SupportTray.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/WorkbenchStatusDialogManagerImpl.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/testing/WorkbenchPartTestable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/testing/WorkbenchTestable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/CascadingColorRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/CascadingFontRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/CascadingMap.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/CascadingTheme.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/ColorDefinition.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/ColorsAndFontsPreferencePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/ColorsAndFontsPreferencePage.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/FontDefinition.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/ICategorizedThemeElementDefinition.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/IEditable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/IHierarchalThemeElementDefinition.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/IThemeDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/IThemeElementDefinition.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/IThemeRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/LightColorFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/RGBContrastFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/Theme.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/Theme.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/ThemeDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/ThemeElementCategory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/ThemeElementHelper.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/ThemeRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/ThemeRegistryReader.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/ThemeRegistryReader.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/WorkbenchPreview.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/themes/WorkbenchThemeManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/tweaklets/AllowGrabFocus.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/tweaklets/Animations.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/tweaklets/DummyTitlePathUpdater.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/tweaklets/GrabFocus.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/tweaklets/ImageAnimationTweak.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/tweaklets/InterceptContributions.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/tweaklets/LegacyAnimations.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/tweaklets/TabBehaviour.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/tweaklets/TabBehaviourMRU.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/tweaklets/TitlePathUpdater.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/tweaklets/Tweaklets.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/util/BundleUtility.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/util/ConfigurationElementMemento.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/util/Descriptors.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/util/ImageSupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/util/PrefUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/util/Util.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/wizards/AbstractExtensionWizardRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/wizards/AbstractWizardRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/wizards/ExportWizardRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/wizards/ImportWizardRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/wizards/NewWizardRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/wizards/preferences/PreferencesContentProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/wizards/preferences/PreferencesExportWizard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/wizards/preferences/PreferencesImportWizard.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/wizards/preferences/PreferencesMessages.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/wizards/preferences/WizardPreferencesExportPage1.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/wizards/preferences/WizardPreferencesImportPage1.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/wizards/preferences/WizardPreferencesPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/wizards/preferences/messages.properties,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/intro/IIntroManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/intro/IIntroPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/intro/IIntroSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/intro/IntroContentDetector.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/intro/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/keys/CharacterKey.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/keys/IBindingService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/keys/IKeyFormatter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/keys/Key.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/keys/KeyFormatterFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/keys/KeySequence.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/keys/KeyStroke.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/keys/ModifierKey.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/keys/NaturalKey.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/keys/ParseException.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/keys/SWTKeySupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/keys/SpecialKey.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/keys/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/AbstractContributionFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/AbstractWorkbenchTrimWidget.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/CommandContributionItem.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/CommandContributionItemParameter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/ExtensionContributionFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/IContributionRoot.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/IMenuService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/IWorkbenchContribution.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/IWorkbenchWidget.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/MenuUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/UIElement.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/WorkbenchWindowControlContribution.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/menus/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/AdaptableList.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/BaseWorkbenchContentProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/ContributionComparator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/IComparableContribution.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/IContributionService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/IWorkbenchAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/IWorkbenchAdapter2.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/IWorkbenchAdapter3.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/PerspectiveLabelProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/WorkbenchAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/WorkbenchLabelProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/WorkbenchPartLabelProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/WorkbenchViewerComparator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/WorkbenchViewerSorter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/model/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/operations/IWorkbenchOperationSupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/operations/LinearUndoViolationUserApprover.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/operations/NonLocalUndoUserApprover.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/operations/OperationHistoryActionHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/operations/RedoActionHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/operations/UndoActionHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/operations/UndoRedoActionGroup.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/operations/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/AbstractMultiEditor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/CellEditorActionHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/CoolItemGroupMarker.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/DrillDownAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/DrillDownComposite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/DrillFrame.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/DrillStack.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/EditorActionBarContributor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/EditorInputTransfer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/EditorPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IContributedContentsView.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IDropActionDelegate.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IPageBookViewPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IPageSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/ISetSelectionTarget.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IShowInSource.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IShowInTarget.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IShowInTargetList.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IWorkbenchPartOrientation.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IntroPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/MessagePage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/MultiEditor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/MultiEditorInput.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/MultiPageEditor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/MultiPageEditorActionBarContributor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/MultiPageEditorPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/MultiPageEditorSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/MultiPageSelectionProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/Page.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/PageBook.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/PageBookView.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/PageSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/PageSwitcher.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/PluginDropAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/PluginTransfer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/PluginTransferData.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/ShowInContext.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/ViewPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/WorkbenchPart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/plugin/AbstractUIPlugin.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/plugin/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/preferences/IWorkbenchPreferenceContainer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/preferences/IWorkingCopyManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/preferences/ScopedPreferenceStore.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/preferences/SettingsTransfer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/preferences/ViewPreferencesAction.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/preferences/ViewSettingsDialog.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/preferences/WizardPropertyPage.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/preferences/WorkingCopyManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/preferences/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/presentations/AbstractPresentationFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/presentations/IPartMenu.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/presentations/IPresentablePart.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/presentations/IPresentationSerializer.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/presentations/IStackPresentationSite.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/presentations/StackDropResult.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/presentations/StackPresentation.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/presentations/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/progress/DeferredTreeContentManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/progress/IDeferredWorkbenchAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/progress/IElementCollector.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/progress/IJobRunnable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/progress/IProgressConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/progress/IProgressConstants2.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/progress/IProgressService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/progress/IWorkbenchSiteProgressService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/progress/PendingUpdateAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/progress/UIJob.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/progress/WorkbenchJob.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/progress/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/services/AbstractServiceFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/services/IDisposable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/services/IEvaluationReference.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/services/IEvaluationService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/services/IServiceLocator.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/services/IServiceScopes.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/services/IServiceWithSources.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/services/ISourceProviderService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/services/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/splash/AbstractSplashHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/splash/BasicSplashHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/splash/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/AbstractStatusAreaProvider.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/AbstractStatusHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/IStatusAdapterConstants.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/StatusAdapter.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/StatusManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/WorkbenchErrorHandler.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/swt/IFocusService.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/swt/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/testing/ContributionInfo.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/testing/ITestHarness.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/testing/IWorkbenchPartTestable.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/testing/TestableObject.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/testing/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/themes/ColorUtil.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/themes/IColorFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/themes/ITheme.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/themes/IThemeManager.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/themes/IThemePreview.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/themes/RGBBlendColorFactory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/themes/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/views/IStickyViewDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/views/IViewCategory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/views/IViewDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/views/IViewRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/views/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/wizards/IWizardCategory.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/wizards/IWizardDescriptor.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/wizards/IWizardRegistry.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/wizards/package.html,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/Eclipse UI Editor Support/org/eclipse/ui/internal/editorsupport/ComponentSupport.java,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/META-INF/MANIFEST.MF,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/scripts/exportplugin.xml,v
+/shared/eclipse/e4/git/cvs/cvsroot.eclipse.platform.ui.compat/e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench/xmi/Attic/components.e4xmi,v
+Done
+Time for pass1 (CollectRevsPass): 16.50 seconds.
+----- pass 2 (CleanMetadataPass) -----
+Converting metadata to UTF8...
+Done
+Time for pass2 (CleanMetadataPass): 0.133 seconds.
+----- pass 3 (CollateSymbolsPass) -----
+Checking for forced tags with commits...
+Done
+Time for pass3 (CollateSymbolsPass): 0.074 seconds.
+----- pass 4 (FilterSymbolsPass) -----
+Filtering out excluded symbols and summarizing items...
+Starting generate_blobs.py...
+Waiting for generate_blobs.py to finish...
+generate_blobs.py is done.
+Done
+Time for pass4 (FilterSymbolsPass): 12.41 seconds.
+----- pass 5 (SortRevisionsPass) -----
+Sorting CVS revision summaries...
+Done
+Time for pass5 (SortRevisionsPass): 0.068 seconds.
+----- pass 6 (SortSymbolsPass) -----
+Sorting CVS symbol summaries...
+Done
+Time for pass6 (SortSymbolsPass): 1.023 seconds.
+----- pass 7 (InitializeChangesetsPass) -----
+Creating preliminary commit sets...
+Done
+Time for pass7 (InitializeChangesetsPass): 9.712 seconds.
+----- pass 8 (BreakRevisionChangesetCyclesPass) -----
+Breaking revision changeset dependency cycles...
+Done
+Time for pass8 (BreakRevisionChangesetCyclesPass): 1.024 seconds.
+----- pass 9 (RevisionTopologicalSortPass) -----
+Generating CVSRevisions in commit order...
+Done
+Time for pass9 (RevisionTopologicalSortPass): 1.018 seconds.
+----- pass 10 (BreakSymbolChangesetCyclesPass) -----
+Breaking symbol changeset dependency cycles...
+Done
+Time for pass10 (BreakSymbolChangesetCyclesPass): 5.704 seconds.
+----- pass 11 (BreakAllChangesetCyclesPass) -----
+Breaking CVSSymbol dependency loops...
+Done
+Time for pass11 (BreakAllChangesetCyclesPass): 6.576 seconds.
+----- pass 12 (TopologicalSortPass) -----
+Generating CVSRevisions in commit order...
+Done
+Time for pass12 (TopologicalSortPass): 6.413 seconds.
+----- pass 13 (CreateRevsPass) -----
+Mapping CVS revisions to Subversion commits...
+Creating Subversion r1 (Project initialization)
+Creating Subversion r2 (commit)
+Creating Subversion r3 (commit)
+Creating Subversion r4 (commit)
+Creating Subversion r5 (commit)
+Creating Subversion r6 (commit)
+Creating Subversion r7 (commit)
+Creating Subversion r8 (commit)
+Creating Subversion r9 (commit)
+Creating Subversion r10 (commit)
+Creating Subversion r11 (commit)
+Creating Subversion r12 (commit)
+Creating Subversion r13 (commit)
+Creating Subversion r14 (commit)
+Creating Subversion r15 (commit)
+Creating Subversion r16 (commit)
+Creating Subversion r17 (commit)
+Creating Subversion r18 (commit)
+Creating Subversion r19 (commit)
+Creating Subversion r20 (commit)
+Creating Subversion r21 (commit)
+Creating Subversion r22 (commit)
+Creating Subversion r23 (commit)
+Creating Subversion r24 (commit)
+Creating Subversion r25 (commit)
+Creating Subversion r26 (commit)
+Creating Subversion r27 (commit)
+Creating Subversion r28 (commit)
+Creating Subversion r29 (commit)
+Creating Subversion r30 (commit)
+Creating Subversion r31 (commit)
+Creating Subversion r32 (commit)
+Creating Subversion r33 (commit)
+Creating Subversion r34 (commit)
+Creating Subversion r35 (commit)
+Creating Subversion r36 (commit)
+Creating Subversion r37 (commit)
+Creating Subversion r38 (commit)
+Creating Subversion r39 (commit)
+Creating Subversion r40 (commit)
+Creating Subversion r41 (commit)
+Creating Subversion r42 (commit)
+Creating Subversion r43 (commit)
+Creating Subversion r44 (commit)
+Creating Subversion r45 (commit)
+Creating Subversion r46 (commit)
+Creating Subversion r47 (commit)
+Creating Subversion r48 (commit)
+Creating Subversion r49 (commit)
+Creating Subversion r50 (commit)
+Creating Subversion r51 (commit)
+Creating Subversion r52 (commit)
+Creating Subversion r53 (commit)
+Creating Subversion r54 (commit)
+Creating Subversion r55 (commit)
+Creating Subversion r56 (commit)
+Creating Subversion r57 (commit)
+Creating Subversion r58 (commit)
+Creating Subversion r59 (commit)
+Creating Subversion r60 (commit)
+Creating Subversion r61 (commit)
+Creating Subversion r62 (commit)
+Creating Subversion r63 (commit)
+Creating Subversion r64 (commit)
+Creating Subversion r65 (copying to tag 'R1_0M3')
+Creating Subversion r66 (commit)
+Creating Subversion r67 (commit)
+Creating Subversion r68 (commit)
+Creating Subversion r69 (commit)
+Creating Subversion r70 (commit)
+Creating Subversion r71 (commit)
+Creating Subversion r72 (commit)
+Creating Subversion r73 (commit)
+Creating Subversion r74 (commit)
+Creating Subversion r75 (commit)
+Creating Subversion r76 (commit)
+Creating Subversion r77 (commit)
+Creating Subversion r78 (commit)
+Creating Subversion r79 (commit)
+Creating Subversion r80 (commit)
+Creating Subversion r81 (commit)
+Creating Subversion r82 (commit)
+Creating Subversion r83 (commit)
+Creating Subversion r84 (commit)
+Creating Subversion r85 (commit)
+Creating Subversion r86 (commit)
+Creating Subversion r87 (commit)
+Creating Subversion r88 (commit)
+Creating Subversion r89 (commit)
+Creating Subversion r90 (commit)
+Creating Subversion r91 (commit)
+Creating Subversion r92 (commit)
+Creating Subversion r93 (commit)
+Creating Subversion r94 (commit)
+Creating Subversion r95 (commit)
+Creating Subversion r96 (commit)
+Creating Subversion r97 (commit)
+Creating Subversion r98 (commit)
+Creating Subversion r99 (commit)
+Creating Subversion r100 (commit)
+Creating Subversion r101 (commit)
+Creating Subversion r102 (commit)
+Creating Subversion r103 (commit)
+Creating Subversion r104 (commit)
+Creating Subversion r105 (commit)
+Creating Subversion r106 (commit)
+Creating Subversion r107 (commit)
+Creating Subversion r108 (commit)
+Creating Subversion r109 (commit)
+Creating Subversion r110 (commit)
+Creating Subversion r111 (commit)
+Creating Subversion r112 (commit)
+Creating Subversion r113 (commit)
+Creating Subversion r114 (commit)
+Creating Subversion r115 (commit)
+Creating Subversion r116 (commit)
+Creating Subversion r117 (commit)
+Creating Subversion r118 (commit)
+Creating Subversion r119 (commit)
+Creating Subversion r120 (commit)
+Creating Subversion r121 (commit)
+Creating Subversion r122 (commit)
+Creating Subversion r123 (commit)
+Creating Subversion r124 (commit)
+Creating Subversion r125 (commit)
+Creating Subversion r126 (commit)
+Creating Subversion r127 (commit)
+Creating Subversion r128 (commit)
+Creating Subversion r129 (commit)
+Creating Subversion r130 (commit)
+Creating Subversion r131 (commit)
+Creating Subversion r132 (commit)
+Creating Subversion r133 (commit)
+Creating Subversion r134 (commit)
+Creating Subversion r135 (commit)
+Creating Subversion r136 (commit)
+Creating Subversion r137 (commit)
+Creating Subversion r138 (commit)
+Creating Subversion r139 (commit)
+Creating Subversion r140 (commit)
+Creating Subversion r141 (commit)
+Creating Subversion r142 (commit)
+Creating Subversion r143 (commit)
+Creating Subversion r144 (commit)
+Creating Subversion r145 (commit)
+Creating Subversion r146 (commit)
+Creating Subversion r147 (commit)
+Creating Subversion r148 (commit)
+Creating Subversion r149 (commit)
+Creating Subversion r150 (commit)
+Creating Subversion r151 (commit)
+Creating Subversion r152 (commit)
+Creating Subversion r153 (commit)
+Creating Subversion r154 (commit)
+Creating Subversion r155 (commit)
+Creating Subversion r156 (commit)
+Creating Subversion r157 (commit)
+Creating Subversion r158 (commit)
+Creating Subversion r159 (commit)
+Creating Subversion r160 (commit)
+Creating Subversion r161 (commit)
+Creating Subversion r162 (commit)
+Creating Subversion r163 (commit)
+Creating Subversion r164 (commit)
+Creating Subversion r165 (commit)
+Creating Subversion r166 (commit)
+Creating Subversion r167 (commit)
+Creating Subversion r168 (commit)
+Creating Subversion r169 (commit)
+Creating Subversion r170 (commit)
+Creating Subversion r171 (commit)
+Creating Subversion r172 (commit)
+Creating Subversion r173 (commit)
+Creating Subversion r174 (commit)
+Creating Subversion r175 (commit)
+Creating Subversion r176 (commit)
+Creating Subversion r177 (commit)
+Creating Subversion r178 (commit)
+Creating Subversion r179 (commit)
+Creating Subversion r180 (commit)
+Creating Subversion r181 (commit)
+Creating Subversion r182 (commit)
+Creating Subversion r183 (commit)
+Creating Subversion r184 (commit)
+Creating Subversion r185 (commit)
+Creating Subversion r186 (commit)
+Creating Subversion r187 (commit)
+Creating Subversion r188 (commit)
+Creating Subversion r189 (commit)
+Creating Subversion r190 (commit)
+Creating Subversion r191 (commit)
+Creating Subversion r192 (copying to tag 'R1_0M4')
+Creating Subversion r193 (commit)
+Creating Subversion r194 (commit)
+Creating Subversion r195 (commit)
+Creating Subversion r196 (commit)
+Creating Subversion r197 (commit)
+Creating Subversion r198 (commit)
+Creating Subversion r199 (commit)
+Creating Subversion r200 (commit)
+Creating Subversion r201 (commit)
+Creating Subversion r202 (commit)
+Creating Subversion r203 (commit)
+Creating Subversion r204 (commit)
+Creating Subversion r205 (copying to tag 'pre_compat20100302')
+Creating Subversion r206 (commit)
+Creating Subversion r207 (copying to tag 'I20100406-2156')
+Creating Subversion r208 (commit)
+Creating Subversion r209 (commit)
+Creating Subversion r210 (commit)
+Creating Subversion r211 (commit)
+Creating Subversion r212 (commit)
+Creating Subversion r213 (commit)
+Creating Subversion r214 (commit)
+Creating Subversion r215 (commit)
+Creating Subversion r216 (commit)
+Creating Subversion r217 (commit)
+Creating Subversion r218 (commit)
+Creating Subversion r219 (commit)
+Creating Subversion r220 (commit)
+Creating Subversion r221 (commit)
+Creating Subversion r222 (commit)
+Creating Subversion r223 (commit)
+Creating Subversion r224 (commit)
+Creating Subversion r225 (commit)
+Creating Subversion r226 (commit)
+Creating Subversion r227 (commit)
+Creating Subversion r228 (commit)
+Creating Subversion r229 (commit)
+Creating Subversion r230 (commit)
+Creating Subversion r231 (commit)
+Creating Subversion r232 (commit)
+Creating Subversion r233 (commit)
+Creating Subversion r234 (commit)
+Creating Subversion r235 (commit)
+Creating Subversion r236 (commit)
+Creating Subversion r237 (commit)
+Creating Subversion r238 (commit)
+Creating Subversion r239 (commit)
+Creating Subversion r240 (commit)
+Creating Subversion r241 (commit)
+Creating Subversion r242 (commit)
+Creating Subversion r243 (commit)
+Creating Subversion r244 (commit)
+Creating Subversion r245 (commit)
+Creating Subversion r246 (commit)
+Creating Subversion r247 (commit)
+Creating Subversion r248 (commit)
+Creating Subversion r249 (commit)
+Creating Subversion r250 (commit)
+Creating Subversion r251 (commit)
+Creating Subversion r252 (commit)
+Creating Subversion r253 (commit)
+Creating Subversion r254 (commit)
+Creating Subversion r255 (commit)
+Creating Subversion r256 (commit)
+Creating Subversion r257 (commit)
+Creating Subversion r258 (commit)
+Creating Subversion r259 (commit)
+Creating Subversion r260 (commit)
+Creating Subversion r261 (commit)
+Creating Subversion r262 (commit)
+Creating Subversion r263 (commit)
+Creating Subversion r264 (commit)
+Creating Subversion r265 (commit)
+Creating Subversion r266 (commit)
+Creating Subversion r267 (commit)
+Creating Subversion r268 (commit)
+Creating Subversion r269 (commit)
+Creating Subversion r270 (commit)
+Creating Subversion r271 (copying to tag 'I20100406-0910')
+Creating Subversion r272 (commit)
+Creating Subversion r273 (commit)
+Creating Subversion r274 (commit)
+Creating Subversion r275 (commit)
+Creating Subversion r276 (copying to tag 'I20100406-2227')
+Creating Subversion r277 (commit)
+Creating Subversion r278 (commit)
+Creating Subversion r279 (copying to tag 'v20100407-1333')
+Creating Subversion r280 (commit)
+Creating Subversion r281 (commit)
+Creating Subversion r282 (commit)
+Creating Subversion r283 (commit)
+Creating Subversion r284 (commit)
+Creating Subversion r285 (commit)
+Creating Subversion r286 (commit)
+Creating Subversion r287 (commit)
+Creating Subversion r288 (copying to tag 'v20100408-2247')
+Creating Subversion r289 (commit)
+Creating Subversion r290 (commit)
+Creating Subversion r291 (commit)
+Creating Subversion r292 (copying to tag 'v20100409-1142')
+Creating Subversion r293 (commit)
+Creating Subversion r294 (commit)
+Creating Subversion r295 (commit)
+Creating Subversion r296 (copying to tag 'R1_0M5')
+Creating Subversion r297 (copying to tag 'v20100409-1554')
+Creating Subversion r298 (commit)
+Creating Subversion r299 (copying to tag 'Root_model_tweaking_round3')
+Creating Subversion r300 (copying to tag 'v20100416-1111')
+Creating Subversion r301 (copying to branch 'model_tweaking_round3')
+Creating Subversion r302 (commit)
+Creating Subversion r303 (commit)
+Creating Subversion r304 (commit)
+Creating Subversion r305 (commit)
+Creating Subversion r306 (commit)
+Creating Subversion r307 (commit)
+Creating Subversion r308 (commit)
+Creating Subversion r309 (copying to tag 'v20100417-2200')
+Creating Subversion r310 (commit)
+Creating Subversion r311 (copying to tag 'v20100419-1030')
+Creating Subversion r312 (commit)
+Creating Subversion r313 (commit)
+Creating Subversion r314 (commit)
+Creating Subversion r315 (commit)
+Creating Subversion r316 (copying to tag 'v20100421-1130')
+Creating Subversion r317 (commit)
+Creating Subversion r318 (commit)
+Creating Subversion r319 (copying to tag 'v20100422-1230')
+Creating Subversion r320 (commit)
+Creating Subversion r321 (copying to tag 'v20100422-1630')
+Creating Subversion r322 (commit)
+Creating Subversion r323 (commit)
+Creating Subversion r324 (commit)
+Creating Subversion r325 (commit)
+Creating Subversion r326 (copying to tag 'v20100424-1900')
+Creating Subversion r327 (commit)
+Creating Subversion r328 (commit)
+Creating Subversion r329 (commit)
+Creating Subversion r330 (commit)
+Creating Subversion r331 (commit)
+Creating Subversion r332 (copying to tag 'v20100428-1730')
+Creating Subversion r333 (commit)
+Creating Subversion r334 (copying to tag 'v20100429-1530')
+Creating Subversion r335 (commit)
+Creating Subversion r336 (commit)
+Creating Subversion r337 (commit)
+Creating Subversion r338 (commit)
+Creating Subversion r339 (commit)
+Creating Subversion r340 (copying to tag 'v20100503-1900')
+Creating Subversion r341 (commit)
+Creating Subversion r342 (commit)
+Creating Subversion r343 (copying to tag 'v20100504-1500')
+Creating Subversion r344 (commit)
+Creating Subversion r345 (commit)
+Creating Subversion r346 (commit)
+Creating Subversion r347 (copying to tag 'v20100506-1500')
+Creating Subversion r348 (commit)
+Creating Subversion r349 (commit)
+Creating Subversion r350 (commit)
+Creating Subversion r351 (copying to tag 'v20100510-1130')
+Creating Subversion r352 (commit)
+Creating Subversion r353 (copying to tag 'v20100510-1530')
+Creating Subversion r354 (commit)
+Creating Subversion r355 (copying to tag 'v20100511-0800')
+Creating Subversion r356 (commit)
+Creating Subversion r357 (commit)
+Creating Subversion r358 (commit)
+Creating Subversion r359 (commit)
+Creating Subversion r360 (commit)
+Creating Subversion r361 (commit)
+Creating Subversion r362 (commit)
+Creating Subversion r363 (commit)
+Creating Subversion r364 (commit)
+Creating Subversion r365 (copying to tag 'v20100513-1500')
+Creating Subversion r366 (commit)
+Creating Subversion r367 (commit)
+Creating Subversion r368 (commit)
+Creating Subversion r369 (commit)
+Creating Subversion r370 (commit)
+Creating Subversion r371 (commit)
+Creating Subversion r372 (copying to tag 'v20100519-0930')
+Creating Subversion r373 (commit)
+Creating Subversion r374 (copying to tag 'v20100520-1200')
+Creating Subversion r375 (commit)
+Creating Subversion r376 (copying to tag 'v20100521-0900')
+Creating Subversion r377 (commit)
+Creating Subversion r378 (copying to tag 'v20100521-1400')
+Creating Subversion r379 (commit)
+Creating Subversion r380 (copying to tag 'v20100525-1530')
+Creating Subversion r381 (commit)
+Creating Subversion r382 (copying to tag 'v20100531-1530')
+Creating Subversion r383 (commit)
+Creating Subversion r384 (commit)
+Creating Subversion r385 (copying to tag 'v20100602-1900')
+Creating Subversion r386 (commit)
+Creating Subversion r387 (commit)
+Creating Subversion r388 (copying to tag 'v20100603-1900')
+Creating Subversion r389 (commit)
+Creating Subversion r390 (commit)
+Creating Subversion r391 (commit)
+Creating Subversion r392 (commit)
+Creating Subversion r393 (copying to tag 'v20100606-1500')
+Creating Subversion r394 (commit)
+Creating Subversion r395 (commit)
+Creating Subversion r396 (commit)
+Creating Subversion r397 (commit)
+Creating Subversion r398 (commit)
+Creating Subversion r399 (commit)
+Creating Subversion r400 (commit)
+Creating Subversion r401 (commit)
+Creating Subversion r402 (commit)
+Creating Subversion r403 (commit)
+Creating Subversion r404 (commit)
+Creating Subversion r405 (commit)
+Creating Subversion r406 (commit)
+Creating Subversion r407 (copying to tag 'v20100609-2000')
+Creating Subversion r408 (commit)
+Creating Subversion r409 (commit)
+Creating Subversion r410 (commit)
+Creating Subversion r411 (commit)
+Creating Subversion r412 (commit)
+Creating Subversion r413 (commit)
+Creating Subversion r414 (copying to tag 'v20100610-2030')
+Creating Subversion r415 (commit)
+Creating Subversion r416 (commit)
+Creating Subversion r417 (commit)
+Creating Subversion r418 (commit)
+Creating Subversion r419 (commit)
+Creating Subversion r420 (copying to tag 'v20100613-1900')
+Creating Subversion r421 (commit)
+Creating Subversion r422 (commit)
+Creating Subversion r423 (copying to tag 'v20100614-1830')
+Creating Subversion r424 (commit)
+Creating Subversion r425 (commit)
+Creating Subversion r426 (commit)
+Creating Subversion r427 (commit)
+Creating Subversion r428 (commit)
+Creating Subversion r429 (copying to tag 'v20100615-2100')
+Creating Subversion r430 (commit)
+Creating Subversion r431 (commit)
+Creating Subversion r432 (commit)
+Creating Subversion r433 (commit)
+Creating Subversion r434 (copying to tag 'v20100616-1900')
+Creating Subversion r435 (commit)
+Creating Subversion r436 (commit)
+Creating Subversion r437 (commit)
+Creating Subversion r438 (copying to tag 'v20100618-1245')
+Creating Subversion r439 (commit)
+Creating Subversion r440 (commit)
+Creating Subversion r441 (copying to tag 'v20100622-1500')
+Creating Subversion r442 (commit)
+Creating Subversion r443 (commit)
+Creating Subversion r444 (commit)
+Creating Subversion r445 (copying to tag 'v20100624-1500')
+Creating Subversion r446 (commit)
+Creating Subversion r447 (commit)
+Creating Subversion r448 (copying to tag 'v20100624-1800')
+Creating Subversion r449 (commit)
+Creating Subversion r450 (commit)
+Creating Subversion r451 (commit)
+Creating Subversion r452 (commit)
+Creating Subversion r453 (commit)
+Creating Subversion r454 (commit)
+Creating Subversion r455 (commit)
+Creating Subversion r456 (commit)
+Creating Subversion r457 (commit)
+Creating Subversion r458 (commit)
+Creating Subversion r459 (commit)
+Creating Subversion r460 (copying to tag 'v20100627-1530')
+Creating Subversion r461 (commit)
+Creating Subversion r462 (commit)
+Creating Subversion r463 (commit)
+Creating Subversion r464 (commit)
+Creating Subversion r465 (commit)
+Creating Subversion r466 (commit)
+Creating Subversion r467 (commit)
+Creating Subversion r468 (commit)
+Creating Subversion r469 (copying to tag 'v20100628-2030')
+Creating Subversion r470 (commit)
+Creating Subversion r471 (commit)
+Creating Subversion r472 (commit)
+Creating Subversion r473 (commit)
+Creating Subversion r474 (commit)
+Creating Subversion r475 (commit)
+Creating Subversion r476 (commit)
+Creating Subversion r477 (commit)
+Creating Subversion r478 (commit)
+Creating Subversion r479 (copying to tag 'v20100629-2000')
+Creating Subversion r480 (commit)
+Creating Subversion r481 (commit)
+Creating Subversion r482 (copying to tag 'v20100630-1000')
+Creating Subversion r483 (commit)
+Creating Subversion r484 (commit)
+Creating Subversion r485 (copying to tag 'v20100630-1600')
+Creating Subversion r486 (commit)
+Creating Subversion r487 (copying to tag 'v20100705-0830')
+Creating Subversion r488 (commit)
+Creating Subversion r489 (commit)
+Creating Subversion r490 (commit)
+Creating Subversion r491 (commit)
+Creating Subversion r492 (commit)
+Creating Subversion r493 (commit)
+Creating Subversion r494 (copying to tag 'v20100705-2130')
+Creating Subversion r495 (commit)
+Creating Subversion r496 (commit)
+Creating Subversion r497 (commit)
+Creating Subversion r498 (copying to tag 'v20100706-2000')
+Creating Subversion r499 (commit)
+Creating Subversion r500 (commit)
+Creating Subversion r501 (commit)
+Creating Subversion r502 (commit)
+Creating Subversion r503 (commit)
+Creating Subversion r504 (copying to tag 'v20100707-1900')
+Creating Subversion r505 (commit)
+Creating Subversion r506 (commit)
+Creating Subversion r507 (commit)
+Creating Subversion r508 (copying to tag 'v20100708-1830')
+Creating Subversion r509 (commit)
+Creating Subversion r510 (commit)
+Creating Subversion r511 (commit)
+Creating Subversion r512 (copying to tag 'v20100709-1100')
+Creating Subversion r513 (commit)
+Creating Subversion r514 (commit)
+Creating Subversion r515 (copying to tag 'v20100712-1130')
+Creating Subversion r516 (commit)
+Creating Subversion r517 (commit)
+Creating Subversion r518 (copying to tag 'v20100712-1900')
+Creating Subversion r519 (commit)
+Creating Subversion r520 (copying to tag 'v20100713-1530')
+Creating Subversion r521 (commit)
+Creating Subversion r522 (commit)
+Creating Subversion r523 (commit)
+Creating Subversion r524 (commit)
+Creating Subversion r525 (copying to tag 'v20100714-1430')
+Creating Subversion r526 (commit)
+Creating Subversion r527 (commit)
+Creating Subversion r528 (copying to tag 'v20100714-1900')
+Creating Subversion r529 (commit)
+Creating Subversion r530 (commit)
+Creating Subversion r531 (commit)
+Creating Subversion r532 (commit)
+Creating Subversion r533 (commit)
+Creating Subversion r534 (commit)
+Creating Subversion r535 (commit)
+Creating Subversion r536 (commit)
+Creating Subversion r537 (copying to tag 'v20100715-1830')
+Creating Subversion r538 (copying to tag 'v20100716-0730')
+Creating Subversion r539 (commit)
+Creating Subversion r540 (commit)
+Creating Subversion r541 (copying to tag 'v20100716-1200')
+Creating Subversion r542 (commit)
+Creating Subversion r543 (commit)
+Creating Subversion r544 (commit)
+Creating Subversion r545 (copying to tag 'v20100716-1530')
+Creating Subversion r546 (commit)
+Creating Subversion r547 (commit)
+Creating Subversion r548 (commit)
+Creating Subversion r549 (commit)
+Creating Subversion r550 (commit)
+Creating Subversion r551 (commit)
+Creating Subversion r552 (commit)
+Creating Subversion r553 (commit)
+Creating Subversion r554 (commit)
+Creating Subversion r555 (commit)
+Creating Subversion r556 (copying to tag 'v20100720-1930')
+Creating Subversion r557 (commit)
+Creating Subversion r558 (commit)
+Creating Subversion r559 (copying to tag 'v20100721-1130')
+Creating Subversion r560 (commit)
+Creating Subversion r561 (commit)
+Creating Subversion r562 (commit)
+Creating Subversion r563 (commit)
+Creating Subversion r564 (commit)
+Creating Subversion r565 (commit)
+Creating Subversion r566 (copying to tag 'v20100721-2000')
+Creating Subversion r567 (commit)
+Creating Subversion r568 (commit)
+Creating Subversion r569 (copying to tag 'v20100722-1200')
+Creating Subversion r570 (commit)
+Creating Subversion r571 (commit)
+Creating Subversion r572 (commit)
+Creating Subversion r573 (commit)
+Creating Subversion r574 (copying to tag 'v20100722-1830')
+Creating Subversion r575 (commit)
+Creating Subversion r576 (commit)
+Creating Subversion r577 (commit)
+Creating Subversion r578 (copying to tag 'v20100723-1200')
+Creating Subversion r579 (commit)
+Creating Subversion r580 (copying to tag 'v20100723-1830')
+Creating Subversion r581 (commit)
+Creating Subversion r582 (commit)
+Creating Subversion r583 (copying to tag 'v20100724-2030')
+Creating Subversion r584 (commit)
+Creating Subversion r585 (copying to tag 'R0_10')
+Creating Subversion r586 (copying to tag 'R4_0')
+Creating Subversion r587 (copying to tag 'v20100726-2030')
+Creating Subversion r588 (commit)
+Creating Subversion r589 (commit)
+Creating Subversion r590 (commit)
+Creating Subversion r591 (commit)
+Creating Subversion r592 (copying to tag 'v20100730-0820')
+Creating Subversion r593 (commit)
+Creating Subversion r594 (copying to tag 'v20100730-0930')
+Creating Subversion r595 (commit)
+Creating Subversion r596 (commit)
+Creating Subversion r597 (commit)
+Creating Subversion r598 (commit)
+Creating Subversion r599 (copying to tag 'v20100805-1300')
+Creating Subversion r600 (commit)
+Creating Subversion r601 (commit)
+Creating Subversion r602 (commit)
+Creating Subversion r603 (commit)
+Creating Subversion r604 (commit)
+Creating Subversion r605 (commit)
+Creating Subversion r606 (commit)
+Creating Subversion r607 (commit)
+Creating Subversion r608 (commit)
+Creating Subversion r609 (commit)
+Creating Subversion r610 (commit)
+Creating Subversion r611 (copying to tag 'v20100816-1230')
+Creating Subversion r612 (commit)
+Creating Subversion r613 (commit)
+Creating Subversion r614 (commit)
+Creating Subversion r615 (commit)
+Creating Subversion r616 (copying to tag 'v20100819-1800')
+Creating Subversion r617 (commit)
+Creating Subversion r618 (commit)
+Creating Subversion r619 (copying to tag 'v20100825-1300')
+Creating Subversion r620 (commit)
+Creating Subversion r621 (copying to tag 'v20100830-0930')
+Creating Subversion r622 (commit)
+Creating Subversion r623 (commit)
+Creating Subversion r624 (copying to tag 'v20100909-1100')
+Creating Subversion r625 (commit)
+Creating Subversion r626 (commit)
+Creating Subversion r627 (copying to tag 'v20100914-0830')
+Creating Subversion r628 (commit)
+Creating Subversion r629 (commit)
+Creating Subversion r630 (commit)
+Creating Subversion r631 (commit)
+Creating Subversion r632 (commit)
+Creating Subversion r633 (copying to tag 'v20100915-1500')
+Creating Subversion r634 (commit)
+Creating Subversion r635 (commit)
+Creating Subversion r636 (commit)
+Creating Subversion r637 (commit)
+Creating Subversion r638 (commit)
+Creating Subversion r639 (commit)
+Creating Subversion r640 (commit)
+Creating Subversion r641 (commit)
+Creating Subversion r642 (commit)
+Creating Subversion r643 (commit)
+Creating Subversion r644 (copying to tag 'v20100923-1030')
+Creating Subversion r645 (commit)
+Creating Subversion r646 (commit)
+Creating Subversion r647 (copying to tag 'v20100924-1330')
+Creating Subversion r648 (commit)
+Creating Subversion r649 (commit)
+Creating Subversion r650 (commit)
+Creating Subversion r651 (commit)
+Creating Subversion r652 (commit)
+Creating Subversion r653 (commit)
+Creating Subversion r654 (commit)
+Creating Subversion r655 (copying to tag 'v20100930-1600')
+Creating Subversion r656 (commit)
+Creating Subversion r657 (copying to tag 'v20101006-1500')
+Creating Subversion r658 (commit)
+Creating Subversion r659 (copying to tag 'v20101007-1500')
+Creating Subversion r660 (commit)
+Creating Subversion r661 (commit)
+Creating Subversion r662 (commit)
+Creating Subversion r663 (commit)
+Creating Subversion r664 (copying to tag 'bug_325392_revert')
+Creating Subversion r665 (commit)
+Creating Subversion r666 (commit)
+Creating Subversion r667 (copying to tag 'v20101014-1600')
+Creating Subversion r668 (commit)
+Creating Subversion r669 (commit)
+Creating Subversion r670 (commit)
+Creating Subversion r671 (copying to tag 'v20101021-1500')
+Creating Subversion r672 (commit)
+Creating Subversion r673 (commit)
+Creating Subversion r674 (copying to tag 'v20101025-1500')
+Creating Subversion r675 (commit)
+Creating Subversion r676 (commit)
+Creating Subversion r677 (copying to tag 'v20101026-2245')
+Creating Subversion r678 (commit)
+Creating Subversion r679 (commit)
+Creating Subversion r680 (commit)
+Creating Subversion r681 (commit)
+Creating Subversion r682 (copying to tag 'v20101027-1530')
+Creating Subversion r683 (commit)
+Creating Subversion r684 (copying to tag 'v20101027-2200')
+Creating Subversion r685 (commit)
+Creating Subversion r686 (copying to tag 'v20101028-1000')
+Creating Subversion r687 (commit)
+Creating Subversion r688 (commit)
+Creating Subversion r689 (commit)
+Creating Subversion r690 (commit)
+Creating Subversion r691 (commit)
+Creating Subversion r692 (commit)
+Creating Subversion r693 (commit)
+Creating Subversion r694 (commit)
+Creating Subversion r695 (commit)
+Creating Subversion r696 (commit)
+Creating Subversion r697 (commit)
+Creating Subversion r698 (commit)
+Creating Subversion r699 (copying to tag 'v20101104-2130')
+Creating Subversion r700 (commit)
+Creating Subversion r701 (commit)
+Creating Subversion r702 (commit)
+Creating Subversion r703 (commit)
+Creating Subversion r704 (commit)
+Creating Subversion r705 (copying to tag 'v20101109-1330')
+Creating Subversion r706 (commit)
+Creating Subversion r707 (copying to tag 'v20101111-1930')
+Creating Subversion r708 (commit)
+Creating Subversion r709 (commit)
+Creating Subversion r710 (commit)
+Creating Subversion r711 (commit)
+Creating Subversion r712 (commit)
+Creating Subversion r713 (commit)
+Creating Subversion r714 (commit)
+Creating Subversion r715 (commit)
+Creating Subversion r716 (commit)
+Creating Subversion r717 (commit)
+Creating Subversion r718 (copying to tag 'v20101118-1530')
+Creating Subversion r719 (commit)
+Creating Subversion r720 (commit)
+Creating Subversion r721 (commit)
+Creating Subversion r722 (commit)
+Creating Subversion r723 (commit)
+Creating Subversion r724 (copying to tag 'v20101119-1500')
+Creating Subversion r725 (commit)
+Creating Subversion r726 (copying to tag 'v20101119-1700')
+Creating Subversion r727 (commit)
+Creating Subversion r728 (commit)
+Creating Subversion r729 (commit)
+Creating Subversion r730 (commit)
+Creating Subversion r731 (commit)
+Creating Subversion r732 (commit)
+Creating Subversion r733 (commit)
+Creating Subversion r734 (commit)
+Creating Subversion r735 (commit)
+Creating Subversion r736 (commit)
+Creating Subversion r737 (commit)
+Creating Subversion r738 (commit)
+Creating Subversion r739 (commit)
+Creating Subversion r740 (commit)
+Creating Subversion r741 (commit)
+Creating Subversion r742 (commit)
+Creating Subversion r743 (commit)
+Creating Subversion r744 (commit)
+Creating Subversion r745 (commit)
+Creating Subversion r746 (commit)
+Creating Subversion r747 (commit)
+Creating Subversion r748 (copying to tag 'v20101125-1630')
+Creating Subversion r749 (commit)
+Creating Subversion r750 (commit)
+Creating Subversion r751 (commit)
+Creating Subversion r752 (commit)
+Creating Subversion r753 (commit)
+Creating Subversion r754 (commit)
+Creating Subversion r755 (commit)
+Creating Subversion r756 (commit)
+Creating Subversion r757 (commit)
+Creating Subversion r758 (commit)
+Creating Subversion r759 (commit)
+Creating Subversion r760 (commit)
+Creating Subversion r761 (commit)
+Creating Subversion r762 (copying to tag 'v20101201-1400')
+Creating Subversion r763 (commit)
+Creating Subversion r764 (commit)
+Creating Subversion r765 (copying to tag 'v20101202-1530')
+Creating Subversion r766 (commit)
+Creating Subversion r767 (commit)
+Creating Subversion r768 (commit)
+Creating Subversion r769 (copying to tag 'v20101204-1745')
+Creating Subversion r770 (commit)
+Creating Subversion r771 (commit)
+Creating Subversion r772 (copying to tag 'v20101206-1400')
+Creating Subversion r773 (copying to tag 'v20101206-1430')
+Creating Subversion r774 (commit)
+Creating Subversion r775 (commit)
+Creating Subversion r776 (commit)
+Creating Subversion r777 (copying to tag 'v20101208-1430')
+Creating Subversion r778 (commit)
+Creating Subversion r779 (commit)
+Creating Subversion r780 (commit)
+Creating Subversion r781 (commit)
+Creating Subversion r782 (commit)
+Creating Subversion r783 (commit)
+Creating Subversion r784 (commit)
+Creating Subversion r785 (commit)
+Creating Subversion r786 (commit)
+Creating Subversion r787 (commit)
+Creating Subversion r788 (commit)
+Creating Subversion r789 (commit)
+Creating Subversion r790 (commit)
+Creating Subversion r791 (commit)
+Creating Subversion r792 (commit)
+Creating Subversion r793 (commit)
+Creating Subversion r794 (commit)
+Creating Subversion r795 (commit)
+Creating Subversion r796 (commit)
+Creating Subversion r797 (commit)
+Creating Subversion r798 (commit)
+Creating Subversion r799 (copying to tag 'v20110113-1500')
+Creating Subversion r800 (commit)
+Creating Subversion r801 (commit)
+Creating Subversion r802 (commit)
+Creating Subversion r803 (copying to tag 'v20110121-1000')
+Creating Subversion r804 (commit)
+Creating Subversion r805 (copying to tag 'v20110124-1530')
+Creating Subversion r806 (commit)
+Creating Subversion r807 (commit)
+Creating Subversion r808 (commit)
+Creating Subversion r809 (commit)
+Creating Subversion r810 (copying to tag 'v20110203-2200')
+Creating Subversion r811 (commit)
+Creating Subversion r812 (commit)
+Creating Subversion r813 (commit)
+Creating Subversion r814 (commit)
+Creating Subversion r815 (commit)
+Creating Subversion r816 (copying to tag 'v20110210-1530')
+Creating Subversion r817 (commit)
+Creating Subversion r818 (commit)
+Creating Subversion r819 (commit)
+Creating Subversion r820 (commit)
+Creating Subversion r821 (commit)
+Creating Subversion r822 (commit)
+Creating Subversion r823 (commit)
+Creating Subversion r824 (commit)
+Creating Subversion r825 (commit)
+Creating Subversion r826 (commit)
+Creating Subversion r827 (commit)
+Creating Subversion r828 (commit)
+Creating Subversion r829 (copying to tag 'v20110217-1730')
+Creating Subversion r830 (commit)
+Creating Subversion r831 (commit)
+Creating Subversion r832 (copying to tag 'v20110224-1630')
+Creating Subversion r833 (commit)
+Creating Subversion r834 (commit)
+Creating Subversion r835 (commit)
+Creating Subversion r836 (commit)
+Creating Subversion r837 (commit)
+Creating Subversion r838 (commit)
+Creating Subversion r839 (copying to tag 'v20110303-1630')
+Creating Subversion r840 (commit)
+Creating Subversion r841 (commit)
+Creating Subversion r842 (commit)
+Creating Subversion r843 (commit)
+Creating Subversion r844 (commit)
+Creating Subversion r845 (copying to tag 'v20110304-1630')
+Creating Subversion r846 (commit)
+Creating Subversion r847 (copying to tag 'v20110306-2030')
+Creating Subversion r848 (commit)
+Creating Subversion r849 (copying to tag 'v20110307-0900')
+Creating Subversion r850 (commit)
+Creating Subversion r851 (copying to tag 'v20110307-2000')
+Creating Subversion r852 (commit)
+Creating Subversion r853 (copying to tag 'v20110308-1630')
+Creating Subversion r854 (commit)
+Creating Subversion r855 (copying to tag 'v20110309-1400')
+Creating Subversion r856 (commit)
+Creating Subversion r857 (commit)
+Creating Subversion r858 (copying to tag 'v20110311-1500')
+Creating Subversion r859 (commit)
+Creating Subversion r860 (copying to tag 'v20110316-1030')
+Creating Subversion r861 (commit)
+Creating Subversion r862 (commit)
+Creating Subversion r863 (commit)
+Creating Subversion r864 (copying to tag 'v20110317-2000')
+Creating Subversion r865 (commit)
+Creating Subversion r866 (commit)
+Creating Subversion r867 (commit)
+Creating Subversion r868 (copying to tag 'v20110331-2030')
+Creating Subversion r869 (commit)
+Creating Subversion r870 (copying to tag 'v20110407-2030')
+Creating Subversion r871 (commit)
+Creating Subversion r872 (commit)
+Creating Subversion r873 (commit)
+Creating Subversion r874 (copying to tag 'v20110414-2200')
+Creating Subversion r875 (commit)
+Creating Subversion r876 (copying to tag 'v20110419-1630')
+Creating Subversion r877 (commit)
+Creating Subversion r878 (commit)
+Creating Subversion r879 (copying to tag 'v20110420-1900')
+Creating Subversion r880 (commit)
+Creating Subversion r881 (copying to tag 'v20110422-1900')
+Creating Subversion r882 (commit)
+Creating Subversion r883 (copying to tag 'v20110425-1930')
+Creating Subversion r884 (commit)
+Creating Subversion r885 (copying to tag 'v20110427-1500')
+Creating Subversion r886 (commit)
+Creating Subversion r887 (commit)
+Creating Subversion r888 (commit)
+Creating Subversion r889 (copying to tag 'v20110428-1500')
+Creating Subversion r890 (commit)
+Creating Subversion r891 (copying to tag 'v20110429-1500')
+Creating Subversion r892 (commit)
+Creating Subversion r893 (commit)
+Creating Subversion r894 (commit)
+Creating Subversion r895 (commit)
+Creating Subversion r896 (commit)
+Creating Subversion r897 (copying to tag 'v20110504-1730')
+Creating Subversion r898 (commit)
+Creating Subversion r899 (copying to tag 'v20110505-0830')
+Creating Subversion r900 (commit)
+Creating Subversion r901 (commit)
+Creating Subversion r902 (commit)
+Creating Subversion r903 (copying to tag 'v20110506-1500')
+Creating Subversion r904 (commit)
+Creating Subversion r905 (copying to tag 'v20110509-1630')
+Creating Subversion r906 (commit)
+Creating Subversion r907 (copying to tag 'v20110510-1500')
+Creating Subversion r908 (commit)
+Creating Subversion r909 (copying to tag 'v20110511-1600')
+Creating Subversion r910 (commit)
+Creating Subversion r911 (commit)
+Creating Subversion r912 (commit)
+Creating Subversion r913 (copying to tag 'v20110513-1600')
+Creating Subversion r914 (commit)
+Creating Subversion r915 (commit)
+Creating Subversion r916 (commit)
+Creating Subversion r917 (commit)
+Creating Subversion r918 (copying to tag 'v20110516-1900')
+Creating Subversion r919 (commit)
+Creating Subversion r920 (commit)
+Creating Subversion r921 (commit)
+Creating Subversion r922 (commit)
+Creating Subversion r923 (copying to tag 'v20110517-2030')
+Creating Subversion r924 (commit)
+Creating Subversion r925 (copying to tag 'v20110518-2130')
+Creating Subversion r926 (commit)
+Creating Subversion r927 (commit)
+Creating Subversion r928 (copying to tag 'v20110519-1930')
+Creating Subversion r929 (commit)
+Creating Subversion r930 (commit)
+Creating Subversion r931 (commit)
+Creating Subversion r932 (commit)
+Creating Subversion r933 (copying to tag 'v20110524-1630')
+Creating Subversion r934 (commit)
+Creating Subversion r935 (commit)
+Creating Subversion r936 (commit)
+Creating Subversion r937 (commit)
+Creating Subversion r938 (commit)
+Creating Subversion r939 (copying to tag 'v20110525-1900')
+Creating Subversion r940 (commit)
+Creating Subversion r941 (copying to tag 'v20110526-1100')
+Creating Subversion r942 (commit)
+Creating Subversion r943 (commit)
+Creating Subversion r944 (commit)
+Creating Subversion r945 (commit)
+Creating Subversion r946 (copying to tag 'v20110526-1430')
+Creating Subversion r947 (commit)
+Creating Subversion r948 (copying to tag 'v20110526-2000')
+Creating Subversion r949 (commit)
+Creating Subversion r950 (commit)
+Creating Subversion r951 (commit)
+Creating Subversion r952 (commit)
+Creating Subversion r953 (commit)
+Creating Subversion r954 (commit)
+Creating Subversion r955 (copying to tag 'v20110527-1530')
+Creating Subversion r956 (commit)
+Creating Subversion r957 (copying to tag 'v20110527-1900')
+Creating Subversion r958 (commit)
+Creating Subversion r959 (copying to tag 'v20110527-2100')
+Creating Subversion r960 (commit)
+Creating Subversion r961 (copying to tag 'v20110531-1900')
+Creating Subversion r962 (commit)
+Creating Subversion r963 (commit)
+Creating Subversion r964 (copying to tag 'v20110601-1800')
+Creating Subversion r965 (commit)
+Creating Subversion r966 (commit)
+Creating Subversion r967 (copying to tag 'v20110609-1700')
+Creating Subversion r968 (commit)
+Creating Subversion r969 (copying to tag 'v20110610-2030')
+Creating Subversion r970 (commit)
+Creating Subversion r971 (commit)
+Creating Subversion r972 (copying to tag 'v20110613-2030')
+Creating Subversion r973 (commit)
+Creating Subversion r974 (copying to tag 'v20110614-1030')
+Creating Subversion r975 (commit)
+Creating Subversion r976 (copying to tag 'R0_11')
+Creating Subversion r977 (copying to tag 'R4_1')
+Creating Subversion r978 (copying to tag 'v20110614-1530')
+Creating Subversion r979 (copying to branch 'R4_1_maintenance')
+Creating Subversion r980 (commit)
+Creating Subversion r981 (commit)
+Creating Subversion r982 (commit)
+Creating Subversion r983 (commit)
+Creating Subversion r984 (commit)
+Creating Subversion r985 (commit)
+Creating Subversion r986 (commit)
+Creating Subversion r987 (commit)
+Creating Subversion r988 (commit)
+Creating Subversion r989 (commit)
+Creating Subversion r990 (commit)
+Creating Subversion r991 (commit)
+Creating Subversion r992 (commit)
+Creating Subversion r993 (copying to tag 'v20110629-1700')
+Creating Subversion r994 (commit)
+Creating Subversion r995 (commit)
+Creating Subversion r996 (copying to tag 'v20110705-1300')
+Done
+Time for pass13 (CreateRevsPass): 5.927 seconds.
+----- pass 14 (SortSymbolOpeningsClosingsPass) -----
+Sorting symbolic name source revisions...
+Done
+Time for pass14 (SortSymbolOpeningsClosingsPass): 2.016 seconds.
+----- pass 15 (IndexSymbolsPass) -----
+Determining offsets for all symbolic names...
+Done.
+Time for pass15 (IndexSymbolsPass): 0.397 seconds.
+----- pass 16 (OutputPass) -----
+Time for pass16 (OutputPass): 7.555 seconds.
+
+cvs2svn Statistics:
+------------------
+Total CVS Files:              1351
+Total CVS Revisions:          2984
+Total CVS Branches:           2602
+Total CVS Tags:             218548
+Total Unique Tags:             171
+Total Unique Branches:           2
+CVS Repos Size in KB:        14476
+Total SVN Commits:             996
+First Revision Date:    Thu Dec 17 15:40:06 2009
+Last Revision Date:     Tue Jul  5 09:43:12 2011
+------------------
+Timings (seconds):
+------------------
+16.50   pass1    CollectRevsPass
+ 0.13   pass2    CleanMetadataPass
+ 0.07   pass3    CollateSymbolsPass
+12.41   pass4    FilterSymbolsPass
+ 0.07   pass5    SortRevisionsPass
+ 1.02   pass6    SortSymbolsPass
+ 9.71   pass7    InitializeChangesetsPass
+ 1.02   pass8    BreakRevisionChangesetCyclesPass
+ 1.02   pass9    RevisionTopologicalSortPass
+ 5.70   pass10   BreakSymbolChangesetCyclesPass
+ 6.58   pass11   BreakAllChangesetCyclesPass
+ 6.41   pass12   TopologicalSortPass
+ 5.93   pass13   CreateRevsPass
+ 2.02   pass14   SortSymbolOpeningsClosingsPass
+ 0.40   pass15   IndexSymbolsPass
+ 7.56   pass16   OutputPass
+76.55   total
diff --git a/eclipse.platform.ui.compat/pass3/modules_compat.sh b/eclipse.platform.ui.compat/pass3/modules_compat.sh
new file mode 100644
index 0000000..657229e
--- /dev/null
+++ b/eclipse.platform.ui.compat/pass3/modules_compat.sh
@@ -0,0 +1,6 @@
+
+MODULES='
+e4/org.eclipse.e4.compatibility/bundles/org.eclipse.ui.workbench
+
+'
+
diff --git a/eclipse.platform.ui.compat/pass3/mv_tags.sh b/eclipse.platform.ui.compat/pass3/mv_tags.sh
new file mode 100644
index 0000000..2eb3922
--- /dev/null
+++ b/eclipse.platform.ui.compat/pass3/mv_tags.sh
@@ -0,0 +1 @@
+git tag -f I20100406-2156 5023a85d42e018cb338cf2273123a6545c005e1d^1
diff --git a/eclipse.platform.ui.compat/pass3/symbol-info.txt b/eclipse.platform.ui.compat/pass3/symbol-info.txt
new file mode 100644
index 0000000..ea83ec7
--- /dev/null
+++ b/eclipse.platform.ui.compat/pass3/symbol-info.txt
@@ -0,0 +1,1038 @@
+# Columns: project_id symbol_name conversion symbol_path preferred_parent_name
+0     .trunk.                        trunk      . .
+      # 'Trunk' is a tag in 0 files, a branch in 1351 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 1351 files
+0     v20110705-1300                 tag        . .trunk.
+      # 'v20110705-1300' is a tag in 1311 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1311
+      #     R4_1_maintenance : 1303
+      #     model_tweaking_round3 : 1151
+0     v20110629-1700                 tag        . .trunk.
+      # 'v20110629-1700' is a tag in 1311 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1311
+      #     R4_1_maintenance : 1305
+      #     model_tweaking_round3 : 1151
+0     R4_1_maintenance               branch     . .trunk.
+      # 'R4_1_maintenance' is a tag in 0 files, a branch in 1311 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 6 files
+      # Possible parents:
+      #     .trunk. : 1311
+      #     model_tweaking_round3 : 1151
+0     R0_11                          tag        . .trunk.
+      # 'R0_11' is a tag in 1311 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1311
+      #     R4_1_maintenance : 1311
+      #     model_tweaking_round3 : 1151
+0     R4_1                           tag        . .trunk.
+      # 'R4_1' is a tag in 1311 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1311
+      #     R4_1_maintenance : 1311
+      #     model_tweaking_round3 : 1151
+0     v20110614-1530                 tag        . .trunk.
+      # 'v20110614-1530' is a tag in 1311 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1311
+      #     R4_1_maintenance : 1311
+      #     model_tweaking_round3 : 1151
+0     v20110614-1030                 tag        . .trunk.
+      # 'v20110614-1030' is a tag in 1311 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1311
+      #     R4_1_maintenance : 1310
+      #     model_tweaking_round3 : 1151
+0     v20110613-2030                 tag        . .trunk.
+      # 'v20110613-2030' is a tag in 1311 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1311
+      #     R4_1_maintenance : 1309
+      #     model_tweaking_round3 : 1151
+0     v20110610-2030                 tag        . .trunk.
+      # 'v20110610-2030' is a tag in 1311 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1311
+      #     R4_1_maintenance : 1307
+      #     model_tweaking_round3 : 1151
+0     v20110609-1700                 tag        . .trunk.
+      # 'v20110609-1700' is a tag in 1311 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1311
+      #     R4_1_maintenance : 1306
+      #     model_tweaking_round3 : 1151
+0     v20110601-1800                 tag        . .trunk.
+      # 'v20110601-1800' is a tag in 1310 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1310
+      #     R4_1_maintenance : 1303
+      #     model_tweaking_round3 : 1151
+0     v20110531-1900                 tag        . .trunk.
+      # 'v20110531-1900' is a tag in 1310 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1310
+      #     R4_1_maintenance : 1303
+      #     model_tweaking_round3 : 1151
+0     v20110527-2100                 tag        . .trunk.
+      # 'v20110527-2100' is a tag in 1310 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1310
+      #     R4_1_maintenance : 1302
+      #     model_tweaking_round3 : 1151
+0     v20110527-1900                 tag        . .trunk.
+      # 'v20110527-1900' is a tag in 1310 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1310
+      #     R4_1_maintenance : 1301
+      #     model_tweaking_round3 : 1151
+0     v20110527-1530                 tag        . .trunk.
+      # 'v20110527-1530' is a tag in 1310 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1310
+      #     R4_1_maintenance : 1300
+      #     model_tweaking_round3 : 1151
+0     v20110526-2000                 tag        . .trunk.
+      # 'v20110526-2000' is a tag in 1310 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1310
+      #     R4_1_maintenance : 1295
+      #     model_tweaking_round3 : 1151
+0     v20110526-1430                 tag        . .trunk.
+      # 'v20110526-1430' is a tag in 1310 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1310
+      #     R4_1_maintenance : 1295
+      #     model_tweaking_round3 : 1151
+0     v20110526-1100                 tag        . .trunk.
+      # 'v20110526-1100' is a tag in 1308 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1308
+      #     R4_1_maintenance : 1286
+      #     model_tweaking_round3 : 1156
+0     v20110525-1900                 tag        . .trunk.
+      # 'v20110525-1900' is a tag in 1308 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1308
+      #     R4_1_maintenance : 1286
+      #     model_tweaking_round3 : 1156
+0     v20110524-1630                 tag        . .trunk.
+      # 'v20110524-1630' is a tag in 1308 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1308
+      #     R4_1_maintenance : 1285
+      #     model_tweaking_round3 : 1156
+0     v20110519-1930                 tag        . .trunk.
+      # 'v20110519-1930' is a tag in 1307 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1307
+      #     R4_1_maintenance : 1281
+      #     model_tweaking_round3 : 1156
+0     v20110518-2130                 tag        . .trunk.
+      # 'v20110518-2130' is a tag in 1307 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1307
+      #     R4_1_maintenance : 1280
+      #     model_tweaking_round3 : 1158
+0     v20110517-2030                 tag        . .trunk.
+      # 'v20110517-2030' is a tag in 1305 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1305
+      #     R4_1_maintenance : 1277
+      #     model_tweaking_round3 : 1159
+0     v20110516-1900                 tag        . .trunk.
+      # 'v20110516-1900' is a tag in 1305 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1305
+      #     R4_1_maintenance : 1276
+      #     model_tweaking_round3 : 1159
+0     v20110513-1600                 tag        . .trunk.
+      # 'v20110513-1600' is a tag in 1305 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1305
+      #     R4_1_maintenance : 1274
+      #     model_tweaking_round3 : 1160
+0     v20110511-1600                 tag        . .trunk.
+      # 'v20110511-1600' is a tag in 1305 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1305
+      #     R4_1_maintenance : 1273
+      #     model_tweaking_round3 : 1160
+0     v20110510-1500                 tag        . .trunk.
+      # 'v20110510-1500' is a tag in 1305 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1305
+      #     R4_1_maintenance : 1272
+      #     model_tweaking_round3 : 1160
+0     v20110509-1630                 tag        . .trunk.
+      # 'v20110509-1630' is a tag in 1305 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1305
+      #     R4_1_maintenance : 1272
+      #     model_tweaking_round3 : 1160
+0     v20110506-1500                 tag        . .trunk.
+      # 'v20110506-1500' is a tag in 1305 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1305
+      #     R4_1_maintenance : 1272
+      #     model_tweaking_round3 : 1160
+0     v20110505-0830                 tag        . .trunk.
+      # 'v20110505-0830' is a tag in 1304 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1304
+      #     R4_1_maintenance : 1271
+      #     model_tweaking_round3 : 1160
+0     v20110504-1730                 tag        . .trunk.
+      # 'v20110504-1730' is a tag in 1304 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1304
+      #     R4_1_maintenance : 1270
+      #     model_tweaking_round3 : 1160
+0     v20110429-1500                 tag        . .trunk.
+      # 'v20110429-1500' is a tag in 1303 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1303
+      #     R4_1_maintenance : 1268
+      #     model_tweaking_round3 : 1160
+0     v20110428-1500                 tag        . .trunk.
+      # 'v20110428-1500' is a tag in 1303 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1303
+      #     R4_1_maintenance : 1268
+      #     model_tweaking_round3 : 1160
+0     v20110427-1500                 tag        . .trunk.
+      # 'v20110427-1500' is a tag in 1303 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1303
+      #     R4_1_maintenance : 1264
+      #     model_tweaking_round3 : 1160
+0     v20110425-1930                 tag        . .trunk.
+      # 'v20110425-1930' is a tag in 1303 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1303
+      #     R4_1_maintenance : 1264
+      #     model_tweaking_round3 : 1160
+0     v20110422-1900                 tag        . .trunk.
+      # 'v20110422-1900' is a tag in 1303 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1303
+      #     R4_1_maintenance : 1263
+      #     model_tweaking_round3 : 1161
+0     v20110420-1900                 tag        . .trunk.
+      # 'v20110420-1900' is a tag in 1303 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1303
+      #     R4_1_maintenance : 1263
+      #     model_tweaking_round3 : 1161
+0     v20110419-1630                 tag        . .trunk.
+      # 'v20110419-1630' is a tag in 1303 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1303
+      #     R4_1_maintenance : 1263
+      #     model_tweaking_round3 : 1161
+0     v20110414-2200                 tag        . .trunk.
+      # 'v20110414-2200' is a tag in 1301 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1301
+      #     R4_1_maintenance : 1261
+      #     model_tweaking_round3 : 1161
+0     v20110407-2030                 tag        . .trunk.
+      # 'v20110407-2030' is a tag in 1300 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1300
+      #     R4_1_maintenance : 1258
+      #     model_tweaking_round3 : 1163
+0     v20110331-2030                 tag        . .trunk.
+      # 'v20110331-2030' is a tag in 1300 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1300
+      #     R4_1_maintenance : 1258
+      #     model_tweaking_round3 : 1163
+0     v20110317-2000                 tag        . .trunk.
+      # 'v20110317-2000' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1257
+      #     model_tweaking_round3 : 1163
+0     v20110316-1030                 tag        . .trunk.
+      # 'v20110316-1030' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1257
+      #     model_tweaking_round3 : 1163
+0     v20110311-1500                 tag        . .trunk.
+      # 'v20110311-1500' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1257
+      #     model_tweaking_round3 : 1163
+0     v20110309-1400                 tag        . .trunk.
+      # 'v20110309-1400' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1257
+      #     model_tweaking_round3 : 1163
+0     v20110308-1630                 tag        . .trunk.
+      # 'v20110308-1630' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1257
+      #     model_tweaking_round3 : 1163
+0     v20110307-2000                 tag        . .trunk.
+      # 'v20110307-2000' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1255
+      #     model_tweaking_round3 : 1165
+0     v20110307-0900                 tag        . .trunk.
+      # 'v20110307-0900' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1255
+      #     model_tweaking_round3 : 1165
+0     v20110306-2030                 tag        . .trunk.
+      # 'v20110306-2030' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1254
+      #     model_tweaking_round3 : 1165
+0     v20110304-1630                 tag        . .trunk.
+      # 'v20110304-1630' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1254
+      #     model_tweaking_round3 : 1165
+0     v20110303-1630                 tag        . .trunk.
+      # 'v20110303-1630' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1252
+      #     model_tweaking_round3 : 1166
+0     v20110224-1630                 tag        . .trunk.
+      # 'v20110224-1630' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1248
+      #     model_tweaking_round3 : 1167
+0     v20110217-1730                 tag        . .trunk.
+      # 'v20110217-1730' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1247
+      #     model_tweaking_round3 : 1168
+0     v20110210-1530                 tag        . .trunk.
+      # 'v20110210-1530' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1244
+      #     model_tweaking_round3 : 1169
+0     v20110203-2200                 tag        . .trunk.
+      # 'v20110203-2200' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1244
+      #     model_tweaking_round3 : 1169
+0     v20110124-1530                 tag        . .trunk.
+      # 'v20110124-1530' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1243
+      #     model_tweaking_round3 : 1169
+0     v20110121-1000                 tag        . .trunk.
+      # 'v20110121-1000' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1243
+      #     model_tweaking_round3 : 1169
+0     v20110113-1500                 tag        . .trunk.
+      # 'v20110113-1500' is a tag in 1299 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1299
+      #     R4_1_maintenance : 1241
+      #     model_tweaking_round3 : 1169
+0     v20101208-1430                 tag        . .trunk.
+      # 'v20101208-1430' is a tag in 1296 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1296
+      #     R4_1_maintenance : 1233
+      #     model_tweaking_round3 : 1173
+0     v20101206-1430                 tag        . .trunk.
+      # 'v20101206-1430' is a tag in 1296 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1296
+      #     R4_1_maintenance : 1233
+      #     model_tweaking_round3 : 1173
+0     v20101206-1400                 tag        . .trunk.
+      # 'v20101206-1400' is a tag in 1296 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1296
+      #     R4_1_maintenance : 1233
+      #     model_tweaking_round3 : 1173
+0     v20101204-1745                 tag        . .trunk.
+      # 'v20101204-1745' is a tag in 1296 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1296
+      #     R4_1_maintenance : 1232
+      #     model_tweaking_round3 : 1174
+0     v20101202-1530                 tag        . .trunk.
+      # 'v20101202-1530' is a tag in 1296 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1296
+      #     R4_1_maintenance : 1232
+      #     model_tweaking_round3 : 1174
+0     v20101201-1400                 tag        . .trunk.
+      # 'v20101201-1400' is a tag in 1296 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1296
+      #     R4_1_maintenance : 1232
+      #     model_tweaking_round3 : 1174
+0     v20101125-1630                 tag        . .trunk.
+      # 'v20101125-1630' is a tag in 1295 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1295
+      #     R4_1_maintenance : 1227
+      #     model_tweaking_round3 : 1179
+0     v20101119-1700                 tag        . .trunk.
+      # 'v20101119-1700' is a tag in 1294 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1294
+      #     R4_1_maintenance : 1225
+      #     model_tweaking_round3 : 1181
+0     v20101119-1500                 tag        . .trunk.
+      # 'v20101119-1500' is a tag in 1294 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1294
+      #     R4_1_maintenance : 1225
+      #     model_tweaking_round3 : 1181
+0     v20101118-1530                 tag        . .trunk.
+      # 'v20101118-1530' is a tag in 1294 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1294
+      #     R4_1_maintenance : 1225
+      #     model_tweaking_round3 : 1181
+0     v20101111-1930                 tag        . .trunk.
+      # 'v20101111-1930' is a tag in 1294 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1294
+      #     R4_1_maintenance : 1217
+      #     model_tweaking_round3 : 1184
+0     v20101109-1330                 tag        . .trunk.
+      # 'v20101109-1330' is a tag in 1294 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1294
+      #     R4_1_maintenance : 1217
+      #     model_tweaking_round3 : 1184
+0     v20101104-2130                 tag        . .trunk.
+      # 'v20101104-2130' is a tag in 1294 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1294
+      #     R4_1_maintenance : 1217
+      #     model_tweaking_round3 : 1184
+0     v20101028-1000                 tag        . .trunk.
+      # 'v20101028-1000' is a tag in 1294 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1294
+      #     R4_1_maintenance : 1216
+      #     model_tweaking_round3 : 1185
+0     v20101027-2200                 tag        . .trunk.
+      # 'v20101027-2200' is a tag in 1294 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1294
+      #     R4_1_maintenance : 1216
+      #     model_tweaking_round3 : 1185
+0     v20101027-1530                 tag        . .trunk.
+      # 'v20101027-1530' is a tag in 1294 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1294
+      #     R4_1_maintenance : 1215
+      #     model_tweaking_round3 : 1185
+0     v20101026-2245                 tag        . .trunk.
+      # 'v20101026-2245' is a tag in 1294 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1294
+      #     R4_1_maintenance : 1215
+      #     model_tweaking_round3 : 1185
+0     v20101025-1500                 tag        . .trunk.
+      # 'v20101025-1500' is a tag in 1294 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1294
+      #     R4_1_maintenance : 1211
+      #     model_tweaking_round3 : 1189
+0     v20101021-1500                 tag        . .trunk.
+      # 'v20101021-1500' is a tag in 1292 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1292
+      #     R4_1_maintenance : 1209
+      #     model_tweaking_round3 : 1189
+0     v20101014-1600                 tag        . .trunk.
+      # 'v20101014-1600' is a tag in 1292 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1292
+      #     R4_1_maintenance : 1208
+      #     model_tweaking_round3 : 1189
+0     bug_325392_revert              tag        . .trunk.
+      # 'bug_325392_revert' is a tag in 1292 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1292
+      #     R4_1_maintenance : 1208
+      #     model_tweaking_round3 : 1189
+0     v20101007-1500                 tag        . .trunk.
+      # 'v20101007-1500' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1208
+      #     model_tweaking_round3 : 1190
+0     v20101006-1500                 tag        . .trunk.
+      # 'v20101006-1500' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1208
+      #     model_tweaking_round3 : 1190
+0     v20100930-1600                 tag        . .trunk.
+      # 'v20100930-1600' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1207
+      #     model_tweaking_round3 : 1190
+0     v20100924-1330                 tag        . .trunk.
+      # 'v20100924-1330' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1206
+      #     model_tweaking_round3 : 1191
+0     v20100923-1030                 tag        . .trunk.
+      # 'v20100923-1030' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1206
+      #     model_tweaking_round3 : 1191
+0     v20100915-1500                 tag        . .trunk.
+      # 'v20100915-1500' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1204
+      #     model_tweaking_round3 : 1191
+0     v20100914-0830                 tag        . .trunk.
+      # 'v20100914-0830' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1203
+      #     model_tweaking_round3 : 1192
+0     v20100909-1100                 tag        . .trunk.
+      # 'v20100909-1100' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1203
+      #     model_tweaking_round3 : 1192
+0     v20100830-0930                 tag        . .trunk.
+      # 'v20100830-0930' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1203
+      #     model_tweaking_round3 : 1192
+0     v20100825-1300                 tag        . .trunk.
+      # 'v20100825-1300' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1202
+      #     model_tweaking_round3 : 1193
+0     v20100819-1800                 tag        . .trunk.
+      # 'v20100819-1800' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1202
+      #     model_tweaking_round3 : 1193
+0     v20100816-1230                 tag        . .trunk.
+      # 'v20100816-1230' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1202
+      #     model_tweaking_round3 : 1193
+0     v20100805-1300                 tag        . .trunk.
+      # 'v20100805-1300' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1202
+      #     model_tweaking_round3 : 1193
+0     v20100730-0930                 tag        . .trunk.
+      # 'v20100730-0930' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1202
+      #     model_tweaking_round3 : 1193
+0     v20100730-0820                 tag        . .trunk.
+      # 'v20100730-0820' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1202
+      #     model_tweaking_round3 : 1194
+0     R4_0                           tag        . .trunk.
+      # 'R4_0' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1202
+      #     model_tweaking_round3 : 1194
+0     R0_10                          tag        . .trunk.
+      # 'R0_10' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1202
+      #     model_tweaking_round3 : 1194
+0     v20100726-2030                 tag        . .trunk.
+      # 'v20100726-2030' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1202
+      #     model_tweaking_round3 : 1194
+0     v20100724-2030                 tag        . .trunk.
+      # 'v20100724-2030' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1202
+      #     model_tweaking_round3 : 1194
+0     v20100723-1830                 tag        . .trunk.
+      # 'v20100723-1830' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1201
+      #     model_tweaking_round3 : 1194
+0     v20100723-1200                 tag        . .trunk.
+      # 'v20100723-1200' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     R4_1_maintenance : 1201
+      #     model_tweaking_round3 : 1194
+0     v20100722-1830                 tag        . .trunk.
+      # 'v20100722-1830' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     model_tweaking_round3 : 1199
+      #     R4_1_maintenance : 1198
+0     v20100722-1200                 tag        . .trunk.
+      # 'v20100722-1200' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     model_tweaking_round3 : 1207
+      #     R4_1_maintenance : 1188
+0     v20100721-2000                 tag        . .trunk.
+      # 'v20100721-2000' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     model_tweaking_round3 : 1207
+      #     R4_1_maintenance : 1188
+0     v20100721-1130                 tag        . .trunk.
+      # 'v20100721-1130' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     model_tweaking_round3 : 1208
+      #     R4_1_maintenance : 1188
+0     v20100720-1930                 tag        . .trunk.
+      # 'v20100720-1930' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     model_tweaking_round3 : 1208
+      #     R4_1_maintenance : 1188
+0     v20100716-1530                 tag        . .trunk.
+      # 'v20100716-1530' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     model_tweaking_round3 : 1209
+      #     R4_1_maintenance : 1187
+0     v20100716-1200                 tag        . .trunk.
+      # 'v20100716-1200' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     model_tweaking_round3 : 1209
+      #     R4_1_maintenance : 1187
+0     v20100716-0730                 tag        . .trunk.
+      # 'v20100716-0730' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     model_tweaking_round3 : 1210
+      #     R4_1_maintenance : 1186
+0     v20100715-1830                 tag        . .trunk.
+      # 'v20100715-1830' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     model_tweaking_round3 : 1210
+      #     R4_1_maintenance : 1186
+0     v20100714-1900                 tag        . .trunk.
+      # 'v20100714-1900' is a tag in 1293 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1293
+      #     model_tweaking_round3 : 1216
+      #     R4_1_maintenance : 1180
+0     v20100714-1430                 tag        . .trunk.
+      # 'v20100714-1430' is a tag in 1292 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1292
+      #     model_tweaking_round3 : 1216
+      #     R4_1_maintenance : 1180
+0     v20100713-1530                 tag        . .trunk.
+      # 'v20100713-1530' is a tag in 1290 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1290
+      #     model_tweaking_round3 : 1216
+      #     R4_1_maintenance : 1178
+0     v20100712-1900                 tag        . .trunk.
+      # 'v20100712-1900' is a tag in 1290 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1290
+      #     model_tweaking_round3 : 1216
+      #     R4_1_maintenance : 1178
+0     v20100712-1130                 tag        . .trunk.
+      # 'v20100712-1130' is a tag in 1289 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1289
+      #     model_tweaking_round3 : 1217
+      #     R4_1_maintenance : 1177
+0     v20100709-1100                 tag        . .trunk.
+      # 'v20100709-1100' is a tag in 1289 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1289
+      #     model_tweaking_round3 : 1218
+      #     R4_1_maintenance : 1177
+0     v20100708-1830                 tag        . .trunk.
+      # 'v20100708-1830' is a tag in 1289 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1289
+      #     model_tweaking_round3 : 1218
+      #     R4_1_maintenance : 1177
+0     v20100707-1900                 tag        . .trunk.
+      # 'v20100707-1900' is a tag in 1288 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1288
+      #     model_tweaking_round3 : 1219
+      #     R4_1_maintenance : 1175
+0     v20100706-2000                 tag        . .trunk.
+      # 'v20100706-2000' is a tag in 1288 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1288
+      #     model_tweaking_round3 : 1221
+      #     R4_1_maintenance : 1173
+0     v20100705-2130                 tag        . .trunk.
+      # 'v20100705-2130' is a tag in 1288 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1288
+      #     model_tweaking_round3 : 1221
+      #     R4_1_maintenance : 1172
+0     v20100705-0830                 tag        . .trunk.
+      # 'v20100705-0830' is a tag in 1288 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1288
+      #     model_tweaking_round3 : 1221
+      #     R4_1_maintenance : 1172
+0     v20100630-1600                 tag        . .trunk.
+      # 'v20100630-1600' is a tag in 1288 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1288
+      #     model_tweaking_round3 : 1221
+      #     R4_1_maintenance : 1172
+0     v20100630-1000                 tag        . .trunk.
+      # 'v20100630-1000' is a tag in 1288 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1288
+      #     model_tweaking_round3 : 1221
+      #     R4_1_maintenance : 1172
+0     v20100629-2000                 tag        . .trunk.
+      # 'v20100629-2000' is a tag in 1288 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1288
+      #     model_tweaking_round3 : 1221
+      #     R4_1_maintenance : 1172
+0     v20100628-2030                 tag        . .trunk.
+      # 'v20100628-2030' is a tag in 1288 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1288
+      #     model_tweaking_round3 : 1222
+      #     R4_1_maintenance : 1170
+0     v20100627-1530                 tag        . .trunk.
+      # 'v20100627-1530' is a tag in 1287 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1287
+      #     model_tweaking_round3 : 1222
+      #     R4_1_maintenance : 1169
+0     v20100624-1800                 tag        . .trunk.
+      # 'v20100624-1800' is a tag in 1281 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1281
+      #     model_tweaking_round3 : 1228
+      #     R4_1_maintenance : 1166
+0     v20100624-1500                 tag        . .trunk.
+      # 'v20100624-1500' is a tag in 1281 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1281
+      #     model_tweaking_round3 : 1229
+      #     R4_1_maintenance : 1166
+0     v20100622-1500                 tag        . .trunk.
+      # 'v20100622-1500' is a tag in 1281 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1281
+      #     model_tweaking_round3 : 1230
+      #     R4_1_maintenance : 1164
+0     v20100618-1245                 tag        . .trunk.
+      # 'v20100618-1245' is a tag in 1281 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1281
+      #     model_tweaking_round3 : 1230
+      #     R4_1_maintenance : 1164
+0     v20100616-1900                 tag        . .trunk.
+      # 'v20100616-1900' is a tag in 1281 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1281
+      #     model_tweaking_round3 : 1230
+      #     R4_1_maintenance : 1164
+0     v20100615-2100                 tag        . .trunk.
+      # 'v20100615-2100' is a tag in 1282 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1282
+      #     model_tweaking_round3 : 1231
+      #     R4_1_maintenance : 1164
+0     v20100614-1830                 tag        . .trunk.
+      # 'v20100614-1830' is a tag in 1280 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1280
+      #     model_tweaking_round3 : 1231
+      #     R4_1_maintenance : 1164
+0     v20100613-1900                 tag        . .trunk.
+      # 'v20100613-1900' is a tag in 1280 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1280
+      #     model_tweaking_round3 : 1231
+      #     R4_1_maintenance : 1164
+0     v20100610-2030                 tag        . .trunk.
+      # 'v20100610-2030' is a tag in 1280 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1280
+      #     model_tweaking_round3 : 1231
+      #     R4_1_maintenance : 1164
+0     v20100609-2000                 tag        . .trunk.
+      # 'v20100609-2000' is a tag in 1280 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1280
+      #     model_tweaking_round3 : 1231
+      #     R4_1_maintenance : 1164
+0     v20100606-1500                 tag        . .trunk.
+      # 'v20100606-1500' is a tag in 1292 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1292
+      #     model_tweaking_round3 : 1252
+      #     R4_1_maintenance : 1160
+0     v20100603-1900                 tag        . .trunk.
+      # 'v20100603-1900' is a tag in 1292 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1292
+      #     model_tweaking_round3 : 1253
+      #     R4_1_maintenance : 1157
+0     v20100602-1900                 tag        . .trunk.
+      # 'v20100602-1900' is a tag in 1292 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1292
+      #     model_tweaking_round3 : 1253
+      #     R4_1_maintenance : 1157
+0     v20100531-1530                 tag        . .trunk.
+      # 'v20100531-1530' is a tag in 1292 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1292
+      #     model_tweaking_round3 : 1256
+      #     R4_1_maintenance : 1155
+0     v20100525-1530                 tag        . .trunk.
+      # 'v20100525-1530' is a tag in 1292 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1292
+      #     model_tweaking_round3 : 1256
+      #     R4_1_maintenance : 1155
+0     v20100521-1400                 tag        . .trunk.
+      # 'v20100521-1400' is a tag in 1292 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1292
+      #     model_tweaking_round3 : 1256
+      #     R4_1_maintenance : 1155
+0     v20100521-0900                 tag        . .trunk.
+      # 'v20100521-0900' is a tag in 1292 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1292
+      #     model_tweaking_round3 : 1257
+      #     R4_1_maintenance : 1155
+0     v20100520-1200                 tag        . .trunk.
+      # 'v20100520-1200' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1257
+      #     R4_1_maintenance : 1155
+0     v20100519-0930                 tag        . .trunk.
+      # 'v20100519-0930' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1257
+      #     R4_1_maintenance : 1155
+0     v20100513-1500                 tag        . .trunk.
+      # 'v20100513-1500' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1258
+      #     R4_1_maintenance : 1154
+0     v20100511-0800                 tag        . .trunk.
+      # 'v20100511-0800' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1261
+      #     R4_1_maintenance : 1153
+0     v20100510-1530                 tag        . .trunk.
+      # 'v20100510-1530' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1261
+      #     R4_1_maintenance : 1153
+0     v20100510-1130                 tag        . .trunk.
+      # 'v20100510-1130' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1261
+      #     R4_1_maintenance : 1153
+0     v20100506-1500                 tag        . .trunk.
+      # 'v20100506-1500' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1261
+      #     R4_1_maintenance : 1153
+0     v20100504-1500                 tag        . .trunk.
+      # 'v20100504-1500' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1264
+      #     R4_1_maintenance : 1152
+0     v20100503-1900                 tag        . .trunk.
+      # 'v20100503-1900' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1264
+      #     R4_1_maintenance : 1152
+0     v20100429-1530                 tag        . .trunk.
+      # 'v20100429-1530' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1264
+      #     R4_1_maintenance : 1152
+0     v20100428-1730                 tag        . .trunk.
+      # 'v20100428-1730' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1264
+      #     R4_1_maintenance : 1152
+0     v20100424-1900                 tag        . .trunk.
+      # 'v20100424-1900' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1266
+      #     R4_1_maintenance : 1152
+0     v20100422-1630                 tag        . .trunk.
+      # 'v20100422-1630' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1267
+      #     R4_1_maintenance : 1151
+0     v20100422-1230                 tag        . .trunk.
+      # 'v20100422-1230' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1267
+      #     R4_1_maintenance : 1151
+0     v20100421-1130                 tag        . .trunk.
+      # 'v20100421-1130' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1267
+      #     R4_1_maintenance : 1151
+0     v20100419-1030                 tag        . .trunk.
+      # 'v20100419-1030' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1267
+      #     R4_1_maintenance : 1151
+0     v20100417-2200                 tag        . .trunk.
+      # 'v20100417-2200' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1267
+      #     R4_1_maintenance : 1151
+0     v20100416-1111                 tag        . .trunk.
+      # 'v20100416-1111' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1291
+      #     R4_1_maintenance : 1151
+0     model_tweaking_round3          branch     . .trunk.
+      # 'model_tweaking_round3' is a tag in 0 files, a branch in 1291 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 23 files
+      # Possible parents:
+      #     .trunk. : 1291
+0     Root_model_tweaking_round3     tag        . .trunk.
+      # 'Root_model_tweaking_round3' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1291
+      #     R4_1_maintenance : 1151
+0     R1_0M5                         tag        . .trunk.
+      # 'R1_0M5' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1290
+      #     R4_1_maintenance : 1150
+0     v20100409-1554                 tag        . .trunk.
+      # 'v20100409-1554' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1290
+      #     R4_1_maintenance : 1150
+0     v20100409-1142                 tag        . .trunk.
+      # 'v20100409-1142' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1287
+      #     R4_1_maintenance : 1150
+0     v20100408-2247                 tag        . .trunk.
+      # 'v20100408-2247' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1284
+      #     R4_1_maintenance : 1150
+0     v20100407-1333                 tag        . .trunk.
+      # 'v20100407-1333' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1277
+      #     R4_1_maintenance : 1150
+0     I20100406-2227                 tag        . .trunk.
+      # 'I20100406-2227' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1275
+      #     R4_1_maintenance : 1150
+0     I20100406-0910                 tag        . .trunk.
+      # 'I20100406-0910' is a tag in 1291 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1291
+      #     model_tweaking_round3 : 1258
+      #     R4_1_maintenance : 1149
+0     I20100406-2156                 tag        . .trunk.
+      # 'I20100406-2156' is a tag in 1 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 1
+      #     R4_1_maintenance : 1
+      #     model_tweaking_round3 : 1
+0     pre_compat20100302             tag        . .trunk.
+      # 'pre_compat20100302' is a tag in 796 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 796
+      #     model_tweaking_round3 : 628
+      #     R4_1_maintenance : 608
+0     R1_0M4                         tag        . .trunk.
+      # 'R1_0M4' is a tag in 796 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 796
+      #     model_tweaking_round3 : 628
+      #     R4_1_maintenance : 608
+0     R1_0M3                         tag        . .trunk.
+      # 'R1_0M3' is a tag in 589 files, a branch in 0 files, a trivial import in 0 files, a pure import in 0 files, and has commits in 0 files
+      # Possible parents:
+      #     .trunk. : 589
+      #     model_tweaking_round3 : 485
+      #     R4_1_maintenance : 469
diff --git a/eclipse.platform.ui.compat/pass3/tag_cherrypicks.txt b/eclipse.platform.ui.compat/pass3/tag_cherrypicks.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/eclipse.platform.ui.compat/pass3/tag_cherrypicks.txt
diff --git a/eclipse.platform.ui.compat/pass3/tag_report.sh b/eclipse.platform.ui.compat/pass3/tag_report.sh
new file mode 100644
index 0000000..1fe9ce7
--- /dev/null
+++ b/eclipse.platform.ui.compat/pass3/tag_report.sh
@@ -0,0 +1,171 @@
+Tag clean: I20100406-0910 commit: db63737712400dd39b7c490bf4a6a616d2b57516
+git tag -f I20100406-2156 5023a85d42e018cb338cf2273123a6545c005e1d^1
+Tag clean: I20100406-2227 commit: 7881542f7198e7cc1817434c8824c7e0276f4693
+Tag clean: R0_10 commit: 2412160a499c06c79558ffeb8ca0a0ee090168b6
+Tag clean: R0_11 commit: e057e5cb20dd68e8ea8bf9f7f9a95aaec2514a93
+Tag clean: R1_0M3 commit: 5695be590ddb987e7272bd8d568f11872c6c2a6f
+Tag clean: R1_0M4 commit: c4b6732a6f6b518f18c30559d43045b3846e2f7a
+Tag clean: R1_0M5 commit: c16e087339a2d92c5675ad2f2b1d13ab6c73a9ae
+Tag clean: R4_0 commit: 2412160a499c06c79558ffeb8ca0a0ee090168b6
+Tag clean: R4_1 commit: e057e5cb20dd68e8ea8bf9f7f9a95aaec2514a93
+Tag clean: Root_model_tweaking_round3 commit: b2492c2a7cfb103dae7dc4b1b2274efc466b5bfc
+Tag clean: bug_325392_revert commit: 28f11af8d836e944c54163b848889daaad9d1baa
+Tag clean: pre_compat20100302 commit: 1f7bb411487491438ef6dfbadbf927523858cacf
+Tag clean: v20100407-1333 commit: 5de937dd5de8b3129a6008abdc1f9f82e2a9a8c0
+Tag clean: v20100408-2247 commit: e7d00be8391994a0423ee9f2fb71fdf69d05462a
+Tag clean: v20100409-1142 commit: 90e864d7c03ac9233709015308f7399c666387c0
+Tag clean: v20100409-1554 commit: c16e087339a2d92c5675ad2f2b1d13ab6c73a9ae
+Tag clean: v20100416-1111 commit: b2492c2a7cfb103dae7dc4b1b2274efc466b5bfc
+Tag clean: v20100417-2200 commit: b0431d9060053f4ebba27baf1bb8db06c5b0428c
+Tag clean: v20100419-1030 commit: 244a81d326aa6e0b2a3a46a41d583e4902056140
+Tag clean: v20100421-1130 commit: 955b57d1c2b2aa8b6fdea40e8c1dff72071785f7
+Tag clean: v20100422-1230 commit: 28cf80a3a367c2c0148b598de2042ca9612e5fa0
+Tag clean: v20100422-1630 commit: 61423230f42e0afa963e58d1815e5977162bd214
+Tag clean: v20100424-1900 commit: 8a25dd8babd8e9dbfeb2ba2dd95e8a80ff61d7ef
+Tag clean: v20100428-1730 commit: da04b45d8d4562b9966d6c26173d7c255eef6c53
+Tag clean: v20100429-1530 commit: 618e041b5d551a865bb486bd1020755b5b110005
+Tag clean: v20100503-1900 commit: 685ced21d0071b5682e0cbb37bcfb9f40ca23c24
+Tag clean: v20100504-1500 commit: d186089f729e52f47f5f3979d338f26e1b48f063
+Tag clean: v20100506-1500 commit: a108f44eabf86d2b9f6ebc6282007117dfb031a8
+Tag clean: v20100510-1130 commit: a1cff4005ca4d30e6b5cdad83ac5c4af50948961
+Tag clean: v20100510-1530 commit: df1cb880cb4ae52ac7abce81808342df2507c288
+Tag clean: v20100511-0800 commit: eb2063096aa3fae546e7feb11d7a9f3bdde46f75
+Tag clean: v20100513-1500 commit: 8e0f2e47057c4232ad54238e9577ef4d3f6a4b95
+Tag clean: v20100519-0930 commit: b480e26b63a238b87017c0a106fcaf7ff3421319
+Tag clean: v20100520-1200 commit: c46b60618b3509911af0f7667af4f01f205a020c
+Tag clean: v20100521-0900 commit: 068c0e8ed6f6bf64f8179a929ed276737dab6528
+Tag clean: v20100521-1400 commit: 705e495911c95e14e3efcc9a917b32ec78b11d4a
+Tag clean: v20100525-1530 commit: 6041c22ba1d32a963b60ddf6e117b7c1b0781dbe
+Tag clean: v20100531-1530 commit: a0cc9c4e3607434998121e3dcfefeb3b7b70f130
+Tag clean: v20100602-1900 commit: 4b94598b0940aa6fbae4a8d054f0d1b8879c304b
+Tag clean: v20100603-1900 commit: 7649a08c70a35c4e20b0cce216f5202f0e6d8f36
+Tag clean: v20100606-1500 commit: 3832e4c1d356fabdb522e3a591464ea877d52921
+Tag clean: v20100609-2000 commit: 1525df7d3c2c3918bda17634ca678711b3f23394
+Tag clean: v20100610-2030 commit: 88ef75289ad6f114b977b423b07f39b008ac5ee1
+Tag clean: v20100613-1900 commit: 2bfc437e2ad03c05d3aee56bf642ecb4e871bbfa
+Tag clean: v20100614-1830 commit: e11c0581bc84142ca6197f43d478d972444df4ff
+Tag clean: v20100615-2100 commit: f9b964e3fe21c9569fb72a44c9bd3c600d7448b1
+Tag clean: v20100616-1900 commit: be87dfcfab7b102ef27978a5ca45f985cf703787
+Tag clean: v20100618-1245 commit: f5ccc5f9e07bcea6f4601ec638b794d49e7544b5
+Tag clean: v20100622-1500 commit: 733158438eb7cc60b1fa29ffbffb2c7e0d08bcc7
+Tag clean: v20100624-1500 commit: d49e0dceca47822ae3a5ea5c58aff5caf297cd4c
+Tag clean: v20100624-1800 commit: 2d45d7928137a2496c96f34de41fdd992019229f
+Tag clean: v20100627-1530 commit: 1ce93ee8b2f67af57273beeec11ee5af2b8b5b36
+Tag clean: v20100628-2030 commit: cfed65c68ca1cd9096296223446f288c04d004d8
+Tag clean: v20100629-2000 commit: f109b1cb325ddfb819855e6039a021420625d6d5
+Tag clean: v20100630-1000 commit: 7ce112361935cc5e04fddd61b37e24b3bc1ff41f
+Tag clean: v20100630-1600 commit: c50d9082c1a2e5ca0918c7c43ef1d960f3010838
+Tag clean: v20100705-0830 commit: bdc7c991c373005f9611ac599e847e3203f612f6
+Tag clean: v20100705-2130 commit: 4a735ad368b9336aa68534d43bbb505ed120059f
+Tag clean: v20100706-2000 commit: 93a581cb13a31bd819a5e64dd601937537a5eea0
+Tag clean: v20100707-1900 commit: 4e10accffd6d0caa87420424f2831a02eb20cff5
+Tag clean: v20100708-1830 commit: 330b6d69f1cb504bfaedbd7464e990211f58182e
+Tag clean: v20100709-1100 commit: d4332619a33b21b334df8fa6308b4c4518aaba74
+Tag clean: v20100712-1130 commit: 0a430146b960a0d55b9335ee5d4e0de2f7185b5c
+Tag clean: v20100712-1900 commit: c331f6035641eabda4891ded7d3ac717340fdb12
+Tag clean: v20100713-1530 commit: d0a8334a9d27ca3fe6c0ad352b8f35884dcedeb8
+Tag clean: v20100714-1430 commit: 09c537b419cc21055864c03c9223d608bf47bbf4
+Tag clean: v20100714-1900 commit: 8dec7292bcc7da5250d32d98edda7b169d161f46
+Tag clean: v20100715-1830 commit: 76a01c6102f8ced4976c3214be738607f6f67193
+Tag clean: v20100716-0730 commit: 76a01c6102f8ced4976c3214be738607f6f67193
+Tag clean: v20100716-1200 commit: e08c5b4a5ab6aae707d935679e353cc4f319d3cc
+Tag clean: v20100716-1530 commit: 9e40e71165492b6aad982add65e9d19960783843
+Tag clean: v20100720-1930 commit: eec54b5a446fcd4788de3f2f9294153d1d1afcf7
+Tag clean: v20100721-1130 commit: 2c3ea3e5803a2d08ef49377217aa31b233eed4ab
+Tag clean: v20100721-2000 commit: 9af6307c1d78e931aead18357f9fd6ab6044e820
+Tag clean: v20100722-1200 commit: 82efd9710abf12eb2f4bc606ac22c6e0f84bd098
+Tag clean: v20100722-1830 commit: c057950654870560ada36c3506acaac24c6a0488
+Tag clean: v20100723-1200 commit: f8f5f8254845eb93e31e0caf4883dadd103f1bcd
+Tag clean: v20100723-1830 commit: e609297efe6aa42d7ecb5a8913e6abc54bb0d3cc
+Tag clean: v20100724-2030 commit: 541a7c5c166ac57e7b0d0c3f982ded3f409de425
+Tag clean: v20100726-2030 commit: 2412160a499c06c79558ffeb8ca0a0ee090168b6
+Tag clean: v20100730-0820 commit: bdec09c322922f7caa3cf0693b119a978c5178e3
+Tag clean: v20100730-0930 commit: 6f1ec0e1012d879c6e389b3979b396a5a9ad6812
+Tag clean: v20100805-1300 commit: 0bb61f9dc3cc7bd5f453420bdc44f6e2d5b5ca80
+Tag clean: v20100816-1230 commit: e8c652cf3ee55ee76342b807cc8dbda871e0a983
+Tag clean: v20100819-1800 commit: fc94f737b189f5a72c2548f2d6bf20f000f825a1
+Tag clean: v20100825-1300 commit: 85de3be418a9de88ecfed08081c3ace17a15c104
+Tag clean: v20100830-0930 commit: 8cdbfefba0ddc00c342bcf69e0072f3359c413c5
+Tag clean: v20100909-1100 commit: af8aeeee420f183629b0184f9f591708a0b91fd7
+Tag clean: v20100914-0830 commit: 7994154765eb439bf3aecbe8d8cb9179c8dba6c0
+Tag clean: v20100915-1500 commit: 6bb09fa444c0eb7a22dd9781f302fcec75918abc
+Tag clean: v20100923-1030 commit: 4e46115ea73a263c3ab595d6ed9a72a7890ee46e
+Tag clean: v20100924-1330 commit: 4ac2403688797ee5fa0f62eb588060aaa2f827ed
+Tag clean: v20100930-1600 commit: 59086f2cd2d54d65ee41d9fab292ce7ade6f7db0
+Tag clean: v20101006-1500 commit: 855a84746d39e099b0b060a78aa13a2d760a014d
+Tag clean: v20101007-1500 commit: e43b4a081baaf6a4e568f20ad66db22707c50541
+Tag clean: v20101014-1600 commit: f0d321ce99cf5305cdc452c359153fa232c8b2b6
+Tag clean: v20101021-1500 commit: 5bd631d16ae71ce483487c8eb44095997722e6e8
+Tag clean: v20101025-1500 commit: cc7432ec5a887bbea14e6d513c65e6a2ee2716cd
+Tag clean: v20101026-2245 commit: 511cf137865ad38c4ed2891215d74b8cff875afd
+Tag clean: v20101027-1530 commit: 7841971d1d980c2b6be56d8b63390ec0f79c8950
+Tag clean: v20101027-2200 commit: 650a078471c8fb461b1f75eccf9ffac746ae3c62
+Tag clean: v20101028-1000 commit: 8f3166fd1bc8b5c74b3f5c8ab1f5a661e9e2f822
+Tag clean: v20101104-2130 commit: 3cc1cf2669be33730c6c4c0f67e67bbd7eb2f129
+Tag clean: v20101109-1330 commit: 6cfea6d9c68db56eb28446762d90648bb114a4a5
+Tag clean: v20101111-1930 commit: 9df2b4f5c7c6ad8fec3034f5fe2a272a71d6da80
+Tag clean: v20101118-1530 commit: 3b2ec492c64ead51bc75b0a479de2686d2819b28
+Tag clean: v20101119-1500 commit: 427005fa5169956dacf3a58b10c6dbfbdf61b6f7
+Tag clean: v20101119-1700 commit: 54ea2a62250c14f0ea4e68e75ae0f39b900cae15
+Tag clean: v20101125-1630 commit: 35915d074f87cbfec7fe6accd14ec10adfd3b298
+Tag clean: v20101201-1400 commit: 185af6f0afb39572896bb71fd8d62c601f8bdb53
+Tag clean: v20101202-1530 commit: 75e9bdcb6dc19f0a39b409cfef3b5f84f110f2c2
+Tag clean: v20101204-1745 commit: 9461f47f0c356dbc2ead8bb06db65f2bc298b141
+Tag clean: v20101206-1400 commit: 38abaeea3cf3ee641d95e2069a6be801e4484a8d
+Tag clean: v20101206-1430 commit: 38abaeea3cf3ee641d95e2069a6be801e4484a8d
+Tag clean: v20101208-1430 commit: d7fb7cda8a3fcd870a21fabd04d1e69efe1a3c3d
+Tag clean: v20110113-1500 commit: 095bc8606ccae17f6f5ff8d761e92ed20dc19476
+Tag clean: v20110121-1000 commit: 2b41b35605d359282430d5e256f8ba8c455c9724
+Tag clean: v20110124-1530 commit: 8f899f69543191f676cc71204134c95105815edb
+Tag clean: v20110203-2200 commit: a31fe0034699371daa621d74245773042c7e3bdf
+Tag clean: v20110210-1530 commit: bc5233aae14feb19b9e26877363beb04ce5645ca
+Tag clean: v20110217-1730 commit: eecabed0cbb947367d2e759a31801db8dbd4c086
+Tag clean: v20110224-1630 commit: e49540d55fedbb3293fe0d489c71781fd9641f22
+Tag clean: v20110303-1630 commit: f4adbfea8674e0e59683a691d9bfeb383fc8c642
+Tag clean: v20110304-1630 commit: 49fe96d7546ad0126368aaaf582a97d6f33ce456
+Tag clean: v20110306-2030 commit: b3a275a6d22a9ff204de0adac1402015f516aa78
+Tag clean: v20110307-0900 commit: 2e3f9f1f6e767df4587c57246108dc698976da4b
+Tag clean: v20110307-2000 commit: 20488262ae1447d69dc037fe9b3c36de6db54ffa
+Tag clean: v20110308-1630 commit: 3e1c78cc0a0a8aa11563d10ff998269f6258080a
+Tag clean: v20110309-1400 commit: 2a7f30b0033b79923e07256799b38b3f14ffb948
+Tag clean: v20110311-1500 commit: be0d957651dbedf2df1f5ea02c2ff974df635070
+Tag clean: v20110316-1030 commit: f40dc5a52bbab3552dc2300f8a2e86487930da49
+Tag clean: v20110317-2000 commit: 982ca9fbbe5e7e278f78c11a8acdede4ef31c966
+Tag clean: v20110331-2030 commit: a1b50322d4f152c8836191d82e348eec8392c8c4
+Tag clean: v20110407-2030 commit: c858eed2e0c0885d9ce8840058cecd7925843f30
+Tag clean: v20110414-2200 commit: 0b5ef194056ea15406dd14e73f9e3ba1a9362e69
+Tag clean: v20110419-1630 commit: 1023c9aff24ede837356403c60d0e676fb6acf80
+Tag clean: v20110420-1900 commit: 75dae19b280ca61f9228625f7e347a0f4a04b1b6
+Tag clean: v20110422-1900 commit: 41e2cc1e9b00537e90a29fb3888385e19f08066f
+Tag clean: v20110425-1930 commit: 560571a6dfd4e6a4e29e3b0c324fc0e98a465e94
+Tag clean: v20110427-1500 commit: a13fe20000f7ca2f378fb7d0e2c2939d37e4ac99
+Tag clean: v20110428-1500 commit: 55e114fa1b00aef21bfdfcbc0edb8fecb3524e76
+Tag clean: v20110429-1500 commit: 92c8997d6456e5c5ceb61e165fc69f4eeb7c6582
+Tag clean: v20110504-1730 commit: 64883708133ceec7e9e1804ef130623466aae5ae
+Tag clean: v20110505-0830 commit: 0bac17549b2b92acd44ef4dd7287798be6a04792
+Tag clean: v20110506-1500 commit: 5b9e6695605106330d8c355159d045865f723a03
+Tag clean: v20110509-1630 commit: eee380cee137968ef73a7c501986fc81bb3c5f56
+Tag clean: v20110510-1500 commit: 092921ac6ae9fcded0aec764d08af4b38106b27c
+Tag clean: v20110511-1600 commit: 38098989a4448a30a7152895149c6a568cfd8ce0
+Tag clean: v20110513-1600 commit: e4a211cb3a4bb938b64451578852c62058091a9e
+Tag clean: v20110516-1900 commit: b1e832b3252b914f8e0fa6e2f93dec0e114e2aad
+Tag clean: v20110517-2030 commit: 4f0e218d6530488359bbfe4550c8f7145e63cc17
+Tag clean: v20110518-2130 commit: 7ff25abcf2baabee83ef6bc268b139a991b32faa
+Tag clean: v20110519-1930 commit: 35e8ccabd16ed13b016dce2a0614df82a7566f5d
+Tag clean: v20110524-1630 commit: 8d636235d60ba629e4d58d32093b6b7af699e10d
+Tag clean: v20110525-1900 commit: e81c80b9d84e894eafa86589b5c6b1c478eab6dc
+Tag clean: v20110526-1100 commit: 4ff5c1e704974df8e3330c21e89585802737c8cf
+Tag clean: v20110526-1430 commit: 9bd8f12234f121ae21679dd6257ed31b648b76fe
+Tag clean: v20110526-2000 commit: d012ed47b3cb085ea76bcbe21e9f5c421c6ba765
+Tag clean: v20110527-1530 commit: bb4c42abd31cf50fdaf9255e4cf72aaa2331f177
+Tag clean: v20110527-1900 commit: 3f0c2687894409cc31d4322ffcf79a9a9f73c5a3
+Tag clean: v20110527-2100 commit: a3a011b35362ee4b07709965b2c559decb563e7a
+Tag clean: v20110531-1900 commit: eb583e47b31ffa17535466dc16c93470a9cc8dca
+Tag clean: v20110601-1800 commit: 8408d44e24cfe9ecbe5e9fa860066b7615de4523
+Tag clean: v20110609-1700 commit: dfbe59aaeabb011af77783ba130af8e9fb46cee5
+Tag clean: v20110610-2030 commit: 9b895feff4dcb6f54609df9ddf641722ae2647c8
+Tag clean: v20110613-2030 commit: c1c32bab2cdde7f930a3ce339e6827f4913d3a9c
+Tag clean: v20110614-1030 commit: 1f3cc9cbf8b22c7973e6fb147176e51a40089b54
+Tag clean: v20110614-1530 commit: e057e5cb20dd68e8ea8bf9f7f9a95aaec2514a93
+Tag clean: v20110629-1700 commit: e4a7ae99c8eb1ce0355e64c636a4d41a85db6b67
+Tag clean: v20110705-1300 commit: 892ea697038fdde6e83cfb3c51c42f1134b73710
diff --git a/eclipse.platform.ui.compat/pass3/tags.txt b/eclipse.platform.ui.compat/pass3/tags.txt
new file mode 100644
index 0000000..e12ffca
--- /dev/null
+++ b/eclipse.platform.ui.compat/pass3/tags.txt
@@ -0,0 +1,171 @@
+I20100406-0910
+I20100406-2156
+I20100406-2227
+R0_10
+R0_11
+R1_0M3
+R1_0M4
+R1_0M5
+R4_0
+R4_1
+Root_model_tweaking_round3
+bug_325392_revert
+pre_compat20100302
+v20100407-1333
+v20100408-2247
+v20100409-1142
+v20100409-1554
+v20100416-1111
+v20100417-2200
+v20100419-1030
+v20100421-1130
+v20100422-1230
+v20100422-1630
+v20100424-1900
+v20100428-1730
+v20100429-1530
+v20100503-1900
+v20100504-1500
+v20100506-1500
+v20100510-1130
+v20100510-1530
+v20100511-0800
+v20100513-1500
+v20100519-0930
+v20100520-1200
+v20100521-0900
+v20100521-1400
+v20100525-1530
+v20100531-1530
+v20100602-1900
+v20100603-1900
+v20100606-1500
+v20100609-2000
+v20100610-2030
+v20100613-1900
+v20100614-1830
+v20100615-2100
+v20100616-1900
+v20100618-1245
+v20100622-1500
+v20100624-1500
+v20100624-1800
+v20100627-1530
+v20100628-2030
+v20100629-2000
+v20100630-1000
+v20100630-1600
+v20100705-0830
+v20100705-2130
+v20100706-2000
+v20100707-1900
+v20100708-1830
+v20100709-1100
+v20100712-1130
+v20100712-1900
+v20100713-1530
+v20100714-1430
+v20100714-1900
+v20100715-1830
+v20100716-0730
+v20100716-1200
+v20100716-1530
+v20100720-1930
+v20100721-1130
+v20100721-2000
+v20100722-1200
+v20100722-1830
+v20100723-1200
+v20100723-1830
+v20100724-2030
+v20100726-2030
+v20100730-0820
+v20100730-0930
+v20100805-1300
+v20100816-1230
+v20100819-1800
+v20100825-1300
+v20100830-0930
+v20100909-1100
+v20100914-0830
+v20100915-1500
+v20100923-1030
+v20100924-1330
+v20100930-1600
+v20101006-1500
+v20101007-1500
+v20101014-1600
+v20101021-1500
+v20101025-1500
+v20101026-2245
+v20101027-1530
+v20101027-2200
+v20101028-1000
+v20101104-2130
+v20101109-1330
+v20101111-1930
+v20101118-1530
+v20101119-1500
+v20101119-1700
+v20101125-1630
+v20101201-1400
+v20101202-1530
+v20101204-1745
+v20101206-1400
+v20101206-1430
+v20101208-1430
+v20110113-1500
+v20110121-1000
+v20110124-1530
+v20110203-2200
+v20110210-1530
+v20110217-1730
+v20110224-1630
+v20110303-1630
+v20110304-1630
+v20110306-2030
+v20110307-0900
+v20110307-2000
+v20110308-1630
+v20110309-1400
+v20110311-1500
+v20110316-1030
+v20110317-2000
+v20110331-2030
+v20110407-2030
+v20110414-2200
+v20110419-1630
+v20110420-1900
+v20110422-1900
+v20110425-1930
+v20110427-1500
+v20110428-1500
+v20110429-1500
+v20110504-1730
+v20110505-0830
+v20110506-1500
+v20110509-1630
+v20110510-1500
+v20110511-1600
+v20110513-1600
+v20110516-1900
+v20110517-2030
+v20110518-2130
+v20110519-1930
+v20110524-1630
+v20110525-1900
+v20110526-1100
+v20110526-1430
+v20110526-2000
+v20110527-1530
+v20110527-1900
+v20110527-2100
+v20110531-1900
+v20110601-1800
+v20110609-1700
+v20110610-2030
+v20110613-2030
+v20110614-1030
+v20110614-1530
+v20110629-1700
+v20110705-1300