| Padre-Plugin-HG documentation | view source | Contained in the Padre-Plugin-HG distribution. |
Padre::Plugin::HG::UserPassPrompt provides the username and password prompts for Padre::Plugin::HG
my $object = Padre::Plugin::HG::UserPassPrompt->new(
title => 'project X',
default_username => 'fred',
default_password => 'XXXX',
);
$password = $object->{password};
$username = $object->{username};
This module diplays a username and password prompt for actions like pushing in Padre::Plugin::HG
my $object = adre::Plugin::HG::UserPassPrompt->new(
title => 'project X',
default_username => 'fred',
default_password => 'XXXX',
);
The new constructor is the only method.
it will display the username and password prompts
Access the results via $object->{username} and $object->{password}
http://bitbucket.org/code4pay/padre-plugin-hg/
Copyright 2008 Michael Mueller .
| Padre-Plugin-HG documentation | view source | Contained in the Padre-Plugin-HG distribution. |