view release on metacpan or search on metacpan
lib/App/Rssfilter.pm view on Meta::CPAN
To use App::Rssfilter in your own project, create an L<App::Rssfilter::Group>, add feeds and rules and subgroups, then call its C<update> method. To load and save feeds to something other than the file system, extend L<App::Rssfilter::Feed::Storage> ...
=head1 BUGS
Only the current and last-fetched RSS documents are examined when filtering, so an item may not be classified as a duplicate and thus appear in two feeds. To illustrate, consider two RSS news feeds: National, which is frequently updated and contains ...
This can be mitigated by filtering Regional before National, or by fetching the National feed less frequently.
=head1 SEE ALSO
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/SD/CLI/Command/Ticket/Comment/Update.pm view on Meta::CPAN
my @prop_set = $self->prop_set;
# we don't want to do prop: value editing by default for comments since
# it's just a blob of text
if (!@prop_set || $self->has_arg('edit')) {
my $updated_comment = $self->edit_text($record->prop('content'));
$record->set_prop(name => 'content', value => $updated_comment);
print "Updated comment " . $record->luid . " (" . $record->uuid . ")\n";
} else {
super();
}
};
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/SVN/Bisect.pm view on Meta::CPAN
END
'start' => <<"END",
Usage: $0 [--min <rev>] [--max <rev>] start
Starts a new bisect session. You may specify the initial upper and lower
bounds, with the --min and --max options. These will be updated during the
course of the bisection, with the "before" and "after" commands.
This command will prepare the checkout for a bisect session, and start off
with a rev in the middle of the list of suspect revisions.
END
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Sandy/PieceTable.pm view on Meta::CPAN
my ($self, $pos) = @_;
# Catch orig index where pos is inside
my $index = $self->_piece_at($pos);
# Get piece which will be updated
my $old_piece = $self->_get_piece($index);
# Split at the beggining of a piece,
# or this piece has length 1
if ($pos == $old_piece->{start}) {
lib/App/Sandy/PieceTable.pm view on Meta::CPAN
# Create the second part of the split after the break position
my $piece = $self->_piece_new($old_piece->{ref}, $old_piece->{is_orig},
$pos, $old_end - $pos + 1, $pos);
# Insert second part after updated piece
$self->_splice_piece(++$index, 0, $piece);
# return corrected index that resolves to
# the position between the breaked piece
return $index;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/SeismicUnixGui/big_streams/iApply_bottom_mute.pm view on Meta::CPAN
=head2
RUN FLOW(S)
output copy of picked data points
only occurs after the number of tries
is updated
=cut
#for suximage
$run->flow( \$flow[1] );
view all matches for this distribution
view release on metacpan or search on metacpan
0.05 2015-09-27 (PERLANCAR)
- No functional changes.
- Rebuild with updated Getopt::Long::Patch::DumpAndExit to fix dumping
of coderefs [CT].
0.04 2015-09-17 (PERLANCAR)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/ShellCompleter/cpanm.pm view on Meta::CPAN
my %cargs = @_;
die "This script is for shell completion only\n"
unless $ENV{GETOPT_LONG_DUMP} || $ENV{COMP_LINE} || $ENV{COMMAND_LINE};
# the list of options is taken from Menlo::CLI:Compat. should be updated
# from time to time.
GetOptionsWithCompletion(
sub {
my %args = @_;
my $type = $args{type};
view all matches for this distribution
view release on metacpan or search on metacpan
my $noop = sub {};
$Getopt::Long::Complete::opt_bundling = 0;
# this is gathered from emacs manpage and should be updated from time to time.
GetOptionsWithCompletion(
sub {
my %args = @_;
my $type = $args{type};
my $word = $args{word};
view all matches for this distribution
view release on metacpan or search on metacpan
script/_perlbrew view on Meta::CPAN
% perlbrew install --a<tab>
% perlbrew use <tab>
=head1 DESCRIPTION
Last updated for L<perlbrew> version 0.75.
=head1 HOMEPAGE
Please visit the project's homepage at L<https://metacpan.org/release/App-ShellCompleter-perlbrew>.
view all matches for this distribution
view release on metacpan or search on metacpan
local/lib/perl5/Dist/CheckConflicts.pm view on Meta::CPAN
versions of modules separately, and deal with them after the module is done
installing.
For instance, say you have a module C<Foo>, and some other module C<Bar> uses
C<Foo>. If C<Foo> were to change its API in a non-backwards-compatible way,
this would cause C<Bar> to break until it is updated to use the new API. C<Foo>
can't just depend on the fixed version of C<Bar>, because this will cause a
circular dependency (because C<Bar> is already depending on C<Foo>), and this
doesn't express intent properly anyway - C<Foo> doesn't use C<Bar> at all. The
ideal solution would be for there to be a way to specify conflicting versions
of modules in a way that would let CPAN clients update conflicting modules
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Slaughter/API/generic.pm view on Meta::CPAN
=over
=item File [mandatory]
The filename which should be examined and potentially updated.
=item Line [mandatory]
The line which should be searched for and potentially appended.
lib/Slaughter/API/generic.pm view on Meta::CPAN
The value to comment out the line with.
=item File [mandatory]
The filename which should be examined and potentially updated.
=item Pattern [mandatory]
The regular expression to match with.
=back
The return value of this function is the number of lines updated,
or -1 if the file could not be opened.
=cut
sub CommentLinesMatching
lib/Slaughter/API/generic.pm view on Meta::CPAN
Dest => "/etc/motd",
Owner => "root",
Group => "root",
Mode => "644" ) )
{
# File was created/updated.
}
else
{
# File already existed locally with the same contents.
}
lib/Slaughter/API/generic.pm view on Meta::CPAN
=over
=item File [mandatory]
The filename which should be examined and potentially updated.
=item Pattern [mandatory]
The pattern to test and potentially replace.
lib/Slaughter/API/generic.pm view on Meta::CPAN
The replacement text to use.
=back
The return value of this function is the number of lines updated,
0 if none, or -1 if the file could not be opened.
=cut
sub ReplaceRegexp
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/SlideServer.pm view on Meta::CPAN
=head2 viewers
A hashref of C<< ID => $context >> where C<$context> is the Mojo context
object for the client's websocket connection, and ID is the request ID for
that websocket. This is updated as clients connect or disconnect.
=head2 published_state
A hashref of various data which has been broadcast to all viewers.
This keeps track of things like the current slide, but you can extend it
view all matches for this distribution
view release on metacpan or search on metacpan
socialcalc/simpleedit14.pl view on Meta::CPAN
$newstr =~ s/^\[(spreadsheet|datatable|drawing)\:(.+?)\]/"[$1:$2:\n" . $page->{items}{$2}{text} . "\n:$1]"/gme;
}
open (PAGEFILEOUT, ">$datadir$pagename.page.txt");
print PAGEFILEOUT $newstr;
close PAGEFILEOUT;
$statusmessage .= "Saved updated page '$pagename'.<br>";
}
if ($q->param("editpage") || $q->param("editrawpage")) { # when one of the "editpage" buttons is pressed
return do_editpage($q, $pagename, $statusmessage);
}
socialcalc/simpleedit14.pl view on Meta::CPAN
open (PAGEFILEOUT, ">$datadir$pagename.page.txt");
print PAGEFILEOUT $pagestr;
close PAGEFILEOUT;
$statusmessage =
"Saved updated $sheettype '$sheetname' on page '$pagename'.<br>";
}
$response = do_displaypage($q, $pagename, $statusmessage); # Otherwise, display page
return $response;
view all matches for this distribution
view release on metacpan or search on metacpan
-------
This application was originally written by Casey Best <cbest@uvic.ca> and
Pam Shimek <pshimek@uvic.ca>. It also includes patches by Remo Tilanus
<r.tilanus@jach.hawaii.edu> and Tim Jenness <tjenness@cpan.org>. For
version 1.17 it was updated to use the Astro::Coords and Astro::Catalog
modules by Graham Bell <g.bell@eaobservatory.org>.
Copyright (C) 2016-2024 East Asian Observatory.
Copyright (C) 2012-2014 Science and Technology Facilities Council.
Copyright (C) 1998, 1999 Particle Physics and Astronomy Research
view all matches for this distribution
view release on metacpan or search on metacpan
Change: 6c93a7c6ded6dc86d5437c2af176da338ab19cb9
Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br>
Date : 2024-04-30 23:42:09 +0000
chore: updated email
Change: 34a96502d53947696b88a17e400decf28188a623
Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br>
Date : 2024-04-13 21:02:45 +0000
Change: cc1ffb7c8c13bfdfdd52986954829747815d4573
Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br>
Date : 2022-03-20 20:59:05 +0000
doc: required updated
Change: 4ecae6374394049c6c408a8750d116d115a3dedf
Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br>
Date : 2022-03-20 20:58:46 +0000
Change: eaa8e9308ffd9065d035d876e5ade2dd15ba5aa4
Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br>
Date : 2022-03-12 12:26:09 +0000
chore: updated attribs and methods
Change: cd87e33a49a5cdbb60b78bd19aea1cda010ac032
Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br>
Date : 2022-03-12 12:25:43 +0000
Change: dcfa0e08f5cac81ecba0d14a7dc07d5f079a2633
Author: Alceu Rodrigues de Freitas Junior <glasswalk3r@yahoo.com.br>
Date : 2022-01-09 13:29:46 +0000
doc: updated list
Please enter the commit message for your changes. Lines starting
Change: e0ecededb33f0e18c71949892f6f70ef614eb494
Author: alceu.freitas <alceu.freitas@semantix.com.br>
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Build/Sqitch.pm view on Meta::CPAN
}
}
}
# If we moved any files, nofify the user that custom templates will need
# to be updated, too.
if ($notify) {
$self->log_warn(q{
#################################################################
# WARNING #
# #
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Standby.pm view on Meta::CPAN
Some services may need additional configuration per users, so you can store additional config
under each user.
Now you need to change the notification order at least once to make sure all remote services
are updated. This happens only when the order is changed.
=head1 PLUGINS
Have a look at the examples directory for some example plugins.
view all matches for this distribution
view release on metacpan or search on metacpan
Revision history for App-Stash
0.02 Sat, 20 Nov 2010 19:08:07 +0100
- #63179 added missing dependency on Class::Accessor::Chained::Fast to Build.PL
- updated MANIFEST
0.01 15 Oct 2009
- First version, released on an unsuspecting world.
view all matches for this distribution
view release on metacpan or search on metacpan
- create a patch helper (SP-patch-postinstall) that is executed
after perl and eahc module install to do some important patches.
- rename the cpan-make-inmstall helper to SP-make-install-make.
- write mkbundle to bin/SP-mkbundle.
- new "staticperl perl" command.
- updated small/bigperl to 5.12.3.
1.21 Fri Mar 18 19:21:15 CET 2011
- ok, irix tar has no working -f and freebsd tar goes to a device
by default, so screw irix and go with freebsd.
- some bloke thought it's cool to force dynamic linking on darwin.
view all matches for this distribution
view release on metacpan or search on metacpan
local/lib/perl5/Module/Build.pm view on Meta::CPAN
or
./Build install --installdirs vendor
If you're installing an updated version of a module that was included
with perl itself (i.e. a "core module"), then you may set
C<installdirs> to "core" to overwrite the module in its present
location.
(Note that the 'script' line is different from C<MakeMaker> -
view all matches for this distribution
view release on metacpan or search on metacpan
0.5.6 2015-01-19
Updating for release of version 0.5.6
Added more items to the package.json file (Ivan Wills)
New builder for gulp module (Ivan Wills)
Licence updated (Ivan Wills)
Updated skipped files (Ivan Wills)
0.5.5 2014-12-28
Updating for release of version 0.5.5
Updated licence (Ivan Wills)
Improved default Moose style (Ivan Wills)
Added configure_requires section (Ivan Wills)
Added default ignore file (Ivan Wills)
Changed default load test to require files (fixes Windows issues) (Ivan Wills)
Fixed YAML syntax (Ivan Wills)
LICENCE updated (Ivan Wills)
0.5.1 2013-05-09
Changed default load test to one that finds all modules and tries to use them
Added manifest test to default module builds
Fixed file generation
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Templer/Site.pm view on Meta::CPAN
$body->param( \%data );
$data{ 'content' } = $body->output();
#
# Make the (updated) global and per-page data available
# to the template object.
#
$tmpl->param( \%data );
#
lib/Templer/Site.pm view on Meta::CPAN
=head2 set
Store/update a key/value pair in our internal store.
This allows the values passed in the constructor to be updated/added to.
=cut
sub set
{
view all matches for this distribution
view release on metacpan or search on metacpan
0.031 2017-04-18
A recent Test::More fix changed a behavior (empty output line removed).
Test and dependency updated.
0.030 2017-04-11
When using 'suiteroots' as URL:s to zip files, use LWP::UserAgent and disable host check for https
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Textcast.pm view on Meta::CPAN
if (($didout > 0) || ($vt_process->{PREVXY} ne $EMPTY_STRING . $vt->x . q{,} . $vt->y))
{
printf "\e[%d;%dH", $vt->y, ($vt->x > $vt->cols ? $vt->cols : $vt->x);
$screen_data .= sprintf "\e[%d;%dH", $vt->y, ($vt->x > $vt->cols ? $vt->cols : $vt->x);
#todo: shouldn't prevxy be updated here?
}
# Make sure the child process has not died.
$vt_process->{DIED} = 1 if (waitpid ($vt_process->{PID}, WNOHANG) > 0);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/TimelogTxt/Manual.pod view on Meta::CPAN
I started tracking everything I did at work. After a few days, I had identified
many of the interruptions that prevented me from making progress. I had also
noted that some of my busiest, yet least productive days were almost all
interruptions. I used this information to improve my work and to keep people
updated with why my various projects were not progressing as expected. When I
needed to make faster progress, I had the data to help my manager redirect the
worst of the interruptions.
=head2 The Need for Change
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Toodledo.pm view on Meta::CPAN
$self->task_cache( App::Toodledo::TaskCache->new );
return unless $self->task_cache->exists;
$self->task_cache->fetch;
}
my $fetched = $self->task_cache->last_updated;
my $logstr = "Edited: " . localtime( $ai->lastedit_task )
. ", Deleted: " . localtime( $ai->lastdelete_task )
. " Fetched: " . localtime( $fetched );
if ( $ai->lastedit_task >= $fetched || $ai->lastdelete_task >= $fetched )
{
lib/App/Toodledo.pm view on Meta::CPAN
must be correctly set. No other attributes will be used.
Note: this method is overridden in App::Toodledo::Task.
=head2 $todo->edit( $object )
The given object will be updated in Toodledo to match the one passed.
Note: this method is overridden in App::Toodledo::Task. When the object
is a task, the signature is:
=head2 $todo->edit( $task, [@tasks] )
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Transpierce.pm view on Meta::CPAN
original locations and permissions.
C<diff.sh> script can be run to make sure file contents in C<restore> directory
do not differ from original files. It is recommended to do that before running
C<deploy.sh> script. If there are differences, it's possible that original
files were updated in the meantime and current working environment needs to be
initialized again.
=head2 Taking it with you
App::Transpierce was written with the ability to take it with you in mind. It
view all matches for this distribution
view release on metacpan or search on metacpan
0.003 2017-06-17 Released-By: PERLANCAR
- No functional changes.
- [build] Rebuild with updated Perinci::CmdLine::Dump to show --dry-run
in the POD.
0.002 2017-06-14 Released-By: PERLANCAR
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/USBKeyCopyCon.pm view on Meta::CPAN
number of steps completed; and 'y' is an integer indicating the total number
of steps. For example if the script output this line:
{4/8}
the status icon would be updated to indicate 50% complete.
=head1 METHODS
=head2 Constructor
view all matches for this distribution