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/App/MHFS.pm view on Meta::CPAN
}
# build the new libraries
$self->BuildLibraries();
# determine what needs to be updated
my @updates = (['sources', $self->{'sources'}]);
foreach my $pupdate(@potentialupdates) {
if($before{$pupdate} ne $self->{$pupdate}) {
push @updates, [$pupdate, $self->{$pupdate}];
}
lib/App/MHFS.pm view on Meta::CPAN
say "Updating " . $update->[0];
$self->{$update->[0]} = $update->[1];
}
}
else {
say "failed to thaw, library not updated.";
}
$onUpdateEnd->();
});
}
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
view release on metacpan or search on metacpan
lib/App/Mxpress/PDF.pm view on Meta::CPAN
Returns the html - single page application.
=head2 /api/login
Authenticate to the api, the default username and password is username and password. This can be updated
inside of the conf.yml file.
header('Token', $csrf_token);
post('/api/login', {
username => Types::Standard::Optional->of(Str),
view all matches for this distribution
view release on metacpan or search on metacpan
0.019 2019-12-24 Released-By: PERLANCAR; Urgency: low
- No functional changes.
- [build] Rebuild with updated Perinci::Sub::To::CLIDocData which shows
the more helpful --no-dry-run in help/POD for scripts that run in
dry-run mode by default (e.g. mysql-drop-all-tables).
0.018 2019-04-26 Released-By: PERLANCAR
0.007 2017-06-17 Released-By: PERLANCAR
- No functional changes.
- [build] Rebuild with updated Perinci::CmdLine::Dump to show --dry-run
in the POD.
0.006 2017-06-15 Released-By: PERLANCAR
view all matches for this distribution
view release on metacpan or search on metacpan
- dist and docs corrected
0.6.0 2018-07-31
- ndproc-Insert: replace whole structure if path opt omitted
- ndproc-Remove: throw error when no one path specified to remove
- all: Struct::Path::PerlStyle updated to 0.90
0.5.9 2018-07-03
- tests fixed (YAML::XS version check)
0.5.8 2018-07-02
- nddiff: --{A,N,O,R,U} opts added, --full opt is deprecated
- nddiff: text diff formatter refactored, header fixed
- nddiff, ndquery: grep fixed for lists
- ndquery: --md5 output for STDIN fixed
- ndquery: --items opt renamed to --keys
- depends updated: Struct::Diff 0.96
0.5.3 2018-03-11
- nddiff: validate diff when --show opt used
- nddiff: don't print diff header when --quiet opt used
- nddiff: grep failures fixed on unexisted substructures
- nddiff: diff multiple arguments supported
- all: get rid of global @ARGV usage
- dist fixed (prereqs, docs, cpants errors, etc)
0.5.0 2018-01-22
- Struct::* depends updated, related code fixed
- ndquery: --nopretty fixed
- nddiff: alert for deprecated '<<' hook in path removed
- nddiff: deprecated opt --path removed
- First cpan release.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Netdisco/JobQueue.pm view on Meta::CPAN
=head2 jq_complete( $job )
Marks a job as complete. The C<$job> parameter must be an object which
implements the Netdisco job instance interface (see below). The queue item's
status, log and finished fields will be updated from the passed C<$job>.
Returns true if successful else returns false.
=head2 jq_insert( \%job | [ \%job, \%job ...] )
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Netsync.pm view on Meta::CPAN
}
}
}
}
# Show the user how many nodes have been updated if necessary.
unless ($config{'Quiet'}) {
print $successful_update_count if $config{'Verbose'};
print ' successful';
print ' ('.$failed_update_count.' failed)' if $failed_update_count > 0;
print "\n";
view all matches for this distribution
view release on metacpan or search on metacpan
0.02 Mar 25th 2010
As per feature request via RT #55257:
Derivable post content allowed - thanks AEvar
0.03 Apr 8th 2010
Fixed changes file and updated verison.
0.04 Sep 23rd 2010
Fixed RT #61565 for installs on system without Module::Install
view all matches for this distribution
view release on metacpan or search on metacpan
- App-Nopaste-Service-AnyPastebin solved RT#55257. This makes my
code a lot simpler.
0.05 2010-03-05 14:05:48
- 0.04 but with updated Changes
0.04 2010-03-05 13:41:36
- Use Dist::Zilla Git plugins again, I fail.
view all matches for this distribution
view release on metacpan or search on metacpan
1.009 2017-04-13 22:08:42Z
- fixed arguments for the Mojopaste service, to work with the default
service provider at thorsen.pm (PR#14, Andrew Rodland)
1.008 2017-02-27 01:05:29Z
- updated paste URLs for Debian and Ubuntu services (RT#120369, Gregor
Herrmann)
- deprecation warning added to the now-defunct Codepeek service
1.007 2016-09-16 02:26:28Z
- fix handling of filename option in the Gist command (Zakariyya
- bumped the minimum version needed for the (optional) prerequisite
WWW::Pastebin::PastebinCom::Create, to avoid errors in previous
versions (thanks, Zoffix!)
0.94 2014-01-18 22:13:29Z
- updated and fixed debian and ubuntu language mappings (haarg, PR#1)
0.93 2014-01-14 00:41:21Z
- packaging converted to Dist::Zilla; handling of optional features
fixed (see RT#91053)
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Office/CMS.pm view on Meta::CPAN
=item o I added a field to update_page_form, but it's data vanishes.
Basdically, copy the code dealing with 'homepage'.
At the very least, ensure you've updated:
=over 4
=item o App::Office::CMS::Util::Create.create_pages_table()
lib/App/Office/CMS.pm view on Meta::CPAN
=item o CustomPage.pm
You write *::Controller::CustomPage.pm, based (obviously) on *::Controller::Page.pm.
You can still let *::View::Page process your updated page.tx and page.js
templates. See below for details.
=item o Validator.pm
This is C<App::Office::CMS::Util::Validator>. You'll have to edit the
lib/App/Office/CMS.pm view on Meta::CPAN
=item o Enhance New Site tab with an Edit Site button
This saves the user the effort of going to the Search tab to find a site or design
=item o When clicking on the site map, the Edit Pages fields are updated, but the Edit Content fields are not
=item o Add an option, perhaps, to escape entities when inputting HTML
=item o Adopt DBIx::Connector
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/Office/Contacts.pm view on Meta::CPAN
=item o 1 to 4 phone numbers per person or organization
=item o Installers can provide their own FAQ page
=item o On-screen information hidden in tabs is updated if appropriate
For example, if you add a person to the staff list for an organization, and the details for that person
are on another, hidden, tab (the organization tab must have the focus), then the list of occupations for
that peson is updated as soon as they are added.
=item o jQuery-style autocomplete is used for various fields
The list of fields which support autocomplete are listed both on the appropriate forms and on the default
FAQ page.
=item o An add-on package supports importing vCards, as probably output by your email client
=item o An add-on package supports donations per person and per organization
But L<App::Office::Contacts::Donations> has not yet been updated to match V 2.00 of C<App::Office::Contacts>.
=back
Screen shots:
view all matches for this distribution