xlink

.NET library for use with XBRL or XLINK

Does anyone know of a good .NET library I can use to process XBRL or XLINK documents? ...

Using XLink to refer to nodes within same document

The general gist of a simple XLink to another node in the same document seems to be: <root xmlns:xlink="http://www.w3.org/1999/xlink"&gt; <firstChild id="ID1" /> ... <ref xlink:href="#ID1" /> </root> Without using XPointer or XPath, is this as much as you can do with XLink? Could you do an XLink which, say, referred to a customI...

How to link from SVG?

What I tried is this <a xlink:target="http://ponyoverflow.com"&gt; <text class="text" x="20" y="718" text-anchor="start">Mail Order Ponies</text> </a> and variations with href and type="simple". The link text appears, but the link is not clickable. I tried Firefox 3.5.5, Chromium, Inkscape and GNOME Image Viewer. Is there anything...

How can I get the value of an attribute called xlink:href of an xml node by using php

i just cant do it, dont kno whey. How can I get the value of an attribute called xlink:href of an xml node by using php. Please please someone just give me a nudge. i am new to php This is the XML Document <?xml version="1.0" encoding="UTF-8"?> <topicMap id="1HLCM3FXT-28MTV0W-50" xmlns="http://www.topicmaps.org/xtm/1.0/" xmlns:xlin...

Custom content types: XLink vs. Atom

I'm trying to design a RESTful interface for a filesystem-like web service. To provide hyperlinkability among the various resources (files, directories, etc.), I thought I would use XLink. However, it seems there is a strange omission from XLink: content types. Atom provides an attribute to specify the content type of links as well as...

Cannot open a local file using fopen()

HI. i am trying to open a local file from xml created by xlink i have parsed the file path in $resourceRef variable and it looks like that file:/./birds/birds.txt without the quotes. Please someone tell me why i cant open it. here is my code $fh = fopen($resourceRef, 'r'); $theData = fread($fh, filesize($resourceRef)); fclose($fh); ech...