Result:
found more than 790 distributions - search limited to the first 2001 files matching your query ( run in 0.708 )


Games-Axmud

 view release on metacpan or  search on metacpan

lib/Games/Axmud/Client.pm  view on Meta::CPAN

            _privFlag                   => TRUE,        # All IVs are private

            # Perl object components
            # ----------------------

            # The main desktop object (GA::Obj::Desktop), which arranges windows on the desktop
            #   across one or more workspaces
            desktopObj                  => undef,

            # An IV which stores a 'main' window. First set when Axmud starts, and a spare 'main'
            #   window, not belonging to any session, opens before the Connections window opens
            # Briefly set back to 'undef' when the spare 'main' window is destroyed, just before a
            #   new 'main' window for a new session is created to replace it

lib/Games/Axmud/Client.pm  view on Meta::CPAN

                'custom'                => undef,
                'default'               => undef,
                'defn'                  => undef,
                'definition'            => undef,
                'delete'                => undef,
                'desktop'               => undef,
                'dict'                  => undef,
                'dictionary'            => undef,
                'dicts'                 => undef,
                'edit'                  => undef,
                'exit'                  => undef,

lib/Games/Axmud/Client.pm  view on Meta::CPAN

            # Display variables
            # Axmud makes use of a number of windows, both those it creates and 'external' windows
            #   it doesn't create
            # 'grid' windows are permanent (or semi-permanent). Axmud tries to arrange these windows
            #   so they don't overlap or, if there isn't enough room on the workspace, to make them
            #   overlap in sensible ways. Axmud tries to take account of the different desktop
            #   environments in getting the positioning of its windows right. 'grid' windows can
            #   include 'external' windows, such as media players, so that they don't overlap
            #   Axmud's own windows (if required)
            # 'free' windows are temporary, and are displayed in the middle of the workspace without
            #   regard for the positioning of any 'grid' windows

lib/Games/Axmud/Client.pm  view on Meta::CPAN

            # Instead, this IV is set to 'on' or 'off'. When Axmud next starts, if this IV is not
            #   set to 'default', ->shareMainWinFlag is set to TRUE (for 'on') or FALSE (for 'off');
            #   ->restartShareMainWinMode is then set back to 'default'
            restartShareMainWinMode     => 'default',       # [config]
            # Workspace grids can be available, or not. GA::Obj::Desktop->gridPermitFlag is set to
            #   FALSE if workspace grids are not available at all (because the desktop is too small,
            #   because Axmud is running on MS Windows or running in blind mode, etc)
            # Independent of that flag is this one, which the user can set with
            #   ';activategrid' and ';disactivategrid'. When Axmud starts, it tries to create
            #   workspace grids if this flag and GA::Obj::Desktop->gridPermitFlag are both TRUE
            activateGridFlag            => TRUE,            # [config]

lib/Games/Axmud/Client.pm  view on Meta::CPAN


        my ($self, $check) = @_;

        # Local variables
        my (
            $warningFlag, $roomObj, $exitObj, $desktopObj, $host, $engine, $port, $world, $profObj,
            $taskObj, $offlineFlag,
            @list,
        );

        # Check for improper arguments

lib/Games/Axmud/Client.pm  view on Meta::CPAN

                'Could not initialise toolbar button objects',
                $self->_objClass . '->start',
            );
        }

        # Create the main desktop object. Set up the default workspace, set up window icons, prepare
        #   rc-file styles for each kind of window, create the first 'main' window
        $desktopObj = Games::Axmud::Obj::Desktop->new();
        if (! $desktopObj) {

            return $self->writeError(
                'Could not set up the desktop',
                $self->_objClass . '->start',
            );

        } else {

            $self->ivPoke('desktopObj', $desktopObj);
            if (! $desktopObj->start()) {

                return $self->writeError(
                    'Could not set up the desktop',
                    $self->_objClass . '->start',
                );

            } else {

                # Loading of data files and plugins could take some seconds; make the whole 'main'
                #   window visible in the meantime
                $desktopObj->updateWidgets($self->_objClass . '->start');
            }
        }

        # Perform an auto-backup of Axmud's data directory, if required
        if (

lib/Games/Axmud/Client.pm  view on Meta::CPAN

            #   user to do an emergency save')
            $self->disableAllFileAccess(TRUE);
        }

        # Add remaining workspaces, if any are specified
        $desktopObj->setupWorkspaces();

        # Set up client commands
        if (! $self->setupCmds()) {

            # (Allow writing to something other than GA::Session - there are no sessions yet)

lib/Games/Axmud/Client.pm  view on Meta::CPAN


                # Open the setup window. When it closes, it will open the Connections window for us
                $self->mainWin->quickFreeWin('Games::Axmud::WizWin::Setup');

                # Disable most main window toolbar/menu items, while the window is open
                $self->desktopObj->restrictWidgets();

                # Don't show the setup window twice
                $self->set_showSetupWizWinFlag(FALSE);

                return 1;

lib/Games/Axmud/Client.pm  view on Meta::CPAN

            );
        }

        # Close any remaining 'internal' windows, restore 'external' windows to their original size/
        #   position, close any remaining 'free' windows
        if (! $self->desktopObj->stop()) {

            return $self->writeError(
                'Could not stop the desktop object',
                $self->_objClass . '->stop',
            );
        }

        # Delete everything in the temporary directories

lib/Games/Axmud/Client.pm  view on Meta::CPAN

        if (! defined $zonemap || defined $check) {

            return $axmud::CLIENT->writeImproper($self->_objClass . '->checkCurrentZonemap', @_);
        }

        foreach my $workspaceGridObj ($self->desktopObj->ivValues('gridHash')) {

            if ($workspaceGridObj->zonemap && $workspaceGridObj->zonemap eq $zonemap) {

                return 1;
            }

lib/Games/Axmud/Client.pm  view on Meta::CPAN

        if (defined $check) {

            return $axmud::CLIENT->writeImproper($self->_objClass . '->connectBlind', @_);
        }

        # Make sure the test window for finding desktop panels has been removed
        $self->desktopObj->updateWidgets($self->_objClass . '->connectBlind');

        # Get a list of worlds, favourite worlds first, then all visited worlds sorted by number
        #   of visits, finally unvisited worlds sorted alphabetically
        # (Code borrowed from GA::OtherWin::Connect->resetTreeView)
        $newWorldString = 'Create new world';

lib/Games/Axmud/Client.pm  view on Meta::CPAN


            $session->updateBlinkers();
        }

        # Update 'internal' windows
        foreach my $winObj ($self->desktopObj->listGridWins()) {

            my (
                $stripObj,
                %hash,
            );

lib/Games/Axmud/Client.pm  view on Meta::CPAN

                }
            }
        }

        # Get a list of textview buffers which might contain blinking text
        foreach my $textViewObj ($self->desktopObj->ivValues('textViewHash')) {

            push (@bufferList, $textViewObj->buffer);
        }

        # Update the buffers' text tags (if it's time to do so), making the text appear or disappear

lib/Games/Axmud/Client.pm  view on Meta::CPAN


            return $axmud::CLIENT->writeImproper($self->_objClass . '->checkMainWinTitles', @_);
        }

        # Get an ordered list of all 'main' windows
        @winObjList = $self->desktopObj->listGridWins('main');

        # Check file objects for the client
        if ($self->showModFlag) {

            # 'main' window titles contain an asterisk, meaning that some files need to be saved. If

lib/Games/Axmud/Client.pm  view on Meta::CPAN


                $paneObj = $self->ivShow('paneRestoreHash', $time);
                # Check the pane object and its window still exist (just in case)
                if (
                    $paneObj->winObj
                    && $self->desktopObj->ivExists('gridWinHash', $paneObj->winObj->number)
                ) {
                    # Restore this pane object's border size immediately
                    $paneObj->set_borderWidth(FALSE);
                    $self->ivDelete('paneRestoreHash', $time);
                }

lib/Games/Axmud/Client.pm  view on Meta::CPAN

                $self->ivPush('clientCmdPrettyList', @$listRef);
            }
        }

        # Sensitise/desensitise menu bar/toolbar items, depending on current conditions
        $self->desktopObj->restrictWidgets();

        # Operation complete
        return 1;
    }

lib/Games/Axmud/Client.pm  view on Meta::CPAN

            }
        }

        # Close any 'free' windows added by the plugin
        foreach my $winObj
            (sort {$a->number <=> $b->number} ($self->desktopObj->ivValues('freeWinHash')))
        {
            my $thisPlugin = $self->ivShow('pluginFreeWinHash', $winObj->_objClass);
            if (defined $thisPlugin && $thisPlugin eq $plugin) {

                # Close the window

lib/Games/Axmud/Client.pm  view on Meta::CPAN

            }
        }

        # Close any 'grid' windows added by the plugin
        foreach my $winObj
            (sort {$a->number <=> $b->number} ($self->desktopObj->ivValues('freeWinHash')))
        {
            my $thisPlugin = $self->ivShow('pluginGridWinHash', $winObj->_objClass);
            if (defined $thisPlugin && $thisPlugin eq $plugin) {

                # For 'main' windows, terminate any session using the window

lib/Games/Axmud/Client.pm  view on Meta::CPAN

                }
            }
        }

        # Sensitise/desensitise menu bar/toolbar items, depending on current conditions
        $self->desktopObj->restrictWidgets();

        # Operation complete
        return 1;
    }

lib/Games/Axmud/Client.pm  view on Meta::CPAN

        }

        # Any 'internal' windows which already exist and which have a menu strip object should add a
        #   sub-menu for this plugin now; any new 'internal' windows created from now will
        #   automatically call the referenced function to add their own sub-menus
        foreach my $winObj ($self->desktopObj->ivValues('gridWinHash')) {

            my ($stripObj, $subMenu);

            if (
                $winObj->winType eq 'main'

lib/Games/Axmud/Client.pm  view on Meta::CPAN


            $session->set_instructBufferPosn();
            $session->set_cmdBufferPosn();
        }

        foreach my $winObj ($self->desktopObj->ivValues('gridWinHash')) {

            $winObj->resetEntry();
        }

        # The data stored in this IV is saved in the 'config' file

lib/Games/Axmud/Client.pm  view on Meta::CPAN


            $session->set_instructBufferPosn();
            $session->set_cmdBufferPosn();
        }

        foreach my $winObj ($self->desktopObj->ivValues('gridWinHash')) {

            $winObj->resetEntry();
        }

        # The data stored in this IV is saved in the 'config' file

lib/Games/Axmud/Client.pm  view on Meta::CPAN


            $session->set_instructBufferPosn();
            $session->set_cmdBufferPosn();
        }

        foreach my $winObj ($self->desktopObj->ivValues('gridWinHash')) {

            $winObj->resetEntry();
        }

        # The data stored in this IV is saved in the 'config' file

lib/Games/Axmud/Client.pm  view on Meta::CPAN

        }

        # An entry is added/replaced in $self->storeGridPosnHash for any 'grid' window, but if there
        #   are several windows with the same ->winName open, only the one which was opened first is
        #   used
        foreach my $otherWinObj ($self->desktopObj->ivValues('gridWinHash')) {

            if (
                $otherWinObj ne $winObj
                && $otherWinObj->winName eq $winObj->winName
                && $otherWinObj->number < $winObj->number

lib/Games/Axmud/Client.pm  view on Meta::CPAN

    }

    ##################
    # Accessors - get

    sub desktopObj
        { $_[0]->{desktopObj} }

    sub mainWin
        { $_[0]->{mainWin} }

    sub aboutWin

 view all matches for this distribution


Games-Cryptoquote

 view release on metacpan or  search on metacpan

t/patterns.txt  view on Meta::CPAN

1|2|3|4|5|6|6|8|9|7|11|12:unclassified|
1|2|3|4|5|6|6|8|9|7|2|12:reclassified|
1|2|3|4|5|6|6|8|9|7|2|6:reclassifies|
1|2|3|4|5|6|6|8|9|7|3|5|13|7|15|16:reclassification|
1|2|3|4|5|6|6|8|9|8|11|9|1:subcommittees|
1|2|3|4|5|6|7:Abelian|Abelson|Abidjan|Actaeon|Adamson|Afghans|African|Alberta|Alberto|Alcmena|Aldrich|Alfredo|Algenib|Algeria|Algiers|Almaden|Alvarez|Amadeus|Amazons|America|Amharic|Amherst|Anaheim|Anatole|Andover|Andrews|Anselmo|Antaeus|Antares|Anti...
1|2|3|4|5|6|7|1:absentia|anorexia|antisera|asphyxia|carbolic|carbonic|cosmetic|disabled|disarmed|dismayed|disowned|disputed|divorced|divulged|dockyard|drumhead|earphone|educable|emigrate|envisage|epilogue|equalize|exchange|exposure|gambling|gleaming|...
1|2|3|4|5|6|7|1|1:saltiness|shadiness|shakiness|sharpness|shortness|slackness|smartness|solidness|stainless|sulkiness|surliness|swiftness|
1|2|3|4|5|6|7|1|1|10|11:transmitted|
1|2|3|4|5|6|7|1|1|10|2:transmitter|
1|2|3|4|5|6|7|1|1|10|2|5:transmitters|

 view all matches for this distribution


Games-Dukedom

 view release on metacpan or  search on metacpan

MANIFEST.SKIP  view on Meta::CPAN


# avoid OS X finder files
\.DS_Store$

# ditto for Windows
\bdesktop\.ini$
\b[Tt]humbs\.db$

# Avoid patch remnants
\.orig$
\.rej$

 view all matches for this distribution


Games-Word-Wordlist-Enable

 view release on metacpan or  search on metacpan

lib/Games/Word/Wordlist/Enable.pm  view on Meta::CPAN

designer designers designing designment designments designs desilver
desilvered desilvering desilvers desinent desipramine desipramines
desirabilities desirability desirable desirableness desirablenesses desirables
desirably desire desired desirer desirers desires desiring desirous desirously
desirousness desirousnesses desist desistance desistances desisted desisting
desists desk deskbound deskman deskmen desks desktop desktops desman desmans
desmid desmids desmoid desmoids desmosomal desmosome desmosomes desolate
desolated desolately desolateness desolatenesses desolater desolaters
desolates desolating desolatingly desolation desolations desolator desolators
desorb desorbed desorbing desorbs desorption desorptions desoxy despair
despaired despairer despairers despairing despairingly despairs despatch

 view all matches for this distribution


GappX-NoticeBox

 view release on metacpan or  search on metacpan

lib/GappX/NoticeBox.pm  view on Meta::CPAN


  );
  
=head1 DECRIPTION

Displays a message to the user in the notification area of the desktop.

=head1 OBJECT HIERARCHY

=over 4

 view all matches for this distribution


GeNUScreen-Config

 view release on metacpan or  search on metacpan

t/data/config.hdf  view on Meta::CPAN

        }
      }
      desc = RADIUS authentication, accounting
    }
    40 {
      name = RDP (remote desktop)
      subtype = tcp
      subtype {
        tcp {
          dport {
            0 = 3389

t/data/config.hdf  view on Meta::CPAN

          dport {
            0 = 5900
          }
        }
      }
      desc = VNC remote desktop
    }
  }
  interfaces {
    0 {
      name = vr0

 view all matches for this distribution


Genealogy-Obituary-Lookup

 view release on metacpan or  search on metacpan

bin/ml_from_cache  view on Meta::CPAN

#!/usr/bin/env perl

# There's a problem with
#	https://mlarchives.rootsweb.com/listindexes/emails?listname=gen-obit
#	on my desktop it gives protocol errors
#	on my phone it redirects to ancestry.com
# So this file looks through the LWP::UserAgent::WithCache cache and retrieves the files
#	ready to import using create_db.PL
# Once you've done this, set MLARCHIVEDIR in your environment and run "make"

 view all matches for this distribution


Genealogy-ObituaryDailyTimes

 view release on metacpan or  search on metacpan

bin/ml_from_cache  view on Meta::CPAN

#!/usr/bin/env perl

# There's a problem with
#	https://mlarchives.rootsweb.com/listindexes/emails?listname=gen-obit
#	on my desktop it gives protocol errors
#	on my phone it redirects to ancestry.com
# So this file looks through the LWP::UserAgent::WithCache cache and retrieves the files
#	ready to import using create_db.PL
# Once you've done this, set MLARCHIVEDIR in your environment and run "make"

 view all matches for this distribution


Gentoo-Probe

 view release on metacpan or  search on metacpan

t/sandbox/usr/portage/net-wireless/bluez-utils/bluez-utils-2.3-r2.ebuild  view on Meta::CPAN

	einfo "A startup script has been installed in /etc/init.d/bluetooth."
	einfo "RFComm devices are found in /dev/bluetooh/rfcomm/* instead of /dev/rfcomm*"
	einfo "If you need to set a default PIN, edit /etc/bluetooth/pin, and change"
	einfo "/etc/bluetooth/hcid.conf option 'pin_helper' to /etc/bluetooth/pin."
	if use gtk; then
		einfo "By default, /usr/bin/bluepin will be launched on the desktop display"
		einfo "for pin number input."
	fi
	einfo ""
}

 view all matches for this distribution


Geo-Coder-List

 view release on metacpan or  search on metacpan

t/ovi.t  view on Meta::CPAN

		delta_within($location->{geometry}{location}{lat}, 38.99, 1e-1);
		delta_within($location->{geometry}{location}{lng}, -77.02, 1e-1);
		sleep(1);	# Don't get blacklisted

		my $ua = LWP::UserAgent::Throttled->new();
		$ua->throttle({ 'where.desktop.mos.svc.ovi.com' => 1 });
		$ua->env_proxy(1);
		$geocoderlist->ua($ua);

		$location = $geocoderlist->geocode('10 Downing St, London, UK');
		ok(defined($location));

 view all matches for this distribution


Geo-Coder-Ovi

 view release on metacpan or  search on metacpan

lib/Geo/Coder/Ovi.pm  view on Meta::CPAN


    if (my $language = delete $params{language}) {
        $params{la} = $language;
    }

    my $uri = URI->new('http://where.desktop.mos.svc.ovi.com/NOSe/json');
    $uri->query_form(
        app_id => $self->{appid},
        token  => $self->{token},
        q      => $location,
        vi     => 'where',

 view all matches for this distribution


Gimp

 view release on metacpan or  search on metacpan

examples/feedback  view on Meta::CPAN


<Image>/Filters/Noise/Feedback...

=head1 DESCRIPTION

This plug-in simulates video feedback. It makes for kinda a neat desktop
if you're into that sort of thing.

=head1 PARAMETERS

  [PF_SLIDER, "offset", "Amount the frames will offset", 3, [0, 255, 1]],

 view all matches for this distribution


Git-Raw

 view release on metacpan or  search on metacpan

deps/libgit2/src/libgit2/transports/winhttp.c  view on Meta::CPAN

		if ((error = apply_credentials(s->request, &t->proxy.url, WINHTTP_AUTH_TARGET_PROXY, t->proxy.cred, t->proxy.auth_mechanisms)) < 0)
			goto on_error;
	}

	/* Disable WinHTTP redirects so we can handle them manually. Why, you ask?
	 * http://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/b2ff8879-ab9f-4218-8f09-16d25dff87ae
	 */
	if (!WinHttpSetOption(s->request,
		WINHTTP_OPTION_DISABLE_FEATURE,
		&disable_redirects,
		sizeof(disable_redirects))) {

 view all matches for this distribution


Git-XS

 view release on metacpan or  search on metacpan

xs/libgit2/include/git2/windows.h  view on Meta::CPAN

 * non-UTF codepages.
 *
 * A full list of all available codepage identifiers may
 * be found at:
 *
 * http://msdn.microsoft.com/en-us/library/windows/desktop/dd317756(v=vs.85).aspx
 *
 * @param codepage numeric codepage identifier
 */
GIT_EXTERN(void) gitwin_set_codepage(unsigned int codepage);

 view all matches for this distribution


Glib-Ex-ConnectProperties

 view release on metacpan or  search on metacpan

xtools/my-deb.sh  view on Meta::CPAN


#------------------------------------------------------------------------------
# lintian .deb and source

lintian -I -i \
  --suppress-tags new-package-should-close-itp-bug,desktop-entry-contains-encoding-key,command-in-menu-file-and-desktop-file,emacsen-common-without-dh-elpa,bugs-field-does-not-refer-to-debian-infrastructure \
  $DEBFILE

lintian -I -i \
  --suppress-tags maintainer-upload-has-incorrect-version-number,changelog-should-mention-nmu,empty-debian-diff,debian-rules-uses-deprecated-makefile,testsuite-autopkgtest-missing *.dsc

 view all matches for this distribution


Glib-Ex-ObjectBits

 view release on metacpan or  search on metacpan

xtools/my-deb.sh  view on Meta::CPAN


#------------------------------------------------------------------------------
# lintian .deb and source

lintian -I -i \
  --suppress-tags new-package-should-close-itp-bug,desktop-entry-contains-encoding-key,command-in-menu-file-and-desktop-file,emacsen-common-without-dh-elpa,bugs-field-does-not-refer-to-debian-infrastructure \
  ${DEBNAME}_${VERSION}*_$DPKG_ARCH.deb

lintian -I -i \
  --suppress-tags maintainer-upload-has-incorrect-version-number,changelog-should-mention-nmu,empty-debian-diff,debian-rules-uses-deprecated-makefile,testsuite-autopkgtest-missing *.dsc

 view all matches for this distribution


Glib

 view release on metacpan or  search on metacpan

ChangeLog.pre-git  view on Meta::CPAN

2006-06-20  Emmanuele Bassi  <ebassi@gmail.com>

	A GBookmarkFile.xs
	A t/h.t

	* GBookmarkFile.xs: Bind GBookmarkFile, a parser for desktop
	bookmarks, that comes with GLib 2.11/2.12.

	* t/h.t: Test suite for Glib::BookmarkFile.

	* GError.xs:

 view all matches for this distribution


Gnome2-VFS

 view release on metacpan or  search on metacpan

ChangeLog.pre-git  view on Meta::CPAN

	GNOME_VFS_URI_MAGIC_STR, and GNOME_VFS_URI_PATH_STR.

	* xs/GnomeVFSMime.xs, t/GnomeVFSMime: Bind
	gnome_vfs_mime_get_default_application_for_uri,
	gnome_vfs_mime_get_all_applications_for_uri,
	gnome_vfs_mime_application_new_from_desktop_id,
	gnome_vfs_mime_application_get_desktop_id,
	gnome_vfs_mime_application_get_desktop_file_path,
	gnome_vfs_mime_application_get_name,
	gnome_vfs_mime_application_get_generic_name,
	gnome_vfs_mime_application_get_icon,
	gnome_vfs_mime_application_get_exec,
	gnome_vfs_mime_application_get_binary_name,

ChangeLog.pre-git  view on Meta::CPAN

2004/08/08 15:15 (+0200) kaffeetisch

	* Makefile.PL: Depend on Glib 1.053.

	* maps-2.8, t/GnomeVFSMime, xs/GnomeVFS.xs, xs/GnomeVFSMime.xs:
	Bind and test Gnome2::VFS::Mime::Type::get_all_desktop_entries,
	::get_default_desktop_entry, ::is_equal, and
	Gnome2::VFS::get_mime_type_for_data.

2004/07/29 19:12 (+0200) kaffeetisch

	* MANIFEST, vfs2perl.c, vfs2perl.h, t/GnomeVFSAddress.t,

 view all matches for this distribution


Gnome2-Wnck

 view release on metacpan or  search on metacpan

t/WnckScreen.t  view on Meta::CPAN

  isa_ok($windows[0], "Gnome2::Wnck::Window");
}

SKIP: {
  like($screen -> get_workspace_count(), qr/^\d+$/);
  like($screen -> get_showing_desktop(), qr/^(?:1|)$/);
  # $screen -> toggle_showing_desktop(1);
}

like($screen -> get_background_pixmap(), qr/^\d+$/);
like($screen -> get_width(), qr/^\d+$/);
like($screen -> get_height(), qr/^\d+$/);

 view all matches for this distribution


Gnome2

 view release on metacpan or  search on metacpan

ChangeLog.pre-git  view on Meta::CPAN

	* gnome2perl.h
	* t/GnomeHelp
	* t/GnomeURL
	* xs/GnomeHelp.xs
	* xs/GnomeURL.xs: Implement and test
	Gnome2::Help::display_desktop_with_env and
	Gnome2::URL::show_with_env.

2003/12/02 20:40 (+0100) kaffeetisch

	* gnome.typemap: Use T_GPERL_GENERIC_WRAPPER for GnomeUIInfo's.

 view all matches for this distribution


Google-Ads-GoogleAds-Client

 view release on metacpan or  search on metacpan

examples/authentication/generate_user_credentials.pl  view on Meta::CPAN

# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# This example will create an OAuth2 refresh token for the Google Ads API.
# This works with both web and desktop app OAuth client ID types.
#
# This example will start a basic server that listens for requests at
# http://127.0.0.1:PORT, where PORT defaults to 8080 as below.
#
#

examples/authentication/generate_user_credentials.pl  view on Meta::CPAN

generate_user_credentials

=head1 DESCRIPTION

This example will create an OAuth2 refresh token for the Google Ads API for either a web
or desktop app OAuth client ID.

For web app client types, you must add B<http://127.0.0.1> to the "Authorize redirect URIs"
list in your L<Google Cloud Console project|https://console.developers.google.com/apis/credentials>
before running this example, where PORT defaults to 8080. Desktop app client types do not
require the local redirect to be explicitly configured in the Cloud console.

 view all matches for this distribution


Graph-Graph6

 view release on metacpan or  search on metacpan

xtools/my-deb.sh  view on Meta::CPAN


#------------------------------------------------------------------------------
# lintian .deb and source

lintian -I -i \
  --suppress-tags new-package-should-close-itp-bug,desktop-entry-contains-encoding-key,command-in-menu-file-and-desktop-file,emacsen-common-without-dh-elpa,bugs-field-does-not-refer-to-debian-infrastructure \
  ${DEBNAME}_${VERSION}*_$DPKG_ARCH.deb

lintian -I -i \
  --suppress-tags maintainer-upload-has-incorrect-version-number,changelog-should-mention-nmu,empty-debian-diff,debian-rules-uses-deprecated-makefile,testsuite-autopkgtest-missing *.dsc

 view all matches for this distribution


Graph-Maker-Other

 view release on metacpan or  search on metacpan

xtools/my-deb.sh  view on Meta::CPAN


#------------------------------------------------------------------------------
# lintian .deb and source

lintian -I -i \
  --suppress-tags new-package-should-close-itp-bug,desktop-entry-contains-encoding-key,command-in-menu-file-and-desktop-file,emacsen-common-without-dh-elpa,bugs-field-does-not-refer-to-debian-infrastructure \
  ${DEBNAME}_${VERSION}*_$DPKG_ARCH.deb

lintian -I -i \
  --suppress-tags maintainer-upload-has-incorrect-version-number,changelog-should-mention-nmu,empty-debian-diff,debian-rules-uses-deprecated-makefile,testsuite-autopkgtest-missing *.dsc

 view all matches for this distribution


Graphics-Asymptote

 view release on metacpan or  search on metacpan

lib/Graphics/Asymptote.pm  view on Meta::CPAN

 undef $asy;

This (complete) script simply creates and destroys the pipe.  On my machine,
the output of this looks like:

 david@davids-desktop:~$ ./asytest.pl 
 ********** To Asymptote **********
 //Quitting Asymptote
 **********************************
 
 david@davids-desktop:~$ 

The business about quitting is useful, especially if you find your interpreter
quits unexpectedly, but suppose you know when your pipe is going away and want
to remove the extra line noise.  To avoid that, set the verbosity to 0
before C<undef>ing your pipe or letting it go out of scope, like this:

 view all matches for this distribution


Graphics-ColorNames

 view release on metacpan or  search on metacpan

lib/Graphics/ColorNames/X.pm  view on Meta::CPAN


L<Graphics::ColorNames>

L<Graphics::ColorNames::CSS>

L<rgb.txt|https://cgit.freedesktop.org/xorg/app/rgb/plain/rgb.txt>

=head1 SOURCE

The development version is on github at L<https://github.com/robrwo/Graphics-ColorNames>
and may be cloned from L<git://github.com/robrwo/Graphics-ColorNames.git>

 view all matches for this distribution


Growl-Any

 view release on metacpan or  search on metacpan

lib/Growl/Any.pm  view on Meta::CPAN

  $growl->notify("event1", "title", "message", "path/to/icon");

=head1 DESCRIPTION

Growl::Any is a Perl module that provide growls using growl modules.
This can notify to desktop applications working in the local system.

=head1 INTERFACE

=head2 C<< Growl::Any->new(appname => $appname, events => $events, ...) >>

 view all matches for this distribution



Gtk2-Ex-CalendarButton

 view release on metacpan or  search on metacpan

lib/Gtk2/Ex/CalendarButton.pm  view on Meta::CPAN

}

=head1 NAME

Gtk2::Ex::CalendarButton - I realized that I was constantly re-creating a simple widget that will pop-up
and Gtk2::Calendar when clicked. Just like the datetime display on your desktop taskbar. This package is
my attempt to extract the portion of code required to create a button-click-calender.

=head1 SYNOPSIS

        my $calbutton = Gtk2::Ex::CalendarButton->new([2007,3,14]);

 view all matches for this distribution


Gtk2

 view release on metacpan or  search on metacpan

ChangeLog.pre-git  view on Meta::CPAN

	* t/GdkX11.t, xs/GdkX11.xs: Patch from Marc Lehmann adds
	gdk_x11_screen_supports_net_wm_hint and gdk_net_wm_supports.  Also
	bind gdk_x11_get_server_time, gdk_x11_grab_server,
	gdk_x11_ungrab_server, gdk_x11_get_default_screen,
	gdk_x11_register_standard_event_type,
	gdk_x11_window_move_to_current_desktop,
	gdk_x11_screen_get_screen_number,
	gdk_x11_screen_get_window_manager_name and
	gdk_x11_screen_supports_net_wm_hint while we're at it.

2005/10/13	muppetman

ChangeLog.pre-git  view on Meta::CPAN


	* t/GdkDnd.t: make the test not fail when the destination window
	doesn't exist.

	* t/GdkEvent.t: some settings don't exist if you're not running
	gnome, e.g., remote to non-gnome desktop; don't fail if the setting
	isn't there.

	* xs/GdkDnd.xs: if find_window returns no destination window, the
	protocol is garbage; don't try to convert it to a protocol enum
	value.  this is half of the fix for the bizarre test problem

 view all matches for this distribution


( run in 0.708 second using v1.01-cache-2.11-cpan-299005ec8e3 )