Prevent from adding or Remove/Hide Property Pages in Settings

Hello,
I'm including 3rd party plugins in my RCP Application. Unfortunately these plugins add Property Pages to my Settings.
how can i remove or hide these pages. or how can i configure Eclipse
to prevent adding them (something like a filter)?
thanks in advance!
PS: i use default settings for the 3rd party plugins and the user should not be flooded with too much. therefore a clean menue would be preferred

You can't do that easily - I'm not sure if activities apply to
preference pages but I found this
http://stackoverflow.com/questions/1460761/howto-hide-a-preference-page-in-an-eclipse-rcp
where they are removing the preference pages the hard way!
The ideal thing would be if you upstream dep would move the preference
stuff in an extra plugin so that you have:
* ...my.bundle
* ...my.bundle.preferences
or even better
* ...my.bundle
=> here is the implementations of views, preference pages, ...
* ...my.bundle.wbcontrib
=> here are the contributions they are making to the workbench (the
plugin.xml)
Tom
On 08.07.15 16:07, Ludwig Moser wrote:
> Hello,
>
> I'm including 3rd party plugins in my RCP Application. Unfortunately
> these plugins add Property Pages to my Settings.
>
> how can i remove or hide these pages. or how can i configure Eclipse to
> prevent adding them?
>
>
> thanks in advance!
>
> PS: i use default settings for the 3rd party plugins and the user should
> not be flooded with too much. therefore a clean menue would be preferred

Similar Messages

  • How to remove/hide webpart page title

    I have a team site.  All pages are stored in Site Pages.  I added a webpart page called test1.  When I go to the page, I see "test1" to the right of the site icon on the top left side of the page.  How can I remove it or hide
    it?  I read somewhere that I should go to the document library that holds this page and under properties, edit webpart in maintenence view and make sure that "Webpart page title bar" in the column Open on Page says "No".  I did
    that and the name of the page still shows up. 
    Also, why is it that when I create a new webpart page I can only enter the value for "Name"?  Where do I go to enter the value for "Title" if I want the title of the page to be different than the file name (i.e. what shows up in
    the URL)?
    thanks,

    hi,
    You can set the WebPart cromeType to the below following values.
    to have no titel it set it to None or Border only.
    BorderOnly A border only, without a title bar.
    Default A border setting inherited from the part control's containing zone.
    None No border and no title bar.
    TitleAndBorder A title bar and a border.
    TitleOnly A title bar only, without a border.
    Member name
    Description
    BorderOnly
    A border only, without a title bar.
    Default
    A border setting inherited from the part control's containing zone.
    None
    No border and no title bar.
    TitleAndBorder
    A title bar and a border.
    TitleOnly
    A title bar only, without a border.
    Member name
    Description
    BorderOnly
    A border only, without a title bar.
    Default
    A border setting inherited from the part control's containing zone.
    None
    No border and no title bar.
    TitleAndBorder
    A title bar and a border.
    TitleOnly
    A title bar only, without a border.
    Member name
    Description
    BorderOnly
    A border only, without a title bar.
    Default
    A border setting inherited from the part control's containing zone.
    None
    No border and no title bar.
    TitleAndBorder
    A title bar and a border.
    TitleOnly
    A title bar only, without a border.
    Whenever you see a reply and if you think is helpful,Vote As Helpful! And whenever you see a reply being an answer to the question of the thread, click Mark As Answer

  • How to automatically remove the wiki page's images from the Images library , when a wiki page is deleted

    I have noted the following strange behavior inside my Publishing enterprise wiki site collection. Now by default when I create a new wiki page and I add Pictures to it, the pictures will be saved under the “Images” library and will be inside a unique folder
    that have its name similar to the page name.
    But when users delete the picture from the wiki page or they delete the whole wiki page, then the related folder inside the “Images” library will not be removed. So can anyone advice if there is a way to automatically remove the page’s pictures
    folder from the Images library when the page is deleted? as currently i might end up having many pictures inside the Images library which are not linked to a wiki page, and they will waste my server desk space...

    I think, not sure, there's no out-of-the-box solution in SharePoint for this problem. So I can only think of custom solution:
    In event Receiver, ItemDeleting, you can delete images. The only downside is if some other pages are referring the images..... you need to check somehow which is quite time-consuming operations if you have thousand of pages in wiki library
    A timer job, that will run periodically, every day or week, and clean all unused images. 
    Hide the default delete button and add your own. And then using your own custom layout page, show a 'configuration dialog' to user if they want to delete both page and images.
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com
    Please do not tell me this is not supported out of the ox ,,,,, i that i should handle this process by myself !!! and SharePoint does not support this feature .... this is another  problem i should include in my list .....

  • Preventing select-string from adding additional undesired strings in the output file

    Hi friends
    in PS 4.0 i am trying to write a function which
    step1: export the list of all eventlogs ----> wevtutil el > "$home\documents\\loglist1.txt"
    step2: deleted the following two lines from loglist1.txt
    DebugChannel
    Microsoft-RMS-MSIPC
    ( the reeson of deleting these two lines is wevtutil cl command, can't clear these two evenlogs among approximately 1000 logs)
    in fact via select-string with -pattern -notmatch parameters, we select anything except these two line
    step3:  pastes the select-string contents into the same file ("$home\documents\loglist1.txt") or into new text file (for example
    "$home\documents\loglist2.txt")
    here is my code:
    function MycleareventsAll {
    cls
    Wevtutil el > "$home\documents\loglist1.txt"
    $mycontents = select-string "$home\documents\loglist1.txt" -pattern DebugChannel, Microsoft-RMS-MSIPC -NotMatch
    cd "$home\documents\"
    $mycontents | out-file loglist2.txt"
    # also i tried ---> $mycontents | set-content "loglist2.txt"# also i tried ---> $mycontents | set-content "loglist1.txt"
    but the problem is, in addition of deletion, unfortunatelly additional strings (filepath, filename, line number) are added into the final text file so wevtutil will fail clearing logs listed in text file.
    here is contents of the final text file
    C:\Users\Administrator\documents\loglist.txt:1:Analytic
    C:\Users\Administrator\documents\loglist.txt:2:Application
    C:\Users\Administrator\documents\loglist.txt:4:DirectShowFilterGraph
    but i need the contents be the same as original file without that two specific line:
    Analytic
    Application
    DirectShowFilterGraph
    i searched but i didn't find a way to prevent select-string cmdlet from adding these edditional strings
    (filepath, filename, line number) into output file while keeping the original contents.
    note: -quiet parameter is not what i want. it removes all contents & simply inserts a true or false.
    any help? 

    don't forget that Guys here know the basics of security such as clearing event logs & ...
    how odd if you don't know this.
    clearing all events is useful in test environment for example when i ma teaching my students & need to see all newly created events & work on them
    Then you are teching your students how not to use an event log.  We use filters and queries to access event logs.  We also use event log CmdLets in PowerShell.  WEVTUTIL is ok but it does not marry wellwith PowerShell as you have seen.
    I have found very few people who are not certified in WIndows administration that know much about eventlogs when it should be a ver important part of administration.  PowerShell has mmade EL management much easier but few take the time to learn how
    to use the EL support in PowerShell.
    I see no point inclearing event logs.  It accomplishes nothing.
    ¯\_(ツ)_/¯
    oh your are introducing me filters & queries in event viewer !! please stop Laughing me this way.
    your problem is you judge about people's knowledge & you persist on your absurd judgments.
    look at your sentence:
    "Then you are teaching your students how not to use an event log" 
    where from you tell this? have you been present in my classes to see what i teach to my students?
    have you seen that i told to my students not to use event viewer?
    my goal of clearing events is related to myself. it's non of your businesses.
    people are not interested to here concurrent irrelevant advises from you like a grandmother. they are searching for a solution. their intent of doing tasks is not up to you.

  • How do I remove my iWeb pages from the Home folder so I can publish to a new host?

    I have moved my MobileMe site to a new service (GoDaddy).  The basic transfer went very smoothly.  With one tiny hitch:  the new URL text.
    IWeb places web  pages in folders, each folder being a  "site." The name of the root folder automatically becomes a "pointer" to the web site -- and part of the URL text.
    My current root folder  is named DavidChartrand -- me.  So..... when I published everything over to GoDaddy the text "DavidChartrand" was attached to my URL. 
    Instead of seeing www.davidchartrand.com in the URL bar, visitors  see:   www.davidchartrand.com.com/DavidChartrand
    GoDaddy staff says this is simply a quirk in iWeb's design.  Fine, but it's annoying.  Is there anyway I can keep using iWeb but somehow remove the root folder.....that is, remove my site pages from the root folder and and then re-publish? GoDaddy tech support swears it  has many former MobileMe/iWeb users who have done this successfully but offered had no idea how.
    David

    The way iWeb publishes its websites, in its own folder, the normal URL is http://www.domain_name.com/Site_name/Page_name.html.  This is a normal URL for any web host.
    If you want to get rid of the site name you will need to publish your website to a folder on your hard drive and upload only the contents of the website folder to your server with a 3rd party FTP client like YummyLite, Transmit or Cyberduck.  That will get rid of the site name in the URL. 
    Of course remove the existing website foldr from the server beforehand.
    I believe the folder you publish to on GoDaddy is named public_html.  You might try renaming your website to "public_html" and publish to GoDaddy.  In theory iWeb will see the website's folder already on the server and publish the website file into it. 
    It works that way with HostExcellence.com which names the home folder the same as the domain name associated with it. This tutorial explains more about it: iW16 - Using HostExcellence.com with iWeb
    OT

  • Can the cell lines be removed from a table inserted in a Pages document?

    Can the cell lines be removed from a table inserted in a Pages document?

    Inspector > Table > Table > Cell Borders
    The buttons immediately below "Cell Borders" allow you to choose left, right, inside, outside etc.
    Choose None from the border style Pop-up.
    Download the Number'09UserGuide from the Help menu in Pages. Search for borders.
    Regards,
    Ian.

  • Prevent Safari 5.1 from adding to Top Sites

    Has anyone figured out a way to prevent Safari 5.1 from adding to Top Sites every time one looks at a webpage?  I have used Macs for 20 years and love them, EXCEPT that Apple doesn't give much control to the user.

    If, for some reason, you want to completely disable the Top Sites feature, use the following Terminal command copy and paste:
    defaults write com.apple.Safari DebugSafari5IncludeTopSites -bool FALSE
    Repeating with TRUE at the end will enable Top Sites again.
    I have not tested this,  but you can try it,  and report back on your success or failure. 
    Clear cache, clear history, reset and relaunch Safari.
    Of course there all alternatives if this command does not work.  See this thread:
    http://forums.cnet.com/7723-6126_102-399559.html

  • The recent upgrade for i-tunes prevents me from adding and using the Field, "Show". How can I add this field in i-tunes?

    The recent upgrade for i-tunes prevents me from adding and using the Field, "Show". How can I add this field in i-tunes?

    Hold down shift as you right-click > Get Info to get the old style dialog box.
    tt2

  • Batch remove word doc pages from library

    Hi,
    I see there are ways to batch remove or add information to word docs and i have successfully removed the cover page from word docs and put into one document.  Is there any way to remove cover and end pages from word docs in a batch?  I need to
    remove the cover pages of over 300 documents and then the last 2 or 3 pages as well.  
    Any suggestions?
    Thanks,
    thupard

    Deleting the first page is no problem, especially if it's in its own Section. Removing pages from the end of the document is likewise no problem in and of itself, but the '2 or 3 pages' isn't something VBA can be left to decide for itself - it needs rules
    that tell it how to decide whether to delete 2 pages or to delete 3 pages. If Section breaks at the end of the document are involved, matters can become complicated when header/footer content and differences in page layout need to be considered.
    Cheers
    Paul Edstein
    [MS MVP - Word]

  • Sharepoint 2013 : remove the word "pages" from tab in IE

    Hi,
    I would like to remove the word "pages" from tab in IE.
    How can I do it  ?
    Nikita.

    Detect the browser using jquery/java script
    http://www.sitepoint.com/check-ie-version/
    Get the current url into some variable .
    Do the string manipulations to remove the "pages" word

  • Preventing the User from going back to the main page after logging out.

    Hi all,
    In my project I want to prevent the User from going back to the Main page, by clicking the back button of the browser, after the user has loggged out.I had invalidated the session so the user will not be able to do any operations, but he can vew the infos. I want to redirect to the login page if the user tries to go back using the back button after he has logged out.
    I tried the same in this forum after loging out. Surprisingly it is the same. I can browse through all the operations i did even after logging out from here.
    Is it not possible to do that in Servlets?Could somebody help?
    Thanks,
    Zach.

    Hi,
    You can use a servlet filter to do this , as it can interceptany request to your application you can decide to allow user access or not to any page/servlet.
    public class Test implements Filter{
         public void destroy() {
         public void doFilter(ServletRequest arg0, ServletResponse arg1, FilterChain arg2) throws IOException,
                   ServletException {
              System.out.println("filter");
              HttpServletRequest request = (HttpServletRequest) arg0;
              if(!request.getRequestURI().contains("index")){ // set condition that will be checked to verify if the user is logged in
                   System.out.println("redirecting ... ");
                   RequestDispatcher d = arg0.getRequestDispatcher("/index.jsp");
                   d.forward(arg0, arg1);
              arg2.doFilter(arg0, arg1);
         public void init(FilterConfig arg0) throws ServletException {
    }in you web.xml add :
    <filter>
              <filter-name>test</filter-name>
              <filter-class>test.Test</filter-class>
         </filter>
         <filter-mapping>
              <filter-name>test</filter-name>
              <url-pattern>/*</url-pattern>
         </filter-mapping>

  • When I try to drag the iphoto library to the external disk a forbidden (circle with slash through it) icon appear. Why do you suppose it is preventing me from adding to external drive? These are pictures I have taken. I believe it cannot find the origina

    When I try to drag the iphoto library to the external disk a forbidden (circle with slash through it) icon appear. Why do you suppose it is preventing me from adding to external drive? These are pictures I have taken. I believe it cannot find the original file.  Please help.
    Thanks.

    What happens if you try to  Option-drag the library to the EHD?  The same icon?
    Make sure the EHD is formatted Mac OS X Extended (journaled) with Ownership set to be ignored:
    OT

  • Need quick TIP: remove "Copy access and configuration settings" from added package

    I added a modified package in APPVMAN with the option "Copy access and configuration settings".
    Package is unpublished. But shows AD groups as a current package because I used the option "Copy access and configuration settings"
    QUESTION:
    How to Remove (and then add) the option "Copy access and configuration settings" from added package.
    Cannot find it.
    Thanks.
    --- When you hit a wrong note its the next note that makes it good or bad. --- Miles Davis

    sorry for the panic :)
    before publishing an updated package to existing groups of initial package I hit the option
    "Copy access and configuration settings".
    But first I wanted to test it for TEST group. Didn't think that AD settings will be applied (do it first time).
    Just to confirm:
    1. I will remove current groups from updated(unpublished package)
    2. Will add Test group and test the package.
    3  In case it is OK I can then add removed(needed) groups.
    I want to be sure that after removing and adding needed groups all other settings will be intact.
    Thanks.
    --- When you hit a wrong note its the next note that makes it good or bad. --- Miles Davis

  • TS1389 Even after I remove SC Info folder, I am prevented from accessing 1 of the 34 tunes on a purchased album. What next?

    Even after I remove SC Info folder, I am prevented from accessing 1 of the 34 tunes on a purchased album.  Keeps prompting me to authorize computer.  What next?

    If you're only getting the authorisation alert on one track on the album, that suggests the track is damaged.
    If your country's iTunes Store allows you to redownload purchased tracks, I'd delete your current copy of the track and try redownloading a fresh one. See the following document for instructions:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Otherwise, I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the item that is not playing properly. If you can't see "Report a Problem" next to the item, click the "Report a problem" button. Now click the "Report a Problem" link next to the item.

  • Remove/Hide Pause message/symbol from tv screen

    Hi,
    Can you remove/hide the Pause message/symbol from the tv screen?
    Left it on longer than expected a couple of times and 'burns' an image onto the screen, which takes a while to go.
    Thanks.

    As far as I know this is not possible
    Life | 1967 Plus Radio | 1000 Classical Hits | Kafka's World
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Helpful Post?
    If a post has been helpful, say thanks by clicking the ratings star.

Maybe you are looking for

  • Error while installing PI 7.1

    Hello SDNers, I am trying to install PI 7.1 (on SQL 2005/Windows 2003 ). During the "Create SAP store procedures" i'm getting some. The sapinstlog is as below, INFO 2008-09-25 15:12:44.281 Creating file C:\Program Files\sapinst_instdir\PI71\INSTALL\S

  • HT1976 i have problem with my iphone, it;s never lock and not read sim card, before reinstaling 6.01, thnx juliany

    i have problem with my iphone, it;s never lock and not read sim card, before reinstaling 6.01, thnx juliany

  • OS X 10.4.6 and Linksys PPSX1 printing issue

    I recently upgraded to Tiger from Panther with a couple of regrets, one of which is related to using a Linksys PPSX1 Etherfast Print Server. Under Panther I had successfully created a printer using LPD/LPR, naming a que and selecting my printer (an N

  • IDOCs are corrupted by Idoc adapter (probably)

    Hi, in our scenario we send IDOCs to a receiver, that is a SAP R3 System. In general, It works fine, but sometimes the IDOC structure at the receiver's side is corrupt, e.g. all segments are flat insteadof organized in a hierarchy. We already have up

  • Projector error requires Xtra (flash movie ...

    I have flash asset xtra in my xtras folder next to the projector. Yet, when clicked on the projector, I get this error. This application requires xtra (flash movie ...) that either did not How can I fix it? I am using D11.5. Is the Flash asset xtra c