Disappearing buttons in ckeditor while using two plugins - plugins

I have installed widget plugin and did copy/paste of the code from here
Then, I have installed following plugin: HTMLButtonsPlugin
The problem is that when both of them are enabled, I can see the buttons only of the first of the plugins listed in my config.js.
Any ideas why this is happening?

Related

Eclipse's Color Theme Issue

Here's my problem: I want to install the Eclipse's Color Theme plugin, but when I go to the MarketPlace and click install, this pop-up message appears.
It says: "No repository found at http://eclipse-color-theme.github.com/update." (You should be able to look at it by clicking on this link)
I'm not sure if it is a matter of my VPN, but I tried to disable it and try again, but it didn't work. I also tried to install it manually with the zip archive, but had no success.
I would really appreciate it if you can give me a hand to finally get it installed.
Thank you in advance...
The update site has moved to https://eclipse-color-theme.github.io/update/, but the Eclipse Marketplace entry still points to the old location.
Use Help > Install New Software and work with udate site URL https://eclipse-color-theme.github.io/update/ instead.
For details see Eclipse Color Theme issue #281

Custom CKeditor plugin on Joomla installation

I have written a plugin for CKeditor according to this tutorial: Plugin Tutorial but I can't get it shown on the ckeditor's toolbar of my Joomla 1.5 installation. I have copied it in the plugins folder, registered it in the config.js as an extra plugin, even tried the Advanced Configuration in the backend settings by setting this: CKEDITOR.config.extraPlugins = 'myplugin'; or this config.extraPlugins = 'myplugin' but nothing happens, no button whatsoever. Can someone list the "installation procedure" of the plugin on a joomla 1.5 system? Thanks.
You also have to have an entry in the jos_plugins table. Unless I'm building an installation package for it, I just copy a similar record and make the changes to match my plugin - be sure to get the value in the "folder" correct.

Eclipse Plugin - XML Editor

I've followed this tutorial:
Eclipse Plugin
This tutorial explain why create a HTML Editor.
I need a Text editor,just for auto-highlight some words, anyway I thought this tuto should be a good one to start with.
The thing is that I created the Plugin project and the only thing that I changed it was the extension "pat" instead "html, htm", just that. After that I created a .pat file, but eclipse doesn't open it with my plugin, and my text editor is not in the editor's list.
Any suggestion??
Let me know if you need more information.
My guess is that you have just created the plugin, but aren't running it in your current Eclipse instance. That can be verified by opening the view "Plugin registry". That will show a list of all plugins, see if the plugin you have created is in that list.
If you click on the run button in Eclipse you will open a run configuration dialog. In one of the tabs, you get to choose what plugins should be available. Make sure your plug-in is selected. This will start up a new Eclipse instance that will run your plugin.
To make your plugin be a part of your ordinary Eclipse installation, you will need to export it to a jar and copy that jar to the dropins catalog.

Eclipse plugin sample could not be run

On my Mac computer, I follow the tutorial on this page to get the Taipan example run, but still failed so many times.
Switch to the Plug-in Development perspective and open the models folder within the org.eclipse.gmf.examples.taipan project. Explore each of the models found hereand their element properties. You'll notice that there are full and RCP versions of the generated Taipan examples to explore.
When I try to run as "Eclipse application", it launches a new eclipse app but the dialog box Examples does not have the 'Taipan Diagram' as it says:
create an empty project and a new 'TaiPan Diagram' found in the Examples folder of the New dialog
What are the possible causes? Someone helps me to solve it out?
I'm assuming that your plugin is working fine and doesnt show compilation errors?
Then the most likely reason is that you havent chosen your plugin to be active in your launch dialog.
I answered a similar question with this:
My guess is that you have just created the plugin, but aren't running it in your current Eclipse instance. That can be verified by opening the view "Plugin registry". That will show a list of all plugins, see if the plugin you have created is in that list.
If you click on the run button in Eclipse you will open a run configuration dialog. In one of the tabs, you get to choose what plugins should be available. Make sure your plug-in is selected. This will start up a new Eclipse instance that will run your plugin.
To make your plugin be a part of your ordinary Eclipse installation, you will need to export it to a jar and copy that jar to the dropins catalog.

How to see JSP errors in the Problem view in Eclipse + WTP

I have installed WTP into Eclipse Galileo. When I open up my JSPs, I get red markers indicating syntax or compile errors. However, I do not see these markers in the Navigator, Package Explorer or the Problems views. Is there a way to see which JSPs have problems in any/ all of these views?
Your project needs to have the Validation Builder installed for the Problem Markers to be created/updated. The Properties dialog on your project should have a Validation page offering the ability to add this Builder.
Possibly you project is not dynamic web project.
Try to create a sample "dynamic web project" and see what happens.