display
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2513
Relations::Display 0.92
Relations::Display is a DBI/DBD::mysql Query Graphing Perl module. more>>
Relations::Display is a DBI/DBD::mysql Query Graphing Perl module.
SYNOPSIS
# DBI, Relations::Display Script that creates a
# matrix, table, and graph from a query.
use DBI;
use Relations;
use Relations::Query;
use Relations::Abstract;
use Relations::Display;
$dsn = "DBI:mysql:watcher";
$username = "root";
$password = ;
$dbh = DBI->connect($dsn,$username,$password,{PrintError => 1, RaiseError => 0});
$abstract = new Relations::Abstract($dbh);
$display = new Relations::Display(-abstract => $abstract,
-query => {-select => {total => "count(*)",
first => "Bird",
second => "Count",
third => "if(gender=Male,Boy,Girl)",
tao => "if(gender=Male,Yang,Yin)",
sex => "gender",
kind => "sp_name",
id => "species.sp_id",
fourth => "(species.sp_id+50)",
vert => "2",
horiz => "1.5"},
-from => [bird,species],
-where => [species.sp_id=bird.sp_id,
species.sp_id < 4],
-group_by => [sp_name,gender,first,second],
-order_by => [gender,sp_name]},
-x_axis => first,kind,id,fourth,
-legend => second,third,tao,sex,vert,horiz,
-y_axis => total,
-hide => fourth,third,vert,horiz,
-vertical => vert,
-horizontal => horiz);
$matrix = $display->get_matrix();
$table = $display->get_table();
$display->set(-chart => bars,
-width => 400,
-height => 400,
-settings => {y_min_value => 0,
y_max_value => 3,
y_tick_number => 3,
transparent => 0}
);
$gph = $display->get_graph();
$gd = $gph->gd();
open(IMG, >test.png) or die $!;
binmode IMG;
print IMG $gd->png;
$dbh->disconnect();
<<lessSYNOPSIS
# DBI, Relations::Display Script that creates a
# matrix, table, and graph from a query.
use DBI;
use Relations;
use Relations::Query;
use Relations::Abstract;
use Relations::Display;
$dsn = "DBI:mysql:watcher";
$username = "root";
$password = ;
$dbh = DBI->connect($dsn,$username,$password,{PrintError => 1, RaiseError => 0});
$abstract = new Relations::Abstract($dbh);
$display = new Relations::Display(-abstract => $abstract,
-query => {-select => {total => "count(*)",
first => "Bird",
second => "Count",
third => "if(gender=Male,Boy,Girl)",
tao => "if(gender=Male,Yang,Yin)",
sex => "gender",
kind => "sp_name",
id => "species.sp_id",
fourth => "(species.sp_id+50)",
vert => "2",
horiz => "1.5"},
-from => [bird,species],
-where => [species.sp_id=bird.sp_id,
species.sp_id < 4],
-group_by => [sp_name,gender,first,second],
-order_by => [gender,sp_name]},
-x_axis => first,kind,id,fourth,
-legend => second,third,tao,sex,vert,horiz,
-y_axis => total,
-hide => fourth,third,vert,horiz,
-vertical => vert,
-horizontal => horiz);
$matrix = $display->get_matrix();
$table = $display->get_table();
$display->set(-chart => bars,
-width => 400,
-height => 400,
-settings => {y_min_value => 0,
y_max_value => 3,
y_tick_number => 3,
transparent => 0}
);
$gph = $display->get_graph();
$gd = $gph->gd();
open(IMG, >test.png) or die $!;
binmode IMG;
print IMG $gd->png;
$dbh->disconnect();
Download (0.024MB)
Added: 2007-06-12 License: Perl Artistic License Price:
865 downloads
Display mail route 0.2.1
Display mail route is an excellent and easy-to-play extension which will display country icons for the stations (server) the mail has been routed. more>> Display mail route 0.2.1 is an excellent and easy-to-play extension which will display country icons for the stations (server) the mail has been routed. As always with my extensions, you need to install Mnenhy or Enigmail.
Enhancements: Compatible with TB 1.5.0.*
Requirements: Thunderbird 1.0 - 1.5.0.* ALL
Added: 2006-09-12 License: MPL Price: FREE
1 downloads
Image Display System 0.82
Image Display System is a CGI that produces image galleries on-the-fly. more>> <<less
Download (0.65MB)
Added: 2005-05-04 License: BSD License Price:
1634 downloads
HTML::Display::Common 0.36
HTML::Display::Common is a Perl module with routines common to all HTML::Display subclasses. more>>
HTML::Display::Common is a Perl module with routines common to all HTML::Display subclasses.
__PACKAGE__->new %ARGS
Creates a new object as a blessed hash. The passed arguments are stored within the hash. If you need to do other things in your constructor, remember to call this constructor as well :
package HTML::Display::WhizBang;
use base HTML::Display::Common;
sub new {
my ($class) = shift;
my %args = @_;
my $self = $class->SUPER::new(%args);
# do stuff
$self;
};
$display->display %ARGS
This is the routine used to display the HTML to the user. It takes the following parameters :
html => SCALAR containing the HTML
file => SCALAR containing the filename of the file to be displayed
base => optional base url for the HTML, so that relative links still work
location (synonymous to base)
Basic usage :
my $html = "< html >< body >< h1 >Hello world!< /h1 >< /body >< /html >";
my $browser = HTML::Display->new();
$browser->display( html => $html );
Location parameter :
If you fetch a page from a remote site but still want to display it to the user, the location parameter comes in very handy :
my $html = < html >< body >< /body >< /html >;
my $browser = HTML::Display->new();
# This will display part of the Google logo
$browser->display( html => $html, base => http://www.google.com );
<<less__PACKAGE__->new %ARGS
Creates a new object as a blessed hash. The passed arguments are stored within the hash. If you need to do other things in your constructor, remember to call this constructor as well :
package HTML::Display::WhizBang;
use base HTML::Display::Common;
sub new {
my ($class) = shift;
my %args = @_;
my $self = $class->SUPER::new(%args);
# do stuff
$self;
};
$display->display %ARGS
This is the routine used to display the HTML to the user. It takes the following parameters :
html => SCALAR containing the HTML
file => SCALAR containing the filename of the file to be displayed
base => optional base url for the HTML, so that relative links still work
location (synonymous to base)
Basic usage :
my $html = "< html >< body >< h1 >Hello world!< /h1 >< /body >< /html >";
my $browser = HTML::Display->new();
$browser->display( html => $html );
Location parameter :
If you fetch a page from a remote site but still want to display it to the user, the location parameter comes in very handy :
my $html = < html >< body >< /body >< /html >;
my $browser = HTML::Display->new();
# This will display part of the Google logo
$browser->display( html => $html, base => http://www.google.com );
Download (0.054MB)
Added: 2006-12-05 License: Perl Artistic License Price:
1054 downloads
Apache::WeSQL::Display 0.53
Apache::WeSQL::Display is a library of functions to create web-pages based on a Journalled SQL database. more>>
Apache::WeSQL::Display is a library of functions to create web-pages based on a Journalled SQL database.
SYNOPSIS
use Apache::WeSQL::Display qw( :all );
This module contains the functions necessary to deal with the jform.wsql, jdetails.wsql, and jlist.wsql web calls. These calls read their configuration from the form.cf, details.cf, and list.cf files. Also, they use certain (see LAYOUT.CF below to know which) entries from the layout.cf file for the layout. The structure of the .cf files is outlined below.
.CF FILES
STRUCTURE
The .cf files (except for layout.cf, see below) have the following syntax:
< view-name >
< key >:< value >
< value_line2 >
< key >:< value >
< value_line2 >
< value_line3 >
...
< view-name >
< key >:< value >
...
Multi-line values are allowed as long as the extra lines begin with whitespace. Of course they can not be all whitespace, or they would be seen as a view separator!
<<lessSYNOPSIS
use Apache::WeSQL::Display qw( :all );
This module contains the functions necessary to deal with the jform.wsql, jdetails.wsql, and jlist.wsql web calls. These calls read their configuration from the form.cf, details.cf, and list.cf files. Also, they use certain (see LAYOUT.CF below to know which) entries from the layout.cf file for the layout. The structure of the .cf files is outlined below.
.CF FILES
STRUCTURE
The .cf files (except for layout.cf, see below) have the following syntax:
< view-name >
< key >:< value >
< value_line2 >
< key >:< value >
< value_line2 >
< value_line3 >
...
< view-name >
< key >:< value >
...
Multi-line values are allowed as long as the extra lines begin with whitespace. Of course they can not be all whitespace, or they would be seen as a view separator!
Download (0.085MB)
Added: 2006-06-09 License: Perl Artistic License Price:
1232 downloads
Data Display Debugger 3.3.11
Data Display Debugger is a common graphical user interface for GDB, DBX and XDB. more>>
GNU DDD is a graphical front-end for command-line debuggers such as GDB, DBX, WDB, Ladebug, JDB, XDB, the Perl debugger, the bash debugger, or the Python debugger.
Besides "usual front-end features such as viewing source texts, DDD has become famous through its interactive graphical data display, where data structures are displayed as graphs.
<<lessBesides "usual front-end features such as viewing source texts, DDD has become famous through its interactive graphical data display, where data structures are displayed as graphs.
Download (7.3MB)
Added: 2005-04-18 License: GPL (GNU General Public License) Price:
1661 downloads
Kirocker Music Display 3.4.1
Kirocker Music Display is an Amaork script that makes your Kicker (the KDE main panel) rock with your music. more>>
Kirocker Music Display is an Amaork script that makes your Kicker (the KDE main panel) rock with your music.
It is a Kicker applet that displays what you listen to in Amarok
You then always know what you are listening to, and watch its cover: it is always visible on your panel.
It allows you to rate your music with one click: you can quickly change the number of stars of your musics from anywhere on your desktop.
To install:
- Extract the archive
- Open a konsole in the extracted folder (in Konqueror, go to the extracted folder and press F4)
- Run this set of command: ./configure --prefix=$(kde-config --prefix) && make && sudo make install
- It will ask your root password to install the applet on your system
- Right click the Kicker, choose "Add an Applet to the Panel..." (once the panel is unlocked)
- Double-click "Kirocker Music Display"
- Start playing a music: the applet is empty when Amarok is stopped or paused, to not annoy you with useless information when you are working
Also included in the package: the Kicker right translucent white background.
How to make the kicker translucent:
- Your screen resolution need to be 1280*800. If not, you will need some artistic skills and a Gimp experience to modify the given background
- Extract the image "Kicker Right Translucent Background.png" located in the Kirocker Music Display archive
- Open your desktop background image with The Gimp
- Drag and drop "Kicker Right Translucent Background.png" to the Gimp window of your background image
- Save the image and set it as your desktop background image
- Right click the Kicker and choose "Configure the Panel..." (once the panel is unlocked)
- Place the panel on the right (click the button on the right)
- Set the size to "Personalized" and enter "96 pixels"
- In the "Appearance" tab, check "Enable transparency"
- Click "Ok" and youre done: ENJOY!
Enhancements:
- This release fixes an issue with big playlists where Kirocker Music Display would hang up, act badly, or not respond.
- It also solves a long-standing tedious crash.
- Kirocker Music Display should be rock solid now.
<<lessIt is a Kicker applet that displays what you listen to in Amarok
You then always know what you are listening to, and watch its cover: it is always visible on your panel.
It allows you to rate your music with one click: you can quickly change the number of stars of your musics from anywhere on your desktop.
To install:
- Extract the archive
- Open a konsole in the extracted folder (in Konqueror, go to the extracted folder and press F4)
- Run this set of command: ./configure --prefix=$(kde-config --prefix) && make && sudo make install
- It will ask your root password to install the applet on your system
- Right click the Kicker, choose "Add an Applet to the Panel..." (once the panel is unlocked)
- Double-click "Kirocker Music Display"
- Start playing a music: the applet is empty when Amarok is stopped or paused, to not annoy you with useless information when you are working
Also included in the package: the Kicker right translucent white background.
How to make the kicker translucent:
- Your screen resolution need to be 1280*800. If not, you will need some artistic skills and a Gimp experience to modify the given background
- Extract the image "Kicker Right Translucent Background.png" located in the Kirocker Music Display archive
- Open your desktop background image with The Gimp
- Drag and drop "Kicker Right Translucent Background.png" to the Gimp window of your background image
- Save the image and set it as your desktop background image
- Right click the Kicker and choose "Configure the Panel..." (once the panel is unlocked)
- Place the panel on the right (click the button on the right)
- Set the size to "Personalized" and enter "96 pixels"
- In the "Appearance" tab, check "Enable transparency"
- Click "Ok" and youre done: ENJOY!
Enhancements:
- This release fixes an issue with big playlists where Kirocker Music Display would hang up, act badly, or not respond.
- It also solves a long-standing tedious crash.
- Kirocker Music Display should be rock solid now.
Download (0.98MB)
Added: 2007-08-20 License: GPL (GNU General Public License) Price:
797 downloads
Display mailing list header 0.3.1
Display mailing list header provides you with a powerful and easy-to-use Firefox extention which parses the header fields and displays links in the extended header view. more>> Display mailing list header 0.3.1 provides you with a powerful and easy-to-use Firefox extention which parses the header fields and displays links in the extended header view. You can click them to simply go to the archive, request help or unsubscribe from the list. You have to install Enigmail OR Mnenhy, as this extension relies on getting special headers from the mail which is very complicated to achieve in current versions of thunderbird.
Requirements:
- Thunderbird 1.0 1.5.0.* ALL
- Mozilla 1.7.7 1.7.7 ALL
Added: 2006-09-12 License: MPL Price: FREE
1 downloads
ATI Radeon Linux Display Drivers 8.40.4
ATI Radeon Linux Display Drivers are proprietary Linux drivers for ATI Radeon cards. more>>
ATI Radeon Linux Display Drivers are proprietary Linux drivers for ATI Radeon cards.
ATI Radeon Linux Display Driver provides TV Output support for ATI graphics cards that support TV out. The ATI Proprietary Linux driver also allows for the following monitor arrangements:
- Laptop Mode (toggle between internal or external screen)
- Clone Mode (same content on both screens)
- Big Desktop (one desktop stretched across two screens)
- Dual Head (separate instances of X running on each screen)
<<lessATI Radeon Linux Display Driver provides TV Output support for ATI graphics cards that support TV out. The ATI Proprietary Linux driver also allows for the following monitor arrangements:
- Laptop Mode (toggle between internal or external screen)
- Clone Mode (same content on both screens)
- Big Desktop (one desktop stretched across two screens)
- Dual Head (separate instances of X running on each screen)
Download (38.5MB)
Added: 2007-08-14 License: Other/Proprietary License Price:
520 downloads
nVidia Linux Display Driver IA32 100.14.11
nVidia Linux Display Driver is the OpenGL nVidia support for graphic cards on Linux operating systems. more>>
nVidia Linux Display Driver is the OpenGL nVidia support for graphic cards on Linux operating systems.
Installation:
Type "sh NVIDIA-Linux-x86-100.14.09-pkg1.run" to install the driver. NVIDIA now provides a utility to assist you with configuration of your X config file.
Enhancements:
Added support for new GPUs:
- GeForce 7050 PV / NVIDIA nForce 630a
- GeForce 7025 / NVIDIA nForce 630a
Fixed console restore problems in several different configurations:
- Quadro FX 4400 SLI
- VESA console
- Notebook LCD displays
- Improved interaction with ATi RS480/482 based mainboards.
- Improved support for House Sync with G-Sync II.
- Improved NVIDIA X driver interaction with ACPI daemon.
<<lessInstallation:
Type "sh NVIDIA-Linux-x86-100.14.09-pkg1.run" to install the driver. NVIDIA now provides a utility to assist you with configuration of your X config file.
Enhancements:
Added support for new GPUs:
- GeForce 7050 PV / NVIDIA nForce 630a
- GeForce 7025 / NVIDIA nForce 630a
Fixed console restore problems in several different configurations:
- Quadro FX 4400 SLI
- VESA console
- Notebook LCD displays
- Improved interaction with ATi RS480/482 based mainboards.
- Improved support for House Sync with G-Sync II.
- Improved NVIDIA X driver interaction with ACPI daemon.
Download (14.6MB)
Added: 2007-06-22 License: Other/Proprietary License Price:
868 downloads
nVidia FreeBSD Display Driver x86 100.14.11
nVidia FreeBSD Display Driver is the OpenGL nVidia support for graphic cards on FreeBSD operating systems. more>>
nVidia FreeBSD Display Driver is the OpenGL nVidia support for graphic cards on FreeBSD operating systems.
Enhancements:
Added support for new GPUs:
- GeForce 7050 PV / NVIDIA nForce 630a
- GeForce 7025 / NVIDIA nForce 630a
Fixed console restore problems in several different configurations:
- Quadro FX 4400 SLI
- VESA console
- Notebook LCD displays
- Improved interaction with ATi RS480/482 based mainboards.
- Improved support for House Sync with G-Sync II.
- Improved NVIDIA X driver interaction with ACPI daemon.
<<lessEnhancements:
Added support for new GPUs:
- GeForce 7050 PV / NVIDIA nForce 630a
- GeForce 7025 / NVIDIA nForce 630a
Fixed console restore problems in several different configurations:
- Quadro FX 4400 SLI
- VESA console
- Notebook LCD displays
- Improved interaction with ATi RS480/482 based mainboards.
- Improved support for House Sync with G-Sync II.
- Improved NVIDIA X driver interaction with ACPI daemon.
Download (10.9MB)
Added: 2007-06-22 License: Other/Proprietary License Price:
878 downloads
Other version of nVidia FreeBSD Display Driver x86
License:Other/Proprietary License
nVidia Linux Display Driver x86 100.14.03 Beta
nVidia Linux Display Driver is the OpenGL nVidia support for graphic cards on Linux operating systems. more>>
nVidia Linux Display Driver is the OpenGL nVidia support for graphic cards on Linux operating systems.
Installation:
Type "sh NVIDIA-Linux-x86-100.14.03-pkg1.run" to install the driver. NVIDIA now provides a utility to assist you with configuration of your X config file.
<<lessInstallation:
Type "sh NVIDIA-Linux-x86-100.14.03-pkg1.run" to install the driver. NVIDIA now provides a utility to assist you with configuration of your X config file.
Download (14.6MB)
Added: 2007-05-22 License: Other/Proprietary License Price:
891 downloads
nVidia Linux Display Driver AMD64/EM64T 100.14.11
nVidia Linux Display Driver is the OpenGL nVidia support for graphic cards on Linux operating systems. more>>
nVidia Linux Display Driver is the OpenGL nVidia support for graphic cards on Linux operating systems.
Installation:
Type "sh NVIDIA-Linux-x86-100.14.09-pkg1.run" to install the driver. NVIDIA now provides a utility to assist you with configuration of your X config file.
Enhancements:
Added support for new GPUs:
- GeForce 7050 PV / NVIDIA nForce 630a
- GeForce 7025 / NVIDIA nForce 630a
Fixed console restore problems in several different configurations:
- Improved notebook GPU support.
- Quadro FX 4400 SLI
- VESA console
- Notebook LCD displays
- Improved support for House Sync with G-Sync II.
<<lessInstallation:
Type "sh NVIDIA-Linux-x86-100.14.09-pkg1.run" to install the driver. NVIDIA now provides a utility to assist you with configuration of your X config file.
Enhancements:
Added support for new GPUs:
- GeForce 7050 PV / NVIDIA nForce 630a
- GeForce 7025 / NVIDIA nForce 630a
Fixed console restore problems in several different configurations:
- Improved notebook GPU support.
- Quadro FX 4400 SLI
- VESA console
- Notebook LCD displays
- Improved support for House Sync with G-Sync II.
Download (11.3MB)
Added: 2007-06-22 License: Other/Proprietary License Price:
870 downloads
Other version of nVidia Linux Display Driver AMD64/EM64T
License:Other/Proprietary License
LPlay 0.2.0 RC1
LPlay is part of Project Open Channel. more>>
LPlay is part of Project Open Channel. The LPlay plroject is a player for displaying different media on display(s). This can mean, for example, running a program loop on TVs.
<<less Download (0.65MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1078 downloads
xdiskusage 1.48
xdiskusage is a graphical display of disk usage. more>>
xdiskusage is a user-friendly program to show you what is using up all your disk space.
It is based on the design of xdu written by Phillip C. Dykstra.
Changes have been made so it runs "du" for you, and can display the free space left on the disk, and produce a PostScript version of the display.
The arrow keys may be used to move the selected directory (shown with a red box) around. There is a pop-up menu (use the right mouse button) with other options for changing the display, you can hide nodes, make that node the "root", change the sort order, etc.
<<lessIt is based on the design of xdu written by Phillip C. Dykstra.
Changes have been made so it runs "du" for you, and can display the free space left on the disk, and produce a PostScript version of the display.
The arrow keys may be used to move the selected directory (shown with a red box) around. There is a pop-up menu (use the right mouse button) with other options for changing the display, you can hide nodes, make that node the "root", change the sort order, etc.
Download (0.004MB)
Added: 2005-04-08 License: GPL (GNU General Public License) Price:
1666 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 display 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