Re: [basex-talk] about xml:base when using multiple nested xi:include

2018-07-30 Thread Marco Randazzo
de1/include2/include2/include3/include3.xml which I think is wrong, I think it should be: file:///C:/software/test_include/include1/include2/include3/include3.xml -Original Message- From: Christian GrĂ¼n Sent: Saturday, July 28, 2018 2:57 PM To: Marco Randazzo Cc: BaseX Subject:

[basex-talk] about xml:base when using multiple nested xi:include

2018-07-27 Thread Marco Randazzo
xml as a path relative to the root file or ./include3/include3.xml as a path relative to the current file. - level4: Same as level3. What do you think? Am I missing something? What are the specifications for the value of xml:base? Thank you, Marco Randazzo <>

[basex-talk] xquery question: replacing multiple values

2018-07-25 Thread Marco Randazzo
Dear all, I just started learning XQuery. I have the following XML: 10 20 30 40 11 21 31 41 I'm using the following script to multiply by 2 values 30 and 31. for $v in /Keywords/Record let $v1 := xs:float($v/tokenize(.,"[|]| ")[3]) return replace value of node $v with replace ($v,

[basex-talk] How to export a database containing xi:include to multiple files

2018-06-27 Thread Marco Randazzo
nction available in the baseX GUI, I am able to obtain only a SINGLE file containing the Result shown above, where the two files have been merged in a single file. What can I do? Thank you, Cheers, Marco Randazzo

[basex-talk] How to export a database containing xi:include to multiple files

2018-05-05 Thread Marco Randazzo
tabase to xml files, recreating the same folders and files (I see this information stored in the value of xml:base) However, using the export function available in the GUI, I am able only to obtain a single file containing the Result shown above. What should I do? Thank you Cheers Marco Randazzo

[basex-talk] about xi:include and xml:base

2015-09-30 Thread Marco Randazzo
In my application I have a main xml file (general.xml) which includes several xml files (file1.xml, file2.xml...) using the xi:include tag. I successfully imported general.xml in basex using the gui: the xi:include directives were successfully processed, merging all data in a single database. I