Sebastian Germesin
Sebastian Germesin
Implementation of a LocalStorageService, making it possible to perform CRUD on entities in the HTML5-localStorage using the service API.
``` var z = new VIE(); z.entities.add({'@subject': 'http://example.org/EricClapton'}); var clapton = z.entities.get('http://example.org/EricClapton'); clapton.setOrAdd('plays', 'guitar'); clapton.setOrAdd('plays', 'vocals'); ``` The above results that the `plays` attribute now has _three_ elements: ["guitar", "vocals",...
Implementation of a FileAPIService, making it possible to perform CRUD on entities using the FileReader/FileWriter API from HTML5. See http://www.html5rocks.com/en/tutorials/file/filesystem/
Implementation of a SameAsService, accessing http://sameas.org This is based on the discussion in http://markmail.org/message/x3hpjevslwdvf4xb
Though a developer could use the [underscore filter method](http://underscorejs.org/#filter). It might be worth giving the developer some convenience methods at hand to enable him/her to filter entities - by Type...
There are two ways to extend types in VIE: ``` var vie = new VIE(); vie.loadSchema("http://schema.rdfs.org/all.json", {baseNS: "http://schema.org/"}); vie.namespaces.base("http://viejs.org/ns/"); vie.namespaces.add("schema", "http://schema.org/"); var TPerson = vie.types.get("schema:Person"); ``` (1) The BAD way...
We need to implement `StanbolService.save(savable)`.
The `StanbolConnector` has become quite large when implementing all enpoints. Therefore, it is necessary to refactor it and split the single file into several other files.
Hi, thanks a lot for this great lib. It is working great in the development version. However, if I try to build the production / release archive, I get the...