Samizdat 0.6.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Samizdat 0.6.1 (Default branch)
# 1  
Old 03-04-2008
Samizdat 0.6.1 (Default branch)

Image Samizdat is a generic RDF-based engine for building collaboration and open publishing Web sites. It provides users with the means to cooperate and coordinate on all kinds of activities, including media activism, resource sharing, education and research, advocacy, and so on. It intends to promote values of freedom, openness, equality, and cooperation. License: GNU General Public License (GPL) Changes:
The most interesting part of this release is its new security features: CSRF protection, an antispam module, per-resource moderation logs, and a moderation request tracker. An RSS import module allows you to syndicate content from other sites on the front page. Massive changes were made in the engine internals (MVC, deadlock-proof cache, optional RDF query patterns, support for Lighttpd, MySQL, SQLite3). Many minor enhancements were made, like a new pagination system, file size display, cleaner handling of replies and message translations, better error reporting, and more UI translations.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
RDF::Crypt::Encrypter(3pm)				User Contributed Perl Documentation				RDF::Crypt::Encrypter(3pm)

NAME
RDF::Crypt::Encrypter - encrypts RDF graphs SYNOPSIS
use 5.010; use RDF::Crypt::Encrypter; use RDF::TrineX::Functions qw< parse >; my $enc = RDF::Crypt::Encrypter->new_from_webid( 'http://www.example.com/people/alice#me' ); my $graph = parse '/path/to/secret.ttl'; my $scrambled = $enc->encrypt_model($graph); DESCRIPTION
An Encrypter object is created using an RSA public key. The object can be used to encrypt an RDF graph for a recipient. Roles o RDF::Crypt::Role::WithPublicKeys o RDF::Crypt::Role::DoesEncrypt o RDF::Crypt::Role::ToString SEE ALSO
RDF::Crypt, RDF::Crypt::Decrypter. 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::Encrypter(3pm)