Result:
found 368 distributions and 1276 files matching your query ! ( run in 3.716 )


Slovo

 view release on metacpan or  search on metacpan

lib/Slovo/resources/public/js/editormd/css/editormd.min.css  view on Meta::CPAN

/*! Editor.md v1.5.0 | editormd.min.css | Open source online markdown editor. | MIT License | By: Pandao | https://github.com/pandao/editor.md | 2015-06-09 */
@charset "UTF-8";/*! prefixes.scss v0.1.0 | Author: Pandao | https://github.com/pandao/prefixes.scss | MIT license | Copyright (c) 2015 */.fa-ul,.markdown-body .task-list-item,li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}.edit...
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.3.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0)format("embedded-opentype"),url(../fonts/fontawesome-webfont.woff2?v=4.3.0)format("woff2"),url(../fonts/fo...

 view all matches for this distribution


Speak

 view release on metacpan or  search on metacpan

lib/Speak.pm  view on Meta::CPAN


=item $msg:

Message to speak. If $msg is defined and scalar then that is the message
to speak. If it is a file handle then the text will be read from that file.
Otherwise the text in the clipboard will be used.

=item $log

If provided, errors and messages will be logged to the logfile, otherwise to speak.log

 view all matches for this distribution


Spellunker

 view release on metacpan or  search on metacpan

share/enable1.txt  view on Meta::CPAN

cliometric
cliometrician
cliometricians
cliometrics
clip
clipboard
clipboards
clipped
clipper
clippers
clipping
clippings

 view all matches for this distribution


Spreadsheet-Engine

 view release on metacpan or  search on metacpan

lib/Spreadsheet/Engine/Sheet.pm  view on Meta::CPAN

    border:bordernum:value - text of border definition (thickness style color) for border bordernum
    layout:layoutnum:value - text of vertical alignment and padding style for cell layout layoutnum:
                             vertical-alignment:vavalue;padding topval rightval bottomval leftval;
    cellformat:cformatnum:value - text of cell alignment (left/center/right) for cellformat cformatnum
    valueformat:vformatnum:value - text of number format (see format_value_for_display) for valueformat vformatnum (changed in v1.2)
    clipboardrange:upperleftcoord:bottomrightcoord - origin of clipboard data. Not present if clipboard empty.
       There must be a clipboardrange before any clipboard lines
    clipboard:coord:type:value:... - clipboard data, in same format as cell data

The resulting $sheetdata data structure is as follows:

   $sheetdata{version} - version of save file read in
   $sheetdata{datatypes}->{$coord} - Origin of {datavalues} value:

lib/Spreadsheet/Engine/Sheet.pm  view on Meta::CPAN

   $sheetdata{layoutstylehash}->{$value} - hash with cell layout specification as keys and {layoutstyle}->[] index position as values
   $sheetdata{cellformats}->[$index] - cell format specifications addressable by array position
   $sheetdata{cellformathash}->{$value} - hash with cell format specification as keys and {cellformats}->[] index position as values
   $sheetdata{valueformats}->[$index] - value format specifications addressable by array position
   $sheetdata{valueformathash}->{$value} - hash with value format specification as keys and {valueformats}->[] index position as values
   $sheetdata{clipboard}-> - the sheet's clipboard
      {range} - coord:coord range of where the clipboard contents came from or null if empty
      {datavalues} - like $sheetdata{datavalues} but for clipboard copy of cells
      {datatypes} - like $sheetdata{datatypes} but for clipboard copy of cells
      {valuetypes} - like $sheetdata{valuetypes} but for clipboard copy of cells
      {formulas} - like $sheetdata{formulas} but for clipboard copy of cells
      {cellerrors} - like $sheetdata{cellerrors} but for clipboard copy of cells
      {cellattribs} - like $sheetdata{cellattribs} but for clipboard copy of cells
   $sheetdata{loaderror} - if non-blank, there was an error loading this sheet and this is the text of that error

=cut

sub parse_sheet_save {

lib/Spreadsheet/Engine/Sheet.pm  view on Meta::CPAN

      $valueformats->[$style] = $value;
      $valueformathash->{$value} = $style;
    } elsif ($linetype eq "version") {
      $sheetdata->{version} = $rest;
    } elsif ($linetype eq "") {
    } elsif ($linetype eq "clipboardrange") {
      $sheetdata->{clipboard} = {};               # clear and create clipboard
      $sheetdata->{clipboard}->{datavalues} = {};
      $clipdatavalues = $sheetdata->{clipboard}->{datavalues};
      $sheetdata->{clipboard}->{datatypes} = {};
      $clipdatatypes = $sheetdata->{clipboard}->{datatypes};
      $sheetdata->{clipboard}->{valuetypes} = {};
      $clipvaluetypes = $sheetdata->{clipboard}->{valuetypes};
      $sheetdata->{clipboard}->{formulas} = {};
      $clipdataformulas = $sheetdata->{clipboard}->{formulas};
      $sheetdata->{clipboard}->{cellerrors} = {};
      $clipcellerrors = $sheetdata->{clipboard}->{cellerrors};
      $sheetdata->{clipboard}->{cellattribs} = {};
      $clipcellattribs = $sheetdata->{clipboard}->{cellattribs};

      $coord = uc($rest);
      $sheetdata->{clipboard}->{range} = $coord;
    } elsif ($linetype eq "clipboard")
    {    # must have a clipboardrange command somewhere before it
      ($coord, $type, $rest) = split (/:/, $rest, 3);
      $coord = uc($coord);
      if (!$sheetdata->{clipboard}->{range}) {
        $errortext = "Missing clipboardrange before clipboard data in file\n";
        $type      = "norange";
      }
      $clipcellattribs->{$coord} = { 'coord', $coord };
      while ($type) {
        if ($type eq "v") {

lib/Spreadsheet/Engine/Sheet.pm  view on Meta::CPAN

  for (my $i = 1 ; $i < @$valueformats ; $i++) {
    $style = encode_for_save($valueformats->[$i]);
    $outstr .= "valueformat:$i:$style\n";
  }

  if ($sheetdata->{clipboard}) {
    my $clipdatavalues   = $sheetdata->{clipboard}->{datavalues};
    my $clipdatatypes    = $sheetdata->{clipboard}->{datatypes};
    my $clipvaluetypes   = $sheetdata->{clipboard}->{valuetypes};
    my $clipdataformulas = $sheetdata->{clipboard}->{formulas};
    my $clipcellerrors   = $sheetdata->{clipboard}->{cellerrors};
    my $clipcellattribs  = $sheetdata->{clipboard}->{cellattribs};

    $outstr .= "clipboardrange:$sheetdata->{clipboard}->{range}\n";

    foreach my $coord (sort keys %$clipcellattribs) {
      $outstr .= "clipboard:$coord";
      if ($clipdatatypes->{$coord} eq "v") {
        $value = encode_for_save($clipdatavalues->{$coord});
        if (!$clipvaluetypes->{$coord} || $clipvaluetypes->{$coord} eq "n")
        {    # use simpler version
          $outstr .= ":v:$value";

lib/Spreadsheet/Engine/Sheet.pm  view on Meta::CPAN

    set 22 attributename value
    set B attributename value
    set A1 attributename value1 value2... (see each attribute below for details)
    set A1:B5 attributename value1 value2...
    erase/copy/cut/paste/fillright/filldown A1:B5 all/formulas/format
    clearclipboard
    merge C3:F3
    unmerge C3
    insertcol/insertrow C5
    deletecol/deleterow C5:E7
    name define NAME definition

lib/Spreadsheet/Engine/Sheet.pm  view on Meta::CPAN

      }
      $sheetdata->{sheetattribs}->{needsrecalc} = "yes";
    }

    elsif ($cmd1 eq "copy" || $cmd1 eq "cut") {
      $sheetdata->{clipboard} = {};               # clear and create clipboard
      $sheetdata->{clipboard}->{datavalues} = {};
      my $clipdatavalues = $sheetdata->{clipboard}->{datavalues};
      $sheetdata->{clipboard}->{datatypes} = {};
      my $clipdatatypes = $sheetdata->{clipboard}->{datatypes};
      $sheetdata->{clipboard}->{valuetypes} = {};
      my $clipvaluetypes = $sheetdata->{clipboard}->{valuetypes};
      $sheetdata->{clipboard}->{formulas} = {};
      my $clipdataformulas = $sheetdata->{clipboard}->{formulas};
      $sheetdata->{clipboard}->{cellerrors} = {};
      my $clipcellerrors = $sheetdata->{clipboard}->{cellerrors};
      $sheetdata->{clipboard}->{cellattribs} = {};
      my $clipcellattribs = $sheetdata->{clipboard}->{cellattribs};

      for (my $r = $r1 ; $r <= $r2 ; $r++) {
        for (my $c = $c1 ; $c <= $c2 ; $c++) {
          my $cr = cr_to_coord($c, $r);
          $clipcellattribs->{$cr}->{ 'coord' => $cr } =

lib/Spreadsheet/Engine/Sheet.pm  view on Meta::CPAN

              delete $valuetypes->{$cr};
            }
          }
        }
      }
      $sheetdata->{clipboard}->{range} =
        $coord2 ? "$coord1:$coord2" : "$coord1:$coord1";
      $sheetdata->{sheetattribs}->{needsrecalc} = "yes" if $cmd1 eq "cut";
    }

    elsif ($cmd1 eq "paste") {
      my $crbase = $sheetdata->{clipboard}->{range};
      if (!$crbase) {
        $errortext = "Empty clipboard\n";
        return 0;
      }
      my $clipdatavalues   = $sheetdata->{clipboard}->{datavalues};
      my $clipdatatypes    = $sheetdata->{clipboard}->{datatypes};
      my $clipvaluetypes   = $sheetdata->{clipboard}->{valuetypes};
      my $clipdataformulas = $sheetdata->{clipboard}->{formulas};
      my $clipcellerrors   = $sheetdata->{clipboard}->{cellerrors};
      my $clipcellattribs  = $sheetdata->{clipboard}->{cellattribs};

      my ($clipcoord1, $clipcoord2) = split (/:/, $crbase);
      $clipcoord2 = $clipcoord1 unless $clipcoord2;
      my ($clipc1, $clipr1) = coord_to_cr($clipcoord1);
      my ($clipc2, $clipr2) = coord_to_cr($clipcoord2);

lib/Spreadsheet/Engine/Sheet.pm  view on Meta::CPAN

      }
      $sheetdata->{sheetattribs}->{needsrecalc} = "yes";
    }
  }

  elsif ($cmd1 eq "clearclipboard") {
    delete $sheetdata->{clipboard};
  }

  elsif ($cmd1 eq "merge") {
    ($what, $rest) = split (/ /, $rest, 2);
    $what = uc($what);

 view all matches for this distribution


Statocles-Plugin-VideoTag

 view release on metacpan or  search on metacpan

lib/Statocles/Plugin/VideoTag.pm  view on Meta::CPAN



has allow => (
    is      => 'ro',
    isa     => Str,
    default => sub { 'accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture' },
);


has allowfullscreen => (
    is      => 'ro',

lib/Statocles/Plugin/VideoTag.pm  view on Meta::CPAN


=head2 allow

The iframe B<allow> attribute string for a YouTube video.

Default: C<accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture>

=head2 allowfullscreen

Whether to allow full-screen for the iframe for a YouTube video.

 view all matches for this distribution


Swagger2

 view release on metacpan or  search on metacpan

lib/Swagger2/public/ace.js  view on Meta::CPAN

        sendText(data);
        resetValue();
    };
    
    var handleClipboardData = function(e, data) {
        var clipboardData = e.clipboardData || window.clipboardData;
        if (!clipboardData || BROKEN_SETDATA)
            return;
        var mime = USE_IE_MIME_TYPE ? "Text" : "text/plain";
        if (data) {
            return clipboardData.setData(mime, data) !== false;
        } else {
            return clipboardData.getData(mime);
        }
    };

    var doCopy = function(e, isCut) {
        var data = host.getCopyText();

 view all matches for this distribution


Syntax-Highlight-Basic

 view release on metacpan or  search on metacpan

share/syntax/gnuplot.shb  view on Meta::CPAN

beveled bezer bgr big binary bind bitgraph bitmap blacktext blue bmargin
border both bottom box boxed boxerrorbars boxes boxplot boxwidth
boxxyerrorbars brg brief bspline butt by c1 c2 c3 c4 cairo cairolatex
candlesticks canvas cartesian cauchy cb cbdata cbdtics cblabel cbmtics cbrange
cbtics cbzeroaxis center cgm charsize circle circles clip clip1in clip4in
clipboardformat close clustered cmykimages cnormal cntrlabel cntrparam color
colorbox colornames colortext colour colourtext columnheader columnstacked
comma commentschars context contour corel corners2color courier cp1250 cp1251
cp1254 cp437 cp850 cp852 cp950 crop csplines ctrl ctrlq cubehelix cubicspline
cumulative cycles cylindrical dashed dashlength data datafile debug
decimalsign default defaultfont defaultplex defaultsize defined deg degrees

 view all matches for this distribution


Syntax-Highlight-Engine-Kate

 view release on metacpan or  search on metacpan

lib/Syntax/Highlight/Engine/Kate/Quake_Script.pm  view on Meta::CPAN

      'cg_bobpitch',
      'cg_bobroll',
      'cg_bobup',
      'cg_brassTime',
      'cg_cameraOrbitDelay',
      'cg_clipboardName',
      'cg_coronafardist',
      'cg_coronas',
      'cg_crosshairAlpha',
      'cg_crosshairHealth',
      'cg_crosshairSize',

 view all matches for this distribution


Syntax-Highlight-Universal

 view release on metacpan or  search on metacpan

lib/Syntax/Highlight/Universal/hrc/rare/tcltk.hrc  view on Meta::CPAN

         <word name="string"/>     <word name="subst"/>    <word name="tell"/>
         <word name="time"/>       <word name="trace"/>    <word name="update"/>
         <!-- tk commands -->
         <word name="bell"/>       <word name="bind"/>     <word name="bindtags"/>
         <word name="bitmap"/>     <word name="button"/>   <word name="canvas"/>
         <word name="checkbutton"/><word name="clipboard"/><word name="destroy"/>
         <word name="entry"/>      <word name="event"/>    <word name="focus"/>
         <word name="font"/>       <word name="frame"/>    <word name="grab"/>
         <word name="grid"/>       <word name="image"/>    <word name="label"/>
         <word name="listbox"/>    <word name="lower"/>    <word name="menu"/>
         <word name="menubutton"/> <word name="message"/>  <word name="option"/>

 view all matches for this distribution


Syntax-Kamelon

 view release on metacpan or  search on metacpan

lib/Syntax/Kamelon/XML/ahk.xml  view on Meta::CPAN

	<item> comobjquery </item>
	<item> comobjflags </item>
    </list>
    <list name="directives">
	<item> allowsamelinecomments </item>
	<item> clipboardtimeout </item>
	<item> commentflag </item>
	<item> errorstdout </item>
	<item> escapechar </item>
	<item> hotkeyinterval </item>
	<item> hotkeymodifiertimeout </item>

lib/Syntax/Kamelon/XML/ahk.xml  view on Meta::CPAN

	<item> a_workingdir </item>
	<item> a_yday </item>
	<item> a_year </item>
	<item> a_yweek </item>
	<item> a_yyyy </item>
	<item> clipboard </item>
	<item> clipboardall </item>
	<item> comspec </item>
	<item> errorlevel </item>
	<item> programfiles </item>
	<item> true </item>
	<item> false </item>

 view all matches for this distribution


Synth-Config

 view release on metacpan or  search on metacpan

eg/public/css/fontawesome.css  view on Meta::CPAN

  content: "\f086"; }

.fa-paste::before {
  content: "\f0ea"; }

.fa-file-clipboard::before {
  content: "\f0ea"; }

.fa-code-pull-request::before {
  content: "\e13c"; }

.fa-clipboard-list::before {
  content: "\f46d"; }

.fa-truck-ramp-box::before {
  content: "\f4de"; }

eg/public/css/fontawesome.css  view on Meta::CPAN

  content: "\f79f"; }

.fa-glass-cheers::before {
  content: "\f79f"; }

.fa-clipboard::before {
  content: "\f328"; }

.fa-house-circle-exclamation::before {
  content: "\e50a"; }

eg/public/css/fontawesome.css  view on Meta::CPAN

  content: "\e593"; }

.fa-wallet::before {
  content: "\f555"; }

.fa-clipboard-check::before {
  content: "\f46c"; }

.fa-file-audio::before {
  content: "\f1c7"; }

eg/public/css/fontawesome.css  view on Meta::CPAN

  content: "\e58d"; }

.fa-route::before {
  content: "\f4d7"; }

.fa-clipboard-question::before {
  content: "\e4e3"; }

.fa-panorama::before {
  content: "\e209"; }

eg/public/css/fontawesome.css  view on Meta::CPAN

  content: "\f2a0"; }

.fa-hat-cowboy-side::before {
  content: "\f8c1"; }

.fa-clipboard-user::before {
  content: "\f7f3"; }

.fa-child::before {
  content: "\f1ae"; }

 view all matches for this distribution


TCOD

 view release on metacpan or  search on metacpan

lib/TCOD.pm  view on Meta::CPAN

  # $ffi->attach( create_directory       => [qw( string                         )] => 'bool'          );
  # $ffi->attach( delete_directory       => [qw( string                         )] => 'bool'          );
  # $ffi->attach( delete_file            => [qw( string                         )] => 'bool'          );
  # $ffi->attach( is_directory           => [qw( string                         )] => 'bool'          );
  # $ffi->attach( file_exists            => [qw( string                         )] => 'bool'          );
  # $ffi->attach( clipboard_set          => [qw( string                         )] => 'bool'          );
  # $ffi->attach( clipboard_get          => [                                    ] => 'string'        );

    $ffi->attach( get_char_size          => [qw( int* int* )] => 'void' => sub { $_[0]->( \my $w, \my $h ); ( $w, $h ) });
    $ffi->attach( get_current_resolution => [qw( int* int* )] => 'void' => sub { $_[0]->( \my $w, \my $h ); ( $w, $h ) });
  # $ffi->attach( get_fullscreen_offset  => [qw( int* int* )] => 'void' => sub { $_[0]->( \my $x, \my $y ); ( $x, $y ) });

 view all matches for this distribution


TOML-XS

 view release on metacpan or  search on metacpan

tomlc17/simple/repro.c  view on Meta::CPAN

  const char *text =
      "[default]\n"
      "\n"
      "[wayland_displays.\"$WAYLAND_DISPLAY\"]\n"
      "seats = [ \"$XDG_SEAT\" ] \n"
      "[[clipboards.Default.mime_type_groups]]\n"
      "group = [ \"TEXT\", \"STRING\", \"UTF8_STRING\", \"text/plain\" ]\n"
      "xxxx xx xx\n";

  (void)text;
  FILE *fp = fopen(PATH, "w");

tomlc17/simple/repro.c  view on Meta::CPAN

    exit(-1);
  }

  toml_datum_t wayland_displays =
      toml_seek(root.toptab, "main.wayland_displays");
  toml_datum_t clipboards = toml_seek(root.toptab, "main.clipboards");
  (void)

      toml_free(root);
}

 view all matches for this distribution


TT2-Play-Area

 view release on metacpan or  search on metacpan

lib/auto/TT2/Play/Area/public/codemirror/lib/codemirror.js  view on Meta::CPAN

  cm.curOp.typing = true
  cm.state.pasteIncoming = cm.state.cutIncoming = false
}

function handlePaste(e, cm) {
  var pasted = e.clipboardData && e.clipboardData.getData("Text")
  if (pasted) {
    e.preventDefault()
    if (!cm.isReadOnly() && !cm.options.disableInput)
      { runInOp(cm, function () { return applyTextInput(cm, pasted, 0, null, "paste"); }) }
    return true

lib/auto/TT2/Play/Area/public/codemirror/lib/codemirror.js  view on Meta::CPAN

          cm.setSelections(ranges.ranges, 0, sel_dontScroll)
          cm.replaceSelection("", null, "cut")
        })
      }
    }
    if (e.clipboardData) {
      e.clipboardData.clearData()
      var content = lastCopied.text.join("\n")
      // iOS exposes the clipboard API, but seems to discard content inserted into it
      e.clipboardData.setData("Text", content)
      if (e.clipboardData.getData("Text") == content) {
        e.preventDefault()
        return
      }
    }
    // Old-fashioned briefly-focus-a-textarea hack

 view all matches for this distribution


TVision

 view release on metacpan or  search on metacpan

TVision.pm  view on Meta::CPAN

#[ ]    TStringView prevBufChars( uint );
#[ ]    static TEditorDialog _NEAR editorDialog;
#[ ]    static ushort _NEAR editorFlags;
#[ ]    static char _NEAR findStr[maxFindStrLen];
#[ ]    static char _NEAR replaceStr[maxReplaceStrLen];
#[ ]    static TEditor * _NEAR clipboard;
#[ ]    uchar lockCount;
#[ ]    uchar updateFlags;
#[ ]    int keyState;
#[ ]    static const char * const _NEAR name;
#[ ]    static TStreamable *build();

 view all matches for this distribution


TableData-CPAN-Release-Static-2021

 view release on metacpan or  search on metacpan

share/2021.csv  view on Meta::CPAN

Giblog-1.03_01,2021-07-15T03:23:50,KIMOTO,cpan,developer,1.03_01,,Giblog,"Web site and Blog builders you can manage with Git"
App-ansicolumn-1.09,2021-07-15T03:48:03,UTASHIRO,cpan,released,1.09,,App-ansicolumn,"ANSI sequence aware column command"
Types-QuacksLike-0.001001,2021-07-15T09:23:58,HAARG,latest,released,0.001001,,Types-QuacksLike,"Check for object providing all methods from a class or role"
JSON-Create-0.34_01,2021-07-15T10:25:04,BKB,backpan,developer,0.34_01,,JSON-Create,"Create JSON"
Net-Saml2-0.36-TRIAL,2021-07-15T10:34:08,TIMLEGGE,cpan,developer,0.36,,Net-Saml2,"SAML bindings and protocol implementation"
Clipboard-Any-0.001,2021-07-15T11:38:41,PERLANCAR,latest,released,0.001,1,Clipboard-Any,"Common interface to clipboard manager functions"
App-ClipboardUtils-0.001,2021-07-15T11:41:35,PERLANCAR,latest,released,0.001,1,App-ClipboardUtils,"CLI utilities related to clipboard"
Object-Pad-0.44,2021-07-15T12:14:44,PEVANS,backpan,released,0.44,,Object-Pad,"a simple syntax for lexical slot-based objects"
Test-NoWarnings-1.05_01,2021-07-15T13:03:08,HAARG,cpan,developer,1.05_01,,Test-NoWarnings,"Make sure you didn't emit any warnings while testing"
Math-Roman-1.09,2021-07-15T13:19:47,PJACKLAM,latest,released,1.09,,Math-Roman,"Arbitrary sized Roman numbers and conversion from and to Arabic."
p5-GFX-Enhancer-0.1.13,2021-07-15T14:05:30,KOBOLDWIZ,cpan,released,v0.1.13,,p5-GFX-Enhancer,"Perl extension for enhancing scanned in images"
Hash-Wrap-0.17,2021-07-15T19:33:13,DJERIUS,cpan,released,0.17,,Hash-Wrap,"create on-the-fly objects from hashes"

 view all matches for this distribution


TableData-Perl-CPAN-Release-Dynamic

 view release on metacpan or  search on metacpan

share/2022.csv  view on Meta::CPAN

"Test-Circle-0.022-TRIAL","2022-10-09T03:41:34","CHYLLI","cpan","developer","0.022","","Test-Circle","..."
"Game-Ninja-0.1.5","2022-10-09T07:49:08","KOBOLDWIZ","cpan","released","v0.1.5","","Game-Ninja","Perl extension for making ninja games, e.g. beat 'em ups like Double Dragon"
"IO-FD-0.1.1","2022-10-09T09:00:55","DRCLAW","cpan","released","v0.1.1","","IO-FD","faster accept, socket, listen, read, write and friends with file descriptors, not handles"
"sms-send-in-nicsms-1.00","2022-10-09T09:21:19","INDRADG","latest","released","1.00","1","sms-send-in-nicsms","Regional context SMS::Send driver to send messages via NIC's SMS Gateway ( https://smsgw.sms.gov.in )"
"Game-Ninja-0.1.6","2022-10-09T09:24:04","KOBOLDWIZ","latest","released","v0.1.6","","Game-Ninja","Perl extension for making ninja games, e.g. beat 'em ups like Double Dragon"
"App-ClipboardUtils-0.003","2022-10-09T09:54:25","PERLANCAR","backpan","released","0.003","","App-ClipboardUtils","CLI utilities related to clipboard"
"App-FirefoxUtils-0.020","2022-10-09T09:54:36","PERLANCAR","backpan","released","0.020","","App-FirefoxUtils","Utilities related to Firefox"
"App-FirefoxUtils-0.021","2022-10-09T09:54:47","PERLANCAR","latest","released","0.021","","App-FirefoxUtils","Utilities related to Firefox"
"Clipboard-Any-0.003","2022-10-09T09:54:58","PERLANCAR","backpan","released","0.003","","Clipboard-Any","Common interface to clipboard manager functions"
"Getopt-Long-Util-0.897","2022-10-09T09:55:09","PERLANCAR","backpan","released","0.897","","Getopt-Long-Util","Utilities for Getopt::Long"
"App-FirefoxUtils-0.019","2022-10-09T09:56:36","PERLANCAR","backpan","released","0.019","","App-FirefoxUtils","Utilities related to Firefox"
"Perinci-Sub-To-CLIDocData-0.301","2022-10-09T09:56:41","PERLANCAR","backpan","released","0.301","","Perinci-Sub-To-CLIDocData","From Rinci function metadata, generate structure convenient for producing CLI documentation (help/usage/POD)"
"Perinci-Sub-To-CLIDocData-0.302","2022-10-09T09:56:48","PERLANCAR","backpan","released","0.302","","Perinci-Sub-To-CLIDocData","From Rinci function metadata, generate structure convenient for producing CLI documentation (help/usage/POD)"
"App-Greple-ical-0.02","2022-10-09T09:58:12","UTASHIRO","latest","released","0.02","","App-Greple-ical","Module to support Apple macOS Calendar data"
"smokebrew-1.04","2022-10-09T11:27:30","BINGOS","latest","released","1.04","","smokebrew","Automated Perl building and installation for CPAN Testers"
"Game-SDL-0.1.1","2022-10-09T12:57:17","KOBOLDWIZ","latest","released","v0.1.1","1","Game-SDL","Perl extension for making games with SDL(1)"
"Log-Log4perl-Tiny-1.8.0","2022-10-09T15:54:24","POLETTIX","latest","released","1.8.0","","Log-Log4perl-Tiny","mimic Log::Log4perl in one single module"
"Weather-GHCN-Fetch-v0.0.005","2022-10-09T17:15:00","PUCKERING","cpan","released","v0.0.005","","Weather-GHCN-Fetch","Access the NOAA GHCN Global Historical Climatology Network repository"
"App-CSVUtils-0.045","2022-10-09T17:24:24","PERLANCAR","backpan","released","0.045","","App-CSVUtils","CLI utilities related to CSV"
"LWP-Protocol-clipboard-0.001","2022-10-09T17:25:50","PERLANCAR","latest","released","0.001","1","LWP-Protocol-clipboard","Get/set clipboard content through LWP"
"App-VTide-v0.1.18","2022-10-09T19:22:40","IVANWILLS","cpan","released","v0.1.18","","App-VTide","A vim/tmux based IDE for the terminal"
"Geo-Gpx-1.02-TRIAL","2022-10-09T20:12:17","PATJOL","cpan","developer","1.02","","Geo-Gpx","Create and parse GPX files."
"Graph-Subgraph-0.04","2022-10-09T21:54:05","KHEDIN","latest","released","0.04","","Graph-Subgraph","A subgraph() method for Graph module."
"Sah-Schemas-Binary-0.006","2022-10-10T00:06:02","PERLANCAR","backpan","released","0.006","","Sah-Schemas-Binary","Sah schemas related to binary data"
"Author-Daemon-Site-Ptr-Bond-0.001","2022-10-10T00:52:48","DAEMON","cpan","released","0.001","1","Author-Daemon-Site-Ptr-Bond","turns baubles into trinkets"

share/2022.csv  view on Meta::CPAN

"Syntax-Operator-Zip-0.05","2022-10-24T22:46:15","PEVANS","cpan","released","0.05","","Syntax-Operator-Zip","infix operator to compose two lists together"
"Perinci-CmdLine-POD-0.034","2022-10-25T00:05:37","PERLANCAR","backpan","released","0.034","","Perinci-CmdLine-POD","Generate POD for Perinci::CmdLine-based CLI script"
"Net-Gemini-0.01","2022-10-25T00:27:13","JMATES","backpan","released","0.01","1","Net-Gemini","a small gemini client"
"Format-JSON-Stream-0.0.1","2022-10-25T03:23:09","SHLOMIF","latest","released","0.0.1","1","Format-JSON-Stream","a stream of JSON data."
"Statistics-RankCorrelation-0.1206","2022-10-25T04:47:32","GENE","latest","released","0.1206","","Statistics-RankCorrelation","Compute the rank correlation between two vectors"
"App-ClipboardUtils-0.004","2022-10-25T05:26:40","PERLANCAR","backpan","released","0.004","","App-ClipboardUtils","CLI utilities related to clipboard"
"Clipboard-Any-0.004","2022-10-25T05:26:51","PERLANCAR","backpan","released","0.004","","Clipboard-Any","Common interface to clipboard manager functions"
"YAML-yq-Helper-0.01","2022-10-25T06:11:03","VVELOX","backpan","released","0.01","","YAML-yq-Helper","Wrapper for yq for basic tasks so comments are preserved."
"YAML-yq-Helper-0.0.1","2022-10-25T06:12:33","VVELOX","cpan","released","v0.0.1","1","YAML-yq-Helper","Wrapper for yq for various common tasks so YAML files can be manipulated in a manner to preserve comments and version header."
"Cache-RedisDB-0.13","2022-10-25T06:30:21","BINARY","latest","released","0.13","","Cache-RedisDB","RedisDB based cache system"
"DataDog-DogStatsd-0.07","2022-10-25T06:46:55","BINARY","latest","released","0.07","","DataDog-DogStatsd","A Perl client for DogStatsd"
"Finance-Calendar-0.03","2022-10-25T06:57:14","BINARY","cpan","released","0.03","","Finance-Calendar","represents the trading calendar."
"Finance-MIFIR-CONCAT-0.01","2022-10-25T07:01:15","DERIV","latest","released","0.01","1","Finance-MIFIR-CONCAT","provides CONCAT code generation out of client data according to MIFIR rules"
"Finance-YieldCurve-0.001","2022-10-25T07:19:03","DERIV","latest","released","0.001","1","Finance-YieldCurve","Handles interpolation on yield curves for interest rates and dividends"
"App-ClipboardUtils-0.005","2022-10-25T09:10:57","PERLANCAR","backpan","released","0.005","","App-ClipboardUtils","CLI utilities related to clipboard"
"App-CSVUtils-0.046","2022-10-25T11:54:18","PERLANCAR","backpan","released","0.046","","App-CSVUtils","CLI utilities related to CSV"
"Module-Extract-VERSION-1.116","2022-10-25T12:38:29","BDFOY","latest","released","1.116","","Module-Extract-VERSION","Extract a module version safely"
"Test2-Tools-Rustfmt-0.01","2022-10-25T12:51:17","PLICEASE","backpan","released","0.01","1","Test2-Tools-Rustfmt","Test that bundled Rust code is formatted according to Rust style guidelines"
"Test2-Tools-Rustfmt-0.02","2022-10-25T13:26:39","PLICEASE","backpan","released","0.02","","Test2-Tools-Rustfmt","Test that bundled Rust code is formatted according to Rust style guidelines"
"Acme-Color-Rust-0.04","2022-10-25T13:30:40","PLICEASE","backpan","released","0.04","","Acme-Color-Rust","Color example class using Rust + FFI"

 view all matches for this distribution


TableData-Perl-CPAN-Release-Static-2021

 view release on metacpan or  search on metacpan

share/2021.csv  view on Meta::CPAN

Giblog-1.03_01,2021-07-15T03:23:50,KIMOTO,cpan,developer,1.03_01,,Giblog,"Web site and Blog builders you can manage with Git"
App-ansicolumn-1.09,2021-07-15T03:48:03,UTASHIRO,cpan,released,1.09,,App-ansicolumn,"ANSI sequence aware column command"
Types-QuacksLike-0.001001,2021-07-15T09:23:58,HAARG,latest,released,0.001001,,Types-QuacksLike,"Check for object providing all methods from a class or role"
JSON-Create-0.34_01,2021-07-15T10:25:04,BKB,backpan,developer,0.34_01,,JSON-Create,"Create JSON"
Net-Saml2-0.36-TRIAL,2021-07-15T10:34:08,TIMLEGGE,cpan,developer,0.36,,Net-Saml2,"SAML bindings and protocol implementation"
Clipboard-Any-0.001,2021-07-15T11:38:41,PERLANCAR,latest,released,0.001,1,Clipboard-Any,"Common interface to clipboard manager functions"
App-ClipboardUtils-0.001,2021-07-15T11:41:35,PERLANCAR,latest,released,0.001,1,App-ClipboardUtils,"CLI utilities related to clipboard"
Object-Pad-0.44,2021-07-15T12:14:44,PEVANS,backpan,released,0.44,,Object-Pad,"a simple syntax for lexical slot-based objects"
Test-NoWarnings-1.05_01,2021-07-15T13:03:08,HAARG,cpan,developer,1.05_01,,Test-NoWarnings,"Make sure you didn't emit any warnings while testing"
Math-Roman-1.09,2021-07-15T13:19:47,PJACKLAM,latest,released,1.09,,Math-Roman,"Arbitrary sized Roman numbers and conversion from and to Arabic."
p5-GFX-Enhancer-0.1.13,2021-07-15T14:05:30,KOBOLDWIZ,cpan,released,v0.1.13,,p5-GFX-Enhancer,"Perl extension for enhancing scanned in images"
Hash-Wrap-0.17,2021-07-15T19:33:13,DJERIUS,cpan,released,0.17,,Hash-Wrap,"create on-the-fly objects from hashes"

 view all matches for this distribution


TableData-Perl-CPAN-Release-Static-2022

 view release on metacpan or  search on metacpan

share/2022.csv  view on Meta::CPAN

"Test-Circle-0.022-TRIAL","2022-10-09T03:41:34","CHYLLI","cpan","developer","0.022","","Test-Circle","..."
"Game-Ninja-0.1.5","2022-10-09T07:49:08","KOBOLDWIZ","cpan","released","v0.1.5","","Game-Ninja","Perl extension for making ninja games, e.g. beat 'em ups like Double Dragon"
"IO-FD-0.1.1","2022-10-09T09:00:55","DRCLAW","cpan","released","v0.1.1","","IO-FD","faster accept, socket, listen, read, write and friends with file descriptors, not handles"
"sms-send-in-nicsms-1.00","2022-10-09T09:21:19","INDRADG","latest","released","1.00","1","sms-send-in-nicsms","Regional context SMS::Send driver to send messages via NIC's SMS Gateway ( https://smsgw.sms.gov.in )"
"Game-Ninja-0.1.6","2022-10-09T09:24:04","KOBOLDWIZ","latest","released","v0.1.6","","Game-Ninja","Perl extension for making ninja games, e.g. beat 'em ups like Double Dragon"
"App-ClipboardUtils-0.003","2022-10-09T09:54:25","PERLANCAR","backpan","released","0.003","","App-ClipboardUtils","CLI utilities related to clipboard"
"App-FirefoxUtils-0.020","2022-10-09T09:54:36","PERLANCAR","backpan","released","0.020","","App-FirefoxUtils","Utilities related to Firefox"
"App-FirefoxUtils-0.021","2022-10-09T09:54:47","PERLANCAR","latest","released","0.021","","App-FirefoxUtils","Utilities related to Firefox"
"Clipboard-Any-0.003","2022-10-09T09:54:58","PERLANCAR","backpan","released","0.003","","Clipboard-Any","Common interface to clipboard manager functions"
"Getopt-Long-Util-0.897","2022-10-09T09:55:09","PERLANCAR","backpan","released","0.897","","Getopt-Long-Util","Utilities for Getopt::Long"
"App-FirefoxUtils-0.019","2022-10-09T09:56:36","PERLANCAR","backpan","released","0.019","","App-FirefoxUtils","Utilities related to Firefox"
"Perinci-Sub-To-CLIDocData-0.301","2022-10-09T09:56:41","PERLANCAR","backpan","released","0.301","","Perinci-Sub-To-CLIDocData","From Rinci function metadata, generate structure convenient for producing CLI documentation (help/usage/POD)"
"Perinci-Sub-To-CLIDocData-0.302","2022-10-09T09:56:48","PERLANCAR","backpan","released","0.302","","Perinci-Sub-To-CLIDocData","From Rinci function metadata, generate structure convenient for producing CLI documentation (help/usage/POD)"
"App-Greple-ical-0.02","2022-10-09T09:58:12","UTASHIRO","latest","released","0.02","","App-Greple-ical","Module to support Apple macOS Calendar data"
"smokebrew-1.04","2022-10-09T11:27:30","BINGOS","latest","released","1.04","","smokebrew","Automated Perl building and installation for CPAN Testers"
"Game-SDL-0.1.1","2022-10-09T12:57:17","KOBOLDWIZ","latest","released","v0.1.1","1","Game-SDL","Perl extension for making games with SDL(1)"
"Log-Log4perl-Tiny-1.8.0","2022-10-09T15:54:24","POLETTIX","latest","released","1.8.0","","Log-Log4perl-Tiny","mimic Log::Log4perl in one single module"
"Weather-GHCN-Fetch-v0.0.005","2022-10-09T17:15:00","PUCKERING","cpan","released","v0.0.005","","Weather-GHCN-Fetch","Access the NOAA GHCN Global Historical Climatology Network repository"
"App-CSVUtils-0.045","2022-10-09T17:24:24","PERLANCAR","backpan","released","0.045","","App-CSVUtils","CLI utilities related to CSV"
"LWP-Protocol-clipboard-0.001","2022-10-09T17:25:50","PERLANCAR","latest","released","0.001","1","LWP-Protocol-clipboard","Get/set clipboard content through LWP"
"App-VTide-v0.1.18","2022-10-09T19:22:40","IVANWILLS","cpan","released","v0.1.18","","App-VTide","A vim/tmux based IDE for the terminal"
"Geo-Gpx-1.02-TRIAL","2022-10-09T20:12:17","PATJOL","cpan","developer","1.02","","Geo-Gpx","Create and parse GPX files."
"Graph-Subgraph-0.04","2022-10-09T21:54:05","KHEDIN","latest","released","0.04","","Graph-Subgraph","A subgraph() method for Graph module."
"Sah-Schemas-Binary-0.006","2022-10-10T00:06:02","PERLANCAR","backpan","released","0.006","","Sah-Schemas-Binary","Sah schemas related to binary data"
"Author-Daemon-Site-Ptr-Bond-0.001","2022-10-10T00:52:48","DAEMON","cpan","released","0.001","1","Author-Daemon-Site-Ptr-Bond","turns baubles into trinkets"

share/2022.csv  view on Meta::CPAN

"Syntax-Operator-Zip-0.05","2022-10-24T22:46:15","PEVANS","cpan","released","0.05","","Syntax-Operator-Zip","infix operator to compose two lists together"
"Perinci-CmdLine-POD-0.034","2022-10-25T00:05:37","PERLANCAR","backpan","released","0.034","","Perinci-CmdLine-POD","Generate POD for Perinci::CmdLine-based CLI script"
"Net-Gemini-0.01","2022-10-25T00:27:13","JMATES","backpan","released","0.01","1","Net-Gemini","a small gemini client"
"Format-JSON-Stream-0.0.1","2022-10-25T03:23:09","SHLOMIF","latest","released","0.0.1","1","Format-JSON-Stream","a stream of JSON data."
"Statistics-RankCorrelation-0.1206","2022-10-25T04:47:32","GENE","latest","released","0.1206","","Statistics-RankCorrelation","Compute the rank correlation between two vectors"
"App-ClipboardUtils-0.004","2022-10-25T05:26:40","PERLANCAR","backpan","released","0.004","","App-ClipboardUtils","CLI utilities related to clipboard"
"Clipboard-Any-0.004","2022-10-25T05:26:51","PERLANCAR","backpan","released","0.004","","Clipboard-Any","Common interface to clipboard manager functions"
"YAML-yq-Helper-0.01","2022-10-25T06:11:03","VVELOX","backpan","released","0.01","","YAML-yq-Helper","Wrapper for yq for basic tasks so comments are preserved."
"YAML-yq-Helper-0.0.1","2022-10-25T06:12:33","VVELOX","cpan","released","v0.0.1","1","YAML-yq-Helper","Wrapper for yq for various common tasks so YAML files can be manipulated in a manner to preserve comments and version header."
"Cache-RedisDB-0.13","2022-10-25T06:30:21","BINARY","latest","released","0.13","","Cache-RedisDB","RedisDB based cache system"
"DataDog-DogStatsd-0.07","2022-10-25T06:46:55","BINARY","latest","released","0.07","","DataDog-DogStatsd","A Perl client for DogStatsd"
"Finance-Calendar-0.03","2022-10-25T06:57:14","BINARY","cpan","released","0.03","","Finance-Calendar","represents the trading calendar."
"Finance-MIFIR-CONCAT-0.01","2022-10-25T07:01:15","DERIV","latest","released","0.01","1","Finance-MIFIR-CONCAT","provides CONCAT code generation out of client data according to MIFIR rules"
"Finance-YieldCurve-0.001","2022-10-25T07:19:03","DERIV","latest","released","0.001","1","Finance-YieldCurve","Handles interpolation on yield curves for interest rates and dividends"
"App-ClipboardUtils-0.005","2022-10-25T09:10:57","PERLANCAR","backpan","released","0.005","","App-ClipboardUtils","CLI utilities related to clipboard"
"App-CSVUtils-0.046","2022-10-25T11:54:18","PERLANCAR","backpan","released","0.046","","App-CSVUtils","CLI utilities related to CSV"
"Module-Extract-VERSION-1.116","2022-10-25T12:38:29","BDFOY","latest","released","1.116","","Module-Extract-VERSION","Extract a module version safely"
"Test2-Tools-Rustfmt-0.01","2022-10-25T12:51:17","PLICEASE","backpan","released","0.01","1","Test2-Tools-Rustfmt","Test that bundled Rust code is formatted according to Rust style guidelines"
"Test2-Tools-Rustfmt-0.02","2022-10-25T13:26:39","PLICEASE","backpan","released","0.02","","Test2-Tools-Rustfmt","Test that bundled Rust code is formatted according to Rust style guidelines"
"Acme-Color-Rust-0.04","2022-10-25T13:30:40","PLICEASE","backpan","released","0.04","","Acme-Color-Rust","Color example class using Rust + FFI"

 view all matches for this distribution


TableData-Perl-CPAN-Release-Static-2023

 view release on metacpan or  search on metacpan

share/2023.csv  view on Meta::CPAN

"PESEL-Generator-1.24","2023-01-09T21:23:26","STRZELEC","cpan","released","1.24","","PESEL-Generator","generator of polish identifiers."
"PESEL-Generator-1.41","2023-01-09T21:23:37","STRZELEC","latest","released","1.41","","PESEL-Generator","generator of polish identifiers."
"Net-DNS-Nameserver-Trivial-0.304","2023-01-09T21:27:38","STRZELEC","cpan","released","0.304","","Net-DNS-Nameserver-Trivial","Trivial DNS server, that is based on Net::DNS::Nameserver module."
"Bundle-DadaMail-0.0.17","2023-01-09T23:12:00","JJSIMONI","latest","released","v0.0.17","","Bundle-DadaMail","CPAN Bundle for CPAN modules require to run Dada Mail"
"BoardStreams-v0.0.30","2023-01-09T23:38:35","KARJALA","cpan","released","v0.0.30","","BoardStreams","An easy way to use WebSockets on the browser and on the server"
"Clipboard-Any-0.005","2023-01-10T00:05:38","PERLANCAR","backpan","released","0.005","","Clipboard-Any","Common interface to clipboard manager functions"
"Data-Dumper-Interp-3.8","2023-01-10T00:09:41","JIMAVERA","backpan","released","3.8","","Data-Dumper-Interp","Data::Dumper for humans, with interpolation"
"Email-Address-1.913","2023-01-10T00:42:33","RJBS","latest","released","1.913","","Email-Address","RFC 2822 Address Parsing and Creation"
"Email-MIME-Kit-3.000007","2023-01-10T01:34:16","RJBS","cpan","released","3.000007","","Email-MIME-Kit","build messages from templates"
"Email-Stuffer-0.019","2023-01-10T01:53:45","RJBS","cpan","released","0.019","","Email-Stuffer","A more casual approach to creating and sending Email:: emails"
"Net-DNS-Nameserver-Trivial-0.305","2023-01-10T07:18:56","STRZELEC","latest","released","0.305","","Net-DNS-Nameserver-Trivial","Trivial DNS server, that is based on Net::DNS::Nameserver module."

share/2023.csv  view on Meta::CPAN

"LWP-UserAgent-msgraph-0.03","2023-02-16T21:21:09","ESTRELOW","cpan","released","0.03","1","LWP-UserAgent-msgraph",""
"LWP-UserAgent-msgraph-0.04","2023-02-16T21:35:14","ESTRELOW","cpan","released","0.04","","LWP-UserAgent-msgraph",""
"LWP-UserAgent-msgraph-0.05","2023-02-16T21:54:20","ESTRELOW","latest","released","0.05","","LWP-UserAgent-msgraph",""
"Net-DNS-Resolver-Mock-1.20230216","2023-02-16T23:32:26","MBRADSHAW","latest","released","1.20230216","","Net-DNS-Resolver-Mock","Mock a DNS Resolver object for testing"
"XS-Parse-Keyword-FromPerl-0.01","2023-02-16T23:33:53","PEVANS","backpan","released","0.01","1","XS-Parse-Keyword-FromPerl","drive XS::Parse::Keyword directly from Perl"
"Clipboard-Any-0.006","2023-02-17T00:05:23","PERLANCAR","backpan","released","0.006","","Clipboard-Any","Common interface to clipboard manager functions"
"Module-Generate-0.28","2023-02-17T00:26:59","LNATION","latest","released","0.28","","Module-Generate","Assisting with module generation."
"Spreadsheet-Edit-3.000","2023-02-17T04:08:02","JIMAVERA","backpan","released","3.000","","Spreadsheet-Edit","Slice and dice spreadsheets, optionally using tied variables."
"SPVM-Sys-0.40","2023-02-17T07:30:19","KIMOTO","cpan","released","0.40","","SPVM-Sys","System Calls for File IO, User, Process, Signal, Socket"
"Story-Interact-0.001008","2023-02-17T08:13:38","TOBYINK","cpan","released","0.001008","","Story-Interact","tools for writing (and reading) an interactive story"
"Term-Form-0.553","2023-02-17T08:29:19","KUERBIS","cpan","released","0.553","","Term-Form","Read lines from STDIN."

share/2023.csv  view on Meta::CPAN

"Dist-Zilla-PluginBundle-Author-IOANR-1.230480","2023-02-17T22:15:08","IOANR","latest","released","1.230480","","Dist-Zilla-PluginBundle-Author-IOANR","Build dists the way IOANR likes"
"Terse-0.12345678","2023-02-17T22:50:32","LNATION","cpan","released","0.12345678","","Terse","Lightweight Web Framework"
"Terse-Static-0.07","2023-02-17T22:50:43","LNATION","cpan","released","0.07","","Terse-Static","Serve static resources"
"Terse-Runtime-0.01","2023-02-17T22:52:09","LNATION","cpan","released","0.01","1","Terse-Runtime","Terse Runtime"
"Dist-Zilla-Plugin-ChangelogFromGit-CPAN-Changes-0.230480","2023-02-17T23:51:33","IOANR","cpan","released","0.230480","","Dist-Zilla-Plugin-ChangelogFromGit-CPAN-Changes","Generate valid CPAN::Changes Changelogs from git"
"Clipboard-Any-0.007","2023-02-18T00:05:33","PERLANCAR","backpan","released","0.007","","Clipboard-Any","Common interface to clipboard manager functions"
"Gmail-Mailbox-Validate-0.02","2023-02-18T01:44:56","PYH","backpan","released","0.02","","Gmail-Mailbox-Validate","Find if the username has a valid mailbox in gmail"
"Terse-Plugin-DBI-0.03","2023-02-18T10:03:12","LNATION","latest","released","0.03","","Terse-Plugin-DBI","DBI in Terse"
"Acme-MetaSyntactic-newsradio-0.001","2023-02-18T10:26:03","PERLANCAR","latest","released","0.001","1","Acme-MetaSyntactic-newsradio","Characters from the sitcom Newsradio (1995-1999)"
"Text-Wrap-NoStrip-0.001","2023-02-18T10:27:29","PERLANCAR","backpan","released","0.001","1","Text-Wrap-NoStrip","Line wrapping without stripping the whitespace"
"Text-Wrap-NoStrip-0.002","2023-02-18T10:27:35","PERLANCAR","backpan","released","0.002","","Text-Wrap-NoStrip","Line wrapping without stripping the whitespace"

share/2023.csv  view on Meta::CPAN

"XS-Parse-Keyword-FromPerl-0.03","2023-02-19T17:01:26","PEVANS","backpan","released","0.03","","XS-Parse-Keyword-FromPerl","drive XS::Parse::Keyword directly from Perl"
"HiPi-0.88","2023-02-19T17:25:31","MDOOTSON","cpan","released","0.88","","HiPi","Raspberry Pi GPIO Perl Modules"
"HiPi-BCM2835-0.66","2023-02-19T17:26:58","MDOOTSON","latest","released","0.66","","HiPi-BCM2835","Interface to BCM2835 library"
"Package-DeprecationManager-0.18","2023-02-19T18:13:24","DROLSKY","latest","released","0.18","","Package-DeprecationManager","Manage deprecation warnings for your distribution"
"Future-IO-0.13","2023-02-19T20:26:38","PEVANS","cpan","released","0.13","","Future-IO","Future-returning IO methods"
"Clipboard-Any-0.008","2023-02-20T00:05:15","PERLANCAR","backpan","released","0.008","","Clipboard-Any","Common interface to clipboard manager functions"
"Spreadsheet-Edit-3.003","2023-02-20T05:19:09","JIMAVERA","backpan","released","3.003","","Spreadsheet-Edit","Slice and dice spreadsheets, optionally using tied variables."
"Data-Dumper-Interp-5.001","2023-02-20T05:52:05","JIMAVERA","backpan","released","5.001","","Data-Dumper-Interp","interpolate Data::Dumper output into strings for human consumption"
"SPVM-0.9692","2023-02-20T06:52:33","KIMOTO","backpan","released","0.9692","","SPVM","SPVM Language"
"Mojolicious-Plugin-OpenAPI-5.09","2023-02-20T07:35:46","JHTHORSEN","latest","released","5.09","","Mojolicious-Plugin-OpenAPI","OpenAPI / Swagger plugin for Mojolicious"
"Text-ANSI-Fold-2.2102","2023-02-20T09:52:54","UTASHIRO","cpan","released","2.2102","","Text-ANSI-Fold","Text folding library supporting ANSI terminal sequence and Asian wide characters with prohibition character handling."

share/2023.csv  view on Meta::CPAN

"Terse-0.123456789","2023-02-20T21:31:25","LNATION","cpan","released","0.123456789","","Terse","Lightweight Web Framework"
"Text-Wrap-Smart-1.00","2023-02-20T22:00:43","SCHUBIGER","latest","released","1.00","","Text-Wrap-Smart","Wrap text into chunks of similar length"
"Alien-7zip-0.03","2023-02-20T22:21:02","ZMUGHAL","latest","released","0.03","","Alien-7zip","Find or build 7-Zip"
"SNMP-Info-3.92","2023-02-20T22:35:05","OLIVER","cpan","released","3.92","","SNMP-Info","OO Interface to Network devices and MIBs through SNMP"
"SPVM-Sys-0.42","2023-02-20T23:31:11","KIMOTO","cpan","released","0.42","","SPVM-Sys","System Calls for File IO, User, Process, Signal, Socket"
"App-ClipboardUtils-0.006","2023-02-21T00:05:44","PERLANCAR","cpan","released","0.006","","App-ClipboardUtils","CLI utilities related to clipboard"
"Test2-Harness-1.000146","2023-02-21T02:29:02","EXODIST","cpan","released","1.000146","","Test2-Harness","A new and improved test harness with better Test2 integration."
"Data-Dump-Streamer-2.42","2023-02-21T03:08:06","YVES","latest","released","2.42","","Data-Dump-Streamer","Accurately serialize a data structure as Perl code."
"Alien-Rust-0.03","2023-02-21T04:43:44","ZMUGHAL","latest","released","0.03","","Alien-Rust","Find or build Rust"
"PomBase-Chobo-0.038","2023-02-21T04:55:16","KIM","cpan","released","0.038","","PomBase-Chobo","Fast OBO to Chado loading using PostgreSQL COPY"
"SPVM-File-Temp-0.01","2023-02-21T05:37:07","KIMOTO","cpan","released","0.01","1","SPVM-File-Temp","Short Description"

share/2023.csv  view on Meta::CPAN

"Text-Wrap-Smart-XS-0.08","2023-02-22T20:21:40","SCHUBIGER","latest","released","0.08","","Text-Wrap-Smart-XS","Wrap text fast into chunks of similar length"
"HTTP-Daemon-6.15","2023-02-22T22:03:32","OALDERS","cpan","released","6.15","","HTTP-Daemon","A simple http server class"
"Acme-EdError-9.18","2023-02-22T22:56:30","JMATES","latest","released","9.18","","Acme-EdError","implements ed(1) error handling"
"Weather-WeatherKit-0.1","2023-02-22T23:14:18","DKECHAG","cpan","released","0.1","","Weather-WeatherKit","Apple WeatherKit REST API client"
"Game-Xomb-1.05","2023-02-22T23:32:07","JMATES","latest","released","1.05","","Game-Xomb","a game featuring @ versus the Xarci Bedo"
"Clipboard-Any-0.009","2023-02-23T00:06:14","PERLANCAR","backpan","released","0.009","","Clipboard-Any","Common interface to clipboard manager functions"
"Geo-ShapeFile-3.02","2023-02-23T00:45:26","SLAFFAN","cpan","released","3.02","","Geo-ShapeFile","Perl extension for handling ESRI GIS Shapefiles."
"Net-SSLeay-1.93_02","2023-02-23T01:08:20","CHRISN","cpan","developer","1.93_02","","Net-SSLeay","Perl bindings for OpenSSL and LibreSSL"
"Test2-Harness-1.000148","2023-02-23T01:24:51","EXODIST","cpan","released","1.000148","","Test2-Harness","A new and improved test harness with better Test2 integration."
"Mojo-WebSocketProxy-Backend-ConsumerGroups-0.02","2023-02-23T02:05:10","BINARY","backpan","released","0.02","","Mojo-WebSocketProxy-Backend-ConsumerGroups","Class for communication with backend by sending messaging through redis streams."
"SPVM-File-Find-0.01","2023-02-23T02:12:56","KIMOTO","cpan","released","0.01","1","SPVM-File-Find","Short Description"

share/2023.csv  view on Meta::CPAN

"OpenAI-API-0.26","2023-03-12T18:09:01","NFERRAZ","backpan","released","0.26","","OpenAI-API","Perl interface to OpenAI API"
"Template-Perlish-1.64","2023-03-12T18:12:14","POLETTIX","latest","released","1.64","","Template-Perlish","Yet Another Templating system for Perl"
"JSON-Schema-Modern-0.565","2023-03-12T21:23:09","ETHER","cpan","released","0.565","","JSON-Schema-Modern","Validate data against a schema"
"Crypt-LE-0.39","2023-03-12T22:10:15","LEADER","latest","released","0.39","","Crypt-LE","Let's Encrypt (and other ACME-based) API interfacing module and client."
"Alien-Gnuplot-1.041","2023-03-12T23:32:06","ETJ","backpan","released","1.041","","Alien-Gnuplot","Find and verify functionality of the gnuplot executable."
"Clipboard-Any-0.010","2023-03-13T00:06:13","PERLANCAR","cpan","released","0.010","","Clipboard-Any","Common interface to clipboard manager functions"
"XML-Sig-0.60-TRIAL","2023-03-13T00:29:05","TIMLEGGE","backpan","developer","0.60","","XML-Sig","A toolkit to help sign and verify XML Digital Signatures."
"XML-Sig-0.61-TRIAL","2023-03-13T00:44:20","TIMLEGGE","backpan","developer","0.61","","XML-Sig","A toolkit to help sign and verify XML Digital Signatures."
"XML-Enc-0.09-TRIAL","2023-03-13T01:05:52","TIMLEGGE","backpan","developer","0.09","","XML-Enc","A toolkit to help encrypt and decrypt XML Digital Signatures."
"Net-SAML2-0.65-TRIAL","2023-03-13T01:43:42","TIMLEGGE","backpan","developer","0.65","","Net-SAML2","SAML bindings and protocol implementation"
"App-Greple-xlate-0.14","2023-03-13T01:58:58","UTASHIRO","cpan","released","0.14","","App-Greple-xlate","translation support module for greple"

share/2023.csv  view on Meta::CPAN

"Ceph-Rados-0.19","2023-05-31T16:06:49","KILINRAX","cpan","released","0.19","","Ceph-Rados","Perl wrapper to librados."
"Ceph-Rados-0.20","2023-05-31T16:17:08","KILINRAX","cpan","released","0.20","","Ceph-Rados","Perl wrapper to librados."
"Spreadsheet-Edit-3.015","2023-05-31T18:04:03","JIMAVERA","backpan","released","3.015","","Spreadsheet-Edit","Slice and dice spreadsheets, optionally using tied variables."
"App-diff_spreadsheets-1.008","2023-05-31T19:12:08","JIMAVERA","backpan","released","1.008","","App-diff_spreadsheets","Diff spreadsheets or CSVs showing changed cells"
"App-VTide-v1.0.2","2023-05-31T21:56:42","IVANWILLS","cpan","released","v1.0.2","","App-VTide","A vim/tmux based IDE for the terminal"
"Clipboard-Any-0.011","2023-06-01T00:05:30","PERLANCAR","latest","released","0.011","","Clipboard-Any","Common interface to clipboard manager functions"
"Mutex-1.008","2023-06-01T00:40:54","MARIOROY","backpan","released","1.008","","Mutex","Various locking implementations supporting processes and threads"
"DB-SimpleKV-0.17","2023-06-01T01:00:03","YHPENG","cpan","released","0.17","","DB-SimpleKV","Simple k/v interface to text configuration file"
"Net-Bot-IRC-Message-0.1.1","2023-06-01T01:16:36","MCAUDILL","cpan","released","v0.1.1","1","Net-Bot-IRC-Message","An IRC protocol message class."
"Net-Bot-IRC-NumericCodes-0.5.1","2023-06-01T01:16:47","MCAUDILL","cpan","released","v0.5.1","1","Net-Bot-IRC-NumericCodes","A module for abstracting IRC numeric codes."
"Pipe-0.06","2023-06-01T07:05:45","SZABGAB","latest","released","0.06","","Pipe","Framework for creating pipes using iterators"

share/2023.csv  view on Meta::CPAN

"SignalWire-ML-1.02","2023-06-02T18:18:53","BWEST","backpan","released","1.02","","SignalWire-ML",""
"custom-failures-x-alias-0.03","2023-06-02T19:29:24","DJERIUS","backpan","released","0.03","","custom-failures-x-alias","export aliases for custom::failures"
"Webservice-Judobase-0.10","2023-06-02T21:11:15","LANCEW","latest","released","0.10","","Webservice-Judobase","This module wraps the www.judobase.org website API."
"App-aep-0.009","2023-06-02T22:26:55","DAEMON","latest","released","0.009","","App-aep","turns baubles into trinkets"
"Gmail-Mailbox-Validate-0.17","2023-06-02T23:12:20","PYH","backpan","released","0.17","","Gmail-Mailbox-Validate","Find if the username has a valid mailbox in gmail"
"App-ClipboardUtils-0.007","2023-06-03T00:05:16","PERLANCAR","latest","released","0.007","","App-ClipboardUtils","CLI utilities related to clipboard"
"custom-failures-x-alias-0.04","2023-06-03T01:45:53","DJERIUS","latest","released","0.04","","custom-failures-x-alias","export aliases for custom::failures"
"Spreadsheet-Edit-3.018","2023-06-03T05:23:08","JIMAVERA","backpan","released","3.018","","Spreadsheet-Edit","Slice and dice spreadsheets, optionally using tied variables."
"ODF-lpOD_Helper-5.012","2023-06-03T05:25:59","JIMAVERA","cpan","released","5.012","","ODF-lpOD_Helper","fix and enhance ODF::lpOD"
"Data-Dumper-Interp-5.024","2023-06-03T05:43:48","JIMAVERA","backpan","released","5.024","","Data-Dumper-Interp","interpolate Data::Dumper output into strings for human consumption"
"App-news-1.06","2023-06-03T08:04:32","SCHROEDER","cpan","released","1.06","","App-news","a web front-end for a news server"

share/2023.csv  view on Meta::CPAN

"File-Copy-Recursive-Reduced-0.007","2023-09-16T12:00:01","JKEENAN","latest","released","0.007","","File-Copy-Recursive-Reduced","Recursive copying of files and directories within Perl 5 toolchain"
"UI-Various-0.43","2023-09-16T12:50:26","DORNER","cpan","released","0.43","","UI-Various","graphical/non-graphical user interface without external programs"
"CXC-Form-Tiny-Plugin-OptArgs2-0.09","2023-09-16T19:29:19","DJERIUS","cpan","released","0.09","","CXC-Form-Tiny-Plugin-OptArgs2","A Plugin to interface Form::Tiny with OptArgs2"
"Dispatch-Fu-0.97","2023-09-16T19:47:11","OODLER","cpan","released","0.97","","Dispatch-Fu","Converts any complicated conditional dispatch situation into familiar static hash-key based dispatch"
"Test-JSON-Schema-Acceptance-1.020","2023-09-16T23:55:48","ETHER","cpan","released","1.020","","Test-JSON-Schema-Acceptance","Acceptance testing for JSON-Schema based validators"
"Acme-CPANModules-Clipboard-0.001","2023-09-17T00:06:08","PERLANCAR","latest","released","0.001","1","Acme-CPANModules-Clipboard","List of modules that interact with clipboard"
"JSON-Schema-Modern-0.571","2023-09-17T01:16:39","ETHER","cpan","released","0.571","","JSON-Schema-Modern","Validate data against a schema"
"CXC-Form-Tiny-Plugin-OptArgs2-0.10","2023-09-17T03:44:06","DJERIUS","cpan","released","0.10","","CXC-Form-Tiny-Plugin-OptArgs2","A Plugin to interface Form::Tiny with OptArgs2"
"Travel-Status-DE-DeutscheBahn-4.17","2023-09-17T08:55:29","DERF","cpan","released","4.17","","Travel-Status-DE-DeutscheBahn","Interface to the online arrival/departure"
"Devel-tkdb-2.3","2023-09-17T10:23:45","VKON","cpan","released","2.3","","Devel-tkdb","Perl debugger using a Tcl/Tk GUI"
"Net-Curl-0.54_3","2023-09-17T10:34:02","SYP","backpan","developer","0.54_3","","Net-Curl","Perl interface for libcurl"

 view all matches for this distribution


TableDataBundle-Business-ID-DGIP

 view release on metacpan or  search on metacpan

share/class16.csv  view on Meta::CPAN

"alat tulis tercetak","printed stationery"
"cerita cetak dalam bentuk ilustrasi","printed stories in illustrated form"
"kartu Natal","Christmas cards"
"Kertas pembungkus Natal","Christmas wrapping paper"
"chromolithographs [chromos]","chromolithographs [chromos]"
"papan klip",clipboards
"klip untuk pemegang lencana nama [keperluan kantor]","clips for name badge holders [office requisites]"
"jaringan kasar untuk keperluan kosmetik","coarse tissue for cosmetic purposes"
"tatakan gelas dari kertas","coasters of paper"
"tatakan gelas kertas atau karton","coasters of paper or cardboard"
"kertas termal dilapisi","coated thermal paper"

share/class16.csv  view on Meta::CPAN

"Catatan terima kasih","Thank you notes"
"Buku kecil pelatihan","Training booklets"
"Panduan pelatihan dalam bentuk cetak","Training guides in the form of printed matter"
"alat tulis, termasuk kertas, amplop, bantalan, kartu, surat, pena, dan pensil","stationery, including paper, envelopes, pads, cards, letters, pens and pencils"
"publikasi cetak, termasuk buku, majalah, buletin, koran","printed publications, including books, magazines, newsletters, newspapers"
"Publikasi dan barang cetakan, yaitu kartu dagang bola basket, kartu dagang, stiker, dekal, tato sementara yang dapat dipindahkan, perangko bertema bola basket, tiket bertema bola basket, karton untuk menyimpan koleksi piringan perdagangan, papan tul...
"Pelubang kertas",-
"Jepitan kertas",-
"Fibre tipp maker",-
"Bola dunia",-
Platban,-

 view all matches for this distribution


TableDataBundle-CPAN-Release-Static-Older

 view release on metacpan or  search on metacpan

share/2000.csv  view on Meta::CPAN

Apache-SetWWWTheme-1.05,2000-03-22T03:58:24,CHOGAN,cpan,released,1.05,,Apache-SetWWWTheme,"Standard theme generation, including sidebars and navigation bars"
minivend-4.02,2000-03-22T06:50:35,MIKEH,backpan,released,4.02,,minivend,"A Module for reading .ini-style configuration files"
perl-ldap-0.15,2000-03-22T10:46:21,GBARR,backpan,released,0.15,,perl-ldap,"SASL Authentication base class"
String-Strip-1.01,2000-03-22T14:55:30,BPOWERS,cpan,released,1.01,1,String-Strip,"Perl extension for fast, commonly used, string operations"
String-StringLib-1.02,2000-03-22T15:04:49,BPOWERS,latest,released,1.02,,String-StringLib,"Perl extension for fast, commonly used, string operations"
Win32-Clipboard-0.50,2000-03-22T16:57:15,ACALPINI,cpan,released,0.50,1,Win32-Clipboard,"Interaction with the Windows clipboard"
GD-1.27,2000-03-22T19:41:56,LDS,cpan,released,1.27,,GD,"Interface to Gd Graphics Library"
Net-DLookup-1.00,2000-03-23T02:02:38,DJASMINE,cpan,released,1.00,1,Net-DLookup,"Perform domain lookups on 2-letter and 3-letter TLDs"
Tie-DBI-0.91,2000-03-23T02:55:41,LDS,cpan,released,0.91,,Tie-DBI,"Tie hashes to DBI relational databases"
Text-BibTeX-0.33,2000-03-23T03:53:18,GWARD,cpan,released,0.33,,Text-BibTeX,"Frequently-Asked Questions about btparse and Text::BibTeX"
perl-5.6.0,2000-03-23T06:06:13,GSAR,cpan,released,v5.6.0,,perl,"Perl pragma to control optional warnings"

share/2000.csv  view on Meta::CPAN

ClearCase-ClearPrompt-1.13,2000-04-18T01:48:04,DSB,backpan,released,1.13,,ClearCase-ClearPrompt,"Handle clearprompt in a portable, convenient way"
String-Approx-3.10,2000-04-18T04:02:35,JHI,backpan,released,3.10,,String-Approx,"Perl extension for approximate matching (fuzzy matching)"
DBD-RAM-0.042,2000-04-18T05:24:17,JZUCKER,cpan,released,0.042,,DBD-RAM,"a DBI driver for in-memory data structures"
XML-XPath-0.22,2000-04-18T08:25:32,MSERGEANT,backpan,released,0.22,,XML-XPath,"a set of modules for parsing and evaluating XPath statements"
Convert-BER-1.30,2000-04-18T10:25:12,GBARR,backpan,released,1.30,,Convert-BER,"ASN.1 Basic Encoding Rules"
Win32-Clipboard-0.51,2000-04-18T10:49:40,ACALPINI,cpan,released,0.51,,Win32-Clipboard,"Interaction with the Windows clipboard"
Lingua-EN-NameParse-1.02,2000-04-18T11:50:24,KIMRYAN,backpan,released,1.02,,Lingua-EN-NameParse,"routines for manipulating a persons name"
Envy-2.47,2000-04-18T16:24:38,JPRIT,cpan,released,2.47,,Envy,"A comprehensive multi-dimensional environment manager"
Class-Accessor-0.12,2000-04-18T17:29:46,MSCHWERN,backpan,released,0.12,,Class-Accessor,"Automated accessor generation"
Lingua-Ispell-0.07,2000-04-18T18:53:02,JDPORTER,latest,released,0.07,,Lingua-Ispell,"a module encapsulating access to the Ispell program."
GDGraph3d-0.40,2000-04-18T20:38:54,WADG,cpan,released,0.40,,GDGraph3d,"Create 3D Graphs with GD and GD::Graph"

 view all matches for this distribution


TableDataBundle-Perl-CPAN-Release-Static-Older

 view release on metacpan or  search on metacpan

share/2000.csv  view on Meta::CPAN

Apache-SetWWWTheme-1.05,2000-03-22T03:58:24,CHOGAN,cpan,released,1.05,,Apache-SetWWWTheme,"Standard theme generation, including sidebars and navigation bars"
minivend-4.02,2000-03-22T06:50:35,MIKEH,backpan,released,4.02,,minivend,"A Module for reading .ini-style configuration files"
perl-ldap-0.15,2000-03-22T10:46:21,GBARR,backpan,released,0.15,,perl-ldap,"SASL Authentication base class"
String-Strip-1.01,2000-03-22T14:55:30,BPOWERS,cpan,released,1.01,1,String-Strip,"Perl extension for fast, commonly used, string operations"
String-StringLib-1.02,2000-03-22T15:04:49,BPOWERS,latest,released,1.02,,String-StringLib,"Perl extension for fast, commonly used, string operations"
Win32-Clipboard-0.50,2000-03-22T16:57:15,ACALPINI,cpan,released,0.50,1,Win32-Clipboard,"Interaction with the Windows clipboard"
GD-1.27,2000-03-22T19:41:56,LDS,cpan,released,1.27,,GD,"Interface to Gd Graphics Library"
Net-DLookup-1.00,2000-03-23T02:02:38,DJASMINE,cpan,released,1.00,1,Net-DLookup,"Perform domain lookups on 2-letter and 3-letter TLDs"
Tie-DBI-0.91,2000-03-23T02:55:41,LDS,cpan,released,0.91,,Tie-DBI,"Tie hashes to DBI relational databases"
Text-BibTeX-0.33,2000-03-23T03:53:18,GWARD,cpan,released,0.33,,Text-BibTeX,"Frequently-Asked Questions about btparse and Text::BibTeX"
perl-5.6.0,2000-03-23T06:06:13,GSAR,cpan,released,v5.6.0,,perl,"Perl pragma to control optional warnings"

share/2000.csv  view on Meta::CPAN

ClearCase-ClearPrompt-1.13,2000-04-18T01:48:04,DSB,backpan,released,1.13,,ClearCase-ClearPrompt,"Handle clearprompt in a portable, convenient way"
String-Approx-3.10,2000-04-18T04:02:35,JHI,backpan,released,3.10,,String-Approx,"Perl extension for approximate matching (fuzzy matching)"
DBD-RAM-0.042,2000-04-18T05:24:17,JZUCKER,cpan,released,0.042,,DBD-RAM,"a DBI driver for in-memory data structures"
XML-XPath-0.22,2000-04-18T08:25:32,MSERGEANT,backpan,released,0.22,,XML-XPath,"a set of modules for parsing and evaluating XPath statements"
Convert-BER-1.30,2000-04-18T10:25:12,GBARR,backpan,released,1.30,,Convert-BER,"ASN.1 Basic Encoding Rules"
Win32-Clipboard-0.51,2000-04-18T10:49:40,ACALPINI,cpan,released,0.51,,Win32-Clipboard,"Interaction with the Windows clipboard"
Lingua-EN-NameParse-1.02,2000-04-18T11:50:24,KIMRYAN,backpan,released,1.02,,Lingua-EN-NameParse,"routines for manipulating a persons name"
Envy-2.47,2000-04-18T16:24:38,JPRIT,cpan,released,2.47,,Envy,"A comprehensive multi-dimensional environment manager"
Class-Accessor-0.12,2000-04-18T17:29:46,MSCHWERN,backpan,released,0.12,,Class-Accessor,"Automated accessor generation"
Lingua-Ispell-0.07,2000-04-18T18:53:02,JDPORTER,latest,released,0.07,,Lingua-Ispell,"a module encapsulating access to the Ispell program."
GDGraph3d-0.40,2000-04-18T20:38:54,WADG,cpan,released,0.40,,GDGraph3d,"Create 3D Graphs with GD and GD::Graph"

 view all matches for this distribution


Tapper-Reports-Web

 view release on metacpan or  search on metacpan

root/tapper/static/css/jquery-ui/jquery.ui.css  view on Meta::CPAN

* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.autocomplete.css, jquery.ui.menu.css, jquery.ui.theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHead...
* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */

.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoratio...

 view all matches for this distribution


Task-BeLike-PERLANCAR-Used

 view release on metacpan or  search on metacpan

lib/Task/BeLike/PERLANCAR/Used.pm  view on Meta::CPAN


=head3 L<JSON::Encode::TableData> 0

=head3 L<LWP::Protocol::Patch::CountBytesIn> 0

=head3 L<LWP::Protocol::clipboard> 0

=head3 L<LWP::UserAgent::Patch::Delay> 0

=head3 L<LWP::UserAgent::Patch::FilterMirror> 0

 view all matches for this distribution


Task-BeLike-RWP

 view release on metacpan or  search on metacpan

lib/Task/BeLike/RWP.pm  view on Meta::CPAN


General URI class to handle URL's and the like

=item L<Clipboard> (L<GitHub|https://github.com/shlomif/Clipboard>)

Cross-platform clipboard management

=item L<PadWalker> (L<GitHub|https://github.com/robinhouston/PadWalker>)

Supported by Perl Debugger as the C<y> command

 view all matches for this distribution


Tcl-Tk-Tkwidget-Tix

 view release on metacpan or  search on metacpan

library/Console.tcl  view on Meta::CPAN

	source $tix_library/Console.tcl
    }
    foreach copy {F16 Meta-w Control-i} {
	bind $win <$copy> {
	    if {[selection own -displayof %W] == "%W"} {
		clipboard clear -displayof %W
		catch {
		    clipboard append -displayof %W [selection get -displayof %W]
		}
	    }
	    break
	}
    }

 view all matches for this distribution


Tcl-Tk-Tkwidget-treectrl

 view release on metacpan or  search on metacpan

library/treectrl.tcl  view on Meta::CPAN

bind TreeCtrl <Shift-Control-KeyPress-End> {
    TreeCtrl::DataExtend %W [%W item id {last visible state enabled}]
}
bind TreeCtrl <<Copy>> {
    if {[string equal [selection own -displayof %W] "%W"]} {
	clipboard clear -displayof %W
	clipboard append -displayof %W [selection get -displayof %W]
    }
}
bind TreeCtrl <KeyPress-space> {
    TreeCtrl::BeginSelect %W [%W item id active]
}

 view all matches for this distribution


Tcl-Tk

 view release on metacpan or  search on metacpan

tk-demos/widtrib/Gedi.pl  view on Meta::CPAN


Column based copy/cut/paste features are also
available in the Text.pm module. They are bound
to the following keys:

<F1> clipboardColumnCopy
<F2> clipboardColumnCut
<F3> clipboardColumnPaste

Currently, column based operations are beta versions.
They compensate for tabs, but they will not behave
properly unless the text is all the same font, and
is the same width per character.

 view all matches for this distribution


Tcl-pTk

 view release on metacpan or  search on metacpan

lib/Tcl/pTk/Clipboard.pm  view on Meta::CPAN

{
 my ($class,$mw, $tag) = @_;  # optional tag for binding
 $tag ||= $class; # If not supplied $tag = $class
 foreach my $op ($class->clipEvents)
  {
   $mw->bind($tag,"<<$op>>","clipboard$op");
  }
 return $class;
}

sub clipboardSet
{
 my $w = shift;
 $w->call('clipboard', 'clear');
 $w->call('clipboard', 'append', @_);
}

sub clipboardCopy
{
 my $w = shift;
 my $val = $w->getSelected;
 if (defined $val)
  {
   $w->clipboardSet('--',$val);
  }
 return $val;
}

sub clipboardCut
{
 my $w = shift;
 my $val = $w->clipboardCopy;
 if (defined $val)
  {
   $w->deleteSelected;
  }
 return $val;
}

sub clipboardGet
{
 my $w = shift;
 $w->SelectionGet('-selection','CLIPBOARD',@_);
}

sub clipboardPaste
{
 my $w = shift;
 local $@;
# Tcl::pTk::catch
  {
     eval
     {
       $w->deleteSelected;
     };
   my $value = $w->clipboardGet;
   # print "Clipboard paste = $value\n";
   $w->insert("insert", $value);
   $w->SeeInsert if $w->can('SeeInsert');
  };
}

sub clipboardOperations
{
 my @class = ();
 my $mw    = shift;
 if (ref $mw)
  {

lib/Tcl/pTk/Clipboard.pm  view on Meta::CPAN

   $mw = shift;
  }
 while (@_)
  {
   my $op = shift;
   $mw->bind(@class,"<<$op>>","clipboard$op");
  }
}

# These methods work for Entry and Text
# and can be overridden where they don't work

 view all matches for this distribution


( run in 3.716 seconds using v1.01-cache-2.11-cpan-84e82930d8c )