Pentaho-IVYDC and IVYBC Plugin - pentaho

I Installed IVYDC And IVYBC plugins through pentaho market place but it is not rendered properly in pentaho dashboard .. when i tried to create dashboard through pentaho cde dashboards i cant use these two plugins ..In the dashboard components panel these two plugins are not showing..how to use these components in pentaho dashboard
Thanks in advance

I had the same problem. I send a mail to Ivy support and this was the answer:
IVYBC is not REQUIREJS ready. Be sure to unselect the REQUIREJS option
in your dashboard settings and reload the page. The components should
appearm
It worked to me.

Related

Where to find Quarkus run configuration in Intellij IDEA?

Some time ago I used to run Quarkus projects in Linux as any other proyect, this means by clicking "Edit Configurations" and selecting "Quarkus (Maven)" as you can see in this picture:
But now I´m using Windows and those menus have disapeared:
As an alternative currently I´m running my Quarkus projects from Maven tab, which isn´t a fashion way:
So at the begining I thought this was due to a bug in Quarkus Tools plugin that I created a new issue, however that plugin does not offer such feature. Could anybody give a hand on how to run Quarkus projects as any other project? Thanks in advance.
Run configurations are offered by this plugin: https://plugins.jetbrains.com/plugin/14242-quarkus-integration
Looks like it is discontinued though, marked as "deprecated" and it's not showing in the Plugin marketplace (within IntelliJ) for me, so I had to install it via the website.
AFAIK there are plans for the official JetBrains bundled plugin to support it (https://youtrack.jetbrains.com/issue/IDEA-228507), but it's not done yet.

Pentaho - How to add Saiku Analytics component on dashboard using CDE

I have a community edition of Pentaho and also installed 'Saiku Analytics' and 'Community dashboard editor' CDE.
How can I add an interactive report on dashboard and have this dashboard available for a particular user.
First you save the query that you want to show in you CDE, in the Saiku component on the top is a disk image, then on the CDE, at the component panel you add a Saiku widget and the configure the properties. You will use the same file that you saved on the Saiku component.

Where is the Template menu choice in CloudBees Jenkins?

I followed the instructions here: http://www.cloudbees.com/jenkins-enterprise-by-cloudbees-download.cb for RH6 installation, and I see the Template Project Plugin installed in the Manage Jenkins->Manage Plugins->Installed page in Jenkins. How come I don't see the Template choice in left pane? What am I missing?
I can't follow the tutorial here http://jenkins-enterprise.cloudbees.com/docs/user-guide-bundle/template.html# for example.
Resolution: you were not running Jenkins Enterprise after all.

Adding a "Create Jira Ticket" view to an Eclipse RCP application

I work on an Eclipse RCP application and we are trying to encourage people to move from our old trac bug reporting system to our new Jira based system.
Due to users being unfamiliar with Jira, they tend to still report bugs by the old system in preference to the new system. We don't want to force people to switch by taking down the old trac system, so I thought that if it were much easier to report via Jira however, they would be much more likely to switch.
What I was thinking was that I could integrate a "Submit Jira Ticket" view directly into our application, so that submitting a ticket was always a button click away, and where some of the complexity of Jira could be hidden behind default fields added by our application.
What would be the easiest way to achieve this? Are there already eclipse plug-ins that I could add to my Eclipse RCP configuration, or would I have to write my own view plug-in?
One option would be to use the Mylyn Eclipse plugin which already has a JIRA connector. This lets you create, update, view and search for issues and has been around for a while, so it's very stable.
If you want a simpler form to just submit issues, then you'd probably have to write your own view. JIRA provides a REST API that would support this.
As noted by #NickWilson, you can use Mylyn as the vehicle..
Have a look at the extensions points org.eclipse.mylyn.tasks.core.templates and org.eclipse.mylyn.tasks.bugs.support. For an example of their use by Atlassian see the plugin com.atlassian.connector.eclipse.jira.ui.
These extension points are used to report bugs via the "Help" >> "Report Bug or Enhancement..." menu item.
Atlassian has a plugin for Eclipse depending on the version of JIRA.
https://marketplace.atlassian.com/plugins/com.atlassian.ide.plugins.eclipse.jira
Once you install this plugin, use that updated eclipse install as base eclipse install and include the feature in your bundled rcp application.

How to write an IntelliJ IDEA Plugin?

IDEA has many plugins to use. I.e. IDEtalk is one of them which I use. How can I code a simple plugin that just connects to Internet and shows a web page? (no need for an address bar but it is not a problem to be). I want my plugin's shortcut's button locate at my IDE as like IDEtalk, Commander, Maven Projects etc.
Any ideas?
Check the documentation and the source code of the other plug-ins available in the public git repository of the Community Edition.
There is a Creating Your First Plugin guide on JetBrains web site. It covers all the needed steps from plugin creation to deployment to the plugin repository.
You might also want take a look in the source code of a simple plugin like Twitter Integration Plugin which I recently implemented. Or check a more complex one like this one.