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


JaM

 view release on metacpan or  search on metacpan

lib/JaM/GUI/Compose.pm  view on Meta::CPAN

		{ path        => '/_Edit',
                  type        => '<Branch>' },

                { path        => '/Edit/Cu_t',
		  accelerator => '<control>X',
                  callback    => sub { $self->gtk_text->signal_emit_by_name( 'cut-clipboard' ) } },
                { path        => '/Edit/_Copy',
		  accelerator => '<control>C',
                  callback    => sub { $self->gtk_text->signal_emit_by_name( 'copy-clipboard' ) } },
                { path        => '/Edit/_Paste',
		  accelerator => '<control>V',
                  callback    => sub { $self->gtk_text->signal_emit_by_name( 'paste-clipboard' ) } },

		{ path	      => '/Edit/sep1',
		  type	      => '<Separator>' },

                { path        => '/Edit/Delete _Quoted text beneath cursor',

 view all matches for this distribution


JavaScript-Bookmarklet

 view release on metacpan or  search on metacpan

bin/make-bookmarklet  view on Meta::CPAN

my $src = do { local $/; <> };
my $bookmarklet = make_bookmarklet($src);
print $bookmarklet;
eval {
    system("/bin/echo -n '$bookmarklet' | /usr/bin/pbcopy")
      ;                    # put bookmarklet on clipboard.
};
warn "Bookmarklet code not be placed in your clipboard: $@" if $@;

__END__

=head1 NAME

bin/make-bookmarklet  view on Meta::CPAN

human-readable JavaScript code into bookmarklet form.

=head1 DESCRIPTION

This script will attempt to copy the bookmarklet code to
your desktop clipboard using pbcopy if possible. A warning
will be issued if it cannot regardless of the availablity of
pbcopy, the bookmarklet code will be output.

=head1 USAGE

 view all matches for this distribution


JavaScript-Packer

 view release on metacpan or  search on metacpan

t/scripts/s14-expected.js  view on Meta::CPAN

//# sourceMappingURL=collaboration-all.js.map
var olefa_sync=function(){this.default_values()};olefa_sync.prototype.default_values=function(){this.timer=setInterval((function(self){return function(){self.execute()}})(this),45000);this.active=new Object();this.unixTimestamp=Math.round(+new Date()...

 view all matches for this distribution


Kephra

 view release on metacpan or  search on metacpan

lib/Kephra.pm  view on Meta::CPAN

Basic editing as expected: C<undo> (Ctrl+Z), redo (Ctrl+Y), if you add I<Shift>
here, you will go several undo steps at once. I<Alt> instead of I<Ctrl> moves
you to start or end of the undo chain.

Core functions: C<cut> (Ctrl+X) removes the selected text or the current line
(if nothing is selected) and copies it into the clipboard.
Same is true for C<copy> (Ctrl+C), which only copies without removing anything.
C<Paste> (Ctrl+V) inserts the copied text on the position of the caret (cursor).
C<Swap> (Ctrl+Shift+V) streamlines the copy and paste process a bit by replacing
the selection with the old clipboard content, while copying the selection or current line.
C<Delete> (Del) only removes the selection or character on the caret position.
C<Duplicate> (Ctrl+D) copies and paste's the selected text or current line,
without affecting the clipboard.

More advanced is (Ctrl+A), which C<grows selection> from word to expression to line,
block, sub until all is selected and C<shrink selection> is just the opposite (Ctrl+Shift+A).

=head2 Format

 view all matches for this distribution


Kwiki-JSLog

 view release on metacpan or  search on metacpan

lib/Kwiki/JSLog.pm  view on Meta::CPAN

	*/
	function text(sText) {
		$(sDOMInstance+"_textArea").value=sText;
	}
	/*
	Public method to try to get the innerHTML of the element identified in the text input box, and place it into the clipboard
	from view.
	*/
	function getHTML () {
		var sIdToInspect = $(sDOMInstance+"_idToInspect").value;

		if (sIdToInspect == "" ) {
			warning("Provide a non-blank id");
		} else {
			try {
				// get the element with the id entered, copy its outerHTML to a hidden text area, and then transfer it to the clipboard
				var oTextArea = $(sDOMInstance+"_textArea").value = $(sIdToInspect).innerHTML;
				info(sIdToInspect+" innerHTML is now in the text box below!");
			} catch(e) {
				error("Could not get innerHTML of id="+sIdToInspect+": "+e.message);
			}

 view all matches for this distribution


LWP-Protocol-clipboard

 view release on metacpan or  search on metacpan

lib/LWP/Protocol/clipboard.pm  view on Meta::CPAN

package LWP::Protocol::clipboard;

use strict;
use warnings;

use parent 'LWP::Protocol';

lib/LWP/Protocol/clipboard.pm  view on Meta::CPAN

use HTTP::Status;
#use URI;

our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2022-10-10'; # DATE
our $DIST = 'LWP-Protocol-clipboard'; # DIST
our $VERSION = '0.001'; # VERSION

sub request {
    my ($self, $request, $proxy, $arg, $size) = @_;

    if ($proxy) {
        return HTTP::Response->new(&HTTP::Status::RC_BAD_REQUEST,
                                   'You can not proxy with clipboard');
    }
    my $method = $request->method;
    unless ($method eq 'GET' || $method eq 'PUT') { # XXX support HEAD
        return HTTP::Response->new(&HTTP::Status::RC_BAD_REQUEST,
                                   'Library does not allow method ' .
                                   "$method for 'cpan:' URLs");
    }

    if ($method eq 'GET') {
        require Clipboard::Any;
        my $res = Clipboard::Any::get_clipboard_content();
        my $response = HTTP::Response->new($res->[0], $res->[1]);
        $response->content($res->[2]);
        return $response;
    }

    if ($method eq 'PUT') {
        require Clipboard::Any;
        my $res = Clipboard::Any::add_clipboard_content(content => $request->content);
        my $response = HTTP::Response->new($res->[0], $res->[1]);
        return $response;
    }
}

1;
# ABSTRACT: Get/set clipboard content through LWP

__END__

=pod

=encoding UTF-8

=head1 NAME

LWP::Protocol::clipboard - Get/set clipboard content through LWP

=head1 VERSION

This document describes version 0.001 of LWP::Protocol::clipboard (from Perl distribution LWP-Protocol-clipboard), released on 2022-10-10.

=head1 SYNOPSIS

 use LWP::UserAgent;
 my $ua = LWP::UserAgent->new;

 # get clipboard content
 my $resp = $ua->get("clipboard:");
 if ($resp->is_success) {
     print "Clipboard content is ", $resp->content;
 }

 # set clipboard content
 my $resp = $ua->put("clipboard:", Content => "new content");
 if ($resp->is_success) {
     print "Clipboard content set";
 }

=head1 DESCRIPTION

This module uses L<Clipboard::Any> to get/set clipboard content.

=head1 HOMEPAGE

Please visit the project's homepage at L<https://metacpan.org/release/LWP-Protocol-clipboard>.

=head1 SOURCE

Source repository is at L<https://github.com/perlancar/perl-LWP-Protocol-clipboard>.

=head1 SEE ALSO

L<LWP::Protocol>

lib/LWP/Protocol/clipboard.pm  view on Meta::CPAN

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=LWP-Protocol-clipboard>

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

 view all matches for this distribution


LWPx-ParanoidAgent

 view release on metacpan or  search on metacpan

.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi  view on Meta::CPAN

  <commands xmi:id="_e7z9-4Y5EeapIuqOM7GcEw" elementId="org.eclipse.ui.window.openEditorDropDown" commandName="Quick Switch Editor" description="Open the editor drop down list" category="_e7yvwYY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e7z9_IY5EeapIuqOM7GcEw" elementId="org.eclipse.debug.ui.commands.ProfileLast" commandName="Profile" description="Launch in profile mode" category="_e7yvyIY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e7z9_YY5EeapIuqOM7GcEw" elementId="com.aptana.jira.ui.commands.submit" commandName="Submit a Ticket..." description="Submit a JIRA ticket" category="_e7yv2oY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e7z9_oY5EeapIuqOM7GcEw" elementId="org.eclipse.search.ui.performTextSearchFile" commandName="Find Text in File" description="Searches the files in the file for specific text." category="_e7yv0oY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e7z9_4Y5EeapIuqOM7GcEw" elementId="org.eclipse.ui.edit.findbar.findPrevious" commandName="Find Previous" category="_e7yv1IY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e7z-AIY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.edit.paste" commandName="Paste" description="Paste from the clipboard" category="_e7yv1IY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e7z-AYY5EeapIuqOM7GcEw" elementId="com.aptana.git.ui.command.diff" commandName="Diff..." category="_e7yvyYY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e7z-AoY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.navigate.previous" commandName="Previous" description="Navigate to the previous item" category="_e7yv3YY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e7z-A4Y5EeapIuqOM7GcEw" elementId="org.eclipse.ui.edit.findbar.searchInEnclosingProject" commandName="Search in Enclosing Project" category="_e7yv1IY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e7z-BIY5EeapIuqOM7GcEw" elementId="com.aptana.ui.command.diagnostic" commandName="Run Diagnostic Test..." description="Runs Diagnostic Test" category="_e7yv2oY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e7z-BYY5EeapIuqOM7GcEw" elementId="org.epic.perleditor.commands.jump2Bracket" commandName="Matching Bracket" description="Matching Bracket" category="_e7yv3YY5EeapIuqOM7GcEw"/>

.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi  view on Meta::CPAN

  <commands xmi:id="_e7z-PYY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.edit.findbar.showOptions" commandName="Show Find Bar Options" category="_e7yv1IY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70k8IY5EeapIuqOM7GcEw" elementId="org.python.pydev.debug.pyPropertyTrace" commandName="Disable Step into properties" description="Disable Step into properties" category="_e7yv24Y5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70k8YY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.edit.findbar.focusFind" commandName="Find Bar Focus Find" category="_e7yv1IY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70k8oY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.project.buildAutomatically" commandName="Build Automatically" description="Toggle the workspace build automatically function" category="_e7yvxIY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70k84Y5EeapIuqOM7GcEw" elementId="org.eclipse.ui.edit.text.select.lineUp" commandName="Select Line Up" description="Extend the selection to the previous line of text" category="_e7yv0IY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70k9IY5EeapIuqOM7GcEw" elementId="org.eclipse.compare.compareWithOther" commandName="Compare With Other Resource" description="Compare resources, clipboard contents or editors" category="_e7yv2YY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70k9YY5EeapIuqOM7GcEw" elementId="com.aptana.ide.syncing.ui.commands.synchronize.files" commandName="Synchronize..." category="_e7yvz4Y5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70k9oY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.browser.openBundleResource" commandName="Open Resource in Browser" description="Opens a bundle resource in the default web browser." category="_e7yvwYY5EeapIuqOM7GcEw">
    <parameters xmi:id="_e70k94Y5EeapIuqOM7GcEw" elementId="plugin" name="Plugin"/>
    <parameters xmi:id="_e70k-IY5EeapIuqOM7GcEw" elementId="path" name="Path"/>
  </commands>

.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi  view on Meta::CPAN

  </commands>
  <commands xmi:id="_e70lBIY5EeapIuqOM7GcEw" elementId="org.eclipse.help.ui.ignoreMissingPlaceholders" commandName="Do not warn of missing documentation" description="Sets the help preferences to no longer report a warning about the current set of mi...
  <commands xmi:id="_e70lBYY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.help.tipsAndTricksAction" commandName="Tips and Tricks" description="Open the tips and tricks help page" category="_e7yv2IY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70lBoY5EeapIuqOM7GcEw" elementId="com.aptana.editor.ruby.outline.toggle_singleton" commandName="Toggle Singletons" category="_e7yv1YY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70lB4Y5EeapIuqOM7GcEw" elementId="com.aptana.git.ui.command.squash_merge_branch" commandName="Squash Merge Branch..." category="_e7yvyYY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70lCIY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.edit.copy" commandName="Copy" description="Copy the selection to the clipboard" category="_e7yv1IY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70lCYY5EeapIuqOM7GcEw" elementId="org.eclipse.debug.ui.commands.RunToLine" commandName="Run to Line" description="Resume and break when execution reaches the current line" category="_e7yvyIY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70lCoY5EeapIuqOM7GcEw" elementId="com.aptana.ide.syncing.ui.commands.synchronize" commandName="Transfer Files..." category="_e7yvz4Y5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70lC4Y5EeapIuqOM7GcEw" elementId="com.aptana.samples.ui.commands.collapseall" commandName="Collapse All" category="_e7yv04Y5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70lDIY5EeapIuqOM7GcEw" elementId="com.aptana.webserver.command.edit_server" commandName="Edit Server" category="_e7yv1YY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70lDYY5EeapIuqOM7GcEw" elementId="org.eclipse.debug.ui.commands.Restart" commandName="Restart" description="Restart a process or debug target without terminating and re-launching" category="_e7yvyIY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70lDoY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.ide.copyConfigCommand" commandName="Copy Configuration Data To Clipboard" description="Copies the configuration data (system properties, installed bundles, etc) to the clipboard."...
  <commands xmi:id="_e70lD4Y5EeapIuqOM7GcEw" elementId="com.aptana.git.ui.command.push_to_remote" commandName="Push to Remote..." category="_e7yvyYY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70lEIY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.part.previousPage" commandName="Previous Page" description="Switch to the previous page" category="_e7yv3YY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70lEYY5EeapIuqOM7GcEw" elementId="com.aptana.ide.syncing.ui.commands.uncloak" commandName="Uncloak this file type" category="_e7yvz4Y5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e70lEoY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.navigate.openResource" commandName="Open Resource" description="Open an editor on a particular resource" category="_e7yv3YY5EeapIuqOM7GcEw">
    <parameters xmi:id="_e70lE4Y5EeapIuqOM7GcEw" elementId="filePath" name="File Path" typeId="org.eclipse.ui.ide.resourcePath"/>

.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi  view on Meta::CPAN

  <commands xmi:id="_e71MK4Y5EeapIuqOM7GcEw" elementId="org.eclipse.ui.edit.text.select.wordPrevious" commandName="Select Previous Word" description="Select the previous word" category="_e7yv0IY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e71MLIY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.edit.findbar.focusReplace" commandName="Find Bar Focus Replace" category="_e7yv1IY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e71MLYY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.ToggleCoolbarAction" commandName="Toggle Toolbar Visibility" description="Toggles the visibility of the window toolbar" category="_e7yvwYY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e71MLoY5EeapIuqOM7GcEw" elementId="org.python.pydev.debug.ui.actions.runEditorAsCustomUnitTestAction" commandName="Run custom tests" description="Run custom tests from editor." category="_e7yv3oY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e71ML4Y5EeapIuqOM7GcEw" elementId="org.eclipse.ui.project.openProject" commandName="Open Project" description="Open a project" category="_e7yvxIY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e71MMIY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.edit.cut" commandName="Cut" description="Cut the selection to the clipboard" category="_e7yv1IY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e71MMYY5EeapIuqOM7GcEw" elementId="com.aptana.samples.ui.commands.help" commandName="View Help..." category="_e7yv04Y5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e71MMoY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.edit.text.moveLineDown" commandName="Move Lines Down" description="Moves the selected lines down" category="_e7yv0IY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e71MM4Y5EeapIuqOM7GcEw" elementId="org.python.pydev.refactoring.ui.actions.RenameCommand" commandName="Rename..." description="Rename Refactoring..." category="_e7yvzIY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e71MNIY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.edit.findReplace" commandName="Find and Replace" description="Find and replace text" category="_e7yv1IY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e71MNYY5EeapIuqOM7GcEw" elementId="org.python.pydev.editor.actions.selectEnclosingScope" commandName="Select Enclosing Scope" description="Select Enclosing Scope" category="_e7yv24Y5EeapIuqOM7GcEw"/>

.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi  view on Meta::CPAN

  <commands xmi:id="_e71MXIY5EeapIuqOM7GcEw" elementId="org.python.pydev.debug.ui.actions.runEditorBasedOnNatureTypeAction" commandName="Run editor with current interpreter" description="Run the editor based on the python nature" category="_e7yv3oY5E...
  <commands xmi:id="_e71MXYY5EeapIuqOM7GcEw" elementId="com.aptana.editor.commands.ExpandLevel" commandName="Expand to Level" description="Expand to Level" category="_e7yvxYY5EeapIuqOM7GcEw">
    <parameters xmi:id="_e71MXoY5EeapIuqOM7GcEw" elementId="level" name="Level"/>
  </commands>
  <commands xmi:id="_e71MX4Y5EeapIuqOM7GcEw" elementId="org.python.pydev.editor.actions.navigation.previousMethod" commandName="Previous Method or Class" description="Navigates to the previous method or class definition" category="_e7yv24Y5EeapIuqOM7...
  <commands xmi:id="_e71MYIY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.ide.copyBuildIdCommand" commandName="Copy Build Id To Clipboard" description="Copies the build id to the clipboard." category="_e7yv1IY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e71MYYY5EeapIuqOM7GcEw" elementId="org.python.pydev.editor.actions.navigation.nextMethod" commandName="Next Method or Class" description="Navigates to the next method or class definition" category="_e7yv24Y5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e71MYoY5EeapIuqOM7GcEw" elementId="com.aptana.webserver.command.new_server" commandName="Add Server" category="_e7yv1YY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e71MY4Y5EeapIuqOM7GcEw" elementId="com.aptana.ui.ftp.command.add" commandName="Add New FTP Site..." category="_e7yv0YY5EeapIuqOM7GcEw"/>
  <commands xmi:id="_e71MZIY5EeapIuqOM7GcEw" elementId="org.eclipse.ui.dialogs.openInputDialog" commandName="Open Input Dialog" description="Open an Input Dialog" category="_e7yvzoY5EeapIuqOM7GcEw">
    <parameters xmi:id="_e71MZYY5EeapIuqOM7GcEw" elementId="title" name="Title"/>

 view all matches for this distribution


LaBrea-Tarpit

 view release on metacpan or  search on metacpan

Report/examples/localTrojans.pl  view on Meta::CPAN

2966	tcp/udp	idp-infotrieve	IDP-INFOTRIEVE
2967	tcp/udp	ssc-agent	SSC-AGENT
2968	tcp/udp	enpp	ENPP
2969	tcp/udp	essp	ESSP
2970	tcp/udp	index-net	INDEX-NET
2971	tcp/udp	netclip	NetClip clipboard daemon
2972	tcp/udp	pmsm-webrctl	PMSM Webrctl
2973	tcp/udp	svnetworks	SV Networks
2974	tcp/udp	signal	Signal
2975	tcp/udp	fjmpcm	Fujitsu Configuration Management Service
2976	tcp/udp	cns-srv-port	CNS Server Port

 view all matches for this distribution


LaTeXML-Plugin-LtxMojo

 view release on metacpan or  search on metacpan

lib/LaTeXML/Plugin/LtxMojo/public/css/external/jquery-ui.css  view on Meta::CPAN

.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }

 view all matches for this distribution


Labyrinth-Demo

 view release on metacpan or  search on metacpan

vhost/html/js/tiny_mce/langs/en.js  view on Meta::CPAN

cancel:"Cancel",
close:"Close",
browse:"Browse",
class_name:"Class",
not_set:"-- Not set --",
clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?",
clipboard_no_support:"Currently not supported by your browser, use keyboard shortcuts instead.",
popup_blocked:"Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool.",
invalid_data:"Error: Invalid values entered, these are marked in red.",
more_colors:"More colors"
},
contextmenu:{

 view all matches for this distribution


Langertha

 view release on metacpan or  search on metacpan

share/mistral.yaml  view on Meta::CPAN

                      in peace, and above all, to look out for each other.

                      That''s what''s possible when we come together in the slow, hard, sometimes frustrating, but always vital work of self-government. But we can''t take our democracy for granted. All
                      of us, regardless of party, should throw ourselves into the work of citizenship. Not just when there is an election. Not just when our own narrow interest is at stake. But over the
                      full span of a lifetime. If you''re tired of arguing with strangers on the Internet, try to talk with one in real life. If something needs fixing, lace up your shoes and do some organizing.
                      If you''re disappointed by your elected officials, then grab a clipboard, get some signatures, and run for office yourself.

                      Our success depends on our participation, regardless of which way the pendulum of power swings. It falls on each of us to be guardians of our democracy, to embrace the joyous task
                      we''ve been given to continually try to improve this great nation of ours. Because for all our outward differences, we all share the same proud title – citizen.

                      It has been the honor of my life to serve you as President. Eight years later, I am even more optimistic about our country''s promise. And I look forward to working along your side

 view all matches for this distribution


Language-Haskell

 view release on metacpan or  search on metacpan

hugs98-Nov2003/src/winhugs/winhugs.rc  view on Meta::CPAN

    118                     "Load this file"
END

STRINGTABLE FIXED IMPURE 
BEGIN
    ID_COPY                 "Copy selected text to clipboard"
    ID_PASTE                "Paste text from clipboard"
    ID_GOEDIT               "Run text editor"
    ID_CUT                  "Cut selected text"
    ID_CLEAR                "Clear selected text"
    ID_FIND                 "Find definition of selected name"
    ID_GOPREVIOUS           "Edit previous input line"

 view all matches for this distribution


Lemonldap-NG-Manager

 view release on metacpan or  search on metacpan

site/htdocs/static/bwr/font-awesome/css/font-awesome.css  view on Meta::CPAN

}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}

 view all matches for this distribution


Lemonldap-NG-Portal

 view release on metacpan or  search on metacpan

site/htdocs/static/bwr/font-awesome/css/font-awesome.css  view on Meta::CPAN

}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}

 view all matches for this distribution


LibUI

 view release on metacpan or  search on metacpan

eg/calculator.pl  view on Meta::CPAN

}
#
uiMenuItemOnClicked(
    $mi_copy,
    sub {
        # Copy result to clipboard would go here
        uiMsgBox( $main_win, 'Copy', 'Result: ' . $display_text );
    },
    undef
);
uiMenuItemOnClicked( $mi_clear, sub { handle_clear() }, undef );

 view all matches for this distribution



Lingua-EN-Segment

 view release on metacpan or  search on metacpan

share/count_1w.txt  view on Meta::CPAN

ezine	3149621
protectors	3148657
reactive	3147821
interiors	3146686
encouragement	3146451
clipboard	3146336
disadvantages	3146043
gamer	3144985
alexa	3144869
abbott	3143893
tailor	3143833

share/count_1w.txt  view on Meta::CPAN

beefed	154769
multicolore	154767
grecia	154757
speculates	154755
opyright	154747
clipboards	154745
ngl	154743
hubzone	154743
pervers	154736
stringy	154732
foa	154731

 view all matches for this distribution


Lingua-EN-Tagger

 view release on metacpan or  search on metacpan

Tagger/words.yml  view on Meta::CPAN

clinkers: { nns: 1 }
Clint: { nnp: 1 }
Clinton: { nnp: 10 }
Clintonville: { nnp: 1 }
clip: { vb: 1, nn: 1 }
clipboard-sized: { jj: 1 }
clipboard: { nn: 2 }
clipped: { vbn: 1, vbd: 1 }
clippings: { nns: 2 }
clips: { nns: 4 }
Clive: { nnp: 1 }
cloak: { vbp: 1, nn: 1 }

 view all matches for this distribution


Lingua-EO-Orthography

 view release on metacpan or  search on metacpan

examples/clipboard.pl  view on Meta::CPAN

# main routine
# ****************************************************************

sub main {
    my $converter = Lingua::EO::Orthography->new;
    my $clipboard = Win32::Clipboard->new;
    my $utf8      = find_encoding('utf8');

    die 'cliped data is not text'
        unless $clipboard->IsText;
    my $text = $clipboard->GetText;

    die 'GAAAAAAAAA, Win32::Clipboard::Set() does not accept UTF-8 string!!';

    $clipboard->Empty;
    $clipboard->Set( $converter->convert( $utf8->encode($text) ) );

    return;
}

main();

examples/clipboard.pl  view on Meta::CPAN


=pod

=head1 NAME

clipboard.pl - An example of converting string in clipboard of Win32

=head1 DESCRIPTION

This is an example of converting string in clipboard of Win32.

=head1 AUTHOR

=over 4

 view all matches for this distribution


Locale-Codes

 view release on metacpan or  search on metacpan

internal/harvest_data  view on Meta::CPAN

   'Show 100 entries'

Select any part of the table (it is not necessary to select the entire table).
Then right click and launch the table caputure workshop.  Click on the
'Edit table data before exporting' icon.  Click on the 'Delete header row'
button.  Then click on the 'Copy table to clipboard' icon and paste it into
the file.

Select any part of the table (it is not necessary to select the entire
table).  Then right click and launch the table caputure workshop.
Click on the 'Copy table to clipboard' icon and paste it into the
file.  Remove the headers (which contain '2-Char Code'), one per set of
rows copied.

*NOTE* This currently is required:
If there are more entries than will fit on a single table, repeat this

internal/harvest_data  view on Meta::CPAN

   'Officially assigned codes'
   300 results per page

Select any part of the table (it is not necessary to select the entire
table).  Then right click and launch the table caputure workshop.
Click on the 'Copy table to clipboard' icon and paste it into the
file.

If there are more entries than will fit on a single table, repeat this
process but make sure you remove extra header lines.
};

 view all matches for this distribution


Locale-Memories

 view release on metacpan or  search on metacpan

t/locale-memories.t  view on Meta::CPAN

for my $m (@m) {
    my ($msg_id, $msg_str) = split /\t/, $m;
    $lm->index_msg($locale, $msg_id, $msg_str);
}

for my $m ('edit', 'copy', 'ok', 'copy clipboard') {
    my $translated_msg = $lm->translate_msg($locale, $m);
    ok($translated_msg);
}

__END__

 view all matches for this distribution


MOP4Import-Declare

 view release on metacpan or  search on metacpan

intro_runnable_module.pod  view on Meta::CPAN

=over 4

=item * When this script is executed directly, run C<Tk::MainLoop()>
so that correctly start GUI drawing and event loop.

=item * Otherwise (i.e. C<eval()>ed from clipboard and/or C<do "script">) do nothing.

=back

=head2 Let's write F<MyScript.pm> instead of F<myscript.pl>

 view all matches for this distribution


Mac-Apps-MacPGP

 view release on metacpan or  search on metacpan

lib/Mac/Apps/MacPGP.pm  view on Meta::CPAN


One of "encr" (encrypt files), "ncrd" (encrypt data), or "cncr" (conventional encryption).

=item DOBJ

For C<$TYPE="encr"> or C<"cncr">, C<$DOBJ> is either a filename or a reference to an array of filenames.  For C<$TYPE="ncrd">, C<$DOBJ> is the data to be encrypted.  If C<$DOBJ> is empty, MacPGP will attempt to encrypt the clipboard instead.

=item RECV

Either the name of a recipient or a reference to an array of recipients.  (encr and ncrd only)

lib/Mac/Apps/MacPGP.pm  view on Meta::CPAN


One of "decr" (decrypt files), "dcrd" (decrypt data).

=item DOBJ

For C<$TYPE="decr">, C<$DOBJ> is either a filename or a reference to an array of filenames.  For C<$TYPE="dcrd">, C<$DOBJ> is the data to be decrypted.  If C<$DOBJ> is empty, MacPGP will attempt to decrypt the clipboard instead.  To get signatures fr...

=item PASS

The password.  Optional.

lib/Mac/Apps/MacPGP.pm  view on Meta::CPAN


One of "sign" (sign files), "sigd" (sign data).

=item DOBJ

For C<$TYPE="sign">, C<$DOBJ> is either a filename or a reference to an array of filenames.  For C<$TYPE="sigd">, C<$DOBJ> is the data to be signed.  If C<$DOBJ> is empty, MacPGP will attempt to sign the clipboard instead.

=item PASS

The password.  Optional.

 view all matches for this distribution


Mac-KeyboardMaestro

 view release on metacpan or  search on metacpan

t/03macro.t  view on Meta::CPAN


my $varname = "mackeyboardmaestrotestsuite";
km_set $varname => "6*7";

# this triggers a macro on my system that
#  1) takes the mackeyboardmaestrotestsuite var and puts it in the clipboard
#  2) filters the clipboard with the "Calculate" filter
#  3) puts the clipboard back in the mackeyboardmaestrotestsuite var
km_macro "Mac::KeyboardMaestro test";

# the var should now be 42!
is km_get $varname, 42, "The answer to life the universe and everything!";

 view all matches for this distribution


Mac-Pasteboard

 view release on metacpan or  search on metacpan

lib/Mac/Pasteboard.pm  view on Meta::CPAN

1;
__END__

=head1 NAME

Mac::Pasteboard - Manipulate Mac OS X clipboards/pasteboards.

=head1 SYNOPSIS

To acquire text from the system clipboard, replacing it with your own:

  use Mac::Pasteboard;
  my $old_text = pbpaste();
  pbcopy ("Hello, sailor!\n");

lib/Mac/Pasteboard.pm  view on Meta::CPAN

warranted.

=head1 DESCRIPTION

This XS module accesses Mac OS X pasteboards, which can be thought of as
clipboards with bells and whistles. Under Mac OS X, the system clipboard
is simply a special case of a pasteboard. In the following
documentation, 'clipboard' refers to the system clipboard, and
'pasteboard' refers to pasteboards in general.

This module uses the Pasteboard interface, which was introduced in Mac
OS 10.3 (a.k.a. 'Panther'), so it requires Mac OS 10.3 or better to run.

The simple case of placing plain text onto and reading it from the
system clipboard is accomplished by subroutines pbcopy() and pbpaste()
respectively. These correspond roughly to the command-line executables
of the same name, and are exported by default. If this is all you are
interested in, you can stop reading here. The rest of this section
describes the bells and whistles associated with a Mac OS X pasteboard.

A Mac OS X pasteboard contains zero or more data items, each of which is
capable of holding one or more flavors of data. The system defines a
couple pasteboards, including the system clipboard, named
'com.apple.pasteboard.clipboard'. The system clipboard is the default
taken if new() is called without arguments.

Data items are identified by an item id which is provided by the creator
of the item, and which (the documentation says) should only be
interpreted by the creator. Item flavors may be duplicated between items

lib/Mac/Pasteboard.pm  view on Meta::CPAN


 $pb = Mac::Pasteboard->new( $name )

This method creates a new pasteboard object, connected to the pasteboard
of the given name, creating the pasteboard if necessary. If called with
no argument, you get the system clipboard, a.k.a.
L</kPasteboardClipboard>, a.k.a.  C<'com.apple.pasteboard.clipboard'>.
Passing undef to new() is B<not> equivalent to calling it with no
arguments at all, since undef is the encoding for
L</kPasteboardUniqueName>.

If running with taint checking enabled, a tainted pasteboard name will

lib/Mac/Pasteboard.pm  view on Meta::CPAN


=head2 pbcopy

 pbcopy( $data, $flavor, $flags )

This convenience subroutine (B<not> method) clears the system clipboard
and then copies the given data to it. All three arguments are optional
(the prototype being C<(;$$$)>. If C<$data> is undef, the value of C<$_>
is used.  If C<$flavor> is C<undef>, the L<default
flavor|/defaultFlavor> is used. If C<$flags> is C<undef>,
L<kPasteboardFlavorNoFlags|/kPasteboardFlavorNoFlags> is used.

lib/Mac/Pasteboard.pm  view on Meta::CPAN

=head2 pbpaste

 ( $data, $flags ) = pbpaste( $flavor )

This convenience subroutine (B<not> method) retrieves the given flavor
of data from the system clipboard, and its associated flavor flags. The
flavor is optional, the default being the
L<default flavor|/defaultFlavor>. If the given flavor is not found
C<undef> is returned for C<$data>.

The functionality is equivalent to calling C<paste()> on an object whose

lib/Mac/Pasteboard.pm  view on Meta::CPAN


 my $pb1 = Mac::Pasteboard->new();
 my $pb2 = Mac::Pasteboard->new(
     $pb1->get('name'));

gives two handles to the same clipboard.

=head2 requested_name

This read-only string attribute reports the name passed to C<new()>.

lib/Mac/Pasteboard.pm  view on Meta::CPAN

source for pbpaste online, so I am unable to verify what's going on.

=head3 kPasteboardFlavorSenderTranslated

This pasteboard flavor flag indicates that the flavor's data has been
translated in some way by the process that placed it on the clipboard,
and it will not be saved by the Finder in clipping files.

=head3 kPasteboardFlavorSystemTranslated

This pasteboard flavor flag indicates that the flavor's data must be

lib/Mac/Pasteboard.pm  view on Meta::CPAN

C<'public.utf8-plain-text'>, depending on what version of macOS you are
running and how this module was installed.

=head3 kPasteboardClipboard

This constant represents the name of the system clipboard,
C<'com.apple.pasteboard.clipboard'>.

=head3 kPasteboardFind

This constant represents the name of the find pasteboard,
C<'com.apple.pasteboard.find'>.

lib/Mac/Pasteboard.pm  view on Meta::CPAN

L<https://github.com/trwyant/perl-Mac-Pasteboard/issues/> or in
electronic mail to the author.

=head1 SEE ALSO

The B<Clipboard> module by Ryan King will access text on the clipboard
under most operating systems. Under macOS. recent versions use this
module; older ones shell out to the I<pbpaste> and I<pbcopy> executables.

The I<pbpaste> and I<pbcopy> executables themselves are available, and
described by their respective man pages.

 view all matches for this distribution


Maplat

 view release on metacpan or  search on metacpan

lib/Maplat/Web/Static/jquery/css/blackvelvet/jquery-ui-1.8.6.custom.css  view on Meta::CPAN

.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }

 view all matches for this distribution


Markdown-Pod

 view release on metacpan or  search on metacpan

t/mkd/2011-12-07.mkd  view on Meta::CPAN

필요한 모듈은 다음과 같습니다.

- [CPAN의 Win32::GUI 모듈][cpan-win32-gui]
- [CPAN의 Win32::GuiTest 모듈][cpan-win32-guitest]
- [CPAN의 Win32::HideConsole 모듈][cpan-win32-hideconsole]
- [CPAN의 Win32::Clipboard 모듈][cpan-win32-clipboard]
- [CPAN의 DateTime 모듈][cpan-datetime]
- [CPAN의 File::Slurp 모듈][cpan-file-slurp]

[딸기펄][strawberry-perl]을 사용한다면 콘솔에서 `cpan` 명령을 이용해서 설치합니다.
[딸기펄 5.14][strawberry-perl-514] 버전에서 필요한 모든 모듈이 정상적으로

t/mkd/2011-12-07.mkd  view on Meta::CPAN


클립보드 이미지를 파일로 저장
------------------------------

이제 클립보드로 들어간 이미지를 저장해야겠죠?
[CPAN의 Win32::Clipboard 모듈][cpan-win32-clipboard]을 사용하면
간편하게 클립보드 이미지를 불러올 수 있습니다.
불러오고 싶다면 다음처럼 단 두 줄만 작성하면 됩니다.

    #!perl
    use Win32::Clipboard;

t/mkd/2011-12-07.mkd  view on Meta::CPAN

[cpan-gd]:                  https://metacpan.org/module/GD
[cpan-image-magick]:        https://metacpan.org/module/Image::Magick
[cpan-imager]:              https://metacpan.org/module/Imager
[cpan-par-packer]:          https://metacpan.org/module/Par::Packer
[cpan-win32-api]:           https://metacpan.org/module/Win32::API
[cpan-win32-clipboard]:     https://metacpan.org/module/Win32::Clipboard
[cpan-win32-console]:       https://metacpan.org/module/Win32::Console
[cpan-datetime]:            https://metacpan.org/module/DateTime
[cpan-file-slurp]:          https://metacpan.org/module/File::Slurp
[cpan-win32-gui-dibitmap]:  https://metacpan.org/module/Win32::GUI::DIBitmap
[cpan-win32-gui]:           https://metacpan.org/module/Win32::GUI

 view all matches for this distribution


Marky

 view release on metacpan or  search on metacpan

public/css/fa/css/font-awesome-min.css  view on Meta::CPAN

/*!
 *  Font Awesome 4.5.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.5.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'),url('...

 view all matches for this distribution


Math-Pari

 view release on metacpan or  search on metacpan

patches/diff_add_gnuplotAdd  view on Meta::CPAN

+#ifdef USE_MOUSE
+    int (*waitforinput) __PROTO((void));     /* used for mouse input */
+    void (*put_tmptext) __PROTO((int, const char []));   /* draws temporary text; int determines where: 0=statusline, 1,2: at corners of zoom box, with \r separating text above and below the point */
+    void (*set_ruler) __PROTO((int, int));    /* set ruler location; x<0 switches ruler off */
+    void (*set_cursor) __PROTO((int, int, int));   /* set cursor style and corner of rubber band */
+    void (*set_clipboard) __PROTO((const char[]));  /* write text into cut&paste buffer (clipboard) */
+#endif
+#ifdef PM3D
+    int (*make_palette) __PROTO((t_sm_palette *palette));
+    /* 1. if palette==NULL, then return nice/suitable
+       maximal number of colours supported by this terminal.

 view all matches for this distribution


Minion

 view release on metacpan or  search on metacpan

lib/Mojolicious/Plugin/Minion/resources/public/minion/fontawesome/fontawesome.css  view on Meta::CPAN

/*!
 * Font Awesome Free 5.13.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align...

 view all matches for this distribution


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