App-Tel

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

local/lib/perl5/Module/Install/Philosophy.pod
local/lib/perl5/Module/Install/Run.pm
local/lib/perl5/Module/Install/Scripts.pm
local/lib/perl5/Module/Install/Share.pm
local/lib/perl5/Module/Install/Win32.pm
local/lib/perl5/Module/Install/With.pm
local/lib/perl5/Module/Install/WriteAll.pm
local/lib/perl5/Module/ScanDeps.pm
local/lib/perl5/Module/ScanDeps/Cache.pm
local/lib/perl5/Test/Requires.pm
local/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Remove-1.57/install.json
local/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Remove-1.57/MYMETA.json
local/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-0.4218/install.json
local/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-0.4218/MYMETA.json
local/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Install-1.16/install.json
local/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Install-1.16/MYMETA.json
local/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Install-AuthorTests-0.002/install.json
local/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Install-AuthorTests-0.002/MYMETA.json
local/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-ScanDeps-1.21/install.json
local/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-ScanDeps-1.21/MYMETA.json
local/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Requires-0.10/install.json
local/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Requires-0.10/MYMETA.json
local/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-Tiny-1.69/install.json
local/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-Tiny-1.69/MYMETA.json
local/lib/perl5/x86_64-linux-gnu-thread-multi/auto/File/Remove/.packlist
local/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Build/.packlist
local/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Install/.packlist
local/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Install/AuthorTests/.packlist
local/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/ScanDeps/.packlist
local/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Requires/.packlist
local/lib/perl5/x86_64-linux-gnu-thread-multi/auto/YAML/Tiny/.packlist
local/lib/perl5/x86_64-linux-gnu-thread-multi/perllocal.pod
local/lib/perl5/YAML/Tiny.pm
Makefile.PL
MANIFEST			This list of files
META.yml
README.md
t/00-load.t
t/01_initial_t.t
t/02-hostname.t
t/02-load-telrc.t
t/02-no-config.t

README.md  view on Meta::CPAN

# Similar Programs (at least with regards to colorized Cisco CLI)

After posting this to reddit I found some people had similar ideas and had
made progress on some things, but some have taken different directions.  Here
are the projects I know about:

1.  A comment in http://www.reddit.com/r/networking/comments/2bxehw/coloring_cli/ references a
    python expect implementation.  Here is a screenshot with some example code
    http://i.imgur.com/1slyPkK.png

2.  This thread gives a few ideas that I'll list below http://www.reddit.com/r/networking/comments/2hy2dj/cisco_cli_colorization/

3.  Cisco nx-os supports CLI coloring directly with "terminal color"

4.  Cisco embedded event manager can be used to colorize output in recent IOS
    versions.  You need to write scripts on each of the devices you connect
    with.

5.  SecureCRT or MacOS iTerm2 can highlight sections by regex, if you prefer
    doing it at the terminal emulator level

local/lib/perl5/Module/Build.pm  view on Meta::CPAN


Build a PPD file for your distribution.

This action takes an optional argument C<codebase> which is used in
the generated PPD file to specify the (usually relative) URL of the
distribution.  By default, this value is the distribution name without
any path information.

Example:

  ./Build ppd --codebase "MSWin32-x86-multi-thread/Module-Build-0.21.tar.gz"

=item ppmdist

[version 0.23]

Generates a PPM binary distribution and a PPD description file.  This
action also invokes the C<ppd> action, so it can accept the same
C<codebase> argument described under that action.

This uses the same mechanism as the C<dist> action to tar & zip its

local/lib/perl5/Module/Build/Dumper.pm  view on Meta::CPAN

package Module::Build::Dumper;
use strict;
use warnings;
our $VERSION = '0.4218';

# This is just a split-out of a wrapper function to do Data::Dumper
# stuff "the right way".  See:
# http://groups.google.com/group/perl.module.build/browse_thread/thread/c8065052b2e0d741

use Data::Dumper;

sub _data_dump {
  my ($self, $data) = @_;
  return ("do{ my "
	  . Data::Dumper->new([$data],['x'])->Purity(1)->Terse(0)->Sortkeys(1)->Dump()
	  . '$x; }')
}

local/lib/perl5/Module/Install/Admin/ScanDeps.pm  view on Meta::CPAN

        }

        foreach my $key (keys %$deps) {
            my $dep_pkg = $key;
            $dep_pkg =~ s!/!::!g;
            $dep_pkg =~ s!\.pm\Z!!i or next;

            if (my $min_version = Module::CoreList->first_release($dep_pkg)) {
                next if $min_version <= $perl_version;
            }
            next if $dep_pkg =~ /^(?:DB|(?:Auto|Dyna|XS)Loader|threads|warnings)\b/i;
            next if exists $result{$dep_pkg};

            $result{$dep_pkg} = $deps->{$key}{file};
            push @files, $deps->{$key}{file};
        }
    }

    while (my($k,$v) = each %result) {
        delete $result{$k} unless defined $v;
    }

local/lib/perl5/Module/ScanDeps.pm  view on Meta::CPAN

    'SVK/Command.pm' => sub {
        _glob_in_inc('SVK', 1);
    },
    'SVN/Core.pm' => sub {
        _glob_in_inc('SVN', 1),
        map $_->{name}, _glob_in_inc('auto/SVN', 0),    # *.so, *.bs files
    },
    'Template.pm'      => 'sub',
    'Term/ReadLine.pm' => 'sub',
    'Test/Deep.pm'     => 'sub',
    'threads/shared.pm' => [qw( attributes.pm )],
    # anybody using threads::shared is likely to declare variables
    # with attribute :shared
    'Tk.pm'            => sub {
        $SeenTk = 1;
        qw( Tk/FileSelect.pm Encode/Unicode.pm );
    },
    'Tk/Balloon.pm'     => [qw( Tk/balArrow.xbm )],
    'Tk/BrowseEntry.pm' => [qw( Tk/cbxarrow.xbm Tk/arrowdownwin.xbm )],
    'Tk/ColorEditor.pm' => [qw( Tk/ColorEdit.xpm )],
    'Tk/DragDrop/Common.pm' => sub {
        _glob_in_inc('Tk/DragDrop', 1),



( run in 1.145 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )