SimonCockx

Results 46 comments of SimonCockx

@lolabeis Under "Confirmed contributors", I see my name showing up as part of KU Leuven. That's out-of-date of course.

I have been trying to set the default of inherited to false, but with no luck. When I edit the html and the js like this: this.optionInherited = new FilterItemCheckbox("inherited",...

Hi @jonfreedman. We are currently working hard to replace all dependencies on private closed-source packages with open-source components that are published in Maven Central. Once this work is done, we...

Hi @eteridvalishvili! Thanks for the follow-up. Part of the work is done, one to-do is left: - [x] CDM does not rely on closed-source components. - [x] The Rosetta DSL...

Hi @kennysliding There is a plan in place for this in the code generators repository. See the following issue: https://github.com/REGnosys/rosetta-code-generators/issues/279

Digging further. This is probably related to working on Windows. I've noticed the `unsolvedElements` map changes from using slashes to using backslashes during reference resolution.

This method is the culprit. ``` java public void addUnsolvedReference(UnsolvedReference unsolvedReference) { XsdSchema schema; try { schema = XsdAbstractElement.getXsdSchema(unsolvedReference.getElement(), new ArrayList()); } catch (ParentAvailableException e) { schema = null; }...

This is not the first time I see issues in this library related to a poor handling of file paths. (slash versus backslash, relative versus absolute, ...) I wonder if...

I can do you better: I can verify that normalizing the `schemaFilePath` in `addUnsolvedReference` solves my issue. While your solution might also solve it, I feel it looks more like...

Hmm, perhaps I minimized the example too much. The actual schema I was working with is this one. Note the `ref="animal"`: ``` xml ``` Perhaps there are two issues then....