[Plugins] How to open archive files by MIME type?

2018-01-21 Thread Peter Nabbefeld
Hello, it seems impossible to open files from LibreOffice, MS Office etc. with NetBeans, as they're detected as archives, and special handling is assigned. How can I open such files using DataLoaders? Kind regards Peter - To

Re: Apache HTML/Java UI instead of ... Oracle will remove JavaFX from Oracle JDK

2018-03-12 Thread Peter Nabbefeld
Hi, has everybody discussing here actually read the document ("Java Client Roadmap Update")? There's nothing about end of awt or swing support: "Oracle will continue developing Swing and AWT in Java SE 8 and Java SE 11 (18.9 LTS). This means they will be supported by Oracle through at least

Re: Apache HTML/Java UI instead of ... Oracle will remove JavaFX from Oracle JDK

2018-03-12 Thread Peter Nabbefeld
Ouch - just answered to the thread, but used the wrong article to respond, sorry. Regards P. Am 12.03.2018 um 18:12 schrieb Geertjan Wielenga: Well, when I read the blog below from Oracle's Donald Smith, in charge of all Java things, Swing isn't even mentioned, i.e., it is all about JavaFX:

Re: Apache HTML/Java UI instead of ... Oracle will remove JavaFX from Oracle JDK

2018-03-12 Thread Peter Nabbefeld
Hi, as far as I can see, there's nothing about end of awt or swing support: "Oracle will continue developing Swing and AWT in Java SE 8 and Java SE 11 (18.9 LTS). This means they will be supported by Oracle through at least 2026." Kind regards Peter Am 12.03.2018 um 16:59 schrieb Jaroslav

Exception reporting broken

2018-03-28 Thread Peter Nabbefeld
Hello, trying to submit an exception report leads me to http://statistics.netbeans.org/analytics/detail.do?id=232241 As I'd expect JIRA on Apache web site should be used (and NetBeans BugZilla seems to be empty now), I'd see this as a broken (important) feature. My original problem is a r

Re: Exception reporting broken

2018-03-28 Thread Peter Nabbefeld
apache.org/jira/projects/NETBEANS/issues/NETBEANS-491 Gj On Wed, Mar 28, 2018 at 11:46 AM, Peter Nabbefeld wrote: Hello, trying to submit an exception report leads me to http://statistics.netbeans.org/analytics/detail.do?id=232241 As I'd expect JIRA on Apache web site should be used (and Ne

Re: Exception reporting broken

2018-04-03 Thread Peter Nabbefeld
Hm, where does the plugin originate from? Is it closed source? Regards Peter Am 29.03.2018 um 09:29 schrieb Antonio: Hi, It could be. Too bad we still don't have the source code of the plugin to hack on it! We'll have to wait to fix that. Cheers, Antonio On 29/03/18 02:51, Eirik Bakke wr

Bugtracking API question / Mylyn usage

2018-04-04 Thread Peter Nabbefeld
with Mylyn? Kind regards Peter Nabbefeld - To unsubscribe, e-mail: dev-unsubscr...@netbeans.incubator.apache.org For additional commands, e-mail: dev-h...@netbeans.incubator.apache.org For further information about the NetBeans

Re: Bugtracking API question / Mylyn usage

2018-04-04 Thread Peter Nabbefeld
I've looked into NB sources, it seems Mylyn is only used to bridge the bugzilla module in NB to the BugzillaRepositoryConnector of Eclipse, so I'll probably not need it. Regards Peter Am 04.04.2018 um 09:44 schrieb Peter Nabbefeld: Hi, while looking for some information

Re: Correct place for plugin development questions

2018-05-25 Thread Peter Nabbefeld
Hi Stephen, what does it mean, You "cannot get it working"? Which problems (behaviour or exceptions) do You have exactly? Kind regards Peter Am 25.05.2018 um 11:50 schrieb sgpa...@mainscreen.com: Hi, Can someone please direct me to the correct place for asking questions regarding plugin d

OSGi archetype problem (NETBEANS-595)

2018-05-25 Thread Peter Nabbefeld
Hello, will it be possible to fix https://issues.apache.org/jira/browse/NETBEANS-595 before release? I added a comment so it should be straightforward for somebody knowing about the Maven modules implementation. Kind regards Peter ---

Re: Correct place for plugin development questions

2018-05-25 Thread Peter Nabbefeld
ks but deprecated pcpm.addLibraries(new Library[]{lib}, projectRoot, ClassPath.COMPILE); // Fails regardless pcpm.addLibraries(new Library[]{lib}, sgRoot, ClassPath.COMPILE); // Fails regardless On 2018/05/25 10:11:41, Peter Nabbefeld wrote: Hi Stephen, what does it mea

Re: Correct place for plugin development questions

2018-05-25 Thread Peter Nabbefeld
.COMPILE); // Fails regardless On 2018/05/25 10:11:41, Peter Nabbefeld wrote: Hi Stephen, what does it mean, You "cannot get it working"? Which problems (behaviour or exceptions) do You have exactly? Kind regards Peter Am 25.05.2018 um 11:50 schrieb sgpa...@mainscreen.com: Hi, C

Re: Correct place for plugin development questions

2018-05-25 Thread Peter Nabbefeld
Oops, sorry for the duplicate postings - had some problems with my email client. Regards Peter Am 25.05.2018 um 12:11 schrieb Peter Nabbefeld: Hi Stephen, what does it mean, You "cannot get it working"? Which problems (behaviour or exceptions) do You have exactly? Kind reg

Re: Correct place for plugin development questions

2018-05-25 Thread Peter Nabbefeld
I'll try looking up the pcpmi if the visibility will let me - The pcpmi can at least provide a list of the extensible source groups, which should lead to the right value for the second parameter to addLibraries. How do get the list of types for parameter 3 I wonder? On 2018/05/25 11:57:42,

Re: OSGi archetype problem (NETBEANS-595)

2018-05-25 Thread Peter Nabbefeld
‐‐‐ Original Message ‐‐‐ On 25 May 2018 1:23 PM, Peter Nabbefeld wrote: Hello, will it be possible to fix https://issues.apache.org/jira/browse/NETBEANS-595 before release? I added a comment so it should be straightforward for somebody knowing about the Maven modules implementation. Kind

Still problems editing Java code with NB 9.0

2018-05-29 Thread Peter Nabbefeld
Hello, while RC1 is on its way to be released, I still get exceptions when typing some erroneous construct into the Java editor. E.g. I like to type the following: for (file:files) ... "files" here is a collection, and I like to use the hint to supply the type of "file" from the collectio

How to implement a new language support?

2018-06-01 Thread Peter Nabbefeld
Hello, latest tutorial I found is at https://platform.netbeans.org/tutorials/nbm-javacc-lexer.html - but JavaCC seems to be no longer actively supported. I'm also not sure, if this is using latest language infrastructure: Though it states "Requires NetBeans 8.1", it uses e.d. "org.netbeans.

Re: How to implement a new language support?

2018-06-01 Thread Peter Nabbefeld
’s org.antlr.v4.runtime.CharStream interface up to NetBeans’ org.netbeans.spi.lexer.LexerInput interface: https://gist.github.com/eirikbakke/51cf4c9375880acd4741 — Eirik On 6/1/18, 1:02 PM, "Peter Nabbefeld" mailto:peter.nabbef...@gmx.de><mailto:peter.nabbef...@gmx.de>> wrote

Re: How to implement a new language support?

2018-06-03 Thread Peter Nabbefeld
Hi Stephen, thank You for these explanations. For Flex, Bison etc. I found this: http://jflex.de/ (despite of the German TLD it's in English). There are links on this page to further related technologies. However, while the responses are all very interesting, none of them are really addressi

How to add a template file to some category?

2018-06-03 Thread Peter Nabbefeld
Hello, I'd like to add my own template to the "New File" dialog under category "Web Services". It should be available at the same time as the other templates. I've been looking around, as the result trying this in package-info.java: @TemplateRegistration(folder = "Web Services", category =

[Solved] Re: How to add a template file to some category?

2018-06-03 Thread Peter Nabbefeld
Already solved, category parameter has been wrong. P. Am 03.06.2018 um 23:55 schrieb Peter Nabbefeld: Hello, I'd like to add my own template to the "New File" dialog under category "Web Services". It should be available at the same time as the other templates.

How to create a module suite using Maven?

2018-06-04 Thread Peter Nabbefeld
Hello, using Maven, there's a project type for NetBeans Applications, but not for a NetBeans Module Suites. So I created a POM project and added some NetBeans Modules. But I cannot start it. The POM project cannot be started with NetBeans, and the single modules aren't required (though d

Re: How to create a module suite using Maven?

2018-06-04 Thread Peter Nabbefeld
you can start that and it should load the dependencies (that one will have dependencies on all your other modules). You could also create a dummy one for testing purposes. -Tim On Tue, Jun 5, 2018 at 1:53 AM, Peter Nabbefeld wrote: Hello, using Maven, there's a project type for NetBea

Re: How to create a module suite using Maven?

2018-06-05 Thread Peter Nabbefeld
chrieb Geertjan Wielenga: Tutorial: https://platform.netbeans.org/tutorials/nbm-maven-quickstart.html Gj On Tue, Jun 5, 2018 at 8:09 AM, Peter Nabbefeld wrote: Thank You, Tim! What does an application project make so special? I guess, it's not "only" the branding? BTW, can I drop

Re: How to create a module suite using Maven?

2018-06-05 Thread Peter Nabbefeld
follow the tutorial first, and then see what's missing for you after that? Thanks, Gj On Tue, Jun 5, 2018 at 11:24 AM, Peter Nabbefeld wrote: Hi Geertjan, thank You! At the beginning of the tutorial I found a little mistake: While the "sticker" says, "Requires NetBeans

Re: How to create a module suite using Maven?

2018-06-05 Thread Peter Nabbefeld
ke "normal" POM projects containing NB modules etc. Kind regards Peter Am 05.06.2018 um 11:24 schrieb Peter Nabbefeld: Hi Geertjan, thank You! At the beginning of the tutorial I found a little mistake: While the "sticker" says, "Requires NetBeans 8.1", there'

Re: How to create a module suite using Maven?

2018-06-05 Thread Peter Nabbefeld
s. Peter Am 05.06.2018 um 12:09 schrieb Peter Nabbefeld: The archetype is working, but only without "useOSGiDependencies". When adding new modules to some POM project (like the one generated by "nbm-suite-root"), usually "Allow OSGi modules as dependencies" is selected

Re: How to create a module suite using Maven?

2018-06-05 Thread Peter Nabbefeld
uot;nbm-suite-root" plugin is working in general, but it refuses to load external dependencies if OSGi modules are allowed as dependencies; I've filed an issue. However, this is not a problem in my case. Kind regards Peter Am 05.06.2018 um 12:09 schrieb Peter Nabbe

Re: How to create a module suite using Maven?

2018-06-05 Thread Peter Nabbefeld
Seems I've made some mistakes in configuration, probably because of some copy/paste done wrong. Am 05.06.2018 um 12:33 schrieb Peter Nabbefeld: Other strange things now happen, like duplicated jar files (using different names) and duplicated clusters (default one + one with artifact

Where ha wicket plugin gone?

2018-06-23 Thread Peter Nabbefeld
Hello, I've found there's been some wicket support implemented by Geertjan, sources had been at java.net. Does somebody know where those have gone? Kind regards Peter - To unsubscribe, e-mail: dev-unsubscr...@netbeans.incub

Module org.netbeans.modules.java.hints/1 missing?

2018-06-24 Thread Peter Nabbefeld
Hello, just switched from release build 316 to 320. When I try to start it, I get a message "module org.netbeans.modules.java.hints/1 missing", but I've checked that, the modules are present in their appropriate folders. So I'm wondering what happened - does anybody else use this build? Jus

Re: Module org.netbeans.modules.java.hints/1 missing?

2018-06-24 Thread Peter Nabbefeld
ou using a fresh user directory, i.e., just to make sure nothing's corrupt or reused from some previous NetBeans installation? Gj On Sun, Jun 24, 2018 at 2:21 PM, Peter Nabbefeld wrote: Hello, just switched from release build 316 to 320. When I try to start it, I get a

Why do I still need to implement "getName()" for an action annotated with "@ActionRegistration"?

2018-06-24 Thread Peter Nabbefeld
Hello, in my class file, I've got the following lines of code: @ActionRegistration(displayName = "#CTL_GotoHTMLAction", lazy = false) public class GotoHTMLAction extends CookieAction { ... } Why do I still need to implement the "getName()" method? Short answer, of course, it's declared abstr

Re: Why do I still need to implement "getName()" for an action annotated with "@ActionRegistration"?

2018-06-24 Thread Peter Nabbefeld
org/8.2/javadoc/org-openide-nodes/org/openide/util/actions/CookieAction.html Gj On Sun, Jun 24, 2018 at 7:28 PM, Peter Nabbefeld wrote: Hello, in my class file, I've got the following lines of code: @ActionRegistration(displayName = "#CTL_GotoHTMLAction", lazy = false) publi

loader constraint violation in maven plugin project

2018-06-27 Thread Peter Nabbefeld
Hello, in a maven plugin project, I get the following LinkageError in JavaTreeBuilder: "loader constraint violation: loader (instance of org/netbeans/StandardModule$OneModuleClassLoader) previously initiated loading for a different type with name "javax/lang/model/util/Elements"" My gues

How to fix a ClassLoader in a NetBeans module with external libraries?

2018-06-28 Thread Peter Nabbefeld
Hello, I've got a LinkageError when running a NetBeans plugin with a dependency on nb-javac. The plugin uses Maven, and I've noticed the following entry in MANIFEST.MF: Maven-Class-Path: org.netbeans.external:nb-javac-api:RELEASE82 org.netbeans.external:nb-javac-impl:RELEASE82 This obvio

Re: How to fix a ClassLoader in a NetBeans module with external libraries?

2018-06-28 Thread Peter Nabbefeld
endency into the same class loader, I'd be fine. Peter Am 28.06.2018 um 17:49 schrieb Geertjan Wielenga: The real question is why the plugin needs to do any of this. Gj On Thu, Jun 28, 2018 at 10:59 AM, Peter Nabbefeld wrote: Hello, I've got a LinkageError when running a NetBean

Re: How to fix a ClassLoader in a NetBeans module with external libraries?

2018-06-28 Thread Peter Nabbefeld
8 um 17:49 schrieb Geertjan Wielenga: The real question is why the plugin needs to do any of this. Gj On Thu, Jun 28, 2018 at 10:59 AM, Peter Nabbefeld wrote: Hello, I've got a LinkageError when running a NetBeans plugin with a dependency on nb-javac. The plugin uses Maven, and I

Re: How to fix a ClassLoader in a NetBeans module with external libraries?

2018-06-28 Thread Peter Nabbefeld
l and why? What functionality does it add? Gj On Thu, Jun 28, 2018 at 6:05 PM, Peter Nabbefeld wrote: In some Ant-based module I found this: "OpenIDE-Module-Hide-Classpath-Packages: com.sun.tools.javac.**, com.sun.tools.javadoc.**, com.sun.tools.javap.**, com.sun.tools.classfile.*". Is ther

Re: How to fix a ClassLoader in a NetBeans module with external libraries?

2018-06-28 Thread Peter Nabbefeld
Thank You Geertjan, I'll go to ask him. Peter Am 28.06.2018 um 18:57 schrieb Geertjan Wielenga: The person to interact with 100% on this is Tim Boudreau who wrote that code. Gj On Thu, Jun 28, 2018 at 6:39 PM, Peter Nabbefeld wrote: nb-javac is used to scan the Java source code e.g

ModuleInstall.restore() seems not to be called

2018-07-07 Thread Peter Nabbefeld
Hello, I tried to do some debugging of the Installer class, but the breakpoint in the restore method doesn't seem to be hit: https://github.com/OldGrumble/NBWicketSupport/blob/master/src/main/java/org/netbeans/modules/web/wicket/installer/Installer.java Could somebody tell me what I'm doing

Re: ModuleInstall.restore() seems not to be called

2018-07-07 Thread Peter Nabbefeld
Found the problem: No OpenIDE-Module-Install added to manifest. And found a better solution for my case: Using @OnShowing. Regards Peter Am 07.07.2018 um 19:18 schrieb Peter Nabbefeld: Hello, I tried to do some debugging of the Installer class, but the breakpoint in the restore method

How to define a language inheriting from HTML?

2018-07-07 Thread Peter Nabbefeld
Hello, using XHTML with wicket seems to work, but using HTML gives a bunch of errors because the namespace isn't known and so are the wicket attributes. How can I filter those like "wicket:id"? Is it possible to define a language using the HTML module, defining the wicket attributes as an

Re: How to define a language inheriting from HTML?

2018-07-07 Thread Peter Nabbefeld
Jul 7, 2018 at 8:08 PM, Peter Nabbefeld wrote: Hello, using XHTML with wicket seems to work, but using HTML gives a bunch of errors because the namespace isn't known and so are the wicket attributes. How can I filter those like "wicket:id"? Is it possible to define a language u

Re: How to define a language inheriting from HTML?

2018-07-07 Thread Peter Nabbefeld
I'd just like to provide as much functionality as possible.  ;-) Peter Am 07.07.2018 um 21:32 schrieb Geertjan Wielenga: So, use XHTML... Gj On Saturday, July 7, 2018, Peter Nabbefeld wrote: That's XHTML, so You can define namespaces. Problems arise with HTML. Peter Am

Re: How to define a language inheriting from HTML?

2018-07-07 Thread Peter Nabbefeld
The problem is: html.editor has a friend-only API, with 21 "friends". Probably the API could be changed to be public, then? Kind regards Peter Am 07.07.2018 um 21:34 schrieb Peter Nabbefeld: I'd just like to provide as much functionality as possible.  ;-) Peter Am 0

Re: How to define a language inheriting from HTML?

2018-07-07 Thread Peter Nabbefeld
The problem is: html.editor has a friends-only API, with 21 "friends". As this API is so widely used, couldn't it be turned into a public one? Kind regards Peter Am 07.07.2018 um 21:34 schrieb Peter Nabbefeld: I'd just like to provide as much functionality as possib

How to set the read lock on TokenHierarchyOperation?

2018-07-11 Thread Peter Nabbefeld
Hello, I'm -still looking through some parts of the code, while extending the module otherwise. I just found this trace in the log/output window, which I probably just didn't notice before (because a bunch of other logging messages follows): INFO [org.netbeans.spi.lexer.MutableTextInput]:

Re: How to set the read lock on TokenHierarchyOperation?

2018-07-11 Thread Peter Nabbefeld
something here... } finally { ad.readUnlock(); } HTH, Junichi On Wed, Jul 11, 2018 at 7:38 PM Peter Nabbefeld wrote: Hello, I'm -still looking through some parts of the code, while extending the module otherwise. I just found this trace in the log/output window, which I probably jus

What will happen to NB 8.x (and earlier)?

2018-07-11 Thread Peter Nabbefeld
Hello, I wonder what will happen to earlier versions of NetBeans - will there any be available for longer time, or will hg repository etc. be closed completely and probably removed? Kind regards Peter - To unsubscribe, e-

Any chance to still get some change into 8.2?

2018-07-11 Thread Peter Nabbefeld
Hello, I'd need the patch for NETBEANS-1035 (making org.netbeans.modules.web.wicket a friend of html.editor and html.editor.lib) to also go into NB 8.2 - still any chance? Or no more features for 8.2? Kind regards Peter

Public vs. Friend API?

2018-07-12 Thread Peter Nabbefeld
Hello all, I personally don't like "Friend" APIs, as really I like the idea of an open, extensible IDE. From my point of view, Friend APIs make it difficult or impossible to extend NetBeans for personal use: - You have to ask for being added to the friends list. This is especially a proble

Re: Public vs. Friend API?

2018-07-12 Thread Peter Nabbefeld
ggest a rule that that happens automatically if a friend api has been around for more than 2-3 releases. Enforcement of that could probably be automated with a bit of auto bug filing cleverness. -Tim On Thu, Jul 12, 2018 at 7:11 PM Peter Nabbefeld wrote: Hello all, I personally don't like "Fr

Re: Public vs. Friend API?

2018-07-13 Thread Peter Nabbefeld
ke sense. Gj On Fri, Jul 13, 2018 at 8:27 AM, Peter Nabbefeld wrote: If this process (hardening the API and releasing it as public) would have been followed, it would be great. Unfortunately, it seems there're a bunch of useful APIs now which are not even part of the javadoc at bits

Re: Public vs. Friend API?

2018-07-13 Thread Peter Nabbefeld
-util impl org.netbeans.modules.versioning.util = 201609300101 org.netbeans.api:org-netbeans-modules-csl-api impl org.netbeans.modules.csl.api/2 = 2 eager With kind regards, Johannes Boesl Am 13.07.2018 um 01:11 schrieb Peter Nabbefeld: Hello all, I personally don't like "Friend&quo

Re: Public vs. Friend API?

2018-07-13 Thread Peter Nabbefeld
d show you how to do this: - Alternatively You could depend on the implementation version; but I don't see how to do that, if You're using Maven. Gj On Fri, Jul 13, 2018 at 12:01 PM, Peter Nabbefeld wrote: Hi Johannes, thank You for the info! I'll have to find out what I was m

How to merge HTML palette categories?

2018-07-13 Thread Peter Nabbefeld
Hello, I'd like to turn this layer snippet into code:                 url="nbresloc:/org/netbeans/modules/web/wicket/palette/label/Label.xml">             url="nbresloc:/org/netbeans/modules/web/wicket/palette/ajaxfield/AjaxField.xml">   

Implementation dependencies problem with Maven based NetBeans plugin project

2018-07-14 Thread Peter Nabbefeld
Hello, I've tried to add following module dependencies:     org.netbeans.modules:org-netbeans-modules-html-editor     impl org-netbeans-modules-html-editor = 201609300101         org.netbeans.modules:org-n

Re: Implementation dependencies problem with Maven based NetBeans plugin project

2018-07-14 Thread Peter Nabbefeld
https://github.com/pnabbefeld/NBWicketSupport Am 14.07.2018 um 12:35 schrieb Geertjan Wielenga: Without a project or steps to reproduce from scratch, no one can really help. Gj On Saturday, July 14, 2018, Peter Nabbefeld wrote: Hello, I've tried to add following module depende

Re: Implementation dependencies problem with Maven based NetBeans plugin project

2018-07-14 Thread Peter Nabbefeld
Seems I've corrupted my local repository, but I cannot re-download and re-index it. P. Am 14.07.2018 um 13:37 schrieb Peter Nabbefeld: https://github.com/pnabbefeld/NBWicketSupport Am 14.07.2018 um 12:35 schrieb Geertjan Wielenga: Without a project or steps to reproduce from scratc

Re: Implementation dependencies problem with Maven based NetBeans plugin project

2018-07-14 Thread Peter Nabbefeld
-html-editor:pom:RELEASE82 in central (http://repo.maven.apache.org/maven2) Regards Peter Am 14.07.2018 um 14:01 schrieb Peter Nabbefeld: Seems I've corrupted my local repository, but I cannot re-download and re-index it. P. Am 14.07.2018 um 13:37 schrieb Peter Nabbefeld: https://

[Solved] Re: Implementation dependencies problem with Maven based NetBeans plugin project

2018-07-14 Thread Peter Nabbefeld
15:11 schrieb Peter Nabbefeld: Nope. After removing my local repo and re-creating it, I still don't get the module dependencies loaded. Obviously, the wrong repository is referenced: Caused by: org.sonatype.aether.transfer.ArtifactNotFoundException: Could not find artifact org.netbeans.m

Re: Apache NetBeans Apress Book

2018-07-16 Thread Peter Nabbefeld
I'd probably put more parts into the second chapter and less into the third ... if You add a part about language support, it will already need quite some sub-chapters (language support in general [coloring, code folding, code completion, refactoring, guarded blocks, hints as warnings and wit

Re: Public vs. Friend API?

2018-07-18 Thread Peter Nabbefeld
Am 14.07.2018 um 23:14 schrieb Tim Boudreau: On Sat, Jul 14, 2018 at 6:23 AM Neil C Smith wrote: On Sat, 14 Jul 2018 at 05:41, Tim Boudreau wrote: I was there when friend APIs were being invented. The *entire* purpose was for a developer to evolve an API, Well, fair enough, can't argue

Re: Public vs. Friend API?

2018-07-19 Thread Peter Nabbefeld
Am 19.07.2018 um 13:27 schrieb Tim Boudreau: If it is interesting to another module, it is interesting for public usage. Whether the author wants responsibility for making it stable is a separate question:-) But, is the splitting for aesthetic or more meaningful reasons? What do You mean w

[OT][JDK] Where to find description of com.sun.source.tree.* classes?

2018-07-21 Thread Peter Nabbefeld
Hello, I'm currently trying to understand Java source parsing using the com.sun.source.tree.* classes. Is there any good description beyond javadoc? Kind regards Peter - To unsubscribe, e-mail: dev-unsubscr...@netbeans.inc

Problems creating Javahelp project

2018-09-13 Thread Peter Nabbefeld
Hello, I want to create some NetBeans Javahelp providing module, but I cannot find out, how. It seems, the problem arises from JHIndexer not being run. Project source code is available here: https://github.com/pnabbefeld/NBWicketSupportDocs Kind regards Peter --

Re: FOSDEM 2019 devroom

2018-09-17 Thread Peter Nabbefeld
Just one point from the web site: "To this end, we have set up developer rooms (devrooms) with network/internet connectivity and projectors where teams can meet and showcase their projects. Devrooms are a place for teams to discuss, hack and publicly present latest directions, lightning talks,

Re: Problems creating Javahelp project

2018-09-17 Thread Peter Nabbefeld
After some changes (mainly in folder structure) which seemed to be necessary, help seems even not to be recognized. - P. Am 13.09.18 um 10:50 schrieb Peter Nabbefeld: Hello, I want to create some NetBeans Javahelp providing module, but I cannot find out, how. It seems, the problem arises

Re: Problems creating Javahelp project

2018-09-17 Thread Peter Nabbefeld
Sorry, but cannot find such email here. Am 17.09.18 um 12:48 schrieb Peter Steele: I believe in some other emails it was mentioned java help couldn't be included due to license issues. On Mon, 17 Sep 2018 11:41 Peter Nabbefeld, wrote: After some changes (mainly in folder structure)

Re: Problems creating Javahelp project

2018-09-17 Thread Peter Nabbefeld
Thank You for the pointers! I must admit, I only looked for email in 2018. Kind regards Peter Am 17.09.18 um 14:22 schrieb Neil C Smith: On Mon, 17 Sep 2018 at 12:58, Peter Nabbefeld wrote: Sorry, but cannot find such email here. There are many - eg. https://lists.apache.org/thread.html

Re: Problems creating Javahelp project

2018-09-17 Thread Peter Nabbefeld
ils it was mentioned java help couldn't be included due to license issues. On Mon, 17 Sep 2018 11:41 Peter Nabbefeld, wrote: After some changes (mainly in folder structure) which seemed to be necessary, help seems even not to be recognized. - P. Am 13.09.18 um 10:50 schrieb Peter Nabbef

Future of JavaHelp (or a replacement) in NetBeans?

2018-09-18 Thread Peter Nabbefeld
Hello, as JavaHelp is currently GPL and its UI is outdated: What will happen to user documentation? While JavaHelp might be licensed under AL2, it still suffers from UI support. What about some JavaHelp 3.0 (which probably needs a new name), building on Lucene but with a replaceable GUI (p

How to write/update/deploy netbeans modules for usage as dependencies in plugin development?

2018-09-22 Thread Peter Nabbefeld
Hello, I'd like to update a NetBeans module (Xerces to version 2.12). For the original Ant build, the sources are located on Github, so they can be changed. But: 1. I have to upload an updated external library - there're upload instructions to Mercurial at http://wiki.netbeans.org/DevFaqExt

Re: How to write/update/deploy netbeans modules for usage as dependencies in plugin development?

2018-09-22 Thread Peter Nabbefeld
ding what needs to be done. Gj On Sat, Sep 22, 2018 at 12:08 PM, Peter Nabbefeld wrote: Hello, I'd like to update a NetBeans module (Xerces to version 2.12). For the original Ant build, the sources are located on Github, so they can be changed. But: 1. I have to upload an upda

Re: How to write/update/deploy netbeans modules for usage as dependencies in plugin development?

2018-09-22 Thread Peter Nabbefeld
a link to the Apache NetBeans GitHub repo here, the current Xerces code, etc, references, are found, and let's start there in understanding what needs to be done. Gj On Sat, Sep 22, 2018 at 12:08 PM, Peter Nabbefeld wrote: Hello, I'd like to update a NetBeans module (Xerces to versio

Re: Future of JavaHelp (or a replacement) in NetBeans?

2018-09-22 Thread Peter Nabbefeld
rarely used by real users. Online help would, IMHO, be fine in this era. -Tim On Tue, Sep 18, 2018 at 6:15 AM Peter Nabbefeld wrote: Hello, as JavaHelp is currently GPL and its UI is outdated: What will happen to user documentation? While JavaHelp might be licensed under AL2, it still suffer

Re: Public vs. Friend API Reloaded (Summary)

2018-09-23 Thread Peter Nabbefeld
The problem here is: 1. If every API is friend-only, nobody will be able to depend on those without first becoming a friend. Or You have to depend on implementation version. So, these APIs will never be reviewed by the broader community and will never be ready for usage. 2. If the API is pub

Re: Public vs. Friend API Reloaded (Summary)

2018-09-23 Thread Peter Nabbefeld
sible that a specific API won't need any enhancements, and so will be fine. One more comment inline. On Sun, Sep 23, 2018 at 12:55 PM Peter Nabbefeld wrote: The problem here is: 1. If every API is friend-only, nobody will be able to depend on those without first becoming a friend. Or You ha

Re: Jenkins Builds

2018-09-23 Thread Peter Nabbefeld
Hello, as I've read on the users list, the netbeans.org domain has been officially donated to Apache, so Maven plugins etc. should be put there, now. (Message was from Geertjan Wielenga, on Subject "[Platform] Maven artefacts". For me, question remains what will happen to NB 8.2 plugins. So,

Re: Public vs. Friend API Reloaded (Summary)

2018-09-23 Thread Peter Nabbefeld
Am 23.09.18 um 17:02 schrieb Jan Lahoda: On Sun, Sep 23, 2018 at 3:22 PM Peter Nabbefeld wrote: 1) Yes, usually the API is reasonably stable in most areas after being used as a friend-only API for some releases, so if it is difficult to change, this will be a rare event. So, You'll

Re: Public vs. Friend API Reloaded (Summary)

2018-09-23 Thread Peter Nabbefeld
Am 23.09.18 um 18:17 schrieb Jan Lahoda: [...] I think that having a reasonable documentation was traditionally one of the requirements for a public API modules. (I doubt csl.api went through the API review process.) (next sentence is meant to be sarcastic): So, if I'm too lazy to write som

Re: downloaded binaries questions

2018-09-23 Thread Peter Nabbefeld
Hi, I've found this, but it's probably outdated: http://wiki.netbeans.org/DevFaqExternalLibraries Kind regards Peter Am 23.09.18 um 20:12 schrieb Glenn Holmer: Some questions about downloading external binaries at build time: 1) Where is the format of the external/*-license.txt file documente

Re: Public vs. Friend API Reloaded (Summary)

2018-09-23 Thread Peter Nabbefeld
Am 23.09.18 um 19:35 schrieb Matthias Bläsing: Hi, Am Sonntag, den 23.09.2018, 19:23 +0200 schrieb Peter Nabbefeld: I think that having a reasonable documentation was traditionally one of the requirements for a public API modules. (I doubt csl.api went through the API review process

Re: Public vs. Friend API Reloaded (Summary)

2018-09-23 Thread Peter Nabbefeld
9.18 um 21:16 schrieb Jan Lahoda: On Sun, Sep 23, 2018 at 7:23 PM Peter Nabbefeld wrote: Am 23.09.18 um 18:17 schrieb Jan Lahoda: [...] I think that having a reasonable documentation was traditionally one of the requirements for a public API modules. (I doubt csl.api went through the AP

Re: Future of JavaHelp (or a replacement) in NetBeans?

2018-09-23 Thread Peter Nabbefeld
Am 23.09.18 um 21:20 schrieb Jan Tosovsky: On 2018-09-18 Peter Nabbefeld wrote: While JavaHelp might be licensed under AL2, it still suffers from UI support. What about some JavaHelp 3.0 (which probably needs a new name), building on Lucene but with a replaceable GUI (probably based on

Re: Public vs. Friend API Reloaded (Summary)

2018-09-24 Thread Peter Nabbefeld
is to help to do them. So, I wonder, if you could document html.editor.lib, first because you may be the most knowledgeable of it here anyway, and also to set an example. Thanks, Jan On Mon, Sep 24, 2018 at 7:13 AM Peter Nabbefeld wrote: Too many nested comments inline already, sorry,

Re: Future of JavaHelp (or a replacement) in NetBeans?

2018-09-25 Thread Peter Nabbefeld
Am 25.09.18 um 01:00 schrieb Jan Tosovsky: On 2018-09-24 Peter Nabbefeld wrote: Am 23.09.18 um 21:20 schrieb Jan Tosovsky: On 2018-09-18 Peter Nabbefeld wrote: What about some JavaHelp 3.0 (which probably needs a new name), building on Lucene but with a replaceable GUI (probably based on

Re: How to write/update/deploy netbeans modules for usage as dependencies in plugin development?

2018-09-26 Thread Peter Nabbefeld
hat's being updated: https://github.com/apache/incubator-netbeans/pull/898/commits/05e5d92a93aafa2123b1c08f3f3f629055d258ac Gj On Sat, Sep 22, 2018 at 12:52 PM, Peter Nabbefeld wrote: Hm, why does spec.version.base=1.41.0 differ from the jar's version? IMHO, this doesn't m

Re: How to write/update/deploy netbeans modules for usage as dependencies in plugin development?

2018-09-26 Thread Peter Nabbefeld
o take your time and not rush things and investigate what is needed -- we have plans for at least 3, possibly 4, releases next year. Gj On Wed, Sep 26, 2018 at 11:31 AM, Peter Nabbefeld wrote: Thank You for the pointer! I'm still struggling about the xerces packaging, as there're

File reference in layer.xml: How to get the url?

2018-10-04 Thread Peter Nabbefeld
Hello, when I put something like the following into my module's layer:     I can read the file, but its path is always "parent/folders/my-module-base.xml", I cannot get the url value. Kind regards Peter - To unsubscrib

How to get the layer.xml from ModuleInfo?

2018-10-04 Thread Peter Nabbefeld
Hello, is there any way to read a module's layer.xml from ModuleInfo (or sth. else in global lookup)? Kind regards Peter - To unsubscribe, e-mail: dev-unsubscr...@netbeans.incubator.apache.org For additional commands, e-mai

Re: How to get the layer.xml from ModuleInfo?

2018-10-04 Thread Peter Nabbefeld
ere for example, look for 'META-INF': https://github.com/apache/incubator-netbeans/blob/master/java/java.source.base/src/org/netbeans/modules/java/source/parsing/CachingFileManager.java Gj On Fri, Oct 5, 2018 at 6:55 AM Peter Nabbefeld wrote: Hello, is there any way to read a module

Re: File reference in layer.xml: How to get the url?

2018-10-04 Thread Peter Nabbefeld
http://bits.netbeans.org/dev/javadoc/org-openide-filesystems/org/openide/filesystems/FileUtil.html#getConfigFile-java.lang.String- Gj On Fri, Oct 5, 2018 at 6:53 AM Peter Nabbefeld wrote: Hello, when I put something like the following into my module's layer: I can read the file, bu

Re: How to get the layer.xml from ModuleInfo?

2018-10-04 Thread Peter Nabbefeld
just like is done here for example, look for 'META-INF': https://github.com/apache/incubator-netbeans/blob/master/java/java.source.base/src/org/netbeans/modules/java/source/parsing/CachingFileManager.java Gj On Fri, Oct 5, 2018 at 6:55 AM Peter Nabbefeld wrote: Hello, is there any w

Re: How to get the layer.xml from ModuleInfo?

2018-10-05 Thread Peter Nabbefeld
help. You should never need to access the layer.xml file itself. There are method calls in FileUtil for getting hold of folders and files in the layer. Can you explain what it is you’re trying to achieve? Parsing the layer directly is never going to be the correct approach. Gj On Friday, October 5

Wiki problem on topic "Why can’t I use system scope for a library wrapper module?"

2018-11-08 Thread Peter Nabbefeld
Hello, this wiki page has a problem: https://netbeans.apache.org/wiki/DevFaqMavenSystemScope.asciidoc The link to issue MNBMODULE-120 is broken. If anybody has a copy of it, it'd be great if he could insert it or link to the correct location. Kind regards Peter

Re: Wiki problem on topic "Why can’t I use system scope for a library wrapper module?"

2018-11-09 Thread Peter Nabbefeld
/20150521012601/http://jira.codehaus.org/browse/MNBMODULE-120 --emi On Thu, Nov 8, 2018 at 7:49 PM Peter Nabbefeld wrote: Hello, this wiki page has a problem: https://netbeans.apache.org/wiki/DevFaqMavenSystemScope.asciidoc The link to issue MNBMODULE-120 is broken. If anybody has a copy of it

Re: Wiki problem on topic "Why can’t I use system scope for a library wrapper module?"

2018-11-09 Thread Peter Nabbefeld
m On Thu, Nov 8, 2018 at 12:49 PM Peter Nabbefeld wrote: Hello, this wiki page has a problem: https://netbeans.apache.org/wiki/DevFaqMavenSystemScope.asciidoc The link to issue MNBMODULE-120 is broken. If anybody has a copy of it, it'd be great if he could insert it or link to t

  1   2   >