Main > Free Download Search >

Free data display software for linux

data display

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 6800
Data Display Debugger 3.3.11

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.
<<less
Download (7.3MB)
Added: 2005-04-18 License: GPL (GNU General Public License) Price:
1661 downloads
Relations::Display 0.92

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();

<<less
Download (0.024MB)
Added: 2007-06-12 License: Perl Artistic License Price:
865 downloads
Data::Page 2.00

Data::Page 2.00


Data::Page is a Perl module that helps when paging through sets of results. more>>
Data::Page is a Perl module that helps when paging through sets of results.

SYNOPSIS

use Data::Page;

my $page = Data::Page->new();
$page->total_entries($total_entries);
$page->entries_per_page($entries_per_page);
$page->current_page($current_page);

print " First page: ", $page->first_page, "n";
print " Last page: ", $page->last_page, "n";
print "First entry on page: ", $page->first, "n";
print " Last entry on page: ", $page->last, "n";

When searching through large amounts of data, it is often the case that a result set is returned that is larger than we want to display on one page. This results in wanting to page through various pages of data. The maths behind this is unfortunately fiddly, hence this module.

The main concept is that you pass in the number of total entries, the number of entries per page, and the current page number. You can then call methods to find out how many pages of information there are, and what number the first and last entries on the current page really are.

For example, say we wished to page through the integers from 1 to 100 with 20 entries per page. The first page would consist of 1-20, the second page from 21-40, the third page from 41-60, the fourth page from 61-80 and the fifth page from 81-100. This module would help you work this out.

<<less
Download (0.006MB)
Added: 2006-10-31 License: Perl Artistic License Price:
1088 downloads
Data::SimplePassword 0.02

Data::SimplePassword 0.02


Data::SimplePassword provides a simple random password generator. more>>
Data::SimplePassword provides a simple random password generator.

SYNOPSIS

use Data::SimplePassword;

my $sp = Data::SimplePassword->new;
$sp->chars( 0..9, a..z, A..Z ); # optional

my $password = $sp->make_password( 8 ); # length

Its a very easy-to-use but a bit strong random password generator.

<<less
Download (0.003MB)
Added: 2007-03-31 License: Perl Artistic License Price:
938 downloads
ATI Radeon Linux Display Drivers 8.40.4

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)
<<less
Download (38.5MB)
Added: 2007-08-14 License: Other/Proprietary License Price:
520 downloads
HTML::Display::Common 0.36

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
Download (0.054MB)
Added: 2006-12-05 License: Perl Artistic License Price:
1054 downloads
Datalus 0.6 Beta 3

Datalus 0.6 Beta 3


Datalus allows the user to build complicated Web applications using simple XML descriptions and short scripts. more>>
Datalus allows the user to build complicated Web applications using simple XML descriptions and short scripts. Datalus abstracts much of the back end tedium from the process in an effort to prevent constant duplication of effort.
Datalus is a PHP based Web API designed to streamline object handling (loading, saving, querying, displaying, and editing), abstract the data from both its display structure and layout, and allow the target data to be delivered to any supported format without special handling logic or translation.
Enhancements:
- Data Primitives: Text Block, File, Float, Image, Instant, Instant (in time), Location, Reference, String, User
- Datasource Plug-ins: File, MySQL (may have multiples)
- Encodings for any primitive: AES, SHA, MD5
- XSL transformations support output to any output format through the core object XML dialect
- Commenting via OpenID on any object, RSS available on any object
- Built-in session, account management with menus
Default scripts
- Forum with flat and threaded views
- script for integrated use of Morevil web chat
- blog, photoblog, and static content scripts.
- multi-criterion search script generated from object descriptions.
Enhancements:
- added delicious library script
- added multiple logos for IE compatibility
- added itunes script (uses XSL transformations by Chris Veness)
- fixed result output error on users, menus
- fixed error in multipage list display selection (search errors on pages > 1)
- removed automatic RSS feed output link on lists
<<less
Download (2.0MB)
Added: 2006-11-30 License: LGPL (GNU Lesser General Public License) Price:
1059 downloads
Display mail route 0.2.1

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

<<less
Added: 2006-09-12 License: MPL Price: FREE
1 downloads
JTail 2.1

JTail 2.1


JTail is an advanced Java/Swing implementation of the Unix tail utility. more>>
JTail is an advanced Java/Swing implementation of the Unix tail utility. JTail includes an intuitive GUI interface that enables the user to define multiple data filters and alarms.
In addition, the user can suspend and resume the display of data from the monitored file. When suspended, the user can single step through the new data being written to the files being monitored.
JTail can be used to monitor both files on both local systems and via the Fishcroft RfaServer (see below) on remote systems.
Enhancements:
- The JTail jar file is now a self-executing jar file.
- The ability to spawn new root windows from the File menu has been added.
- When filters are defined but none are activated, all output will be displayed.
- Output may be displayed with line wrap toggled on or off.
- Minor code cleanup. rfa.jar sources are included in the source tree.
- utils.jar sources are included in the source tree.
<<less
Download (0.62MB)
Added: 2006-07-07 License: GPL (GNU General Public License) Price:
1205 downloads
PHP Data Grid Class 1.0 Beta 3

PHP Data Grid Class 1.0 Beta 3


PHP Data Grid Class can be used to display MySQL query results in HTML tables. more>>
PHP Data Grid Class can be used to display MySQL query results in HTML tables. PHP Data Grid Class executes a given SQL SELECT query and generates an HTML table defined by a template to display the query results.
The results table also shows links to navigate between query result pages. The number of result rows to display per page is configurable. The results can be sorted by columns that the user may choose by clicking on column links. The list of sortable columns may be restricted.
Main features:
- the php class executes a given SQL query and generates a template driven HTML code that displays the query results.
- automatically provides means of navigation trough pages and lets user decide how many rows to be displayed on each page
- automatically let user sort by available columns - or you can restrict this feature for specific columns
- if requested, it can automatically display a "selector" column - a column to let users mark specific rows as selected
- you set what columns from the query result to be displayed
- you can alter the content of a columns fields on the fly by creating callback functions
- you can add JavaScript actions for when user clicks on displayed rows or on specific columns cells
- you can extend the functionality of the data grid by adding custom columns - columns whose content is not
- generated by the query but added by you - you can add any HTML and/or JavaScript to perform any action
- everything is template driven
- multi-language support
Enhancements:
- Arrays can now be passed to the grid for displaying.
- Setting the the default sort column now works correctly.
- The layout of check all/uncheck all/invert buttons can now also be set from the template.
- The form action can now be set when instantiating the data grid and the template can now be set by using the newly added method, "setTemplate()".
- The language can now be set with the "setLanguage()" method.
- Romanian, Spanish, and Simplified Chinese translations were added.
<<less
Download (0.12MB)
Added: 2007-05-15 License: Free To Use But Restricted Price:
539 downloads
DISLIN 9.1

DISLIN 9.1


DISLIN is a high-level plotting library for displaying data as curves, polar plots, bar graphs, pie charts, 3D-color plots. more>>
DISLIN is a high-level plotting library for displaying data as curves, polar plots, bar graphs, pie charts, 3D-color plots, surfaces, contours and maps.
DISLIN is intended to be a powerful and easy to use software package for scientists and programmers. There are only a few graphics routines with a short parameter list needed to display the desired graphical output. A large variety of parameter setting routines can then be called to create individually customized graphics.
The software is available for several C, Fortran 77 and Fortran 90/95 compilers on the operating systems UNIX, Linux, FreeBSD, OpenVMS, Windows and MS-DOS. DISLIN programs are very system-independent, they can be ported from one operating system to another without any changes.
For some operating systems, the programming languages textExtern Python, textExtern Perl and textExtern Java are also supported by DISLIN. The DISLIN interpreter DISGCL is availble for all supported operating systems. See a complete list of the supported operating systems and compilers.
A short description of the DISLIN features is given in Overview. DISLIN manuals can be downloaded as compressed tar files in PostScript, PDF and HTML format. An online manual is also available as an alphabetical list of all DISLIN routines.
DISLIN is free for non-commercial use. Licenses for selling programs linked with
DISLIN or for using DISLIN in an environment related to business are available from this site.
The DISLIN software and manuals can be downloaded via HTML and from FTP servers.
Enhancements:
- Thread-safe C libraries, additional character features, hardware symbols, an unlimited number of widgets, and bugfixes.
<<less
Download (8.9MB)
Added: 2006-11-16 License: Free for non-commercial use Price:
1073 downloads
nVidia FreeBSD Display Driver x86 100.14.11

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.
<<less
Download (10.9MB)
Added: 2007-06-22 License: Other/Proprietary License Price:
878 downloads
 
Other version of nVidia FreeBSD Display Driver x86
nVidia FreeBSD Display Driver x86 1.0-9742 BetaNVIDIA Corporation - nVidia FreeBSD Display Driver x86 1.0-9742 ... nVidia FreeBSD Display
License:Other/Proprietary License
Download (10.6MB)
1070 downloads
Added: 2006-11-21
Gimp::Data 1.211

Gimp::Data 1.211


Gimp::Data is a Perl module to set and get state data. more>>
Gimp::Data is a Perl module to set and get state data.

SYNOPSIS

use Gimp::Data;

$Gimp::Data{value1} = "Hello";
print $Gimp::Data{value1},", World!!n";

With this module, you can access plugin-specific (or global) data in Gimp, i.e. you can store and retrieve values that are stored in the main Gimp application.

An example would be to save parameter values in Gimp, so that on subsequent invocations of your plug-in, the user does not have to set all parameter values again (Gimp::Fu does this already).

<<less
Download (0.26MB)
Added: 2006-10-26 License: Perl Artistic License Price:
1093 downloads
Data::DPath::Builder 0.00_01

Data::DPath::Builder 0.00_01


Data::DPath::Builder is a SAX handler for building an XPath tree. more>>
Data::DPath::Builder is a SAX handler for building an XPath tree.

SYNOPSIS

use AnySAXParser;
use Data::DPath::Builder;

$builder = Data::DPath::Builder->new();
$parser = AnySAXParser->new( Handler => $builder );

$root_node = $parser->parse( Source => [SOURCE] );

Data::DPath::Builder is a SAX handler for building an Data::DPath tree.

Data::DPath::Builder is used by creating a new instance of Data::DPath::Builder and providing it as the Handler for a SAX parser. Calling `parse() on the SAX parser will return the root node of the tree built from that parse.

<<less
Download (0.032MB)
Added: 2006-08-31 License: Perl Artistic License Price:
1149 downloads
Data::SpreadPagination 0.1.2

Data::SpreadPagination 0.1.2


Data::SpreadPagination is a Perl module for page numbering and spread pagination. more>>
Data::SpreadPagination is a Perl module for page numbering and spread pagination.

SYNOPSIS

use Data::SpreadPagination;
my $pageInfo = Data::SpreadPagination->new({
totalEntries => $totalEntries,
entriesPerPage => $entriesPerPage,
# Optional, will use defaults otherwise.
# only 1 of currentPage / startEntry can be provided.
currentPage => $currentPage,
startEntry => $startEntry,
maxPages => $maxPages,
});

# General page information
print " First page: ", $pageInfo->first_page, "n";
print " Last page: ", $pageInfo->last_page, "n";
print " Next page: ", $pageInfo->next_page, "n";
print " Previous page: ", $pageInfo->previous_page, "n";

# Results on current page
print "First entry on page: ", $pageInfo->first, "n";
print " Last entry on page: ", $pageInfo->last, "n";

# Page range information
my $pageRanges = $pageInfo->page_ranges;

# Print out the page spread
foreach my $page ($pageInfo->pages_in_spread()) {
if (!defined $page) {
print "... ";
} elsif ($page == $pageInfo->current_page) {
print "$page ";
} else {
print "$page ";
}
}

The object produced by Data::SpreadPagination can be used to create a spread pagination navigator. It inherits from Data::Page, and has access to all of the methods from this object.

In addition, it also provides methods for creating a pagination spread, to allow for keeping the number of pagenumbers displayed within a sensible limit, but at the same time allowing easy navigation.

The object can easily be passed to a templating system such as Template Toolkit or be used within a script.

<<less
Download (0.007MB)
Added: 2007-07-19 License: Perl Artistic License Price:
827 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5