6th
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3
XHP 0.5.1
XHP CMS is an easy to install, easy to use, easy to expand content management system. more>>
XHP CMS aka eXpandable Home Page is an easy to install, easy to use, easy to expand content management system (CMS) written in PHP and using MySQL as the database engine. It includes blog, image gallery, content, aggregator modules and an API for contributed modules.
Its development has been started in 2003 by Laurentiu "Lars" Matei in Bucharest, Romania. It tries to fill the lack of personal home-page oriented CMSs. Most of the current CMSs are dedicated to the enterprise market or large portals.
We are proud to announce that version 0.4 has been launched on November 6th 2005.
This version is a huge step forward, including new features, bug fixes and security enhancements.
Main features:
- WYSIWYG editing
- support for pages containing several modules
- inline editing of pages
- several module instances
- upload several pictures at once in gallery
- web installers for modules, templates and language packages
- web installer
- new blog module with comments support
- each page can use a different template
- better documentation
<<lessIts development has been started in 2003 by Laurentiu "Lars" Matei in Bucharest, Romania. It tries to fill the lack of personal home-page oriented CMSs. Most of the current CMSs are dedicated to the enterprise market or large portals.
We are proud to announce that version 0.4 has been launched on November 6th 2005.
This version is a huge step forward, including new features, bug fixes and security enhancements.
Main features:
- WYSIWYG editing
- support for pages containing several modules
- inline editing of pages
- several module instances
- upload several pictures at once in gallery
- web installers for modules, templates and language packages
- web installer
- new blog module with comments support
- each page can use a different template
- better documentation
Download (0.47MB)
Added: 2006-03-24 License: GPL (GNU General Public License) Price:
1309 downloads
GD::Graph 1.4308
GD::Graph is a graph plotting module for Perl 5. more>>
GD::Graph is a graph plotting module for Perl 5.
SYNOPSIS
use GD::Graph::moduleName;
GD::Graph is a perl5 module to create charts using the GD module. The following classes for graphs with axes are defined:
GD::Graph::lines
Create a line chart.
GD::Graph::bars and GD::Graph::hbars
Create a bar chart with vertical or horizontal bars.
GD::Graph::points
Create an chart, displaying the data as points.
GD::Graph::linespoints
Combination of lines and points.
GD::Graph::area
Create a graph, representing the data as areas under a line.
GD::Graph::mixed
Create a mixed type graph, any combination of the above. At the moment this is fairly limited. Some of the options that can be used with some of the individual graph types wont work very well. Bar graphs drawn after lines or points graphs may obscure the earlier data, and specifying bar_width will not produce the results you probably expected.
Additional types:
GD::Graph::pie
Create a pie chart.
USAGE:
Fill an array of arrays with the x values and the values of the data sets. Make sure that every array is the same size, otherwise GD::Graph will complain and refuse to compile the graph.
@data = (
["1st","2nd","3rd","4th","5th","6th","7th", "8th", "9th"],
[ 1, 2, 5, 6, 3, 1.5, 1, 3, 4],
[ sort { $a $b } (1, 2, 5, 6, 3, 1.5, 1, 3, 4) ]
);
If you dont have a value for a point in a certain dataset, you can use undef, and the point will be skipped.
Create a new GD::Graph object by calling the new method on the graph type you want to create (chart is bars, hbars, lines, points, linespoints, mixed or pie).
my $graph = GD::Graph::chart->new(400, 300);
Set the graph options.
$graph->set(
x_label => X Label,
y_label => Y label,
title => Some simple graph,
y_max_value => 8,
y_tick_number => 8,
y_label_skip => 2
) or die $graph->error;
and plot the graph.
my $gd = $graph->plot(@data) or die $graph->error;
Then do whatever your current version of GD allows you to do to save the file. For versions of GD older than 1.19 (or more recent than 2.15), youd do something like:
open(IMG, >file.gif) or die $!;
binmode IMG;
print IMG $gd->gif;
close IMG;
and for newer versions (1.20 and up) youd write
open(IMG, >file.png) or die $!;
binmode IMG;
print IMG $gd->png;
or
open(IMG, >file.gd2) or die $!;
binmode IMG;
print IMG $gd->gd2;
Then theres also of course the possibility of using a shorter version (for each of the export functions that GD supports):
print IMG $graph->plot(@data)->gif;
print IMG $graph->plot(@data)->png;
print IMG $graph->plot(@data)->gd;
print IMG $graph->plot(@data)->gd2;
If you want to write something that doesnt require your code to know whether to use gif or png, you could do something like:
if ($gd->can(png)) { # blabla }
or you can use the convenience method export_format:
my $format = $graph->export_format;
open(IMG, ">file.$format") or die $!;
binmode IMG;
print IMG $graph->plot(@data)->$format();
close IMG;
or for CGI programs:
use CGI qw(:standard);
#...
my $format = $graph->export_format;
print header("image/$format");
binmode STDOUT;
print $graph->plot(@data)->$format();
(the parentheses after $format are necessary, to help the compiler decide that you mean a method name there)
<<lessSYNOPSIS
use GD::Graph::moduleName;
GD::Graph is a perl5 module to create charts using the GD module. The following classes for graphs with axes are defined:
GD::Graph::lines
Create a line chart.
GD::Graph::bars and GD::Graph::hbars
Create a bar chart with vertical or horizontal bars.
GD::Graph::points
Create an chart, displaying the data as points.
GD::Graph::linespoints
Combination of lines and points.
GD::Graph::area
Create a graph, representing the data as areas under a line.
GD::Graph::mixed
Create a mixed type graph, any combination of the above. At the moment this is fairly limited. Some of the options that can be used with some of the individual graph types wont work very well. Bar graphs drawn after lines or points graphs may obscure the earlier data, and specifying bar_width will not produce the results you probably expected.
Additional types:
GD::Graph::pie
Create a pie chart.
USAGE:
Fill an array of arrays with the x values and the values of the data sets. Make sure that every array is the same size, otherwise GD::Graph will complain and refuse to compile the graph.
@data = (
["1st","2nd","3rd","4th","5th","6th","7th", "8th", "9th"],
[ 1, 2, 5, 6, 3, 1.5, 1, 3, 4],
[ sort { $a $b } (1, 2, 5, 6, 3, 1.5, 1, 3, 4) ]
);
If you dont have a value for a point in a certain dataset, you can use undef, and the point will be skipped.
Create a new GD::Graph object by calling the new method on the graph type you want to create (chart is bars, hbars, lines, points, linespoints, mixed or pie).
my $graph = GD::Graph::chart->new(400, 300);
Set the graph options.
$graph->set(
x_label => X Label,
y_label => Y label,
title => Some simple graph,
y_max_value => 8,
y_tick_number => 8,
y_label_skip => 2
) or die $graph->error;
and plot the graph.
my $gd = $graph->plot(@data) or die $graph->error;
Then do whatever your current version of GD allows you to do to save the file. For versions of GD older than 1.19 (or more recent than 2.15), youd do something like:
open(IMG, >file.gif) or die $!;
binmode IMG;
print IMG $gd->gif;
close IMG;
and for newer versions (1.20 and up) youd write
open(IMG, >file.png) or die $!;
binmode IMG;
print IMG $gd->png;
or
open(IMG, >file.gd2) or die $!;
binmode IMG;
print IMG $gd->gd2;
Then theres also of course the possibility of using a shorter version (for each of the export functions that GD supports):
print IMG $graph->plot(@data)->gif;
print IMG $graph->plot(@data)->png;
print IMG $graph->plot(@data)->gd;
print IMG $graph->plot(@data)->gd2;
If you want to write something that doesnt require your code to know whether to use gif or png, you could do something like:
if ($gd->can(png)) { # blabla }
or you can use the convenience method export_format:
my $format = $graph->export_format;
open(IMG, ">file.$format") or die $!;
binmode IMG;
print IMG $graph->plot(@data)->$format();
close IMG;
or for CGI programs:
use CGI qw(:standard);
#...
my $format = $graph->export_format;
print header("image/$format");
binmode STDOUT;
print $graph->plot(@data)->$format();
(the parentheses after $format are necessary, to help the compiler decide that you mean a method name there)
Download (0.14MB)
Added: 2007-04-24 License: Perl Artistic License Price:
915 downloads
mod_log_sql 1.100
mod_log_sql gives Apache the capability of logging access-log entries to an SQL database. more>>
mod_log_sql gives Apache the capability of logging access-log entries to an SQL database. mod_log_sql is a logging module for Apache 1.3 and 2.0 which logs all requests to a database. This began a port of the Apache 1.3 version of the module by Chris Powell, and as of February 6th, 2004 Chris Powell and I have decided to switch maintainer-ship of the module over to me.
This module now compiles under Apache 1.3 and Apache 2.0 from the same source.
The 1.9x versions are to be considered beta quality, as they contain new features and some major code cleanups. If you are using Apache 1.3 it is recommended that you use mod_log_sql version 1.18. Only use the 1.9x releases if you need the new features they provide.
<<lessThis module now compiles under Apache 1.3 and Apache 2.0 from the same source.
The 1.9x versions are to be considered beta quality, as they contain new features and some major code cleanups. If you are using Apache 1.3 it is recommended that you use mod_log_sql version 1.18. Only use the 1.9x releases if you need the new features they provide.
Download (0.12MB)
Added: 2006-05-10 License: Open Software License Price:
718 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above 6th 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
