Boris Lehečka

Results 23 comments of Boris Lehečka

New Wix version [4.0.0](https://wixtoolset.org/docs/releasenotes/) was released on April 5, 2023.

I have added new tests for the inline elements and for deeply nested elements (3 levels). Based on the results I assume that: - the bug #4789 (content with inline...

**Workaround** - create a new collection - copy resources from the old collection to the new one - remove the old collection ```XQuery let $main-colection := '/db/test' let $old-collection-name :=...

From my point of view, there is an inconsistency in the treatment of collection names. The following function call works - `xmldb:remove('/db/test/data%20with%20spaces')`, but this one fails - `xmldb:rename('/db/test/data%20with%20spaces', '/db/test/data-with-dashes')` It...

You're right @line-o, your code works. Maybe the documentation is misleading: ```XQuery xmldb:rename($source-collection-uri as xs:string, $new-collection-name as xs:string) as item() ``` Renames the collection `$source-collection-uri` with new name `$new-collection-name`. But...

Hi Martin, you're right. Data in my example come from HTML page. I'm just getting started with Fore and using HTML file from the file system is the best solution...

Hello @JoernT , I know about the`@src` attribute, but loading fails if it's used within local file and not from a web server. ```console Access to fetch at 'file:///V:/Projekty/Github/Daliboris/lediir-data/tests/annotations/data/annotations.xml' from...

Example of an internal error that throws the mentioned roaster error (from the eXist-db log file): ```console 25 Apr 2024 18:15:54,490 [qtp920632751-12055] ERROR (LogFunction.java [writeLog]:199) - (Line: 521 /exist/etc/../data/expathrepo/roaster-1.8.1/content/router.xql) [3819e0a7-dd3e-4114-99e0-a7dd3ef11414]...

Today, I got the same error with v1.9.0. eXist-db log: ```text 08 Sep 2024 19:00:52,874 [qtp105393903-5340] ERROR (LogFunction.java [writeLog]:199) - (Line: 543 /exist/etc/../data/expathrepo/roaster-1.9.0/content/router.xql) [dd5a6d81-439e-4d81-9a6d-81439e1d812a] get /api/collection/volumes: 500 {"code":"java:java.lang.NullPointerException","description":null,"value":null,"module":null,"line":null,"column":null} ``` Returned...

The name of the attribute is configurable in the [annotation-config.xqm](https://github.com/eeditiones/tei-publisher-app/blob/master/modules/annotation-config.xqm) module. ```xquery declare variable $anno:reference-key := 'ref'; ``` The problem with the hash (`#`) prefix in _teidata.pointer_ can be solved...