Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2010-03-05 21:32:51 +0000
committerChris Goldthorpe2010-03-05 21:32:51 +0000
commit9a9a7a87a050adafafa35e9d35df0d9a843d53ce (patch)
tree39904fe9f4f6223eaf0986868c8885fa58df7250 /org.eclipse.help.base
parentc2f31909ac1223865ec260b692cd80a4697ab3b0 (diff)
downloadeclipse.platform.ua-9a9a7a87a050adafafa35e9d35df0d9a843d53ce.tar.gz
eclipse.platform.ua-9a9a7a87a050adafafa35e9d35df0d9a843d53ce.tar.xz
eclipse.platform.ua-9a9a7a87a050adafafa35e9d35df0d9a843d53ce.zip
Bug 304886 - [Webapp] Remove the filter dialog
Diffstat (limited to 'org.eclipse.help.base')
-rw-r--r--org.eclipse.help.base/preferences.ini5
-rw-r--r--org.eclipse.help.base/src/org/eclipse/help/internal/base/IHelpBaseConstants.java1
2 files changed, 6 insertions, 0 deletions
diff --git a/org.eclipse.help.base/preferences.ini b/org.eclipse.help.base/preferences.ini
index 49e0da8f3..ee1973246 100644
--- a/org.eclipse.help.base/preferences.ini
+++ b/org.eclipse.help.base/preferences.ini
@@ -50,6 +50,11 @@ disabled_css=/PRODUCT_PLUGIN/disabled_book.css
# Set to true or false to control the visibility of the index view.
indexView=true
+# Set to true or false to control the visibility of the filter dialog.
+# Note that the filter dialog will not be shown if no scopes have been
+# defined using the org.eclipse.help.base.scope extension point
+filterDialog=false
+
# Set to true or false to control the visibility of the bookmarks view.
# Note: this option has no effect in the infocenter.
bookmarksView=true
diff --git a/org.eclipse.help.base/src/org/eclipse/help/internal/base/IHelpBaseConstants.java b/org.eclipse.help.base/src/org/eclipse/help/internal/base/IHelpBaseConstants.java
index 5cb5243ae..7bd701e0b 100644
--- a/org.eclipse.help.base/src/org/eclipse/help/internal/base/IHelpBaseConstants.java
+++ b/org.eclipse.help.base/src/org/eclipse/help/internal/base/IHelpBaseConstants.java
@@ -21,6 +21,7 @@ public interface IHelpBaseConstants {
String P_IN_EDITOR = "in editor"; //$NON-NLS-1$
String P_IN_BROWSER = "in browser"; //$NON-NLS-1$
String P_KEY_HELP_SCOPE = "scope"; //$NON-NLS-1$
+ String P_KEY_FILTER_DIALOG = "filterDialog"; //$NON-NLS-1$
String P_KEY_ALWAYS_EXTERNAL_BROWSER = "always_external_browser"; //$NON-NLS-1$
String P_KEY_SEARCH_FROM_BROWSER = "search_from_browser"; //$NON-NLS-1$
String P_KEY_REMOTE_HELP_ON = "remoteHelpOn"; //$NON-NLS-1$

Back to the top