append pdf 1.03
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 737
Crypt::OpenPGP 1.03
Crypt::OpenPGP is a Pure-Perl OpenPGP implementation. more>>
Crypt::OpenPGP is a Pure-Perl OpenPGP implementation.
SYNOPSIS
my $pgp = Crypt::OpenPGP->new;
my $result = $pgp->handle( Data => $message_body );
my $signature = $pgp->sign(
Filename => $file,
KeyID => $key_id,
Passphrase => $pass,
Detach => 1,
Armour => 1,
);
my $valid = $pgp->verify(
Signature => $signature,
Files => [ $file ],
);
my $ciphertext = $pgp->encrypt(
Filename => $file,
Recipients => $key_id,
Armour => 1,
);
my $plaintext = $pgp->decrypt(
Data => $ciphertext,
Passphrase => $pass,
);
Crypt::OpenPGP is a pure-Perl implementation of the OpenPGP standard[1]. In addition to support for the standard itself, Crypt::OpenPGP claims compatibility with many other PGP implementations, both those that support the standard and those that preceded it.
Crypt::OpenPGP provides signing/verification, encryption/decryption, keyring management, and key-pair generation; in short it should provide you with everything you need to PGP-enable yourself. Alternatively it can be used as part of a larger system; for example, perhaps you have a web-form-to-email generator written in Perl, and youd like to encrypt outgoing messages, because they contain sensitive information. Crypt::OpenPGP can be plugged into such a scenario, given your public key, and told to encrypt all messages; they will then be readable only by you.
This module currently supports RSA and DSA for digital signatures, and RSA and ElGamal for encryption/decryption. It supports the symmetric ciphers 3DES, Blowfish, IDEA, Twofish, CAST5, and Rijndael (AES). Rijndael is supported for key sizes of 128, 192, and 256 bits. Crypt::OpenPGP supports the digest algorithms MD5, SHA-1, and RIPE-MD/160. And it supports ZIP and Zlib compression.
<<lessSYNOPSIS
my $pgp = Crypt::OpenPGP->new;
my $result = $pgp->handle( Data => $message_body );
my $signature = $pgp->sign(
Filename => $file,
KeyID => $key_id,
Passphrase => $pass,
Detach => 1,
Armour => 1,
);
my $valid = $pgp->verify(
Signature => $signature,
Files => [ $file ],
);
my $ciphertext = $pgp->encrypt(
Filename => $file,
Recipients => $key_id,
Armour => 1,
);
my $plaintext = $pgp->decrypt(
Data => $ciphertext,
Passphrase => $pass,
);
Crypt::OpenPGP is a pure-Perl implementation of the OpenPGP standard[1]. In addition to support for the standard itself, Crypt::OpenPGP claims compatibility with many other PGP implementations, both those that support the standard and those that preceded it.
Crypt::OpenPGP provides signing/verification, encryption/decryption, keyring management, and key-pair generation; in short it should provide you with everything you need to PGP-enable yourself. Alternatively it can be used as part of a larger system; for example, perhaps you have a web-form-to-email generator written in Perl, and youd like to encrypt outgoing messages, because they contain sensitive information. Crypt::OpenPGP can be plugged into such a scenario, given your public key, and told to encrypt all messages; they will then be readable only by you.
This module currently supports RSA and DSA for digital signatures, and RSA and ElGamal for encryption/decryption. It supports the symmetric ciphers 3DES, Blowfish, IDEA, Twofish, CAST5, and Rijndael (AES). Rijndael is supported for key sizes of 128, 192, and 256 bits. Crypt::OpenPGP supports the digest algorithms MD5, SHA-1, and RIPE-MD/160. And it supports ZIP and Zlib compression.
Download (0.095MB)
Added: 2007-08-17 License: Perl Artistic License Price:
800 downloads
Cache::Bounded 1.03
Cache::Bounded is a size-aware in-memory cache optimized for speed. more>>
Cache::Bounded is a size-aware in-memory cache optimized for speed.
SYNOPSIS
Cache::Bounded is designed for caching items into memory in a very fast but rudimentarily size-aware fashion.
Most intelligent caches take either a size-aware or use-aware approach. They do so by either anlysing the size of all the elements in the cache or their frequency of usage before determining which elements to drop from the cache. Unfortunately, the processing overhead for this logic (usually applied on insert) will often slow these caches singnificantly when frequent insertions are needed.
This module was designed address when this speed-penalty becomes a problem. Specifically, it is a rudimentarily size-aware cache that is optimized to be very fast.
For its size analysis, this module merely checks the number of elements in the cache against a raw size limit. (The default limit is 500,000) Additionally, to aid speed, the "size" check doesnt occur on every insertion. Only after a count of a certain number of insertions (default 1,000) is the size check performed. If the size limit has been exceeded, the entire cache is purged. (Since there is no usage analysis, there is no other logical depreciation that can be applied)
This produces a very fast in-memory cache that you can tune to approximate size based upon your data elements.
USAGE
my $cache = new Cache::Bounded;
$cache->set($key,$value);
my $value = $cache->get($key);
<<lessSYNOPSIS
Cache::Bounded is designed for caching items into memory in a very fast but rudimentarily size-aware fashion.
Most intelligent caches take either a size-aware or use-aware approach. They do so by either anlysing the size of all the elements in the cache or their frequency of usage before determining which elements to drop from the cache. Unfortunately, the processing overhead for this logic (usually applied on insert) will often slow these caches singnificantly when frequent insertions are needed.
This module was designed address when this speed-penalty becomes a problem. Specifically, it is a rudimentarily size-aware cache that is optimized to be very fast.
For its size analysis, this module merely checks the number of elements in the cache against a raw size limit. (The default limit is 500,000) Additionally, to aid speed, the "size" check doesnt occur on every insertion. Only after a count of a certain number of insertions (default 1,000) is the size check performed. If the size limit has been exceeded, the entire cache is purged. (Since there is no usage analysis, there is no other logical depreciation that can be applied)
This produces a very fast in-memory cache that you can tune to approximate size based upon your data elements.
USAGE
my $cache = new Cache::Bounded;
$cache->set($key,$value);
my $value = $cache->get($key);
Download (0.004MB)
Added: 2007-05-28 License: Perl Artistic License Price:
879 downloads
mod-apache-snmp 1.03
Apache SNMP Module allows you to monitor different configuration and status values of the Apache Web server using SNMP. more>>
Apache SNMP Module allows you to monitor different configuration and status values of the Apache Web server using SNMP.
Enhancements:
- Bugfixes, the inclusion of MRTG scripts, and changes to make the module work on the IBM HTTP Server.
<<lessEnhancements:
- Bugfixes, the inclusion of MRTG scripts, and changes to make the module work on the IBM HTTP Server.
Download (0.032MB)
Added: 2005-08-23 License: GPL (GNU General Public License) Price:
1533 downloads
as_propsheet 1.03
as_propsheet can be used to create Web based user interfaces for configuring sets of properties. more>>
as_propsheet can be used to create Web based user interfaces for configuring sets of properties. The project can compose and generate HTML forms with fields that appear split between multiple pages.
The form pages may be browsed using a tabbed or wizard-like user interface. The form may be composed by adding several types of fields to each form page.
<<lessThe form pages may be browsed using a tabbed or wizard-like user interface. The form may be composed by adding several types of fields to each form page.
Download (MB)
Added: 2007-03-23 License: GPL (GNU General Public License) Price:
946 downloads
GF1 1.03
GF1 allows you to play GIPF against your computer. more>>
GF1 allows you to play GIPF against your computer.
GF1 is a computer program for playing the 2 player boardgame GIPF.
It has a nice and easy to use graphical user interface and you can play against another human, against the computer, or let the computer play against itself.
The computer player is good enough to beat even the best human players at the moment.
The faster you computer, the better it plays. But even on a pentium 60, the computer can be hard to beat.
Enhancements:
- a new way to execute a move has been added: if you now click on the to-position when it has already been selected, your move gets executed.
- added license-section to the about-box.
- the main window titlebar will show the name of the file you loaded or saved. when saving you can automatically use the same name as the previously loaded file.
- started using a new filechooser widget. (should be easier for windows-users)
- the file produced by the option "save log" now has the format specified on the gipf website for writing down games.
<<lessGF1 is a computer program for playing the 2 player boardgame GIPF.
It has a nice and easy to use graphical user interface and you can play against another human, against the computer, or let the computer play against itself.
The computer player is good enough to beat even the best human players at the moment.
The faster you computer, the better it plays. But even on a pentium 60, the computer can be hard to beat.
Enhancements:
- a new way to execute a move has been added: if you now click on the to-position when it has already been selected, your move gets executed.
- added license-section to the about-box.
- the main window titlebar will show the name of the file you loaded or saved. when saving you can automatically use the same name as the previously loaded file.
- started using a new filechooser widget. (should be easier for windows-users)
- the file produced by the option "save log" now has the format specified on the gipf website for writing down games.
Download (0.30MB)
Added: 2006-12-04 License: GPL (GNU General Public License) Price:
1056 downloads
PikseLiveCD 1.03
PikseLiveCD is a LiveCD with Piksel-related software and art. more>>
PikseLiveCD is a LiveCD with Piksel-related software and art.
Usage:
- Boot from cd-rom on any PC.
- Type two-letter keyboard code when asked.
- Wait for automatic login process and desktop to appear...
- Right click for menu.
Enhancements:
- added piksel-04 ogg video in /usr/share/media
- installed modules for the webcams
- qc-usb
- spca5
- pwc
- -upgraded mob to new version ( but I dunno if it works ! Ive spent
- almost 2 days just on this ... Really cant understand what happens . If doesnt work
- properly maybe putting old one is better ?? )
- Fixed bug on pd-0.39
- upgraded pdp
- upgraded pd-patches
- upgraded pidip
- upgraded gem
- installed audioflow
- installed Mplayer1.07
- installed LIVES
- installed Fluxus
- upgraded libguile
- installed pakt
- installed pikselTango"
<<lessUsage:
- Boot from cd-rom on any PC.
- Type two-letter keyboard code when asked.
- Wait for automatic login process and desktop to appear...
- Right click for menu.
Enhancements:
- added piksel-04 ogg video in /usr/share/media
- installed modules for the webcams
- qc-usb
- spca5
- pwc
- -upgraded mob to new version ( but I dunno if it works ! Ive spent
- almost 2 days just on this ... Really cant understand what happens . If doesnt work
- properly maybe putting old one is better ?? )
- Fixed bug on pd-0.39
- upgraded pdp
- upgraded pd-patches
- upgraded pidip
- upgraded gem
- installed audioflow
- installed Mplayer1.07
- installed LIVES
- installed Fluxus
- upgraded libguile
- installed pakt
- installed pikselTango"
Download (676.8MB)
Added: 2007-05-17 License: GPL (GNU General Public License) Price:
890 downloads
JUnit PDF Report 1.0
JUnit PDF Report project generates a PDF report from JUnit test results. more>>
JUnit PDF Report project generates a PDF report from JUnit test results.
It uses Apache Ant to execute the generation, and Apache FOP to render the PDF document.
While automating tests for my company, I found that everything I need is available in the open source community, except printable test reports.
I couldnt sell the JUnitReport HTML reports to users. They see them as a technical artifact, and want to have a report that feels like a sign-off document.
Rather than building a solution in-house, I decided to initiate an open source project for it. I hope I can give something back to the community for everything it gave me.
<<lessIt uses Apache Ant to execute the generation, and Apache FOP to render the PDF document.
While automating tests for my company, I found that everything I need is available in the open source community, except printable test reports.
I couldnt sell the JUnitReport HTML reports to users. They see them as a technical artifact, and want to have a report that feels like a sign-off document.
Rather than building a solution in-house, I decided to initiate an open source project for it. I hope I can give something back to the community for everything it gave me.
Download (0.20MB)
Added: 2006-12-10 License: Common Public License Price:
1059 downloads
CAM::PDF::GS 1.07
CAM::PDF::GS is a PDF graphic state. more>>
CAM::PDF::GS is a PDF graphic state.
SYNOPSIS
use CAM::PDF;
my $pdf = CAM::PDF->new($filename);
my $contentTree = $pdf->getPageContentTree(4);
my $gs = $contentTree->computeGS();
This class is used to represent the graphic state at a point in the rendering flow of a PDF page. Much of the functionality is actually based in the parent class, CAM::PDF::GS::NoText.
Subclasses that want to do something useful with text should override the renderText() method.
<<lessSYNOPSIS
use CAM::PDF;
my $pdf = CAM::PDF->new($filename);
my $contentTree = $pdf->getPageContentTree(4);
my $gs = $contentTree->computeGS();
This class is used to represent the graphic state at a point in the rendering flow of a PDF page. Much of the functionality is actually based in the parent class, CAM::PDF::GS::NoText.
Subclasses that want to do something useful with text should override the renderText() method.
Download (0.72MB)
Added: 2006-07-28 License: Perl Artistic License Price:
1184 downloads
RubySlippers 1.03
RubySlippers is a GUI frontend to the RubyGems package management system. more>>
RubySlippers is a GUI frontend to the RubyGems package management system. It can view gemspec files, list installed files, install gems, query the RubyGems list, build Gems, and view documentation.
This program uses the RubyWebDialogs GUI, and is built on the rwdtinker framework, so more applets can be loaded and unloaded. Context sensitive help is included.
Installation
Using the "Install Gem" tab
You can list the Gems available in the repository
Click on the button.
It will take several seconds then should show the list.
To install a gem, enter the name into to textbox and click on the install Gem button
You should see the result of the command on the screen
You can check in the first tab if it is installed.
Enhancements:
- add in test harness
- fix gem list input
- added in dependencies to gemcommands
- added gemspec filename to editgemspec tab
- added gemwhich command
<<lessThis program uses the RubyWebDialogs GUI, and is built on the rwdtinker framework, so more applets can be loaded and unloaded. Context sensitive help is included.
Installation
Using the "Install Gem" tab
You can list the Gems available in the repository
Click on the button.
It will take several seconds then should show the list.
To install a gem, enter the name into to textbox and click on the install Gem button
You should see the result of the command on the screen
You can check in the first tab if it is installed.
Enhancements:
- add in test harness
- fix gem list input
- added in dependencies to gemcommands
- added gemspec filename to editgemspec tab
- added gemwhich command
Download (0.13MB)
Added: 2005-04-27 License: GPL (GNU General Public License) Price:
1640 downloads
Ansilove/PHP 1.03
Ansilove/PHP is a set of tools to convert ANSI and art scene-related file formats into PNG images. more>>
Ansilove/PHP is a set of tools to convert ANSi and artscene related file formats into PNG images, supporting ANSi (.ANS), BiNARY (.BIN), and ADF (.ADF) formats.
Ansilove/PHP project includes an all purposes command line converter, along with a library to use on web pages for doing "on the fly" conversions.
Main features:
- ANSi (.ANS) format support
- BiNARY (.BIN) format support
- ADF (.ADF) format support
- Small output file size (4-bit PNG)
- SAUCE (Standard Architecture for Universal Comment Extentions) support
- 80x25 font support
- 80x50 font support
- Amiga font support
- iCE colors support
<<lessAnsilove/PHP project includes an all purposes command line converter, along with a library to use on web pages for doing "on the fly" conversions.
Main features:
- ANSi (.ANS) format support
- BiNARY (.BIN) format support
- ADF (.ADF) format support
- Small output file size (4-bit PNG)
- SAUCE (Standard Architecture for Universal Comment Extentions) support
- 80x25 font support
- 80x50 font support
- Amiga font support
- iCE colors support
Download (0.13MB)
Added: 2006-02-11 License: GPL (GNU General Public License) Price:
1350 downloads
Thin SFTP Applet 1.03
Thin SFTP Applet is a full featured Secure File Transfer Program. more>>
Thin SFTP Applet is a full featured Secure File Transfer Program. Thin SFTP Applet can be use for secure file transfer and management and can be easily integrated into your website or web application.
You can use our SFTP applet to carry out recursive folder uploads and downloads, with entire directory trees being transfered in a single click.
Interrupted transfers can be resumed. Unlike the FTP protocol, with SFTP all data and commands are encrypted for maximum security.
In spite of being a web client, its appearence is no different from a traditional 2-Table File Transfer Program for desktops.
Because the client is an applet it does not need to refresh itself each time a file transfer or any other operation takes place. The result is that the user experience is no different from using a desktop client.
Enhancements:
- A minor bug related to connection pooling and reuse was fixed.
<<lessYou can use our SFTP applet to carry out recursive folder uploads and downloads, with entire directory trees being transfered in a single click.
Interrupted transfers can be resumed. Unlike the FTP protocol, with SFTP all data and commands are encrypted for maximum security.
In spite of being a web client, its appearence is no different from a traditional 2-Table File Transfer Program for desktops.
Because the client is an applet it does not need to refresh itself each time a file transfer or any other operation takes place. The result is that the user experience is no different from using a desktop client.
Enhancements:
- A minor bug related to connection pooling and reuse was fixed.
Download (0.13MB)
Added: 2006-10-25 License: Free for non-commercial use Price: $320
1126 downloads
edanator 1.03
edanator is an intuitive graphical binary and hex calculator. more>>
edanator is an intuitive graphical binary and hex calculator. Each nibble is displayed in hex and binary. Clicking on the button (hex nibble or binary bit) changes the value. Bit and nibble shifting is supported via dedicated buttons. The project supports variable widths per word (up to 64- bits), three words (each on a different row), and mathematical operations between words.
Enhancements:
- An endian-ness button for swapping bit labels was added along with a bit reverse function.
<<lessEnhancements:
- An endian-ness button for swapping bit labels was added along with a bit reverse function.
Download (0.007MB)
Added: 2007-03-27 License: LGPL (GNU Lesser General Public License) Price:
944 downloads
Indexed PDF Creator 1.0.0
Indexed PDF Creator creates indexed pdf documents from text, such as legacy system reports. more>>
Creates indexed pdf documents from text files. Designed to aid creating an electronic distribution method for legacy system reports, since many mainframe type print spools are plain text.
Allows indexing, customizing page settings, font size, font face, and super-imposing text over an image in the case of using pre-printed forms. Supports unlimited levels of indexing bookmarks in documents and system/user configuration files.
Suitable for use in an intranet gateway for generating PDF documents in real-time.
Enhancements:
- This fixes a bug for page breaking when the number of lines is a multiple of the lines per page, thanks to Carlo Benna
<<lessAllows indexing, customizing page settings, font size, font face, and super-imposing text over an image in the case of using pre-printed forms. Supports unlimited levels of indexing bookmarks in documents and system/user configuration files.
Suitable for use in an intranet gateway for generating PDF documents in real-time.
Enhancements:
- This fixes a bug for page breaking when the number of lines is a multiple of the lines per page, thanks to Carlo Benna
Download (0.22MB)
Added: 2005-04-12 License: GPL (GNU General Public License) Price:
1667 downloads
Readonly 1.03
Readonly is a Perl module that offers the facility for creating read-only scalars, arrays, hashes. more>>
Readonly is a Perl module that offers the facility for creating read-only scalars, arrays, hashes.
SYNOPSIS
use Readonly;
# Read-only scalar
Readonly::Scalar $sca => $initial_value;
Readonly::Scalar my $sca => $initial_value;
# Read-only array
Readonly::Array @arr => @values;
Readonly::Array my @arr => @values;
# Read-only hash
Readonly::Hash %has => (key => value, key => value, ...);
Readonly::Hash my %has => (key => value, key => value, ...);
# or:
Readonly::Hash %has => {key => value, key => value, ...};
# You can use the read-only variables like any regular variables:
print $sca;
$something = $sca + $arr[2];
next if $has{$some_key};
# But if you try to modify a value, your program will die:
$sca = 7;
push @arr, seven;
delete $has{key};
# The error message is "Modification of a read-only value
attempted"
# Alternate form (Perl 5.8 and later)
Readonly $sca => $initial_value;
Readonly my $sca => $initial_value;
Readonly @arr => @values;
Readonly my @arr => @values;
Readonly %has => (key => value, key => value, ...);
Readonly my %has => (key => value, key => value, ...);
# Alternate form (for Perls earlier than v5.8)
Readonly $sca => $initial_value;
Readonly my $sca => $initial_value;
Readonly @arr => @values;
Readonly my @arr => @values;
Readonly %has => (key => value, key => value, ...);
Readonly my %has => (key => value, key => value, ...);
This is a facility for creating non-modifiable variables. This is useful for configuration files, headers, etc. It can also be useful as a development and debugging tool, for catching updates to variables that should not be changed.
If any of the values you pass to Scalar, Array, or Hash are references, then those functions recurse over the data structures, marking everything as Readonly. Usually, this is what you want: the entire structure nonmodifiable. If you want only the top level to be Readonly, use the alternate Scalar1, Array1 and Hash1 functions.
Please note that most users of Readonly will also want to install a companion module Readonly::XS. See the "CONS" section below for more details.
<<lessSYNOPSIS
use Readonly;
# Read-only scalar
Readonly::Scalar $sca => $initial_value;
Readonly::Scalar my $sca => $initial_value;
# Read-only array
Readonly::Array @arr => @values;
Readonly::Array my @arr => @values;
# Read-only hash
Readonly::Hash %has => (key => value, key => value, ...);
Readonly::Hash my %has => (key => value, key => value, ...);
# or:
Readonly::Hash %has => {key => value, key => value, ...};
# You can use the read-only variables like any regular variables:
print $sca;
$something = $sca + $arr[2];
next if $has{$some_key};
# But if you try to modify a value, your program will die:
$sca = 7;
push @arr, seven;
delete $has{key};
# The error message is "Modification of a read-only value
attempted"
# Alternate form (Perl 5.8 and later)
Readonly $sca => $initial_value;
Readonly my $sca => $initial_value;
Readonly @arr => @values;
Readonly my @arr => @values;
Readonly %has => (key => value, key => value, ...);
Readonly my %has => (key => value, key => value, ...);
# Alternate form (for Perls earlier than v5.8)
Readonly $sca => $initial_value;
Readonly my $sca => $initial_value;
Readonly @arr => @values;
Readonly my @arr => @values;
Readonly %has => (key => value, key => value, ...);
Readonly my %has => (key => value, key => value, ...);
This is a facility for creating non-modifiable variables. This is useful for configuration files, headers, etc. It can also be useful as a development and debugging tool, for catching updates to variables that should not be changed.
If any of the values you pass to Scalar, Array, or Hash are references, then those functions recurse over the data structures, marking everything as Readonly. Usually, this is what you want: the entire structure nonmodifiable. If you want only the top level to be Readonly, use the alternate Scalar1, Array1 and Hash1 functions.
Please note that most users of Readonly will also want to install a companion module Readonly::XS. See the "CONS" section below for more details.
Download (0.013MB)
Added: 2007-05-21 License: Perl Artistic License Price:
886 downloads
PHP Timeclock 1.03
PHP Timeclock is a simple yet effective web-based timeclock system. more>>
PHP Timeclock is a simple yet effective web-based timeclock system. It allows you to track all employee time as well as upcoming vacations and more, and it can replace manual sign-in/sign-out sheets.
An administration piece is included which allows an administrator to add or delete users, change a users time or password (if using passwords is enabled), and hide the reports from your users where only an admin or a reports user has access to them. These reports can be run to show daily activitiy or for a range of dates, and can be run for all users, or individually for each user.
This product is distributed under the GPL. This program is free software; you can redistribute it and/or modify it under the terms of the GNU GeneralPublic License version 2, as published by the Free Software Foundation.
<<lessAn administration piece is included which allows an administrator to add or delete users, change a users time or password (if using passwords is enabled), and hide the reports from your users where only an admin or a reports user has access to them. These reports can be run to show daily activitiy or for a range of dates, and can be run for all users, or individually for each user.
This product is distributed under the GPL. This program is free software; you can redistribute it and/or modify it under the terms of the GNU GeneralPublic License version 2, as published by the Free Software Foundation.
Download (0.18MB)
Added: 2006-06-20 License: GPL (GNU General Public License) Price:
1227 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above append pdf 1.03 search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed