Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Knauer2013-03-16 16:54:07 +0000
committerMarkus Knauer2013-03-16 16:54:07 +0000
commit13a76f8855208840ddbdf749c15ff33a13e07a0c (patch)
tree7bbd2f1a2c0ae0746bcf5ada2dda9fb803374b37 /packages/org.eclipse.epp.package.classic/plugin_customization.ini
parent68fd6380b54f7ee701d4a935ba43a42bd8f32dc5 (diff)
downloadorg.eclipse.epp.packages-13a76f8855208840ddbdf749c15ff33a13e07a0c.tar.gz
org.eclipse.epp.packages-13a76f8855208840ddbdf749c15ff33a13e07a0c.tar.xz
org.eclipse.epp.packages-13a76f8855208840ddbdf749c15ff33a13e07a0c.zip
Bug 397896: Provide initial project set for EPP Classic/SDK
https://bugs.eclipse.org/bugs/show_bug.cgi?id=397896 Replace Platform Classic/SDK with EPP Classic/SDK including EGit
Diffstat (limited to 'packages/org.eclipse.epp.package.classic/plugin_customization.ini')
-rw-r--r--packages/org.eclipse.epp.package.classic/plugin_customization.ini40
1 files changed, 40 insertions, 0 deletions
diff --git a/packages/org.eclipse.epp.package.classic/plugin_customization.ini b/packages/org.eclipse.epp.package.classic/plugin_customization.ini
new file mode 100644
index 00000000..8d79182f
--- /dev/null
+++ b/packages/org.eclipse.epp.package.classic/plugin_customization.ini
@@ -0,0 +1,40 @@
+# plugin_customization.ini
+# sets default values for plug-in-specific preferences
+# keys are qualified by plug-in id
+# e.g., com.example.acmeplugin/myproperty=myvalue
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# "%key" are externalized strings defined in plugin_customization.properties
+# This file does not need to be translated.
+
+# WARNING: This file defines the preference overrides for the Platform build
+# (the one with no JDT or PDE), not the SDK build (aka the IDE).
+# For the SDK build, use the plugin_customization.ini file in the
+# org.eclipse.sdk plug-in instead.
+
+# Property "org.eclipse.ui/defaultPerspectiveId" controls the
+# perspective that the workbench opens initially
+org.eclipse.ui/defaultPerspectiveId=org.eclipse.pde.ui.PDEPerspective
+
+# new-style tabs by default
+org.eclipse.ui/SHOW_TRADITIONAL_STYLE_TABS=false
+
+# put the perspective switcher on the top right
+org.eclipse.ui/DOCK_PERSPECTIVE_BAR=topRight
+
+# show progress on startup
+org.eclipse.ui/SHOW_PROGRESS_ON_STARTUP = true
+
+# Welcome theme to use
+org.eclipse.ui.intro/INTRO_THEME = org.eclipse.ui.intro.universal.circles
+
+# Root page links to show in the Universal Welcome
+org.eclipse.ui.intro.universal/INTRO_ROOT_PAGES = overview,tutorials,samples,whatsnew
+
+# Initial page layout of the Universal Welcome
+org.eclipse.ui.intro.universal/INTRO_DATA = product:introData.xml
+
+# Order help books in table of contents
+org.eclipse.help/HELP_DATA = helpData.xml
+
+# lightweight auto-refresh on access by default (bug 384104)
+org.eclipse.core.resources/refresh.lightweight.enabled=true

Back to the top