view release on metacpan or search on metacpan
- Contains classic Wordle word list from original game
- Uses Data::Section::Simple for data storage
- **lib/App/Greple/wordle/NYT.pm**: New York Times Wordle dataset
- Exports `@WORDS` (all valid words) and `@HIDDEN` (answer list)
- Contains NYT Wordle word list (updated through November 2025)
- Uses Data::Section::Simple for data storage
- **lib/App/Greple/wordle/word_all.pm**: Legacy word dictionary (deprecated)
- Kept for backward compatibility
- Exports `@word_all` array and `%word_all` hash
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Greple/xlate/Cache.pm view on Meta::CPAN
clear => 0, # clean up cache data
accessed => {}, # accessed keys
order => [], # accessed keys in order
accumulate => 0, # do not delete unused entry
force_update => 0, # update cache file anyway
updated => 0, # number of updated entries
format => 'list', # saving cache file format
);
for my $key (keys %default) {
no strict 'refs';
lib/App/Greple/xlate/Cache.pm view on Meta::CPAN
$obj->set(mesh $a, $b);
} else {
my $c = $obj->current->{$a} //= delete $obj->saved->{$a};
if (not defined $c or $c ne $b) {
$obj->current->{$a} = $b;
$obj->updated++;
}
}
} @_;
$obj;
}
lib/App/Greple/xlate/Cache.pm view on Meta::CPAN
}
sub update {
my $obj = shift;
my $file = $obj->name || return;
if (not $obj->force_update and $obj->updated == 0) {
if (%{$obj->saved} == 0) {
return;
} elsif ($obj->accumulate) {
for (keys %{$obj->saved}) {
$obj->current->{$_} //= delete $obj->saved->{$_};
view all matches for this distribution
view release on metacpan or search on metacpan
commit 4b6f905babca8c9ed60c8116b86d5fb0019397cf
Author: nadim khemir <nadim@naquadim.(none)>
Date: Sun Apr 27 14:27:38 2008 +0200
FIXED: number of group colors is automatically updated from cnumber of group color definitions
commit 50bd22c8587dad4c929e0e4ce8e2943919bea257
Author: nadim khemir <nadim@naquadim.(none)>
Date: Fri Apr 25 19:48:07 2008 +0200
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/HPGL2Cadsoft.pm view on Meta::CPAN
$$bbox->min_x( $point->min_x() ) if ( $point->min_x() < $$bbox->min_x() );
$$bbox->max_y( $point->max_y() ) if ( $point->max_y() > $$bbox->max_y() );
$$bbox->max_x( $point->max_x() ) if ( $point->max_x() > $$bbox->max_x() );
# Safety check
warn "Bbox not updated as expected" if ( !$$bbox->contains($point) );
}
sub _write_script {
my $self = shift();
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Hashl.pm view on Meta::CPAN
If true: do not skip ignored files, unignore and re-add them instead
=back
If the file already is in the database, it is only updated if both the file
size and the mtime have changed.
Returns true if the file was actually added to the database, false if it is
ignored or already present (and up-to-date).
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/HistHub.pm view on Meta::CPAN
You also need one client daemon in each computer that you want to share history. To boot client, type following command:
histhubd --histfile=/path/to/your_history_file --server=http://your_server_address
This client send updated history to server, and receive new history from other clients.
=head1 METHODS
=head2 new
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/I18N/DB.pm view on Meta::CPAN
create table po_string (
id INTEGER PRIMARY KEY AUTOINCREMENT,
lang TEXT,
msgid TEXT,
msgstr TEXT,
updated_on timestamp,
updated_by varchar(120));
|);
}
# by {id}
sub get_entry {
view all matches for this distribution
view release on metacpan or search on metacpan
(renamed CLIs list-id{,n}-{bank-cards,banks}.
0.144 2020-03-18 Released-By: PERLANCAR; Urgency: medium
- [build] Rebuild with updated Log::ger* modules.
0.143 2019-10-15 Released-By: PERLANCAR; Urgency: medium
- [bugfix] Add missing dependencies:
Log::ger::Output::{Composite,DirWriteRotate}.
0.142 2019-05-10 Released-By: PERLANCAR
- [build] Rebuild with updated Finance::Bank::ID::BCA (0.500).
0.141 2019-02-24 Released-By: PERLANCAR
- [build] Rebuild with updated Data::Sah::Coerce.
0.140 2018-06-04 Released-By: PERLANCAR
- [build] Rebuild with updated Sah coerce modules.
0.13 2017-08-03 Released-By: PERLANCAR
- No functional changes.
- Make log level configurable using Log::ger::LevelFromEnv.
0.11 2017-07-14 Released-By: PERLANCAR
- [build] Rebuild with packing updated modules.
0.10 2017-07-01 Released-By: PERLANCAR
- Replace Log::Any with Log::ger.
view all matches for this distribution
view release on metacpan or search on metacpan
0.021 2024-09-30 Released-By: PERLANCAR; Urgency: low
- No functional changes.
- [build] Rebuild with updated Locale::ID:Province.
0.020 2021-05-07 Released-By: PERLANCAR; Urgency: medium
- [incompatible change] Update to newer Locale::ID::Province &
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/InvestSim/Config.pm view on Meta::CPAN
our %EXPORT_TAGS = (all => \@EXPORT_OK, array => \@array_export, modes => \@modes_export);
# The dimensions of the main tables displayed in the program. These are not pure
# GUI configuration value because they also impact the simulation values.
#
# When these values are updated, the default values for the arrays in
# $App::InvestSim::Values::values_config should be updated too.
use constant NUM_LOAN_DURATION => 6;
use constant NUM_LOAN_AMOUNT => 7;
# Constants for each computation type that can be displayed.
view all matches for this distribution
view release on metacpan or search on metacpan
t/home_pgsql/patches/pagila1.sql view on Meta::CPAN
ALTER FUNCTION public.last_day(timestamp without time zone) OWNER TO postgres;
--
-- Name: last_updated(); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION last_updated() RETURNS trigger
AS $$
BEGIN
NEW.last_update = CURRENT_TIMESTAMP;
RETURN NEW;
END $$
LANGUAGE plpgsql;
ALTER FUNCTION public.last_updated() OWNER TO postgres;
--
-- Name: rewards_report(integer, numeric); Type: FUNCTION; Schema: public; Owner: postgres
--
t/home_pgsql/patches/pagila1.sql view on Meta::CPAN
FOR EACH ROW
EXECUTE PROCEDURE tsvector_update_trigger('fulltext', 'pg_catalog.english', 'title', 'description');
--
-- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated
BEFORE UPDATE ON actor
FOR EACH ROW
EXECUTE PROCEDURE last_updated();
--
-- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated
BEFORE UPDATE ON address
FOR EACH ROW
EXECUTE PROCEDURE last_updated();
--
-- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated
BEFORE UPDATE ON category
FOR EACH ROW
EXECUTE PROCEDURE last_updated();
--
-- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated
BEFORE UPDATE ON city
FOR EACH ROW
EXECUTE PROCEDURE last_updated();
--
-- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated
BEFORE UPDATE ON country
FOR EACH ROW
EXECUTE PROCEDURE last_updated();
--
-- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated
BEFORE UPDATE ON customer
FOR EACH ROW
EXECUTE PROCEDURE last_updated();
--
-- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated
BEFORE UPDATE ON film
FOR EACH ROW
EXECUTE PROCEDURE last_updated();
--
-- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated
BEFORE UPDATE ON film_actor
FOR EACH ROW
EXECUTE PROCEDURE last_updated();
--
-- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated
BEFORE UPDATE ON film_category
FOR EACH ROW
EXECUTE PROCEDURE last_updated();
--
-- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated
BEFORE UPDATE ON inventory
FOR EACH ROW
EXECUTE PROCEDURE last_updated();
--
-- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated
BEFORE UPDATE ON language
FOR EACH ROW
EXECUTE PROCEDURE last_updated();
--
-- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated
BEFORE UPDATE ON rental
FOR EACH ROW
EXECUTE PROCEDURE last_updated();
--
-- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated
BEFORE UPDATE ON staff
FOR EACH ROW
EXECUTE PROCEDURE last_updated();
--
-- Name: last_updated; Type: TRIGGER; Schema: public; Owner: postgres
--
CREATE TRIGGER last_updated
BEFORE UPDATE ON store
FOR EACH ROW
EXECUTE PROCEDURE last_updated();
--
-- Name: address_city_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--
view all matches for this distribution
view release on metacpan or search on metacpan
* Makefile.PL: added notes, fixed abstract extraction from
bin/jawk. (joshr:xl4.joshr.com)
2011-04-13 16:30 joshr
* Changes, MANIFEST: updated (joshr:xl4.joshr.com)
2011-04-13 20:56 joshr
* Changes: noted the purpose of this file in the file.
(joshr:macpro.joshr.com)
* ChangeLog: changes (joshr:macpro.joshr.com)
2011-04-13 21:35 joshr
* README: updated (joshr:macpro.joshr.com)
2011-04-13 21:36 joshr
* bin/jawk: documentation and comment changes.
(joshr:xl4.joshr.com)
* RELEASE_CHECKLIST: improvements (joshr:xl4.joshr.com)
2011-04-16 20:30 joshr
* Changes: updated for 0.04 (joshr:xl4.joshr.com)
2011-04-17 02:09 joshr
* bin/jawk: documentation changes. Rewrite of how we deal with
ranges and with negative indexes. Rewrite of invert_fields.
* t/jawk.t: more test (joshr:xl4.joshr.com)
2011-04-17 02:18 joshr
* RELEASE_CHECKLIST, ChangeLog: updated (joshr:xl4.joshr.com)
2011-04-19 20:21 joshr
* bin/jawk: Optimization, documentation and comment changes.
(joshr:xl4.joshr.com)
* Changes: update (joshr:xl4.joshr.com)
2012-12-02 16:27 joshr
* Changes, ChangeLog: updated (joshr:xl4.joshr.com)
2012-12-02 16:27 joshr
* RELEASE_CHECKLIST: added a line (joshr:xl4.joshr.com)
* dist.ini: new build setup using Dist::Zilla
2012-12-16 18:44 joshr
* ChangeLog: updated (joshr:xl4.joshr.com)
2012-12-16 18:45 joshr
* dist.ini: work on uploading to cpan (joshr:xl4.joshr.com)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/KGB/Client/Git.pm view on Meta::CPAN
my ( $self ) = @_;
my %ref_branch;
my %ref_parent;
my @new_branches;
my %new_branches;
my @updated_branches;
my %branch_updates;
my %branch_head;
my %updated_heads;
my @old_revs;
# keys are sha1s, values are hashrefs with keys branch names
my %branch_tips;
warn "# ======== processing changesets" if 0;
my @params = qw(--topo-order --parents --first-parent);
my @updated;
my %branch_has_commits;
for my $cs ( @{ $self->changesets } ) {
my ( $old, $new, $ref ) = @$cs;
warn "# considering $old $new $ref" if 0;
lib/App/KGB/Client/Git.pm view on Meta::CPAN
warn "# $new is on $branch" if 0;
warn "$branch head is $new" if 0;
$branch_head{$branch} = $new;
$branch_tips{$new}{$branch} = 1;
$updated_heads{$branch} = 1;
if ( $old =~ /^0+$/ ) {
push @new_branches, $branch;
$new_branches{$branch} = 1;
}
else {
push @updated, "$new", "^$old";
push @old_revs, $old;
push @updated_branches, $branch;
$branch_updates{$branch} = [ $old => $new ];
}
}
my @existing_branches;
lib/App/KGB/Client/Git.pm view on Meta::CPAN
warn "old branches: @old_branches" if 0;
my @commits;
my %reported;
if (@updated) {
push @params, map( "^$_", @old_branches );
warn "# git rev-list @params @updated" if 0;
my @lines = $self->_git->command( 'rev-list', @params, @updated);
do { warn $_ for @lines } if 0;
if ( $self->squash_threshold
and scalar(@lines) > $self->squash_threshold )
{
for my $branch (@updated_branches) {
my ($old,$new) = @{ $branch_updates{$branch} };
my $stat = $self->_git->command( 'diff', '--shortstat',
"$old..$new" );
my @commit_lines
= $self->_git->command( 'rev-list', '--topo-order', $new,
lib/App/KGB/Client/Git.pm view on Meta::CPAN
$reported{$ref} = 1;
$branch_has_commits{ $ref_branch{$ref} } = 1;
}
}
# see if some updated branch was without any reported commits
# if this case put a fast-forward notification
if ( $self->enable_branch_ff_notification ) {
for ( @updated_branches ) {
next if $branch_has_commits{$_};
push @commits,
App::KGB::Commit->new(
{ branch => $_,
lib/App/KGB/Client/Git.pm view on Meta::CPAN
# terminate walk on old revs
if ( @new_branches ) {
# exclude commits in all branches that aren't part of this push
my @exclude;
for ( @existing_branches ) {
push @exclude, $branch_head{$_} unless $updated_heads{$_};
};
push @exclude, @old_revs;
$_ = "^$_" for @exclude;
for my $b (@new_branches) {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Koyomi/DataSource/Job/Teng.pm view on Meta::CPAN
my $now_db = DateTime::Format::MySQL->format_datetime($now);
eval {
# create jobs
my %job = map { $_ => $data->{$_} } qw/user command memo/;
$job{created_on} = $job{updated_at} = $now_db;
my $new_job = $teng->insert('jobs', \%job);
unless ($new_job) {
croakf(q/Insert jobs Failed! data=%s/, ddf(\%job));
}
lib/App/Koyomi/DataSource/Job/Teng.pm view on Meta::CPAN
for my $t (@{$data->{times}}) {
my %time = (
job_id => $new_job->id,
%$t,
created_on => $now_db,
updated_at => $now_db,
);
$teng->insert('job_times', \%time)
or croakf(q/Insert job_times Failed! data=%s/, ddf(\%time));
}
lib/App/Koyomi/DataSource/Job/Teng.pm view on Meta::CPAN
my $now_db = DateTime::Format::MySQL->format_datetime($now);
eval {
# update jobs
my %job = map { $_ => $data->{$_} } qw/user command memo/;
$job{updated_at} = $now_db;
unless ($teng->update('jobs', \%job, +{ id => $id })) {
croakf(q/Update jobs Failed! id=%d, data=%s/, $id, ddf(\%job));
}
# replace job_times
lib/App/Koyomi/DataSource/Job/Teng.pm view on Meta::CPAN
for my $t (@{$data->{times}}) {
my %time = (
job_id => $id,
%$t,
created_on => $now_db,
updated_at => $now_db,
);
$teng->insert('job_times', \%time)
or croakf(q/Insert job_times Failed! data=%s/, ddf(\%time));
}
};
view all matches for this distribution
view release on metacpan or search on metacpan
0.0.6 2017-01-17 (faraco)
- updated dist.ini
0.0.5 2017-01-16 (faraco)
- updated dist.ini
0.0.4 2017-01-16 (faraco)
- updated POD
0.0.3 2017-01-14 (faraco)
- updated POD and removed extra words in output
0.0.2 2017-01-14 (faraco)
- fixed typo and POD
0.0.1 2017-01-14 (faraco)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/LXC/Container.pm view on Meta::CPAN
=over
=item +
All applications are automatically updated together with the Linux
distribution of the machine.
=item +
The applications do not need additional disk space (except for the
lib/App/LXC/Container.pm view on Meta::CPAN
as nothing is shared with the main system (even more than Docker
containers).
=item +
Virtual machines must be updated separately from the main system.
=item +
Starting an application inside of a virtual machine is slower than starting
an application container.
lib/App/LXC/Container.pm view on Meta::CPAN
App::LXC::Container::update(@containers);
=head3 parameters:
@container name of the container(s) to be updated
=head3 description:
This is the actual code for the wrapper script C<lxc-app-update>.
view all matches for this distribution
view release on metacpan or search on metacpan
share/js/core/qunit-2.4.0.js view on Meta::CPAN
}
// Handle "click" events on toolbar checkboxes and "change" for select menus.
// Updates the URL with the new state of `config.urlConfig` values.
function toolbarChanged() {
var updatedUrl,
value,
tests,
field = this,
params = {};
share/js/core/qunit-2.4.0.js view on Meta::CPAN
} else {
value = field.checked ? field.defaultValue || true : undefined;
}
params[field.name] = value;
updatedUrl = setUrl(params);
// Check if we can apply the change without a page refresh
if ("hidepassed" === field.name && "replaceState" in window.history) {
QUnit.urlParams[field.name] = value;
config[field.name] = value || false;
tests = id("qunit-tests");
if (tests) {
toggleClass(tests, "hidepass", value || false);
}
window.history.replaceState(null, "", updatedUrl);
} else {
window.location = updatedUrl;
}
}
function setUrl(params) {
var key,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/MHFS/HTTP/Server/Client/Request.pm view on Meta::CPAN
}
# process reverse proxy headers
else {
delete $self->{'header'}{'X-MHFS-PROXY-KEY'};
try { $self->{'ip'} = parse_ipv4($self->{'header'}{'X-Forwarded-For'}) if($self->{'header'}{'X-Forwarded-For'}); }
catch ($e) { say "ip not updated, unable to parse X-Forwarded-For: " . $self->{'header'}{'X-Forwarded-For'}; }
}
my $netmap = $self->{'client'}{'server'}{'settings'}{'NETMAP'};
if($netmap && (($self->{'ip'} >> 24) == $netmap->[0])) {
say "HACK for netmap converting to local ip";
$self->{'ip'} = ($self->{'ip'} & 0xFFFFFF) | ($netmap->[1] << 24);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Magpie/Action/FixSpec.pm view on Meta::CPAN
$spec =~ s{%\{?__perl\}? Makefile.PL INSTALLDIRS=vendor}{%__perl Build.PL --installdirs=vendor};
$spec =~ s{^%?make$}{./Build CFLAGS="%{optflags}"}m;
$spec =~ s{%?make test}{./Build test};
$spec =~ s{%makeinstall_std}{./Build install --destdir=%{buildroot}};
# writing down new spec file
$self->log_debug( "writing updated spec file" );
my $fh = $specfile->openw;
$fh->print($spec);
$fh->close;
}
if ( $spec =~ /Build.PL/ && !$has_build_pl ) {
lib/App/Magpie/Action/FixSpec.pm view on Meta::CPAN
$spec =~ s{%\{?__perl\}? Build.PL (--)?installdirs=vendor}{%__perl Makefile.PL INSTALLDIRS=vendor};
$spec =~ s{./Build( CFLAGS="%\{optflags\}")?$}{%make}m;
$spec =~ s{./Build test}{%make test};
$spec =~ s{./Build install.*}{%makeinstall_std};
# writing down new spec file
$self->log_debug( "writing updated spec file" );
my $fh = $specfile->openw;
$fh->print($spec);
$fh->close;
}
lib/App/Magpie/Action/FixSpec.pm view on Meta::CPAN
# removing extra newlines
$spec =~ s{\n{3,}}{\n\n}g;
# writing down new spec file
$self->log_debug( "writing updated spec file" );
my $fh = $specfile->openw;
$fh->print($spec);
$fh->close;
}
view all matches for this distribution
view release on metacpan or search on metacpan
0.16 2012-10-14
- spelling fix. (thanks to Florian Schlichting & Gregor Herrmann).
- added =encoding to POD.
- reworked Makefile.PL for clarity.
- License updated to Artistic License v2.0.
- added minimum perl version (5.006).
- META tests no longer require specific versions.
- change file dates changed to meet W3CDTF standards.
- implemented Perl::Critic suggestions.
- added login and connection protection.
- fixed repeated network lines with help command.
- added initial lines to help messages.
- always use internal pager (RT#61433).
- extend time/date formats.
- added regular command protection.
- updated Net::Twitter API commands.
- Now requires Net-Twitter-3.18003.
- updated tests.
0.15 2010-09-26
- added OAuth support to Identica access.
- added better protection for failing commands.
- removed password from example settings.
- updated tests.
- Now requires Net-Twitter-3.13009.
0.14 2010-09-11
- documentation fix for INI format example (thanks to Alan Haggai Alavi).
- rewrite to Twitter.pm to use OAuth mechanism for logging in.
- added 92disttest.t and 95changedate.t tests to the suite.
- added Text::Wrap at Rob Rothenberg's suggestion to more neatly wrap
the messages and replies listings.
0.10 2009-02-17
- somethimes I'm just too eager. META.yml now updated too!
0.09 2009-02-17
- added README to MANIFEST.
- document changes.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/MakeEPUB.pm view on Meta::CPAN
# indent => " ",
# } )
#
# Returns a string containing <navPoint> entries for the <navMap> in toc.ncf
# from the given array. The first id is named "navPoint-$cnt" and the first
# playOrder "$cnt". $cnt is updated to the next number after the last
# playOrder.
#
# The array should be of the form [ [ $fname, $anchor, $text, $extra ], ... ],
# where $fname is the name of the file, $anchor the id of an html anchor
# (<a id="$anchor" ...>) and $text the text belonging to the anchor. The
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/MechaCPAN.pm view on Meta::CPAN
BEGIN
{
our @EXPORT_OK = qw/
url_re git_re git_extract_re
has_git has_updated_git min_git_ver
can_https
logmsg info success error
dest_dir get_project_dir
fetch_file inflate_archive
humane_tmpname humane_tmpfile humane_tmpdir
lib/App/MechaCPAN.pm view on Meta::CPAN
sub min_git_ver
{
return '1.7.7';
}
sub has_updated_git
{
my $git_version_str = _git_str;
if ($git_version_str)
{
use version 0.77;
lib/App/MechaCPAN.pm view on Meta::CPAN
return;
}
sub has_git
{
return _git_str && has_updated_git;
}
# Give a list of https-incapable File::Fetch methods when https is unavailable
sub _https_blacklist
{
view all matches for this distribution
view release on metacpan or search on metacpan
media-orientation.
0.11 2016-04-06 Released-By: PERLANCAR
- [Bugfix] Fix broken CLI (Riap URL was not updated).
0.10 2016-04-06 Released-By: PERLANCAR
- First release, split from Media-Info to reduce dependencies of
view all matches for this distribution
view release on metacpan or search on metacpan
media-orientation.
0.11 2016-04-06 Released-By: PERLANCAR
- [Bugfix] Fix broken CLI (Riap URL was not updated).
0.10 2016-04-06 Released-By: PERLANCAR
- First release, split from Media-Info to reduce dependencies of
view all matches for this distribution
view release on metacpan or search on metacpan
root/js/ext-3.3.1/ext-all.js view on Meta::CPAN
*/
(function(){var h=Ext.util,k=Ext.each,g=true,i=false;h.Observable=function(){var l=this,m=l.events;if(l.listeners){l.on(l.listeners);delete l.listeners}l.events=m||{}};h.Observable.prototype={filterOptRe:/^(?:scope|delay|buffer|single)$/,fireEvent:fu...
/* SWFObject v2.2 <http://code.google.com/p/swfobject/>
is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
var swfobject=function(){var F="undefined",t="object",U="Shockwave Flash",Y="ShockwaveFlash.ShockwaveFlash",s="application/x-shockwave-flash",T="SWFObjectExprInst",z="onreadystatechange",Q=window,l=document,v=navigator,V=false,W=[i],q=[],P=[],K=[],n,...
view all matches for this distribution
view release on metacpan or search on metacpan
Changes file for App-MiseEnPlace
0.170 2020-04-18 13:36:18-07:00 America/Los_Angeles
* Migrated repo from Github to git.genehack.net; updated metadata
accordingly.
* Updated copyright year and email
0.160 2015-04-14 21:21:17-07:00 America/Los_Angeles
view all matches for this distribution
view release on metacpan or search on metacpan
### 2014-07-27 v1.116
* Fixed - there can be issue on MacOSX that HTTPS is not working: All requests end up with errors "HTTP connection
problem (timeout?)". Found that Apple ships LWP::Protocol::https without Mozilla::CA module (and they have no rights to
do so). So now a README install instructions updated and runtime error thrown if Mozilla::CA is missing and yo're trying
to use HTTPS. More technical info: http://blogs.perl.org/users/vsespb/2014/07/broken-lwp-in-the-wild.html
https://github.com/vsespb/mt-aws-glacier/issues/87
* Fixed - typo in error message.
both --filename and --dir now resolved to full paths, before determining relative path from --dir` to --filename`
So f you have `/dir/ds` symlink to `/dir/d3` directory, then `--dir=/dir` `--filename=/dir/ds/file` will result in
relative filename `d3/file` not `ds/file`. Previously you would get d3/file. Also now all parent directories has
to be readable.
* Documentation: documentation for upload-file updated.
* Fixed: #63 internaly mtglacier was using absolute filenames when reading/writing file in filesystem, even if user
specified relative. Seems that was wrong. Undex Unix file can be readable by relative name but unaccessible by real,
absolute name if path components of this name are unreadable. Fixed now - always use relative filenames in all commands
except upload-file command (where it's documented that absolute names are used).
* Fixed: download-inventory command now fetches latest inventory, not oldest
* Added --request-inventory-format option for retrieve-inventory commands
* Documentation: updated docs for retrieve-inventory and retrieve-inventory and download-inventory commands
### 2013-12-10 v1.102
* Fixed: memory/reasource leak, introduced in v1.100. Usually resulting in crash after uploading ~ 1000 files ( too
many open files error)
warning that option deprecated, however that should not happen, because everything that is in config should be
read only when such option required (you should be able to put any unneeded option into config)
### 2013-10-15 v1.056
* mtglacier now can be installed via Ubuntu PPA - install instructions updated.
### 2013-09-25 v1.055
* Fixed: sync --replace-modified were not deleting old files in Amazon Glacier in case --detect option causing a check
of treehash before upload.
* Enhancement: mtglacier now checks versions of every loaded module runtime, in case of mess with install.
### 2013-07-13 v0.973 beta
* mt-aws-glacier can now be installed using CPAN tool. Docs updated with installation instructions.
* Config file now detect config syntax errors better and reports it together with file name and line number
* Config options without values (follow, dry-run, stdin, new, replace-modified, delete-removed) can now be used in
config file
* Enhancement: sync now acception --follow - follow symbolic links, documentation updated.
* Enhancement: --detect now accepts new value "size-only"
### 2013-07-10 v0.972 beta
* Fixed - restore-completed sometimes restore existing files when filesystem-encoding is not UTF-8 and filename contains non-ASCII characters
### 2013-06-05 v0.962 beta
* Enhancement: 'timeout' option added for network socket timeout and documentation updated. Default timeout
changed from 120 to 180 seconds
* Detection of Amazon Glacier ThrottlingException
* Better handling of server closing connection, after headers sent, for download-inventory as well
### 2013-06-01 v0.961 beta
* Enhancement: segment-size option added for restore-completed command for multi-segment downloads
* Documentation: restore-completed documentation updated
* Enhancement: Now all downloads performed to temp files. Temp file renamed to real files only when download succeed.
* Fixed: If server closes connection, after sending headers (when downloading files), this was not detected and no
error was thrown (it's not reported by underlying HTTP library for case non-chunked-transfer)
mean journal is truncated/damaged.
* Possibility to work with Journal files, which use CRLF as line separator
* Error message (instead of unexpected error) added for case when filenames are too big (limit
is 700 ASCII or 350 2-bytes UTF-8). Limitation section updated for this case in README.
### 2013-05-19 v0.952 beta
* Some error handling rework. Errors for file opens (permissions problems), invalid characters in filenames, some misc
errors, are thrown with sane error message and helpful information
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/MultiModule/Task.pm view on Meta::CPAN
return undef;
}
=head2 set_config($config)
This method is called by the MultiModule daemon when it has updated
config for your task. The default behaviour (as implemented in the
Task class) is to simply take the passed config and assign it to
the 'config' field on the $self reference.
The other important purpose of this method is to give your task a chance
view all matches for this distribution
view release on metacpan or search on metacpan
script/mg-init view on Meta::CPAN
my $config = shift;
if ($config) {
if($config eq '-') {
# read updated config from stdout
copy(\*STDIN, mgconfig);
}
elsif ($config =~ m{://}) {
HTTP::Tiny->new->mirror($config, mgconfig);
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/ChordPro/Config/Properties.pm view on Meta::CPAN
MH-Doc (later: MMDS) software suite. Multihouse kindly waived copyrights.
In 2002 it was revamped as part of the Compuware OptimalJ development
process. Compuware kindly waived copyrights.
In 2020 it was updated to support arrays and released to the general
public.
=head1 COPYRIGHT & LICENSE
Copyright 1994,2002,2020 Johan Vromans, all rights reserved.
view all matches for this distribution