-
Hi,
This project looks interesting to me, but I can not work out how to install or run it. Can you provide a few details.
Thanks /Andy.
2009-11-06 11:29:37 UTC in DE-University Augsburg - DITA Editor
-
Is there any way using the GUI/commandline to define values for external variables?.
2009-09-28 12:40:00 UTC in BaseX
-
I believe base-uri() should include the protocol eg
not
"C:/svn/docteam/dita/workflow/source.xml/lz1023.xm"
but
"file:/C:/svn/docteam/dita/workflow/source.xml/lz1023.xm"
Also static-base-uri() returns empty should be file:/....baseX starting directory...
2009-09-28 12:36:22 UTC in BaseX
-
I guess you already know but...
Xquery with long attribute strings generate an Implementation error ;-)
e.g.
for $w in //*[@release="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"]
return $w.
2009-07-02 14:36:59 UTC in BaseX
-
I am getting an Unknown prefix error when trying to run a xquery that seems to be related to nested function calls. see attached for full source. Unrolling the workflow function call makes it to work.
Any ideas?
----------FAILS------------
...
..
declare function local:workflow($flow) {
let $xmlmsgs:=$flow/log/xmlmsg
let $seq:=local:get-seq($xmlmsgs)
return $seq
};
for...
2009-06-23 13:34:53 UTC in BaseX
-
BaseX 5.55.
URIs are always resolved from the java working directory by a simple concatenation.
declare base-uri seems to be ignored.
full file:/// URIs for collection and import module cause errors eg
import module namespace apbu = "http//:adt.apb/util" at "file:///C:/svn/docteam/dita/workflow/xq/apb-util.xq";
count( collection("file:///C:/Temp/wftemp") )
2009-06-19 16:35:40 UTC in BaseX
-
Thanks, I spent a long time going round in circles with this. I expected this to work...
upsertAttribute($r,"timestamp",current-time())
but it produces a "Type not allowed" error - no doubt correctly, so I removed the quotes in desperation.
After I sent the message I realised that this was an xpath with no "context".
Are you saying the...
2009-06-02 15:46:34 UTC in Micro XQuery Engine
-
I think I have got it, using QName works :-)
local:upsert($r,QName("","timestamp"),current-time())
2009-06-02 11:07:45 UTC in Micro XQuery Engine
-
I am trying to use mxquery 0.6 to update an attribute or insert it if not there.
My db.xml file is like this
-----------
<?xml version='1.0' encoding='UTF-8' ?>
<db>
<rec key="1">Apple</rec>
<rec key="2" timestamp="2009-06-01T15:34:27.857Z">BB</rec>
<rec key="3">orange</rec>
<rec...
2009-06-01 16:23:56 UTC in Micro XQuery Engine
-
Thanks Peter, that works for me. /Andy.
2009-05-28 10:06:26 UTC in Micro XQuery Engine