Slashdot Extension 0.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Slashdot Extension 0.2 (Default branch)
# 1  
Old 11-26-2008
Slashdot Extension 0.2 (Default branch)

ImageSlashdot Extension is a Firefox extension to makeeasier use of slashdot.jp and slashdot.org. Thisextension provides a story editor in which you canwrite a story to submit to Slashdot. The storyeditor's form is automatically filled with the Webpage's title, URL, and selected text. It alsoprovides a toolbar button and other useful things.License: BSD License (revised)Changes:
This is the first public beta release. Allfeatures were tested by the developer. Known bugswere fixed.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Net::OpenID::Extension::SimpleRegistration(3pm) 	User Contributed Perl Documentation	   Net::OpenID::Extension::SimpleRegistration(3pm)

NAME
Net::OpenID::Extension::SimpleRegistration - Support for the Simple Registration extension (SREG) VERSION
version 1.14 SYNOPSIS
In Consumer... my $sreg_req = $claimed_identity->add_extension_request('Net::OpenID::Extension::SimpleRegistration', ( required_fields => [qw(nickname email)], optional_fields => [qw(country language timezone)], policy_url => "http://example.com/policy.html", )); Then, in Server, when handling the authentication request... # FIXME: What object do we have in ::Server that can hold this method? my $sreg_req = $something->get_extension_request('Net::OpenID::Extension::SimpleRegistration'); my $required_fields = $sreg_req->required_fields; my $optional_fields = $sreg_req->optional_fields; my $policy_url = $sreg_req->policy_url; When Server sends back its response... # FIXME: Again, what object do we have to hold this method? my $sreg_res = $something->add_extension_response('Net::OpenID::Extension::SimpleRegistration', ( nickname => $nickname, email => $email, )); And finally, when back in Consumer recieving the response: my $sreg_res = $verified_identity->get_extension_response('Net::OpenID::Extension::SimpleRegistration'); my $nickname = $sreg_res->nickname; my $email = $sreg_res->email; my $country = $sreg_res->country; my $language = $sreg_res->language; my $timezone = $sreg_res->timezone; perl v5.12.4 2011-11-11 Net::OpenID::Extension::SimpleRegistration(3pm)