Maja,
We don't currently allow you to set the 'Prefix separator' to an empty string via the UI, but it can be done behind the scenes via SPARQL, which will ultimately get you the URIs you're looking for.
First, enable sparql updates on the EDG Server Administration page:
Next, go to <serverName>/edg/tbl/sparql, and run this query:
INSERT {
GRAPH <urn:x-evn-master:b.tch> {
<urn:x-evn-master:b.tch> <
http://topbraid.org/teamwork#uriPrefixSeparator> ""
}
}WHERE {
}
And execute it, making sure to change the urn to point the .tch graph you're working with. You should see this:
You can confirm the insert went OK by exporting the .tch graph from the Base URI Management page:
If this works correctly, you should then be getting the result you're looking for when creating a new resource:
I'll see about adding the ability to set the prefix separator to an empty string in a cleaner way in a future version.
Hope it helps,
Pat