Rechtacek'sMy notices, hints or tipsWho Am I? |
|
|
Friday Jun 13, 2008
A secret tooltip in Options dialog
Now that we have been speaking of tooltips in NetBeans IDE (How do you like balloon-like tooltip?) I remembered a tooltip which I have recently added into NetBeans 6.1 IDE. There is a new tooltip in Tools|Options dialog in General page over Use System Proxy Settings:
This tooltip shows a Network HTTP Proxy which was detected from user's operating system. It can help users to see what proxy is active right now, or to make them sure the right one proxy was found. Just a note: If NetBeans launcher cannot found information if a proxy is active in user's system or it doesn't, the Use System Proxy Settings will be disabled. In the case of launcher found that no proxy is currently active, the tooltip will show a message 'Direct connection'
What do you think of it? Doesn't it make sense? And in general, what are your experiences with using Network Proxy support in NetBeans IDE? Do you need to do setup Network Proxy manually? Or, you don't care about Network Proxy because it works out-of-box? Thanks for your opinion. Posted at 09:14AM Jun 13, 2008 by Rechtacek's in NetBeans | Comments[4]
Tuesday Jun 03, 2008
How do you like balloon-like tooltip?
NetBeans IDE regularly checks for available updates of your IDE's installed plugins. Since NetBeans 6.0 IDE the NetBeans team delivering patches almost monthly and it makes alerting users about new updates more important than ever. On this account Stan introduced balloon-like tooltip in NetBeans 6.1 IDE. The balloon will notify IDE users about available updates in the IDE status line if some updates found. Like this The balloon is showing for 30 seconds when Plugin Manager found available updates. Or an user can invoke it like tooltip on mouse over the update icon Some users (most of IDE users I believe) like this balloon and some don't. I got some feedback on NetBeans 6.1 IDE and did a little change for NetBeans 6.5 IDE:
What about you? How do you like the balloon stuff? Thank you for feedback Posted at 04:47PM Jun 03, 2008 by Rechtacek's in NetBeans | Comments[13]
Saturday May 10, 2008
JavaOne 2008 is over!
As quickly as JavaOne 2008 was opened it was over. I saw a couple of interesting sessions or BOFs, some of them were amazing, a few a little boring and I think it was good stuff. I can meet many of NetBeans platform users which the best one benefit such congresses. Among other things, a lot amazing parties belong to JavaOne as well as technical sessions. In the end, the After Dark party with some Rock music on the stage. However it was over over very quickly too Posted at 02:21AM May 10, 2008 by Rechtacek's in NetBeans | Comments[2] A few words about my BOF
Wednesday. The seventh of May. I attended couple of sessions and except that I was hearing the presentation matter I was watching speakers: theirs opening of session, how to do demonstration on the stage, how to recover if something went wrong and so on. I must say it made me calm down. Speakers as well as attendees take everything at ease, didn't worries anyhow. So, it was good message for me
Geertjan and me did the last tuning of laptops for our demonstration, guys from Moscone setup mikes for us and all went good, we just were waiting on the stage when the first attendees came .... and our show started. I dare to say the BOF went good, all demos were working (with a irrelevant exception), attendees didn't go away (with minor exceptions as well) and many of them looked like be interested in the matter of this BOF. Actually, we had to stop Questions/Answers because our time was out. However we weren't be faced to standing ovation Just was a pity no NetBeans Platform guys came early to take some pictures. Maybe next time In the end I would like to say big THANKS to Geertjan for his support while preparing our talk. Posted at 01:09AM May 10, 2008 by Rechtacek's in Personal | Comments[0]
Wednesday May 07, 2008
My first participation at JavaOne 2008
Monday. I've just registered and then look around CommunityOne 2008. Many sessions, many peoples and many thing which I have do do Then I saw very interesting session of NetBeans Dream Team members Fabrizio Giudici and Tom Wheeler with Geertjan showcased examples of desktop applications built on the NetBeans platform.
More my pictures from JavaOne 2008 and from San Francisco you can find in http://picasaweb.google.com/jiri.rechtacek/JavaOne2008 Posted at 12:40AM May 07, 2008 by Rechtacek's in Personal | Comments[0]
Friday Apr 25, 2008
How to customize Plugin Manager to your needs?
UI of NetBeans Plugin Manager (Tools|Plugins in NetBeans6 menu item) was designed for a long time and then tunned a bit to fit all objectives:
I believe it will meet most of users needs however it couldn't cover any imaginable requirement. On this account there are a few options what might be useful for developers using NetBeans platform. I summarized these possibilities at http://wiki.netbeans.org/FaqPluginManagerCustomization. Such as to make Plugin Manager showing all modules regardless of its visibility flag or to show plugin code name in plugin's details. Have fun! Posted at 01:11PM Apr 25, 2008 by Rechtacek's in NetBeans | Comments[0]
Thursday Apr 10, 2008
Stop by at JavaOne's BOF: Consumer IDE
Are you attending JavaOne 2008? Geertjan Wielenga and I will be giving BOF Our Birds-on-a-Feather (BOF) Consumer IDE introduces a new
approach. Provide a high-personalized distribution for users and allow users to customize the application on-the-fly and get exactly what they want to have. We show several demos of this functionality and then make a tutorial how to design application using that concept: a draft of API and code snippets are inclusive Posted at 08:59AM Apr 10, 2008 by Rechtacek's in NetBeans | Comments[1]
Sunday Mar 30, 2008
Quick Check For Updates
As you know, a feature for updating or install new stuff into NetBeans IDE was completely resigned for NetBeans 6.0. Accordingly the Update Center Wizard menu item was replaced by Tools|Plugins menu item. However we got a feedback that some users can hardly find out how to check for IDE updates. On basis of this valuable feedback we add new one menu item Help|Check For Updates in NetBeans 6.1 what is coming soon. Thanks, NetBeans community. So, there are three different way how to see available IDE updates in NetBeans 6.1:
If an user invokes this one item, it opens the wizard which connects all subscribed Update Centers and search for new updates. If any updates found then the wizard follow user through update installation.
If no updates are available it just says that IDE is up to date.
I believe that UI improvement would be useful and helpful as well. Posted at 12:39PM Mar 30, 2008 by Rechtacek's in NetBeans | Comments[0]
Monday Mar 17, 2008
Missing Modules Resolver (part II)
For those who are interested in implementation of Missing Modules Resolver I can show some implementation details. The Missing Modules Resolver is built on the top of Autoupdate API and uses several Autoupdate services for find out broken modules, download&install missing modules to match its dependencies and enable them again in the end. Rest of implementation is just UI. Okay, let's see the utilized services and look at code snippets. Find out broken modulesEntry point into Autoupdate API is theUpdateManager.getDefault ()what providers set of units which can be browsed in UI and perform operations on them (i.e. install, update or unistall etc.) Each UpdateUnit represents a NetBeans module either as installed in IDE or available on Update Center. If a module is already installed but also has available higher version in any Update Center, the module has update one. Now, we need find out modules what are already installed but aren't enabled in IDE. Collection<UpdateUnit> units = UpdateManager.getDefault().getUpdateUnits(UpdateManager.TYPE.MODULE);Great, we have installed but disabled modules but how to diagnose the module is broken and cannot be enabled? Ask them why cannot be enable, i.e. get its broken dependencies. If there are some broken we have a candidate for resolving. OperationContainer<operationsupport> forEnable = OperationContainer.createForEnable (); // take support for enabling modules So, now we have all candidate for resolving its problems. Look for missing modulesNow let's look for missing modules. Each candidate knows own broken dependencies. These dependencies are the clue for us to search out set of missing module which can fix these dependencies. There is a sample how to get it: Collection<UpdateElement> missingModules = ... Great, we found out a collection of missing modules what are required by other modules in IDE. We should install them. Download&InstallTake the operation container for install operation, put all missing modules into this container what can perform all action for install them: download, validate, install and restart IDE if needed. OperationContainer<InstallSupport> forInstall = OperationContainer.createForInstall(); // take the install container Enabled broken modules againIt's easy, just let's take a operation container for enabling modules, put all broken module and invoke enable action. All module should be able to turn on again.OperationContainer<OperationSupport> forEnable = OperationContainer.createForEnable (); // take support for enabling modules
That's all Who would like to see all sources or contribute some improvements or fix bugs, go into Posted at 07:13PM Mar 17, 2008 by Rechtacek's in NetBeans | Comments[0]
Friday Mar 14, 2008
Do you know the plugin Missing Modules Resolver?
Haven't you ever seen that NetBeans IDE cannot start all modules? And did the dialog Disable or Exit IDE come? It shouldn't but rarely happened sometime.
You have to decide to either disable the affected module/s or exit launching of IDE. There was no way how solve it. Only reinstall IDE or investigate the problem deeply. [1] Now the plugin Missing Module Resolver could help you to resolve the problem. The resolver does find of all IDE modules which are installed but cannot be loaded by NetBeans Module System because have broken module-to-module dependency, probably some modules are missing. If the missing module is available on any Update Center then the Resolver will download and install them. In the end the Missing Module Resolver switch on the affected modules again. How the resolver works?
How to get this module?
or
Try that plugin and enjoy it.
[1] Why a module cannot be switch on aka enabled? Most of module depends on other modules and cannot be loaded without them. If you are used to switching more user dirs or customize your IDE installation externally, it can lead to problems like that. Of course, it might be caused by Plugin Manager in case of bug Posted at 01:49AM Mar 14, 2008 by Rechtacek's in NetBeans | Comments[1] |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||