Emanuel Rabina
Emanuel Rabina
I've got a TODO in the proposal generation code to see if I can do more parallel processing. I think that would need to be done to alleviate any performance...
I think it's achievable in Eclipse, but I don't think I'll be able to get around to implementing this enhancement. I find myself using IntelliJ more these days, so don't...
Is it enough to reference the schema in the root element? eg: here's what's in the layout dialect one: ``` xml ``` I thought the `xmlns:xsi` and `xsi:schemaLocation` parts would...
Does right click >> Validate on the project or file with the warnings help at all? I don't really know what else it could be then.
An interesting idea, and I can definitely see the value in this - I often go back-and-forth between my own HTML pages looking for fragment points I've added so I...
Using the Javadocs of a processor would be the goal. Then all one would need to do is make sure they include the source code of the dialect they're using,...
Arg, hit a roadblock: I was able to instantiate a dialect class, but on invoking the `getProcessors()` method on Thymeleaf's `StandardDialect`, a `ClassNotFoundException` was thrown because it needed SLF4J (I...
The problem is that I can't create and query a dialect instance to ask it for all of its processors because doing so might require loading additional dependencies. (Note: I'm...
I gave this some more thought, and the idea of using annotations came to mind. It feels like a good way to declare the meta-data about dialects / processors /...
I'm going to guess this is a problem on the more recent versions of Java. I've got Java 10 and couldn't pass `mvn install`, but when I changed it to...