view release on metacpan or search on metacpan
lib/App/Alice/IRC.pm view on Meta::CPAN
return "real: $info->{real}\nuser: $info->{user}\n" .
"host: $info->{IP}\nserver: $info->{server}\nchannels: " .
join " ", keys %{$info->{channels}};
}
sub update_realname {
my ($self, $realname) = @_;
my $nick = $self->nick_cached;
$self->send_srv(REALNAME => $realname);
if (my $info = $self->get_nick_info($nick)) {
$info->{real} = $realname;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/AltSQL/Model/MySQL.pm view on Meta::CPAN
}
$self->update_db_types();
}
sub update_autocomplete_entries {
my ($self, $database) = @_;
return if $self->no_auto_rehash;
my $cache_key = 'autocomplete_' . $database;
if (! $self->{_cache}{$cache_key}) {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Asciio.pm view on Meta::CPAN
return($self->{FONT_FAMILY}, $self->{FONT_SIZE}) ;
}
#-----------------------------------------------------------------------------
sub update_display
{
my ($self) = @_;
$self->call_hook('CANONIZE_CONNECTIONS', $self->{CONNECTIONS}, $self->get_character_size()) ;
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/AutoCRUD/Controller/Table.pm view on Meta::CPAN
return $data;
}
}
sub update {
my ($self, $table) = @_;
$self->_check_canmodify;
if ($self->context->req->method eq 'POST') {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/BCVI/InstallManager.pm view on Meta::CPAN
our $VERSION = '1.03';
my($source_signature, %sig_db, $db_file);
sub update_all_installs {
my($self) = @_;
if(my $arg = $self->opt('update-all')) { # usual value '' is false
if($arg eq 'list') {
return $self->list_all_installs
view all matches for this distribution
view release on metacpan or search on metacpan
$self->update_existing_aliases($bcvi_commands)
or $self->aliases_initial_install($bcvi_commands);
}
sub update_existing_aliases {
my($self, $bcvi_commands) = @_;
foreach my $file ( $self->candidate_rc_files() ) {
my($script) = $self->read_file($file) or next;
if(index($script, $bcvi_commands) > -1) {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/BarnesNoble/WishListMinder.pm view on Meta::CPAN
$have_cookie;
} # end have_user_cookie
#---------------------------------------------------------------------
sub update_wishlists
{
my $self = shift;
my $config = $self->config;
my $m = $self->mech;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/BookmarkFeed.pm view on Meta::CPAN
}
}
return $item
}
sub update ($db, @items) {
for my $item (@items) {
if ($db->query('select 1 from items where url = ?', $item->{url})->hash) {
delete $item->{date};
$db->update('items', $item, {url => $item->{url}});
} else {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/CISetup/Role/ConfigFile.pm view on Meta::CPAN
$self->file->spew( $self->_config_to_yaml( $self->_create_config ) );
return;
}
sub update_file {
my $self = shift;
my $file = $self->file;
my $orig = $file->slurp;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/CamelPKI/SysV/Apache.pm view on Meta::CPAN
download updated CRLs on a regular basis and submit them using
I<update_crl()>.
=cut
sub update_crl { "UNIMPLEMENTED" }
=head2 start(%opts)
Starts the daemon synchronously, meaning that I<start> will only
return control to its caller after ensuring that the Apache process
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Chart/Annotation.pm view on Meta::CPAN
sub draw {
my ($self, $graph, $region) = @_;
App::Chart::Gtk2::Graph::Plugin::Alerts->draw ($graph, $region, [ $self ]);
}
sub update_alert {
my ($symbol) = @_;
require App::Chart::Gtk2::Symlist::Alerts;
my $symlist = App::Chart::Gtk2::Symlist::Alerts->instance;
if (want_alert ($symbol)) {
$symlist->insert_symbol ($symbol);
view all matches for this distribution
view release on metacpan or search on metacpan
bin/chronicle view on Meta::CPAN
=end doc
=cut
sub updateDatabase
{
my ($dbh) = (@_);
#
# Assume each entry is already present in the database.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/ClusterSSH.pm view on Meta::CPAN
);
$self->config->{show_history} = 1;
}
}
sub update_display_text($) {
my ( $self, $char ) = @_;
return if ( !$self->config->{show_history} );
$self->debug( 2, "Dropping :$char: into display" );
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Codit/Plugins/Colors.pm view on Meta::CPAN
# $self->extGet('ToolPanel')->deletePage('Colors');
$self->ToolRightPageRemove('Colors');
return $self->SUPER::Unload
}
sub updateEntry {
my ($self, $value) = @_;
$value = $self->_ent->get unless defined $value;
my $pick = $self->_pick;
if ($self->_pick->validate($value)) {
$self->_ind($pick->getHEX);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Context.pm view on Meta::CPAN
}
&App::sub_exit() if ($App::trace);
}
sub update_profiler_log {
&App::sub_entry if ($App::trace);
my ($self, $app_scope, $content_name, $app_scope_id_type, $app_scope_id) = @_;
my $options = $self->{options};
my $repname = $options->{"app.Context.profiler_repository"};
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/DDNS/Namecheap.pm view on Meta::CPAN
has domain => ( is => 'ro', isa => 'Str', required => 1 );
has password => ( is => 'ro', isa => 'Str', required => 1 );
has hosts => ( is => 'ro', isa => 'ArrayRef', required => 1 );
has ip => ( is => 'ro', isa => 'Str', required => 0 );
sub update {
my $self = shift;
foreach ( @{ $self->{hosts} } ) {
my $url = "https://dynamicdns.park-your-domain.com/update?domain=$self->{domain}&password=$self->{password}&host=$_";
$url .= "&ip=$self->{ip}" if $self->{ip};
if ( my $return = get($url) ) {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Dest.pm view on Meta::CPAN
}
return 0;
}
sub update {
my $self = _new(shift);
my ( $dry_run, @incs ) = _dry_check(@_);
my $seen_action = {};
my $execute_stack;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/DocKnot/Spin/Versions.pm view on Meta::CPAN
# $package - Name of the package
# $version - New version
# $timestamp - New release date as seconds since epoch
#
# Throws: Text exception on failure
sub update_version {
my ($self, $package, $version, $timestamp) = @_;
my $date = strftime('%Y-%m-%d', localtime($timestamp));
my $time = strftime('%H:%M:%S', localtime($timestamp));
# Edits the line for the package to replace the version and release date.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Dochazka/REST/Model/Activity.pm view on Meta::CPAN
object's attributes with the values actually written to the database.
Returns status object.
=cut
sub update {
my $self = shift;
my ( $context ) = validate_pos( @_, { type => HASHREF } );
return $CELL->status_err( 'DOCHAZKA_MALFORMED_400' ) unless $self->{'aid'};
view all matches for this distribution
view release on metacpan or search on metacpan
bin/dual-lived view on Meta::CPAN
$print->bold_black( $mod->id );
}
}
}
sub update {
CPAN::Shell->install($d);
}
sub filestats {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/FQStat/Actions.pm view on Meta::CPAN
$::DisplayOffset = $limit if $::DisplayOffset > $limit;
$::DisplayOffset = 0 if $::DisplayOffset < 0;
}
sub update_user_name {
warnenter if ::DEBUG;
my $input = poll_user("User name: ");
lock($::User);
if (not defined $input or $input =~ /^\s*$/) {
$::User = undef;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Followme.pm view on Meta::CPAN
}
#----------------------------------------------------------------------
# Update files in one folder
sub update_folder {
my ($self, $directory, $configuration_files, %configuration) = @_;
my $configuration_file = shift(@$configuration_files) ||
catfile($directory, $self->{configuration_file});
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Framework/Lite.pm view on Meta::CPAN
Returns the hash of args/values
=cut
sub update
{
my $this = shift ;
$this->_dbg_prt(["Args: update()\n"]) ;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Framework/Feature/Args.pm view on Meta::CPAN
Returns the hash of args/values
=cut
sub update
{
my $this = shift ;
$this->_dbg_prt(["Args: update()\n"]) ;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/GUI/Cellgraph/Frame.pm view on Meta::CPAN
$self->SetStatusText( "settings in init state", 0 );
$self->{'last_file_settings'} = $self->get_settings;
$self;
}
sub update_recent_settings_menu {
my ($self) = @_;
my $recent = $self->{'config'}->get_value('last_settings');
return unless ref $recent eq 'ARRAY';
my $set_menu_ID = 11300;
$self->{'setting_menu'}->Destroy( $set_menu_ID );
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/GUI/Harmonograph/Frame.pm view on Meta::CPAN
$self->{'btn'}{'draw'}->SetFocus;
$self->sketch;
$self;
}
sub update_recent_settings_menu {
my ($self) = @_;
my $recent = $self->{'config'}->get_value('last_settings');
return unless ref $recent eq 'ARRAY';
my $set_menu_ID = 11300;
$self->{'setting_menu'}->Destroy( $set_menu_ID );
view all matches for this distribution