view release on metacpan or search on metacpan
patch/flex-2.6.4.diff view on Meta::CPAN
# This file is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
@@ -495,8 +485,8 @@ AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
# For better backward compatibility. To be removed once Automake 1.9.x
# dies out for good. For more background, see:
-# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
-# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
+# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
+# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
patch/flex-2.6.4.diff view on Meta::CPAN
# Check whether --enable-dependency-tracking was given.
if test "${enable_dependency_tracking+set}" = set; then :
@@ -12028,8 +12087,8 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
# For better backward compatibility. To be removed once Automake 1.9.x
# dies out for good. For more background, see:
-# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
-# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
+# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
+# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
mkdir_p='$(MKDIR_P)'
view all matches for this distribution
view release on metacpan or search on metacpan
libsecp256k1/CHANGELOG.md view on Meta::CPAN
#### Added
- New module `ellswift` implements ElligatorSwift encoding for public keys and x-only Diffie-Hellman key exchange for them.
ElligatorSwift permits representing secp256k1 public keys as 64-byte arrays which cannot be distinguished from uniformly random. See:
- Header file `include/secp256k1_ellswift.h` which defines the new API.
- Document `doc/ellswift.md` which explains the mathematical background of the scheme.
- The [paper](https://eprint.iacr.org/2022/759) on which the scheme is based.
- We now test the library with unreleased development snapshots of GCC and Clang. This gives us an early chance to catch miscompilations and constant-time issues introduced by the compiler (such as those that led to the previous two releases).
#### Fixed
- Fixed symbol visibility in Windows DLL builds, where three internal library symbols were wrongly exported.
view all matches for this distribution
view release on metacpan or search on metacpan
libuv/CONTRIBUTING.md view on Meta::CPAN
```
subsystem: explaining the commit in one line
Body of commit message is a few lines of text, explaining things
in more detail, possibly giving some background about the issue
being fixed, etc etc.
The body of the commit message can be several paragraphs, and
please do proper word-wrap and keep columns shorter than about
72 characters or so. That way `git log` will show things
view all matches for this distribution
view release on metacpan or search on metacpan
patches/wxMSW-2.8.10-w64-stc.patch view on Meta::CPAN
wxWX2MBbuf buf = (wxWX2MBbuf)wx2stc(text);
- SendMsg(2282, strlen(buf), (long)(const char*)buf);
+ SendMsg(2282, strlen(buf), (sptr_t)(const char*)buf);
}
// Is drawing done in two phases with backgrounds drawn before foregrounds?
@@ -2050,7 +2050,7 @@
// Change the document object used.
void wxStyledTextCtrl::SetDocPointer(void* docPointer) {
- SendMsg(2358, 0, (long)docPointer);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CWB/CQP.pm view on Meta::CPAN
package CWB::CQP;
# -*-cperl-*-
=head1 NAME
CWB::CQP - Interact with a CQP process running in the background
=head1 SYNOPSIS
B<TODO: Update synopsis!>
use CWB::CQP;
# start CQP server process in the background
$cqp = new CWB::CQP;
$cqp = new CWB::CQP("-r /corpora/registry", "-I /global/init.cqp");
# check for specified or newer CQP version
$ok = $cqp->check_version($major, $minor, $beta);
lib/CWB/CQP.pm view on Meta::CPAN
$cqp->set_error_handler('die'); # built-in, useful for one-off scripts
# read TAB-delimited table from count, group, tabulate, ...
@table = $cqp->exec_rows($my_cmd);
# run CQP command in background (non-blocking mode)
$cqp->run($my_cmd);
if ($cqp->ready) { # specify optional timeout in seconds
my $line = $cqp->getline;
my @fields = $cqp->getrow; # TAB-delimited output
}
lib/CWB/CQP.pm view on Meta::CPAN
undef $cqp;
=head1 DESCRIPTION
A B<CWB::CQP> object represents an instance of the corpus query processor CQP
running as a background process. By calling suitable methods on this object,
arbitrary CQP commands can be executed and their output can be captured.
The C<STDERR> stream of the CQP process is monitored for error messages,
which can automatically trigger an error handler.
Every B<CWB::CQP> object has its own CQP background process and communication is
fully asynchronous. This enables scripts to perform other actions while a long
CQP command is executing, or to run multiple CQP instances in parallel.
=cut
use warnings;
use strict;
use sigtrap qw(die PIPE); # catch write errors to background CQP process
## $SIG{'CHLD'} = 'IGNORE'; # it would be nice to reap child processes automatically, but this seems to mess up closing pipes
use CWB;
use Carp;
use FileHandle;
lib/CWB/CQP.pm view on Meta::CPAN
=item I<$cqp> = B<new> CWB::CQP;
=item I<$cqp> = B<new> CWB::CQP '-r /corpora/registry', '-l /data/cqpresults';
Spawn new CQP background process. The object I<$cqp> can then be used to communicate with
this CQP instance. Optional arguments of the B<new> method are passed as command-line
options to CQP. Use at your own risk.
=cut
lib/CWB/CQP.pm view on Meta::CPAN
my $self = {}; # namespace for new CQP class object
my @options = @_; # CQP command-line options (use at your own risk)
# split options with values, e.g. "-r /my/registry" => "-r", "/my/registry" (doesn't work for multiple options in one string)
@options = map { (/^(--?[A-Za-z0-9]+)\s+(.+)$/) ? ($1, $2) : $_ } @options;
## run CQP server in the background
my $in = $self->{'in'} = new FileHandle; # stdin of CQP
my $out = $self->{'out'} = new FileHandle; # stdout of CQP
my $err = $self->{'err'} = new FileHandle; # stderr of CQP
my $pid = open3($in, $out, $err, $CWB::CQP, @CQP_options, @options);
$self->{'pid'} = $pid; # child process ID (so process can be killed if necessary)
lib/CWB/CQP.pm view on Meta::CPAN
return $self;
}
=item B<undef> I<$cqp>;
Exit CQP background process gracefully by issuing an C<exit;> command.
This is done automatically when the variable I<$cqp> goes out of scope.
Note that there may be a slight delay while B<CWB::CQP> waits for the CQP
process to terminate.
=cut
lib/CWB/CQP.pm view on Meta::CPAN
my $in = $self->{'in'};
if (defined $in) {
$in->close;
}
my $pid = $self->{'pid'};
waitpid $pid, 0; # wait for CQP to exit and reap background process
## **TODO** -- this may hang in some cases; is there a safe workaround?
}
=item I<$ok> = I<$cqp>->B<check_version>(I<$major>, I<$minor>, I<$beta>);
Check for minimum required CQP version, i.e. the background process has
to be CQP version I<$major>.I<$minor>.I<$beta> or newer.
I<$minor> and I<$beta> may be omitted, in which case they default to 0.
Note that the B<CWB::CQP> module automatically checks whether the CQP version
is compatible with its own requirements when a new object is created.
The B<check_version> method can subsequently be used to check for a more
lib/CWB/CQP.pm view on Meta::CPAN
}
}
=item I<$version_string> = I<$cqp>->B<version>;
Returns formatted version string for the CQP background process, e.g. C<2.2.99> or C<3.0>.
=cut
sub version {
my $self = shift;
lib/CWB/CQP.pm view on Meta::CPAN
return $lines;
}
=item I<$cqp>->B<run>(I<$cmd>);
Start a single CQP command I<$cmd> in the background. This method returns immediately.
Command output can then be read with the B<getline>, B<getlines> and B<getrow> methods.
If asynchronous communication is desired, use B<ready> to check whether output is available.
It is an error to B<run> a new command before the output of the previous command has completely
been processed.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Alvis/Pipeline.pm view on Meta::CPAN
Read-pipes must specify both the C<host> and C<port> of the component
that they will read from, and C<spooldir>,
a directory that is writable to the user the process is running as.
(When files become available by being written down a write-pipe, they
are immediately read in the background, then stored in the
specified spool directory until picked up by a reader.)
=item *
Pipes may specify C<loglevel> [default 0]: higher levels
view all matches for this distribution
view release on metacpan or search on metacpan
t/test/resources/terms view on Meta::CPAN
gene silence gene silence
gene specific gene-specific
gene terminator gene terminator
genetic analysis genetic analysis
genetic approach genetic approach
genetic background genetic background
genetic competence genetic competence
genetic control genetic control
genetic element genetic element
genetic engineer genetic engineer
genetic engineering genetic engineering
view all matches for this distribution
view release on metacpan or search on metacpan
mason/alzabo.css view on Meta::CPAN
{
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
font-family: verdana, arial, helvetica, sans-serif;
color: black;
background-color: #ffffff;
}
a
{
text-decoration: none;
mason/alzabo.css view on Meta::CPAN
#top
{
margin: 10px 10px 0px 10px;
padding: 2px;
border: 1px solid #A80806;
background: #000000;
height: 100px; /* ie5win fudge begins */
voice-family: "\"}\"";
voice-family:inherit;
height: 78px;
}
mason/alzabo.css view on Meta::CPAN
#hometop
{
margin: 10px 10px 0px 10px;
padding: 2px;
border: 1px solid #A80806;
background: #000000;
height: 100px; /* ie5win fudge begins */
voice-family: "\"}\"";
voice-family:inherit;
height: 78px;
}
mason/alzabo.css view on Meta::CPAN
#crumb
{
margin: 6px 10px 0px 10px;
padding: 0px 4px 4px 4px;
background: #f3f5e5;
height: 100px; /* ie5win fudge begins */
voice-family: "\"}\"";
voice-family:inherit;
height: 20px;
}
mason/alzabo.css view on Meta::CPAN
#toptwo
{
margin: 10px 10px 0px 10px;
padding: 2px;
border: 1px solid #A80806;
background: #000000;
height: 100px; /* ie5win fudge begins */
voice-family: "\"}\"";
voice-family:inherit;
height: 24px;
}
mason/alzabo.css view on Meta::CPAN
.levelone
{
margin: 10px 10px 0px 10px;
padding: 4px;
border: 1px solid #A80806;
background: #f3f5e5;
}
#bottom
{
margin: 10px 10px 0px 10px;
padding: 4px;
border: 1px solid #A80806;
background: #000000;
height: 100px; /* ie5win fudge begins */
voice-family: "\"}\"";
voice-family:inherit;
height: 24px;
}
mason/alzabo.css view on Meta::CPAN
margin-top: 5px;
margin-left: 10px;
margin-right: 10px;
padding: 10px;
border: 1px solid #e6bab9;
background: #f3f5e5;
}
.left_invisible { color: #f3f5e5; }
.middle
{
margin-top: 5px;
margin-right: 10px;
padding: 10px;
border: 1px solid #e6bab9;
background: #d8ddb3;
}
.middle_invisible { color: #d8ddb3; }
.right
{
margin-top: 5px;
margin-right: 10px;
padding: 10px;
border: 1px solid #999;
background: #ccc;
}
.page
{
margin-left: 10x;
view all matches for this distribution
view release on metacpan or search on metacpan
share/Templates/Templates/XSLT+DOJO/main.xsl view on Meta::CPAN
}
#leftCol {
width: 16em;
}
.head {
background-color: #80ccff;
font-size: 1.5em;
height: 1.6em;
}
.claro .demoLayout .edgePanel {
//background-color: #d0e9fc;
}
a {color:#408DD2;}
</style>
</head>
view all matches for this distribution
view release on metacpan or search on metacpan
factpacks/Linux.fact view on Meta::CPAN
BetaFTPD => <reply> $who, Single-threaded, small FTP daemon. URL: http://members.xoom.com/sneeze/
Bezerk => <reply> $who, IRC client written with the GTK toolkit. URL: http://www.gtk.org/~trog/
BFRIS Zero Gravity Fighter Combat => <reply> $who, 3-D Accelerated zero-gravity space fighter combat w/ net support. URL: http://www.aegistech.com/
bfs => <reply> $who, UnixWare Boot Filesystem for Linux. URL: http://penguin.cz/~mhi/fs/bfs/
BFS Filesystem for Linux => <reply> $who, read-only BFS modules for Linux. URL: http://hp.vector.co.jp/authors/VA008030/bfs/
bgcheck => <reply> $who, A process monitor used to limit the amount of background processes. URL: http://blue.dhs.org/bgcheck/
BGM => <reply> $who, Background music player / music on-hold source daemon for PBX. URL: http://www.tycho.com/bgm/
BibleReader => <reply> $who, Bible browsing program using Gtk. URL: http://alfenpeg.thewhites.com/Bible/
BibleTime => <reply> $who, A bible study program for KDE. URL: http://www.bibletime.de/
bibtool => <reply> $who, Simple tool to help BibTeX users maintain bibliography files. URL: http://www.aber.ac.uk/~dbt93/Downloads/bibtool/
Bicycle Ride Calorie Calculator => <reply> $who, Calculates thenumber of calories expended on a bicycle ride. URL: http://www.geocities.com/SiliconValley/Vista/6434/calcalc.html
factpacks/Linux.fact view on Meta::CPAN
BitchX => <reply> $who, ANSI capable, textmode IRC Client. URL: http://www.bitchx.org
BitGen => <reply> $who, convert strings of 1's and 0's to SPICE voltage sources. URL: http://www.ece.ncsu.edu/cadence/bitgen.html
BitKeeper => <reply> $who, Source control system. URL: http://www.bitmover.com/bitkeeper/
Bizarre 1999 Invitation Intro => <reply> $who, An invitation intro to the bizarre 1999 demo party. URL: http://www.bizarre.nl/
bk2site => <reply> $who, Transforms Netscape bookmark file into yahoo-like website.. URL: http://www.multiagent.com/bk2site/
bkgd => <reply> $who, Sets a random (or specific) background image from the command line. URL: http://www.vis.colostate.edu/~scriven/bkgd.php3
Black Cat Linux => <reply> $who, Custom RedHat-based Ukrainian/Russian Linux distribution. URL: http://www.blackcatlinux.com/index-eng.html
Black Penguin => <reply> $who, Arcade style jump-on-cubes game. URL: http://www.priebs.de/blackpenguin.html
Blackbox => <reply> $who, WindowManager for X11 written in C++. URL: http://blackbox.alug.org/
Blackened => <reply> $who, irc client with many features. URL: http://www.blackened.com/blackened/
Blackjack => <reply> $who, Simple blackjack game for the console. URL: http://www.frogface.grid9.net/linux/software/blackjack.shtml
Blackmail => <reply> $who, Highly configurable SMTP mail filter. URL: http://www.jsm-net.demon.co.uk/blackmail/
BLADE => <reply> $who, Broad Language Aided Document Environment. URL: http://www.thestuff.net/bob/projects/blade/
BladeEnc => <reply> $who, Freeware MP3 Encoder. URL: http://hem.bredband.net/tord/
BladeWrapper => <reply> $who, A wrapper to run BladeEnc in background. URL: http://helllabs.org/~claudio/bladewrapper/bladewrapper.tar.gz
Blender => <reply> $who, Extremely fast and versatile 3D Rendering Package. URL: http://www.blender.nl/
blink => <reply> $who, a perl script that downloads random jpegs and draws them on your X11 display. URL: http://www.techweenie.net/dave/blink.html
Blockade => <reply> $who, An arcade puzzle game. URL: http://www.geocities.com/TimesSquare/Zone/5267/
Blow => <reply> $who, Commandline multiple binary file newsgroup poster. URL: http://www.mvrop.org/~akirarat/
blperf => <reply> $who, BusLogic SCSI performance monitor. URL: http://www.enteract.com/~zieg/software/blperf.html
factpacks/Linux.fact view on Meta::CPAN
CGIWrap => <reply> $who, Wrapper for securely allowing all users to use CGI scripts. URL: http://www.unixtools.org/cgiwrap/
CGM Viewer Applet => <reply> $who, Scriptable vector graphics viewer written in Java.. URL: http://www.online.de/home/bdaum/howto.htm
cgvg => <reply> $who, Tools for command-line source browsing.. URL: http://linux.ucla.edu/~uzi/cgvg.html
Chameleon => <reply> $who, X utility to customize desktop colors. URL: ftp://ftp.lagged.net/pub/software/
Chaperon memory access checker => <reply> $who, Checks memory accesses for bad behavior. URL: http://www.BitWagon.com/chaperon.html
chbg => <reply> $who, Desktop background changer and manager. URL: http://www.idata.sk/~ondrej/chbg/
CHC => <reply> $who, Columbia House Play Club Catalog Browser. URL: http://www.dnc.net/users/collver/chc.tar.gz
Chebyshev => <reply> $who, Engine for forwarding email service (w/spam filtering). URL: http://www.jab.org/cheb
check-ps => <reply> $who, Reports or kills processes 'hidden' from the system administrator. URL: http://checkps.alcom.co.uk/
Check.pl => <reply> $who, Filesystem permission auditing tool. URL: http://opop.nols.com/
Checker => <reply> $who, . URL: http://www.gnu.org/software/checker/checker.html
factpacks/Linux.fact view on Meta::CPAN
Dante => <reply> $who, Free socks v4/5 implementation. URL: http://www.inet.no/dante/
DAP (Digital Audio Processor) => <reply> $who, Impressive looking sound editor using xforms. URL: http://www.cee.hw.ac.uk/~richardk/
Darkbot => <reply> $who, IRC Help Robot. URL: http://www.superchat.org/darkbot/
DarkFire IRCD [Twilight] => <reply> $who, Advanced IRCD. URL: http://www.darkfire.net/
Darwersi => <reply> $who, Othello game (strong genetic AI). URL: http://www-sop.inria.fr/cafe/Olivier.Arsac/darwersi/
Darxite => <reply> $who, Controllable daemon that downloads via FTP in the background. URL: http://darxite.cjb.net/
DashO-Pro => <reply> $who, Java Application Size-Reducer, Optimizer, and Obfuscator. URL: http://www.preemptive.com
Data::Address::Standardize Perl Module => <reply> $who, A Perl module for standardizing U.S. URL: http://www.focusresearch.com/gregor/Data-Address-Standardize-0.001.html
Data::Locations => <reply> $who, A virtual file manager which allows to read/write data to and from virtual files. URL: http://www.engelschall.com/u/sb/download/
DataGate's Connector => <reply> $who, DG Connector is a Web-based Instant Intranet solution.. URL: http://www.datagate.co.uk/products/connector/index.html
Datalink library => <reply> $who, Send data to the Timex DataLink watches. URL: http://datalink.fries.net/
factpacks/Linux.fact view on Meta::CPAN
gbuild => <reply> $who, build tool to automate cvs update, compilation, and packaging. URL: http://www.cryon.com/gbuild/
GCache => <reply> $who, Generic cache class for Python. URL: ftp://minkirri.apana.org.au/pub/python/GCache-0.1.tar.bz2
gcc => <reply> $who, . URL: http://egcs.cygnus.com/
GCD => <reply> $who, A cd-player with a gtk+ interface. URL: http://www.nostatic.org/grip/
Gcdplay => <reply> $who, GPL'ed CD player with local and server-based cddb support.. URL: http://www.korax.net/~mglisic/gcdplay/index.html
gchbkgrd => <reply> $who, Program to constantly change the desktop's background. URL: http://www.bitdaddy.com/~mono/gchbkgrd/
GChip8 => <reply> $who, An interpreter/emulator for the CHIP8 virtual machine.. URL: http://cerealbox.angel.nu/gchip8.html
GClipper => <reply> $who, A multiple buffer clipboard that automatically fetches new selections.. URL: http://thunderstorms.org/gclipper/gclipper-1.1.tar.gz
GCO => <reply> $who, A database for keeping track of your comic collection.. URL: http://www.daimi.au.dk/~maxx/html/maxximum-linux.html
gcombust => <reply> $who, gtk+ frontend for mkisofs and cdrecord. URL: http://www.iki.fi/jmunsin/gcombust
GCompte => <reply> $who, A program to keep track of your finances. URL: http://www.linux-france.org/prj/gcompte/
factpacks/Linux.fact view on Meta::CPAN
joe => <reply> $who, A Free ASCII-Text Screen Editor for UNIX. URL: ftp://ftp.std.com/src/editors/
John the Ripper => <reply> $who, Password cracker to detect weak UNIX passwords. URL: http://www.openwall.com/john/
Johnson Keyboard => <reply> $who, Hacker's keyboard layout for X-Windows. URL: http://www.boswa.com/johnson.html
jonama => <reply> $who, SSL proxy. URL: http://www.multimania.com/jonama/
Jons Simple Server => <reply> $who, A TCL interpreter for creating simple server applications. URL: http://uv.net/~jon/
Jooky => <reply> $who, MP3 controller with a foreground curses client, or background client/server.. URL: http://soomka.com/
Journal => <reply> $who, A text-based journal/diary.. URL: http://soapbox.fissure.org/journal/journal.html
journyx Timesheet => <reply> $who, Timesheet software via the web. URL: http://www.journyx.com/
Joy2Key => <reply> $who, Translate joystick movements into keyboard events (X and console). URL: http://www-unix.oit.umass.edu/~tetron/joy2key/
Joydesk => <reply> $who, Web-based Groupware. URL: http://joydesk.com/
jpilot => <reply> $who, Palm pilot desktop software for Linux. URL: http://jpilot.linuxbox.com/
factpacks/Linux.fact view on Meta::CPAN
SldapA => <reply> $who, Simple LDAP Administration. URL: http://www.jeremias.net/projects/sldapa/
SleezeBall => <reply> $who, Make Squid replace known banners with a 1x1 pixel transparent GIF. URL: http://boost.linux.kz/sleezeball/
Sleuth => <reply> $who, A utility for checking DNS zones for bugs. URL: http://atrey.karlin.mff.cuni.cz/~mj/linux.html
SLFFEA => <reply> $who, Free Finite Element Analysis. URL: http://www.slffea.com/
Slice => <reply> $who, Extract out pre-defined slices of an ASCII file. URL: http://www.engelschall.com/sw/slice/
slideshow => <reply> $who, Slideshow on X root window/background. URL: http://www.cs.colostate.edu/~carheden
SLinux => <reply> $who, Security enhancement suite for RedHat. URL: http://www.slinux.cx
Slinux Kernel => <reply> $who, Security Enhanced Linux Kernel. URL: http://www.slinux.cx/
SLiRP => <reply> $who, SLIP/PPP emulator over shell/telnet/ssh/etc.. URL: http://www.glue.umd.edu/~tygris/slirp/
slp => <reply> $who, A syslog parser and formatter script in perl. URL: http://www.ludat.lth.se/~dat99oli/
slram => <reply> $who, Linux kernel patch to use uncacheable RAM as a ramdisk. URL: http://www.andrew.cmu.edu/~keryan/slram/
factpacks/Linux.fact view on Meta::CPAN
Steak (Xsteak) => <reply> $who, Steak is a dictionary for Unix Systems.. URL: http://www.tm.informatik.uni-frankfurt.de/~razi/steak/steak.html
sted => <reply> $who, . URL: http://user.tninet.se/~uxm165t/sted.html
StegFS => <reply> $who, Steganographic File System. URL: http://ban.joh.cam.ac.uk/~adm36/StegFS/
steghide => <reply> $who, A steganography tool. URL: http://www.crosswinds.net/~shetzl/steghide/
Stella => <reply> $who, An Atari 2600 VCS Emulator. URL: http://www.classicgaming.com/stella/
Sticker Book => <reply> $who, Place stickers on a background scene. URL: http://users.powernet.co.uk/kienzle/stickers/index.html
sticky_notes => <reply> $who, Postit note application for GTK and/or GNOME. URL: http://crazylands.org/~nevyn/sticky-notes/
STk => <reply> $who, Scheme with TK bindings. URL: http://kaolin.unice.fr/STk/
stk-mysql => <reply> $who, STk interface to MySQL databases.. URL: ftp://cliffs.ucsd.edu/pub/terry/stk-mysql.tar.gz
stock-simulator => <reply> $who, A stock-trading simulator and game. URL: http://members.tripod.com/viralbs/
stoic => <reply> $who, Freeware web server log analysis tool. URL: http://www.censor.com/harrison/code/
factpacks/Linux.fact view on Meta::CPAN
XGGI => <reply> $who, X server which uses LibGGI to do hardware independent graphics and input. URL: http://www.stacken.kth.se/~mackan/ggi/xggi/
XgIRC => <reply> $who, Internet Relay Chat client for Linux / X Windows. URL: http://www.inforoute.capway.com/pieraut/
XGlobe => <reply> $who, A toy that displays a globe on your X desktop. URL: http://wwwrzstud.rz.uni-karlsruhe.de/~uddn/xglobe/
xgrk => <reply> $who, Support for GREEK keyboard in XWindows. URL: http://www.softlab.ece.ntua.gr/~sivann/xgrk/
Xhack => <reply> $who, . URL: http://www.chronozon.demon.co.uk
xhangglider => <reply> $who, X-based program that makes hanggliders fly in the background of your screen.. URL: http://plaza.harmonix.ne.jp/~redstar/xhang-en.html
xhdbench => <reply> $who, Qt-based X-program for testing the output speed of severaldevices. URL: ftp://metalab.unc.edu/pub/Linux/system/benchmark/
XHourGas => <reply> $who, An alarm clock that exhibits what can happen with an improper diet. URL: http://qu.dhs.org/xhourgas/xhourgas.html
XHpcd => <reply> $who, A GIMP plugin to read Kodak PhotoCD images. URL: http://studenti.csr.unibo.it/~abaldoni/hpcd.html
XIAS => <reply> $who, Tcl/Tk-based front-end to IAS (N64 backup device transfer tool). URL: http://www.dextrose.com/info/0719xias-1_1_tar.htm
Xicq / KXicq => <reply> $who, An ICQ client for use in both console and X11.. URL: http://www.xtrophy.dk/xicq/
factpacks/Linux.fact view on Meta::CPAN
CAFire => <reply> $who, CAFire is a small toy that displays a burning trace after the mouse pointer in X. URL: http://home.zcu.cz/~cimrman3/cafire-latest.tgz
GPPP-Dialer => <reply> $who, GPPP-Dialer runs a connection script and shows the contents of a PPP log, and can run other programs after connecting. URL: http://www.pobox.com/~epg/software/gppp-dialer-0.1.0.tar.gz
Perlmclient => <reply> $who, Perlmclient is a Masqdialler client written in Perl. URL: http://www.vicnet.net.au/~jeremyl/perlmclient/perlmclient-0.2.tar.gz
Address Book => <reply> $who, Address Book is an extremely simple address database with search, edit, insert, drop, etc.. URL: http://ps-ax.com/address/
GTool => <reply> $who, GTool is a program to draw and analyze graphs (as in Graph Theory, not data analysis).. URL: http://erwin.math.lakeheadu.ca/gtool/index.php3?topic=download
gbgrand => <reply> $who, gbgrand is a small shell script that uses a list of directories to select a random background for the GNOME desktop. URL: http://www.chameleon.net/daf/gbgrand.tgz
The Bookexchange => <reply> $who, Bookexchange is a book exchange for the Web, allowing users to search, add, and edit books. URL: http://cs.uiowa.edu/~bdeitte/bookexchange.zip
WMFstatus => <reply> $who, WMFstatus is a general purpose 8x5 LCD screen dockapp for WindowMaker and other managers. URL: http://www.finik.net/files/wmfstatus-0.1.tar.gz
Metapixel => <reply> $who, Metapixel is a program for generating photomosaics. URL: http://www.complang.tuwien.ac.at/~schani/metapixel/metapixel-0.1.tar.gz
oracledump => <reply> $who, oracledump is a command-line tool that dumps Oracle data and table setup information as SQL. URL: http://www.bennyvision.com/~ddkilzer/projects/oracledump/
GNU Standard C++ Library v3 => <reply> $who, The Standard C++ Library v3, or libstc++-2.90.x, is an ongoing project to implement the ISO 14882 Standard C++ library as described in chapters 17 through 27 and annex D, as a drop-in replacement for the c...
view all matches for this distribution
view release on metacpan or search on metacpan
t/test_afl.afl view on Meta::CPAN
}
// Summary: Plot buy and sell spots on the graph for visual display
// Does not return anything
function plot_buy_sell_signals(type, upturn, downturn) {
// Filling the entire background color to black...Default is black + Grey
SetChartBkGradientFill( ParamColor("BgTop", colorBlack),ParamColor("BgBottom", colorBlack),ParamColor("titleblock",colorBlack));
if(type == "Long") {
// To Plot Buy signal and box around it
PlotShapes(IIf(upturn, shapeSquare, shapeNone),colorGreen, 0, L, Offset=-30);
t/test_afl.afl view on Meta::CPAN
// Summary: Function to draw the chart on the screen
// Does not return anything
function draw_chart() {
SetChartOptions (0, chartShowArrows|chartShowDates); //set/clear/overwrite defaults for chart pane options
SetChartBkColor(colorDarkGrey); // Sets chart background to user-defined colour
// Plot the price chart
Plot( Close, "Close", ParamColor("Color", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
Plot( EMA( Close, 7 ), "", colorYellow, ParamStyle("Style", styleThick | styleLine | styleNoLabel ) | styleNoRescale );
Plot( EMA( Close, 30 ), "", colorWhite, ParamStyle("Style", styleThick | styleLine | styleNoLabel ) | styleNoRescale );
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Amon2/Setup/Asset/Blueprint.pm view on Meta::CPAN
/* reset.css */
html {margin:0;padding:0;border:0;}
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside...
article, aside, details, figcaption, figure, dialog, footer, header, hgroup, menu, nav, section {display:block;}
body {line-height:1.5;background:white;}
table {border-collapse:separate;border-spacing:0;}
caption, th, td {text-align:left;font-weight:normal;float:none !important;}
table, th, td {vertical-align:middle;}
blockquote:before, blockquote:after, q:before, q:after {content:\'\';}
blockquote, q {quotes:"" "";}
a img {border:none;}
:focus {outline:0;}
/* typography.css */
html {font-size:100.01%;}
body {font-size:75%;color:#222;background:#fff;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;}
h1, h2, h3, h4, h5, h6 {font-weight:normal;color:#111;}
h1 {font-size:3em;line-height:1;margin-bottom:0.5em;}
h2 {font-size:2em;margin-bottom:0.75em;}
h3 {font-size:1.5em;line-height:1;margin-bottom:1em;}
h4 {font-size:1.2em;line-height:1.25;margin-bottom:1.25em;}
lib/Amon2/Setup/Asset/Blueprint.pm view on Meta::CPAN
dl {margin:0 0 1.5em 0;}
dl dt {font-weight:bold;}
dd {margin-left:1.5em;}
table {margin-bottom:1.4em;width:100%;}
th {font-weight:bold;}
thead th {background:#c3d9ff;}
th, td, caption {padding:4px 10px 4px 5px;}
tbody tr:nth-child(even) td, tbody tr.even td {background:#e5ecf9;}
tfoot {font-style:italic;}
caption {background:#eee;}
.small {font-size:.8em;margin-bottom:1.875em;line-height:1.875em;}
.large {font-size:1.2em;line-height:2.5em;margin-bottom:1.25em;}
.hide {display:none;}
.quiet {color:#666;}
.loud {color:#000;}
.highlight {background:#ff0;}
.added {background:#060;color:#fff;}
.removed {background:#900;color:#fff;}
.first {margin-left:0;padding-left:0;}
.last {margin-right:0;padding-right:0;}
.top {margin-top:0;padding-top:0;}
.bottom {margin-bottom:0;padding-bottom:0;}
lib/Amon2/Setup/Asset/Blueprint.pm view on Meta::CPAN
label {font-weight:bold;}
fieldset {padding:0 1.4em 1.4em 1.4em;margin:0 0 1.5em 0;border:1px solid #ccc;}
legend {font-weight:bold;font-size:1.2em;margin-top:-0.2em;margin-bottom:1em;}
fieldset, #IE8#HACK {padding-top:1.4em;}
legend, #IE8#HACK {margin-top:0;margin-bottom:0;}
input[type=text], input[type=password], input[type=url], input[type=email], input.text, input.title, textarea {background-color:#fff;border:1px solid #bbb;color:#000;}
input[type=text]:focus, input[type=password]:focus, input[type=url]:focus, input[type=email]:focus, input.text:focus, input.title:focus, textarea:focus {border-color:#666;}
select {background-color:#fff;border-width:1px;border-style:solid;}
input[type=text], input[type=password], input[type=url], input[type=email], input.text, input.title, textarea, select {margin:0.5em 0;}
input.text, input.title {width:300px;padding:5px;}
input.title {font-size:1.5em;}
textarea {width:390px;height:250px;padding:5px;}
form.inline {line-height:3;}
form.inline p {margin-bottom:0;}
.error, .alert, .notice, .success, .info {padding:0.8em;margin-bottom:1em;border:2px solid #ddd;}
.error, .alert {background:#fbe3e4;color:#8a1f11;border-color:#fbc2c4;}
.notice {background:#fff6bf;color:#514721;border-color:#ffd324;}
.success {background:#e6efc2;color:#264409;border-color:#c6d880;}
.info {background:#d5edf8;color:#205791;border-color:#92cae4;}
.error a, .alert a {color:#8a1f11;}
.notice a {color:#514721;}
.success a {color:#264409;}
.info a {color:#205791;}
/* grid.css */
.container {width:950px;margin:0 auto;}
.showgrid {background:url(src/grid.png);}
.column, .span-1, .span-2, .span-3, .span-4, .span-5, .span-6, .span-7, .span-8, .span-9, .span-10, .span-11, .span-12, .span-13, .span-14, .span-15, .span-16, .span-17, .span-18, .span-19, .span-20, .span-21, .span-22, .span-23, .span-24 {float:left...
.last {margin-right:0;}
.span-1 {width:30px;}
.span-2 {width:70px;}
.span-3 {width:110px;}
lib/Amon2/Setup/Asset/Blueprint.pm view on Meta::CPAN
.push-23 {margin:0 -920px 1.5em 920px;}
.push-24 {margin:0 -960px 1.5em 960px;}
.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12, .push-13, .push-14, .push-15, .push-16, .push-17, .push-18, .push-19, .push-20, .push-21, .push-22, .push-23, .push-24 {float:left;position...
div.prepend-top, .prepend-top {margin-top:1.5em;}
div.append-bottom, .append-bottom {margin-bottom:1.5em;}
.box {padding:1.5em;margin-bottom:1.5em;background:#e5eCf9;}
hr {background:#ddd;color:#ddd;clear:both;float:none;width:100%;height:1px;margin:0 0 17px;border:none;}
hr.space {background:#fff;color:#fff;visibility:hidden;}
.clearfix:after, .container:after {content:"\\0020";display:block;height:0;clear:both;visibility:hidden;overflow:hidden;}
.clearfix, .container {display:block;}
.clear {clear:both;}'
}
lib/Amon2/Setup/Asset/Blueprint.pm view on Meta::CPAN
* This is a compressed file. See the sources in the \'src\' directory.
----------------------------------------------------------------------- */
/* print.css */
body {line-height:1.5;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;color:#000;background:none;font-size:10pt;}
.container {background:none;}
hr {background:#ccc;color:#ccc;width:100%;height:2px;margin:2em 0;padding:0;border:none;}
hr.space {background:#fff;color:#fff;visibility:hidden;}
h1, h2, h3, h4, h5, h6 {font-family:"Helvetica Neue", Arial, "Lucida Grande", sans-serif;}
code {font:.9em "Courier New", Monaco, Courier, monospace;}
a img {border:none;}
p img.top {margin-top:0;}
blockquote {margin:1.5em;padding:1em;font-style:italic;font-size:.9em;}
.small {font-size:.9em;}
.large {font-size:1.1em;}
.quiet {color:#999;}
.hide {display:none;}
a:link, a:visited {background:transparent;font-weight:700;text-decoration:underline;}
a:link:after, a:visited:after {content:" (" attr(href) ")";font-size:90%;}'
}
sub ie_css {
lib/Amon2/Setup/Asset/Blueprint.pm view on Meta::CPAN
* html .clearfix, * html .container {height:1%;}
fieldset {padding-top:0;}
legend {margin-top:-0.2em;margin-bottom:1em;margin-left:-0.5em;}
textarea {overflow:auto;}
label {vertical-align:middle;position:relative;top:-0.25em;}
input.text, input.title, textarea {background-color:#fff;border:1px solid #bbb;}
input.text:focus, input.title:focus {border-color:#666;}
input.text, input.title, textarea, select {margin:0.5em 0;}
input.checkbox, input.radio {position:relative;top:.25em;}
form.inline div, form.inline p {vertical-align:middle;}
form.inline input.checkbox, form.inline input.radio, form.inline input.button, form.inline button {margin:0.5em 0;}
view all matches for this distribution
view release on metacpan or search on metacpan
html/annocpan.css view on Meta::CPAN
/* general styles */
html { margin: 0; padding: 0; }
body {
background: white;
color: black;
font-family: arial,sans-serif;
margin: 1ex;
padding: 1ex 0;
/* border: 1px solid black; */
html/annocpan.css view on Meta::CPAN
margin: 1em 10% 0 10%;
font-size: 95%;
}
.motd h3 {
background-color: #6c9;
width: 50%;
margin: 1ex 0 0 0;
padding: 2px 10px 2px 10px;
color: #042;
}
html/annocpan.css view on Meta::CPAN
}
.note p { text-align: left; }
.note_header {
background-color: #F0DDBB;
font-weight: bold;
padding: 0.5ex;
height: 1.3em;
}
.note_body {
background: #FEFFD7;
margin: 0;
padding: 0.5ex;
}
.note_data { float: left; }
html/annocpan.css view on Meta::CPAN
#pod2html a.purple { text-decoration: none; color: #d8bfd8;
/* position: relative; bottom: 5px; */
}
#pod2html .note_body p { margin: 0.75ex 0; }
#pod2html .note_body pre { background: none; border: none; }
.button { display: none; font-size: 85%; }
/* nav */
#nav { background-color: #042; color: white; font-weight: bold;
padding: 0.1em 1em;
list-style: none;
height: 1.3em;
margin: 1.5ex 0;
}
html/annocpan.css view on Meta::CPAN
/* pod */
#pod2html { padding: 0 0 0 0; }
#pod2html p, #pod2html pre { margin: 0; }
#pod2html pre {
background: #eff7e9;
border: 1px solid #888888;
padding-top: 1em;
white-space: pre;
}
html/annocpan.css view on Meta::CPAN
}
#pod2html li {
padding-left: 20px;
margin: 0;
list-style-type: none;
background: url('/img/bullet.gif') no-repeat top left;
}
/* note form */
.save_button, .del_button, .hide_button {
font-size: 85%;
}
#save_button { background-color: #9D9; }
#del_button { background-color: #E99; }
#hide_button { background-color: #AAA; }
#noteform textarea { background: #FEFFD7;
border-top: 2px solid #330;
border-left: 2px solid #330;
border-bottom: 2px solid #998;
border-right: 2px solid #998;
padding: 3px;
}
#noteform #note_text { padding: 0 10px 0 0; background: #FEFFD7; }
#noteform textarea { width: 100%; }
/* misc */
table { border-collapse: collapse; }
tr.even { background: #e7f7e2; }
td, th { padding: 0.25ex 1em; border: none; }
.date { font-size: small; }
a:hover { color: #c50; }
view all matches for this distribution
view release on metacpan or search on metacpan
t/ansible-test1/ansible.cfg view on Meta::CPAN
# that close the connection after a key failure. Uncomment this line to
# disable the Paramiko look for keys function
#look_for_keys = False
# When using persistent connections with Paramiko, the connection runs in a
# background process. If the host doesn't already have a valid SSH key, by
# default Ansible will prompt to add the host key. This will cause connections
# running in background processes to fail. Uncomment this line to have
# Paramiko automatically add host keys.
#host_key_auto_add = True
[ssh_connection]
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Antsy.pm view on Meta::CPAN
=item * bg_white
=item * bg_yellow
Make the background the named color
=item * bg_bright_black
=item * bg_bright_blue
lib/Antsy.pm view on Meta::CPAN
=item * bg_bright_white
=item * bg_bright_yellow
Make the background the named color and bright (however your terminal
does that).
=item * blink
Make the text blink (however your terminal does that).
lib/Antsy.pm view on Meta::CPAN
Put the cursor back to where you saved it. See also C<save_cursor>.
=item * reverse
Use the background color for the text color, and the text color
for the background.
=item * save_cursor
Save the current location of the cursor. See also C<save_cursor>.
lib/Antsy.pm view on Meta::CPAN
sub _256 ( $i, $n ) {
carp "Bad 256 $n" unless( int($n) == $n and $n >= 0 and $n <= 255 );
_seq( 'm', $i, 5, $n );
}
sub _bg () { 48 } # a magic number that applies the SGR to the background
sub _erase ( $n, $command ) {
carp "Bad value <$n>. Should be 0, 1, or 2"
unless grep { $_ == $n } qw(0 1 2);
carp "Bad erase command <$command>. Should be J or K"
lib/Antsy.pm view on Meta::CPAN
=item * iterm_bg_color()
=item * iterm_fg_color() OSC 4 ; -1; ? ST
Returns an array reference of the decimal values for the Red, Green
and Blue components of the background or foreground. These triplets
may be 2 or 4 digits in each component.
=cut
sub _iterm_id { 'iTerm.app' }
lib/Antsy.pm view on Meta::CPAN
sub iterm_bounce_dock_icon { iterm_attention( 'yes' ) }
sub iterm_bounce_dock_icon_once { iterm_attention( 'once' ) }
sub iterm_unbounce_dock_icon { iterm_attention( 'no' ) }
sub iterm_fireworks { iterm_attention( 'fireworks' ) }
=item * background_image_file
OSC 1337 ; SetBackgroundImageFile=[base64] ST
The value of [base64] is a base64-encoded filename to display as a background image. If it is an empty string then the background image will be removed. User confirmation is required as a security measure.
=item * report_cell_cell
OSC 1337 ; ReportCellSize ST
The terminal responds with either:
view all matches for this distribution
view release on metacpan or search on metacpan
examples/apache.pl view on Meta::CPAN
, user => undef
, group => undef
);
my %run_opts =
( background => 1
, max_childs => 1
# , max_conn_per_child => 10_000
# , max_req_per_child => 100_000
# , max_req_per_conn => 100
# , max_time_per_conn => 120
examples/apache.pl view on Meta::CPAN
my %net_opts =
( host => 'localhost:5422'
);
GetOptions
'background|bg!' => \$run_opts{background}
, 'childs|c=i' => \$run_opts{max_childs}
, 'group|g=s' => \$os_opts{group}
, 'host|h=s' => \$net_opts{host}
, 'pid-file|p=s' => \$os_opts{pid_file}
, 'user|u=s' => \$os_opts{user}
, 'v+' => \$mode # -v -vv -vvv
or exit 1;
$run_opts{background} //= 1;
#
## initialize the daemon activities
#
view all matches for this distribution
view release on metacpan or search on metacpan
examples/net.pl view on Meta::CPAN
, user => undef
, group => undef
);
my %run_opts =
( background => 1
, max_childs => 1 # there can only be one multiplexer
);
my %net_opts =
( host => 'localhost:5422'
, port => undef
);
GetOptions
'background|bg!' => \$run_opts{background}
, 'childs|c=i' => \$run_opts{max_childs}
, 'group|g=s' => \$os_opts{group}
, 'host|h=s' => \$net_opts{host}
, 'pid-file|p=s' => \$os_opts{pid_file}
, 'port|p=s' => \$net_opts{port}
, 'user|u=s' => \$os_opts{user}
, 'v+' => \$mode # -v -vv -vvv
or exit 1;
$run_opts{background} //= 1;
unless(defined $net_opts{port})
{ my $port = $net_opts{port} = $1
if $net_opts{host} =~ s/\:([0-9]+)$//;
defined $port or error __"no port specified";
view all matches for this distribution
view release on metacpan or search on metacpan
FastPing.pm view on Meta::CPAN
=back
=head1 THE AnyEvent::FastPing CLASS
The AnyEvent::FastPing class represents a single "pinger". A "pinger"
comes with its own thread to send packets in the background, a rate-limit
machinery and separate idle/receive callbacks.
The recommended workflow (there are others) is this: 1. create a new
AnyEvent::FastPing object 2. configure the address lists and ranges to
ping, also configure an idle callback and optionally a receive callback
view all matches for this distribution
view release on metacpan or search on metacpan
looked up in the C<main> package.
If the called function returns, doesn't exist, or any error occurs, the
process exits.
Preparing the process is done in the background - when all commands have
been sent, the callback is invoked with the local communications socket
as argument. At this point you can start using the socket in any way you
like.
If the communication socket isn't used, it should be closed on both sides,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/AnyEvent/Gearman/Client.pm view on Meta::CPAN
on_fail => sub {
# job failed
},
);
# start background job
$gearman->add_task_bg(
$function => $workload,
);
lib/AnyEvent/Gearman/Client.pm view on Meta::CPAN
You should to set C<on_complete> and C<on_fail> at least.
=head2 add_task_bg($function, $workload, %callbacks)
Starts a new background job. The parameters are the same as
L<add_task($function, $workload, %callbacks)|add_task()>, but the only
callback that is called is C<on_created>.
$gearman->add_task_bg(
$function => $workload,
view all matches for this distribution
view release on metacpan or search on metacpan
=item * Erlang sends are synchronous, AEMP sends are asynchronous.
Sending messages in Erlang is synchronous and blocks the process until
a connection has been established and the message sent (and so does not
need a queue that can overflow). AEMP sends return immediately, connection
establishment is handled in the background.
=item * Erlang suffers from silent message loss, AEMP does not.
Erlang implements few guarantees on messages delivery - messages can get
lost without any of the processes realising it (i.e. you send messages a,
view all matches for this distribution
view release on metacpan or search on metacpan
lib/AnyEvent/Net/MPD.pm view on Meta::CPAN
underscores in command names from this module.
=item * L<Net::Async::MPD>
The author's second (and much more successful) attempt at writing this
distribution, using L<IO::Async> in the background. Please use that one
instead.
=item * L<Audio::MPD>
The first MPD library on CPAN. This one also blocks and is based on L<Moose>.
lib/AnyEvent/Net/MPD.pm view on Meta::CPAN
A L<Dancer> plugin to connect to MPD. Haven't really tried it, since I
haven't used Dancer...
=item * L<POE::Component::Client::MPD>
A L<POE> component to connect to MPD. This uses Audio::MPD in the background.
=back
=head1 AUTHOR
view all matches for this distribution
view release on metacpan or search on metacpan
lib/AnyEvent/RabbitMQ/Fork.pm view on Meta::CPAN
}
=head1 DESCRIPTION
This module is mean't to be a close to a drop-in facade for running
L<AnyEvent::RabbitMQ> in a background process via L<AnyEvent::Fork::RPC>.
Tha main use case is for programs where other operations block with little
control due to difficulty/laziness. In this way, the process hosting the
connection RabbitMQ is doing nothing else but processing messages.
view all matches for this distribution
view release on metacpan or search on metacpan
maint/cip-before-install view on Meta::CPAN
set -ex
cip exec cpanm -n Net::SSLeay IO::Socket::SSL Capture::Tiny Test::Memory::Cycle HTTP::Proxy
cip exec cpanm -n EV || true
cip exec cpanm -n Mojolicious || true
cip exec-background perl maint/proxy.pl
view all matches for this distribution
view release on metacpan or search on metacpan
lib/AnyEvent/Handle.pm view on Meta::CPAN
Destroying the handle object in this way has the advantage that callbacks
will be removed as well, so if those are the only reference holders (as
is common), then one doesn't need to do anything special to break any
reference cycles.
The handle might still linger in the background and write out remaining
data, as specified by the C<linger> option, however.
=cut
sub destroy {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/AnyMongo/Collection.pm view on Meta::CPAN
$obj->Push("unique" => ($options->{unique} ? boolean::true : boolean::false));
}
if (exists $options->{drop_dups}) {
$obj->Push("dropDups" => ($options->{drop_dups} ? boolean::true : boolean::false));
}
if (exists $options->{background}) {
$obj->Push("background" => ($options->{background} ? boolean::true : boolean::false));
}
my ($db, $coll) = $ns =~ m/^([^\.]+)\.(.*)/;
my $indexes = $self->_database->get_collection("system.indexes");
view all matches for this distribution
view release on metacpan or search on metacpan
We've been very pleased with Apache::ASP and its support.
=item Planet of Music
Apache::ASP has been a great tool. Just a little
background.... the whole site had been in cgi flat files when I started
here. I was looking for a technology that would allow me to write the
objects and NEVER invoke CGI.pm... I found it and hopefuly I will be able to
implement this every site I go to.
When I got here there was a huge argument about needing a game engine
view all matches for this distribution
view release on metacpan or search on metacpan
If the <id> of a <header> block is 'REFERER', then the referer header is
checked against an array of referer values specified by <referer> tags
in the <header> block.
For example, using the sample conf file, requests for /images/background.gif
coming from a page on http://www.rulez.com/, or http://www.picnicman.com/
will be accepted.
<referer> tags are treated as regexes ( like <path> tags ). The regex used
is 'm|^$ar|' where $ar is the contents of the <referer> tags.
view all matches for this distribution
view release on metacpan or search on metacpan
used instead).
=item BodyArgs
This entire string is passed in the <BODY> tag. Useful for setting
background images, background color, link colors, etc. If set in the
httpd.conf file, you must put quotes around the value, and escape any
quotes in the value. If this value is set in the .htaccess file, this
is not necessary:
In httpd.conf: PerlSetVar BodyArgs "BACKGROUND=gray.gif text=\"#FFFFFF\""
view all matches for this distribution