Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

morla(1) [debian man page]

MORLA(1)							   User Commands							  MORLA(1)

NAME
morla - editor and browser of RDF document 0.16.1 SYNOPSIS
morla [ -h | --help ] [ -t | --template template_name | template_uri ] [ -i | --import template_uri ] [ files... | URLs... ] DESCRIPTION
Morla is a multiplatform editor of RDF documents. It is based on libnxml and librdf libraries. With Morla you can manage more RDF documents simultaneously, visualize graphs and use templates for quick writing. With Morla you can import RDFS documents and use its content to write new RDF triples. Templates are also RDF documents and they make Morla easily personalizeble and expandable. You can also use Morla as RDF navigator, wandering among the net knots of the RDF documents present on internet exactly as we are used to do with normal browsers. Morla is a FreeSoftware project released under license GPL v2.0. AUTHOR
morla written by Andrea Marchesini <andrea.marchesini@morlardf.net> Man page written by Andrea Marchesini <andrea.marchesini@morlardf.net> morla 9 April 2006 MORLA(1)

Check Out this Related Man Page

RDF::Crypt::Signer(3pm) 				User Contributed Perl Documentation				   RDF::Crypt::Signer(3pm)

NAME
RDF::Crypt::Signer - signs RDF graphs with RSA SYNOPSIS
use 5.010; use File::Slurp qw< slurp >; use RDF::Crypt::Signer; use RDF::TrineX::Functions qw< parse >; my $sign = RDF::Crypt::Signer->new_from_file( '/path/to/private-key.pem' ); my $raw = slurp '/path/to/important.ttl'; my $graph = parse '/path/to/important.ttl'; my $detached_sig = $sign->sign_model($graph); my $turtle_with_embedded_signature = $sign->sign_embed_turtle($raw); DESCRIPTION
A Signer object is created using an RSA private key. The object can be used to sign multiple RDF graphs. The signature should be independent of the RDF serialisation used, so that Turtle and RDF/XML files containing equivalent triples should generate the same signature. RDF::Crypt::Signer can also be used to verify signatures using the private key of the signer. Roles o RDF::Crypt::Role::WithPrivateKey o RDF::Crypt::Role::DoesSign o RDF::Crypt::Role::DoesVerify o RDF::Crypt::Role::StandardSignatureMarkers o RDF::Crypt::Role::ToString SEE ALSO
RDF::Crypt, RDF::Crypt::Verifier. BUGS
Please report any bugs to <http://rt.cpan.org/>. AUTHOR
Toby Inkster <tobyink@cpan.org>. COPYRIGHT
Copyright 2010, 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-25 RDF::Crypt::Signer(3pm)
Man Page