Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Platform - User Assistance (UA) » Cheat Sheet
Cheat Sheet [message #474092] Tue, 24 June 2008 08:27 Go to next message
Eclipse UserFriend
Originally posted by: bucher_jenny.web.de

Hi,

I would like to have cheat sheets in my application.
What I have done so far:
I add a cheatsheet,
and following plugins:
org.apache.lucene
org.apache.lucene.analysis
org.eclipse.help.base
org.eclipse.help.ui
org.eclipse.ui.cheatsheets
org.eclipse.ui.forms

But it also adds menu actions like Search and Run. But I would like to
have only my cheat sheet.
Do sb know why this menu actions are added and how I can get rid of them
and the eclipse standart cheat sheets?
Re: Cheat Sheet [message #474108 is a reply to message #474092] Wed, 25 June 2008 17:55 Go to previous messageGo to next message
Chris Goldthorpe is currently offline Chris GoldthorpeFriend
Messages: 815
Registered: July 2009
Senior Member
I think the standard cheat sheets as well as the menu items are probably
coming from org.eclipse.ui.platform. If you see the cheat sheet "Check
out a CVS project" then that is coming from the platform, and the
solution would be to not include that project in your application.

Jenni wrote:
> Hi,
>
> I would like to have cheat sheets in my application.
> What I have done so far:
> I add a cheatsheet,
> and following plugins:
> org.apache.lucene
> org.apache.lucene.analysis
> org.eclipse.help.base
> org.eclipse.help.ui
> org.eclipse.ui.cheatsheets
> org.eclipse.ui.forms
>
> But it also adds menu actions like Search and Run. But I would like to
> have only my cheat sheet.
> Do sb know why this menu actions are added and how I can get rid of them
> and the eclipse standart cheat sheets?
>
>
>
Re: Cheat Sheet [message #474119 is a reply to message #474108] Wed, 02 July 2008 13:56 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: bucher_jenny.web.de

You're right.
But I still have a little problem ;)
If I open the Cheat Sheet Selection there is a category called Java
Development. Do somebody know how I can get this out?


Cheers


Chris Goldthorpe wrote:

> I think the standard cheat sheets as well as the menu items are probably
> coming from org.eclipse.ui.platform. If you see the cheat sheet "Check
> out a CVS project" then that is coming from the platform, and the
> solution would be to not include that project in your application.

> Jenni wrote:
>> Hi,
>>
>> I would like to have cheat sheets in my application.
>> What I have done so far:
>> I add a cheatsheet,
>> and following plugins:
>> org.apache.lucene
>> org.apache.lucene.analysis
>> org.eclipse.help.base
>> org.eclipse.help.ui
>> org.eclipse.ui.cheatsheets
>> org.eclipse.ui.forms
>>
>> But it also adds menu actions like Search and Run. But I would like to
>> have only my cheat sheet.
>> Do sb know why this menu actions are added and how I can get rid of them
>> and the eclipse standart cheat sheets?
>>
>>
>>
Re: Cheat Sheet [message #474122 is a reply to message #474119] Wed, 02 July 2008 21:23 Go to previous messageGo to next message
Chris Goldthorpe is currently offline Chris GoldthorpeFriend
Messages: 815
Registered: July 2009
Senior Member
I can give you a short answer and a longer answer.

The short answer is org.eclipse.jdt is contributing these cheat sheets.

The longer answer is that to find out where any cheat sheet comes from
open the Plug-in Registry view and look under org.eclipse.ui.cheatsheets
at the extension point org.eclipse.ui.cheatsheets.cheatSheetContent. You
will see a list of cheat sheets and can see which plugin contributed them.

Jenni wrote:
> You're right.
> But I still have a little problem ;)
> If I open the Cheat Sheet Selection there is a category called Java
> Development. Do somebody know how I can get this out?
>
>
> Cheers
>
>
> Chris Goldthorpe wrote:
>
>> I think the standard cheat sheets as well as the menu items are
>> probably coming from org.eclipse.ui.platform. If you see the cheat
>> sheet "Check out a CVS project" then that is coming from the platform,
>> and the solution would be to not include that project in your
>> application.
>
>> Jenni wrote:
>>> Hi,
>>>
>>> I would like to have cheat sheets in my application.
>>> What I have done so far:
>>> I add a cheatsheet,
>>> and following plugins:
>>> org.apache.lucene
>>> org.apache.lucene.analysis
>>> org.eclipse.help.base
>>> org.eclipse.help.ui
>>> org.eclipse.ui.cheatsheets
>>> org.eclipse.ui.forms
>>>
>>> But it also adds menu actions like Search and Run. But I would like
>>> to have only my cheat sheet.
>>> Do sb know why this menu actions are added and how I can get rid of
>>> them and the eclipse standart cheat sheets?
>>>
>>>
>>>
>
>
Re: Cheat Sheet [message #474123 is a reply to message #474122] Thu, 03 July 2008 08:22 Go to previous message
Eclipse UserFriend
Originally posted by: bucher_jenny.web.de

Hey, thats cool, thank you.
But I cant get the org.eclipse.jdt out. Its in the run configuration and I
need it there. Is there another way to get this cheatsheet out?
Sry for this noob questions, but I cant find a solution...

Cheers


Chris Goldthorpe wrote:

> I can give you a short answer and a longer answer.

> The short answer is org.eclipse.jdt is contributing these cheat sheets.

> The longer answer is that to find out where any cheat sheet comes from
> open the Plug-in Registry view and look under org.eclipse.ui.cheatsheets
> at the extension point org.eclipse.ui.cheatsheets.cheatSheetContent. You
> will see a list of cheat sheets and can see which plugin contributed them.

> Jenni wrote:
>> You're right.
>> But I still have a little problem ;)
>> If I open the Cheat Sheet Selection there is a category called Java
>> Development. Do somebody know how I can get this out?
>>
>>
>> Cheers
>>
>>
>> Chris Goldthorpe wrote:
>>
>>> I think the standard cheat sheets as well as the menu items are
>>> probably coming from org.eclipse.ui.platform. If you see the cheat
>>> sheet "Check out a CVS project" then that is coming from the platform,
>>> and the solution would be to not include that project in your
>>> application.
>>
>>> Jenni wrote:
>>>> Hi,
>>>>
>>>> I would like to have cheat sheets in my application.
>>>> What I have done so far:
>>>> I add a cheatsheet,
>>>> and following plugins:
>>>> org.apache.lucene
>>>> org.apache.lucene.analysis
>>>> org.eclipse.help.base
>>>> org.eclipse.help.ui
>>>> org.eclipse.ui.cheatsheets
>>>> org.eclipse.ui.forms
>>>>
>>>> But it also adds menu actions like Search and Run. But I would like
>>>> to have only my cheat sheet.
>>>> Do sb know why this menu actions are added and how I can get rid of
>>>> them and the eclipse standart cheat sheets?
>>>>
>>>>
>>>>
>>
>>
Re: Cheat Sheet [message #617656 is a reply to message #474092] Wed, 25 June 2008 17:55 Go to previous message
Chris Goldthorpe is currently offline Chris GoldthorpeFriend
Messages: 815
Registered: July 2009
Senior Member
I think the standard cheat sheets as well as the menu items are probably
coming from org.eclipse.ui.platform. If you see the cheat sheet "Check
out a CVS project" then that is coming from the platform, and the
solution would be to not include that project in your application.

Jenni wrote:
> Hi,
>
> I would like to have cheat sheets in my application.
> What I have done so far:
> I add a cheatsheet,
> and following plugins:
> org.apache.lucene
> org.apache.lucene.analysis
> org.eclipse.help.base
> org.eclipse.help.ui
> org.eclipse.ui.cheatsheets
> org.eclipse.ui.forms
>
> But it also adds menu actions like Search and Run. But I would like to
> have only my cheat sheet.
> Do sb know why this menu actions are added and how I can get rid of them
> and the eclipse standart cheat sheets?
>
>
>
Re: Cheat Sheet [message #618941 is a reply to message #474108] Wed, 02 July 2008 13:56 Go to previous message
Eclipse UserFriend
Originally posted by: bucher_jenny.web.de

You're right.
But I still have a little problem ;)
If I open the Cheat Sheet Selection there is a category called Java
Development. Do somebody know how I can get this out?


Cheers


Chris Goldthorpe wrote:

> I think the standard cheat sheets as well as the menu items are probably
> coming from org.eclipse.ui.platform. If you see the cheat sheet "Check
> out a CVS project" then that is coming from the platform, and the
> solution would be to not include that project in your application.

> Jenni wrote:
>> Hi,
>>
>> I would like to have cheat sheets in my application.
>> What I have done so far:
>> I add a cheatsheet,
>> and following plugins:
>> org.apache.lucene
>> org.apache.lucene.analysis
>> org.eclipse.help.base
>> org.eclipse.help.ui
>> org.eclipse.ui.cheatsheets
>> org.eclipse.ui.forms
>>
>> But it also adds menu actions like Search and Run. But I would like to
>> have only my cheat sheet.
>> Do sb know why this menu actions are added and how I can get rid of them
>> and the eclipse standart cheat sheets?
>>
>>
>>
Re: Cheat Sheet [message #618951 is a reply to message #474119] Wed, 02 July 2008 21:23 Go to previous message
Chris Goldthorpe is currently offline Chris GoldthorpeFriend
Messages: 815
Registered: July 2009
Senior Member
I can give you a short answer and a longer answer.

The short answer is org.eclipse.jdt is contributing these cheat sheets.

The longer answer is that to find out where any cheat sheet comes from
open the Plug-in Registry view and look under org.eclipse.ui.cheatsheets
at the extension point org.eclipse.ui.cheatsheets.cheatSheetContent. You
will see a list of cheat sheets and can see which plugin contributed them.

Jenni wrote:
> You're right.
> But I still have a little problem ;)
> If I open the Cheat Sheet Selection there is a category called Java
> Development. Do somebody know how I can get this out?
>
>
> Cheers
>
>
> Chris Goldthorpe wrote:
>
>> I think the standard cheat sheets as well as the menu items are
>> probably coming from org.eclipse.ui.platform. If you see the cheat
>> sheet "Check out a CVS project" then that is coming from the platform,
>> and the solution would be to not include that project in your
>> application.
>
>> Jenni wrote:
>>> Hi,
>>>
>>> I would like to have cheat sheets in my application.
>>> What I have done so far:
>>> I add a cheatsheet,
>>> and following plugins:
>>> org.apache.lucene
>>> org.apache.lucene.analysis
>>> org.eclipse.help.base
>>> org.eclipse.help.ui
>>> org.eclipse.ui.cheatsheets
>>> org.eclipse.ui.forms
>>>
>>> But it also adds menu actions like Search and Run. But I would like
>>> to have only my cheat sheet.
>>> Do sb know why this menu actions are added and how I can get rid of
>>> them and the eclipse standart cheat sheets?
>>>
>>>
>>>
>
>
Re: Cheat Sheet [message #618953 is a reply to message #474122] Thu, 03 July 2008 08:22 Go to previous message
Eclipse UserFriend
Originally posted by: bucher_jenny.web.de

Hey, thats cool, thank you.
But I cant get the org.eclipse.jdt out. Its in the run configuration and I
need it there. Is there another way to get this cheatsheet out?
Sry for this noob questions, but I cant find a solution...

Cheers


Chris Goldthorpe wrote:

> I can give you a short answer and a longer answer.

> The short answer is org.eclipse.jdt is contributing these cheat sheets.

> The longer answer is that to find out where any cheat sheet comes from
> open the Plug-in Registry view and look under org.eclipse.ui.cheatsheets
> at the extension point org.eclipse.ui.cheatsheets.cheatSheetContent. You
> will see a list of cheat sheets and can see which plugin contributed them.

> Jenni wrote:
>> You're right.
>> But I still have a little problem ;)
>> If I open the Cheat Sheet Selection there is a category called Java
>> Development. Do somebody know how I can get this out?
>>
>>
>> Cheers
>>
>>
>> Chris Goldthorpe wrote:
>>
>>> I think the standard cheat sheets as well as the menu items are
>>> probably coming from org.eclipse.ui.platform. If you see the cheat
>>> sheet "Check out a CVS project" then that is coming from the platform,
>>> and the solution would be to not include that project in your
>>> application.
>>
>>> Jenni wrote:
>>>> Hi,
>>>>
>>>> I would like to have cheat sheets in my application.
>>>> What I have done so far:
>>>> I add a cheatsheet,
>>>> and following plugins:
>>>> org.apache.lucene
>>>> org.apache.lucene.analysis
>>>> org.eclipse.help.base
>>>> org.eclipse.help.ui
>>>> org.eclipse.ui.cheatsheets
>>>> org.eclipse.ui.forms
>>>>
>>>> But it also adds menu actions like Search and Run. But I would like
>>>> to have only my cheat sheet.
>>>> Do sb know why this menu actions are added and how I can get rid of
>>>> them and the eclipse standart cheat sheets?
>>>>
>>>>
>>>>
>>
>>
Previous Topic:eclipse standalone contextsensitive help
Next Topic:Default to pop-up help window in RCP?
Goto Forum:
  


Current Time: Thu Mar 28 22:41:31 GMT 2024

Powered by FUDForum. Page generated in 0.04827 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top