AgileWiki 12.2.2 (Element Model branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News AgileWiki 12.2.2 (Element Model branch)
# 1  
Old 01-27-2009
AgileWiki 12.2.2 (Element Model branch)

AgileWiki is an SDK for assembling software systems which are fluid, easily configured and can be reorganized on-the-fly to meet ever changing requirements. It includes a COW-based database, the Rolonics programming paradigm, and semantic inferencing. License: Common Public License Changes:
Special characters can now be used in attributes and are encoded when expressing XML. Timestamps use "." in place of ":" for compatibility with dump/load. Load now supports migration to a lessor configuration - unknown element types are simply not loaded, nor are their subordinate elements. Miscellaneous bugs were found and fixed in load. SMTP Service now uses a dedicated thread. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
OWL::DirectSemantics::Translator(3pm)			User Contributed Perl Documentation		     OWL::DirectSemantics::Translator(3pm)

NAME
OWL::DirectSemantics::Translator - lift an OWL2 model from an RDF model SYNOPSIS
use RDF::Trine; my $model = RDF::Trine::Model->temporary_model; RDF::Trine::Mode->parse_url_into_model($url, $model); use OWL::DirectSemantics; my $translator = OWL::DirectSemantics::Translator->new; my $ontology = $translator->translate($model); DESCRIPTION
This translator is only about 90% complete. Constructor "new" Creates a new translator object, primed and ready for action! Method "translate($model [,$ontology_node])" Translates the data in the RDF::Trine::Model provided into OWL, returning an OWL::DirectSemantics::Element::Ontology object. The model is generally assumed to contain a single ontology. $ontology_node is an optional RDF::Trine::Node object containing the ontology's URIor blank node identifier. $model will be modified by the translation process. Any triples translated to OWL are removed from the model. Any triples remaining are ones that could not be translated. (If the model provided is OWL DL-compatible, there should be no triples remaining after translation.) SEE ALSO
OWL::DirectSemantics. AUTHOR
Toby Inkster <tobyink@cpan.org>. COPYRIGHT
Copyright 2011-2012 Toby Inkster This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. perl v5.14.2 2012-06-28 OWL::DirectSemantics::Translator(3pm)