upload addon vaadin to repository maven.vaadin - maven

good day, I would like to load my addon vaadin in maven vaadin, I have already loaded it in the vaadin directory, but I do not know how to publish it in the maven vaadin repository. I thought that this process was done automatically when uploading it to the vaadin directory, but it is not like that.
Currently, the plugin in the vaadin directory is seen in this way in the maven section:

I just had a look at your component and seems like the license is missing. Here are the steps to choose the license:
Go to your component view. I guess it's this one? https://vaadin.com/directory/component/juicyaceeditor
There should be a button called Edit component at the top
Choose Versions tab and click Edit
Scroll down and you should see a list of licenses, make sure you provide a license for each license of your component and don't forget to click Save.
The end result should look something like this:
P/s: Another way to manage your components is by going to See my components, from there you can see and edit any component you have uploaded to Directory.

If you edit your component, and go to the Versions tab, you can edit a version to make sure it's marked as Available. You should also add at least one supported framework.

Related

I wish to add a button on the admin dashboard in Joomla 3.5, where in code do I need to make changes?

This button would be 'share' and placed at the article editor just like we have buttons like 'save','edit' etc
I facing a problem understanding joomla code structure and which file I need to make changes so as to add this button. Should it be administrator/layout/editor/ ?
There is a free plugin that can help you share your contents in social network. have a look http://extensions.joomla.org/extensions/extension/social-web/social-comments/social-comments-and-sharing-for-joomla .
Also there are several other plugins that may suit your requirements then to hack the core files http://extensions.joomla.org/extensions/extension?searchall=share+button
if you want to develop your custom editor button then you can check this link
Add Custom Button to Joomla's Article Editor (TinyMCE)

Tuleap - Project Dashboard Missing

We are using Tuleap in our Organization, currently we are facing a serious issue.
We have created around 40 projects in Tuleap and all those were working fine, suddenly we find project dashboard is missing inside one of the project which was working well all these days. (i.e. the screen which appears once I click on any project from Personal Page).
The real problem is that I don't find that custom widgets option in one of the project, because of that I could not recreate card wall to the project dashboard.
The image below shows how the project dashboard appears now. You can see the custom widget option as well the cardwall are missing.
You talk about the project dashboard yet you have attached a screenshot of the project tree. Is it that you are redirected to the project tree when you click on the link to the project dashboard? Given that this only happens on one project, I would guess that the link has been badly configured (project administration -> service conguration). The pattern should be similar to the one in a valid project.
P.S. This is more of a user question than a code question so I would guess its place would be on superuser not stackoverflow.
P.P.S Nice custom homemade theme. There is a green flaming parrot theme you might want to check-out as an alternative (> Tuleap 7.0).

Hide Menu items from Netbeans Platform Application in Maven

This is related to How do I hide menus without a layer file in NetBeans Platform? and How to remove items from menu in netBeans platform?. Sadly those are related to an ant built platform.
I'm trying to find out how to the same in Maven built application. I bet there's a way to add a custom layer file.
Any ideas?
It actually works the same way even if you have a Maven-based NetBeans platform application. Try right clicking the module of interest and selecting New->Other->Module Development->XML Layer. This will create and register the layer.xml for you, which you can then hack as desired.

Are there any special event hooks for joomla modules

I have been searching special event hooks for use to track and update module forms. I found contenthooks on the documentation site but I couldn't get anything for modules. I want to add a plugin so that it adds an extra field viz. radio button to every module form. Finally I want to use the value of this radio field in templates/your-template/html/module.php. Can someone point me in the right direction towards this. Thanks :)
Jooma does not have event driven structure like for example .NET or Java. However if you want to trigger some additional functionality on certain event you may create a plugin. Plugin is something different than module or component but it 'collaborates' with them. It handles some per-defined events:
[http://docs.joomla.org/Plugin/Events][1]
[1]: http://docs.joomla.org/Plugin/Events and it lets you define your own.
You may also try the way I usually take which is customize module display. You simply copy
view file of the module you want to modify to your template. For example:
/modules/mod_feed/tmpl/default.php
to
/templates/{your template}/mod_feed/default.php
Now you can freely modify this file without any risk that it may be overwritten on the next Joomla update. Just don't forget to set your overwrite in module settings: go to administrator, modules, choose module to edit and in the tab 'Advanced' select 'Alternative Layout'.
I hope this helps and good luck!
Take a look at the new com_ajax that is in 3.2.

Modify contents of Firefox download dialog from add-on kit

I'd like to be able to add an option to the download dialog that pops-up in Firefox when starting a file download. Is it possible to do so using the new add-on SDK or do I have to do it the old way?
edit: Obviously, if the new option is selected, I need a way to know it and execute code based on it.
That's something you would use XUL overlays for. I guess that the dialog you are talking about is chrome://mozapps/content/downloads/downloads.xul - the download manager. AFAIK doing this isn't possible with the Add-on SDK, it only provides the most common UI integration points. You could create a traditional extension however, it can overlay any dialog.
There is no existing module that will help you that I know of, so you would have to create one, or wait for one to be made by someone else. But the main idea to extending browser UI is simple, and goes like this:
When the addon is loaded, scan for open windows of the type that you wish to extend.
extend the open windows by adding xul elements and javascript to the page.
listen for newly opened windows, and test that they are the type that you are looking for once they open
extend newly opened windows while your addon is active
Clean up after yourself when windows close or when your addon is disabled/uninstalled.
The last step is the most important and never matter with old school extensions which were not restartless.
Some for the built-in modules that you can look at that do this are the widget module, the context menu module, and the hotkeys module, all of which you can find here.
I've made a couple myself which are the toolbar button module, the xulkeys module, the menuitems module, and a few others, all of which you can find here.
Recently I wrote an extension do the same things. A bootstrap extension, not using addon-sdk.
I already submit it on AMO, but wait for review
https://addons.mozilla.org/en-US/firefox/addon/download-dialog-tweak/
And the source code
https://github.com/muzuiget/download_dialog_tweak

Resources