### Eclipse Workspace Patch 1.0 #P org.eclipse.ui Index: plugin.properties =================================================================== RCS file: /home/eclipse/org.eclipse.ui/plugin.properties,v retrieving revision 1.165 diff -u -r1.165 plugin.properties --- plugin.properties 2 Mar 2006 14:11:32 -0000 1.165 +++ plugin.properties 3 Apr 2006 15:01:11 -0000 @@ -47,7 +47,6 @@ ExtPoint.presentationFactories = Presentation Factories ExtPoint.propertyPages = Property Pages ExtPoint.startup = Startup -ExtPoint.systemSummarySections = System Summary Sections ExtPoint.viewActions = View Menus and Actions ExtPoint.views = Views ExtPoint.workingSets = Working set dialogs Index: plugin.xml =================================================================== RCS file: /home/eclipse/org.eclipse.ui/plugin.xml,v retrieving revision 1.345 diff -u -r1.345 plugin.xml --- plugin.xml 16 Mar 2006 16:10:39 -0000 1.345 +++ plugin.xml 3 Apr 2006 15:01:11 -0000 @@ -39,7 +39,6 @@ - @@ -1145,7 +1144,7 @@ + point="org.eclipse.core.runtime.systemSummarySections">
- - - - - - - - The Eclipse UI provides an AboutDialog that can be branded and reused by client product plugins. This dialog includes a SystemSummary dialog that contains configuration details. By extending the org.eclipse.ui.systemSummarySections extension point clients are able to put their own information into the log. - - - - - - - - - - - - a fully qualified identifier of the target extension point - - - - - - - an optional identifier of the extension instance - - - - - - - an optional name of the extension instance - - - - - - - - - - - - - - - an optional, unique name that will be used to identify this system summary section - - - - - - - a translatable name that will be displayed as the title of this section in the system summary - - - - - - - - - - The fully qualified name of a class the implements -<code>org.eclipse.ui.about.ISystemSummarySection</code>. The class must provide a default constructor. - - - - - - - - - - - - - - - 3.0 - - - - - - - - - Following is an example of a systemSummarySections extension: -<pre> -<extension - point="org.eclipse.ui.systemSummarySections"> - <section - id="RCPBrowser.CookieDetails" - sectionTitle="Browser Cookies" - class="org.eclipse.ui.examples.rcp.browser.CookieConfigDetails"/> -</extension> -</pre> - - - - - - - - - The class specified in the section element must be a concrete subclass of <code>org.eclipse.ui.about.ISystemSummarySection</code>. - - - - - - - - - The Workbench uses this extension point to provide the following sections in the system summary dialog: -<ul> -<li>System properties: The properties returned by java.lang.System.getProperties().</li> -<li>Features: The installed features.</li> -<li>Plug-in Registry: The installed plug-ins and their status.</li> -<li>User Preferences: The preferences that have been modified from their default values.</li> -</ul> - - - - - - - - - Copyright (c) 2004 IBM Corporation and others.<br> -All rights reserved. This program and the accompanying materials are made -available under the terms of the Eclipse Public License v1.0 which accompanies -this distribution, and is available at <a -href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a> - - - -