manticore-projects
manticore-projects
Greetings. Looking for the same thing, I came up with: ```gradle task gitChangelogTask(type: GitChangelogTask) { fromRepo = file("$projectDir") file = new File("${projectDir}/src/site/sphinx/changelog.rst") fromRef = "4.0"; //toRef = "1.1"; templateContent ="""...
Thank you so much! It makes a lot of sense, when I see this now. I did not catch that possibility from the Documentation or Samples.
Works like a charm, but leads to more questions: 1) as far as I can see it, the Properties file would be read only from the Classpath. Is there a...
Please how can I access the `@accentColor` from Java? ```java laf.getExtraDefaults().get("@accentColor"); ```` returns null (even when the accentColor is set and effective in the properties file. Same for ```java UIManager.getLookAndFeelDefaults().getColor("@accentColor");...
Thank you very much. This makes it clear and I appreciate.
Sign me up please, I am a huge fan of your themes -- but do not use them yet, because of "too round" corners.
Thanks for your feedback. Self containing example below. The `WITH` clause seems to play a role, without it works as expected. ```sql CREATE TABLE ifrsbox.public.t ( value_date TIMESTAMP NULL ,...
Greetings. Can you share the query? Does it have a lot of nested complex expressions (which are expensive to parse)?
I tried it with JSQLParser and it parsed instantly: ```sql SELECT Parsedatetime( Formatdatetime( t0t.stat_date, 'yyyyMMdd' ), 'yyyyMMdd' ) AS f0 , Avg( t0t.i_32800 ) AS f1 , 0 AS f2...
Hi, JSQLParser is a generic parser built from JavaCC. It has nothing to do with the H2 Parser implementation. My thought process was: If both non-correlating Parsers would confirm an...