Ralf D. Müller

Results 398 comments of Ralf D. Müller

So, current situation is the following: * we still don't know the root cause * 3.3.1 worked, 3.4.0 seems to have problems * the main difference seems that the script...

that is also my opinion. Problem is: I can only check why when I can reproduce the problem. Call to action: it seems that 3.4.0 is not totally broken. It...

@GerritVK you problem seems to be different, because the system interates through the pages but gets a created page null My initial log looks like this: dtcw 0.51 - ##DTCW_GIT_HASH##...

@tafli downgrading should be a big issue. There are two places where the version can be set: * the dtcw file * the container in which the dtcw file is...

wow. That is strange. sections = pages = [] assigns to `sections` and `pages` an empty list. It assigns the _same_ empty list! Both variables point to the same list....

@JanMosigItemis can you check if this code works? ```groovy def getPages(Document dom, String parentId, int maxLevel) { def anchors = [:] def pageAnchors = [:] def pages = [] def...

We could do something like this ``` if (mainConfigFile.startsWith(`/`)) { this.configFile = new File(mainConfigFile) } else { this.configFile = new File(docDir, mainConfigFile) } ``` This should work for a linux...

Do you use a local install or the docker install?

I guess that's the problem. If you use the docker version (dtcw docker generateSite for example), your root folder will be mounted as (I think) /project . If you want...

let's give it a try... Please take a look at this repository: https://github.com/docToolchain/empty-workshop/tree/1405 you can use `dtcw` as `./dtcw docker task` from the root of the project.