table
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1271
Katakana Table
Katakana Table is a katakana table karamba theme. more>>
Katakana Table is a katakana table karamba theme. Useful for learning katakana. When one clicks on a character a passive popup will come up with the romaji and hiragana for that katakana.
If you middle click a character it will copy it to the clipboard. This theme uses unicode so your local probably needs to be utf8.
I havent tested that, im just speculating. works well with my hirgana table (http://www.kde-look.org/content/show.php?content=33568) which is due for a major reworking.
<<lessIf you middle click a character it will copy it to the clipboard. This theme uses unicode so your local probably needs to be utf8.
I havent tested that, im just speculating. works well with my hirgana table (http://www.kde-look.org/content/show.php?content=33568) which is due for a major reworking.
Download (0.006MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
705 downloads
pftabled 1.06
pftabled daemon is a small helper to make OpenBSDs pf tables reachable from other hosts. more>>
pftabled daemon is a small helper to make OpenBSDs pf tables reachable from other hosts. One can add/delete/flush IP addresses to/from a remote table with a single UDP datagram. pftabled icludes a simple client program to do this on the command line.
Usage
pftabled [options...]
-d Run as daemon in the background
-v Log all received packets
-a address Bind to this address (default: 0.0.0.0)
-f table Force requests to use this table
-k keyfile Read authentication key from file
-p port Bind to this port (default: 56789)
-t timeout Remove IPs from table after timeout seconds
Client examples
$ pftabled-client -k /etc/key fw.example.com 56789 spam add 1.2.3.4
$ pftabled-client -k /etc/key fw.example.com 56789 spam del 4.3.2.1/24
$ pftabled-client -k /etc/key fw.example.com 56789 spam flush
Enhancements:
- A mask field was added to enable addition/deletion of whole networks.
- Client option parsing was changed.
<<lessUsage
pftabled [options...]
-d Run as daemon in the background
-v Log all received packets
-a address Bind to this address (default: 0.0.0.0)
-f table Force requests to use this table
-k keyfile Read authentication key from file
-p port Bind to this port (default: 56789)
-t timeout Remove IPs from table after timeout seconds
Client examples
$ pftabled-client -k /etc/key fw.example.com 56789 spam add 1.2.3.4
$ pftabled-client -k /etc/key fw.example.com 56789 spam del 4.3.2.1/24
$ pftabled-client -k /etc/key fw.example.com 56789 spam flush
Enhancements:
- A mask field was added to enable addition/deletion of whole networks.
- Client option parsing was changed.
Download (0.044MB)
Added: 2006-03-07 License: BSD License Price:
1326 downloads
PDF::Table 0.91
PDF::Table is a utility class for building table layouts in a PDF::API2 object. more>>
PDF::Table is a utility class for building table layouts in a PDF::API2 object.
SYNOPSIS
use PDF::API2;
use PDF::Table;
my $pdftable = new PDF::Table;
my $pdf = new PDF::API2(-file => "table_of_lorem.pdf");
my $page = $pdf->page;
# some data to layout
my $some_data =[
["1 Lorem ipsum dolor",
"Donec odio neque, faucibus vel",
"consequat quis, tincidunt vel, felis."],
["Nulla euismod sem eget neque.",
"Donec odio neque",
"Sed eu velit."],
... and so on
];
# build the table layout
$pdftable->table(
# required params
$pdf,
$page,
$some_data,
x => $left_edge_of_table,
w => 570,
start_y => 500,
next_y => 700,
start_h => 300,
next_h => 500,
# some optional params
padding => 5,
padding_right => 10,
background_color_odd => "gray",
background_color_even => "lightblue", #cell background color for even rows
);
# do other stuff with $pdf
...
This class is a utility for use with the PDF::API2 module from CPAN. It can be used to display text data in a table layout within the PDF. The text data must be in a 2d array (such as returned by a DBI statement handle fetchall_arrayref() call). The PDF::Table will automatically add as many new pages as necessary to display all of the data.
Various layout properties, such as font, font size, and cell padding and background color can be specified for each column and/or for even/odd rows. Also a (non)repeated header row with different layout properties can be specified.
See the METHODS section for complete documentation of every parameter.
<<lessSYNOPSIS
use PDF::API2;
use PDF::Table;
my $pdftable = new PDF::Table;
my $pdf = new PDF::API2(-file => "table_of_lorem.pdf");
my $page = $pdf->page;
# some data to layout
my $some_data =[
["1 Lorem ipsum dolor",
"Donec odio neque, faucibus vel",
"consequat quis, tincidunt vel, felis."],
["Nulla euismod sem eget neque.",
"Donec odio neque",
"Sed eu velit."],
... and so on
];
# build the table layout
$pdftable->table(
# required params
$pdf,
$page,
$some_data,
x => $left_edge_of_table,
w => 570,
start_y => 500,
next_y => 700,
start_h => 300,
next_h => 500,
# some optional params
padding => 5,
padding_right => 10,
background_color_odd => "gray",
background_color_even => "lightblue", #cell background color for even rows
);
# do other stuff with $pdf
...
This class is a utility for use with the PDF::API2 module from CPAN. It can be used to display text data in a table layout within the PDF. The text data must be in a 2d array (such as returned by a DBI statement handle fetchall_arrayref() call). The PDF::Table will automatically add as many new pages as necessary to display all of the data.
Various layout properties, such as font, font size, and cell padding and background color can be specified for each column and/or for even/odd rows. Also a (non)repeated header row with different layout properties can be specified.
See the METHODS section for complete documentation of every parameter.
Download (0.011MB)
Added: 2006-09-20 License: Perl Artistic License Price:
1140 downloads
Formitable 1.1
Formitable is a PHP class used to ease the creation of submit-ready HTML forms from MySQL database tables. more>>
Formitable is a PHP class used to ease the creation of submit-ready HTML forms from MySQL database tables.
Formitable project analyzes the fields of a given table and outputs the best input type for each (e.g. enum type becomes radio buttons or select, set type becomes checkboxes or multiselect). Data is automatically inserted into the table upon form submission.
Main features:
- Output a complete form in a few lines of code
- Validate data via regular expressions and provide custom feedback
- Support for normalized data/lookup tables
- Easily retrieve and update existing records
- Outputs attributes such as MAXLENGTH to reflect your table design
- Customize all aspects of output, integrate forms into your layout
- Full CSS styling
- Accessibility support such as labels, fieldsets, legends and more
Enhancements:
- Forms can now be printed using a template with printFromTemplate.
- Custom template delimiters can be set using setTemplateDelimiters.
- Bugs were fixed.
<<lessFormitable project analyzes the fields of a given table and outputs the best input type for each (e.g. enum type becomes radio buttons or select, set type becomes checkboxes or multiselect). Data is automatically inserted into the table upon form submission.
Main features:
- Output a complete form in a few lines of code
- Validate data via regular expressions and provide custom feedback
- Support for normalized data/lookup tables
- Easily retrieve and update existing records
- Outputs attributes such as MAXLENGTH to reflect your table design
- Customize all aspects of output, integrate forms into your layout
- Full CSS styling
- Accessibility support such as labels, fieldsets, legends and more
Enhancements:
- Forms can now be printed using a template with printFromTemplate.
- Custom template delimiters can be set using setTemplateDelimiters.
- Bugs were fixed.
Download (0.018MB)
Added: 2006-11-21 License: GPL (GNU General Public License) Price:
1068 downloads
Kids Tables 1.0
This is a toolbar add-on designed to help improve user search experience. Brought to you by Mcdonalds Direct, it was created to help customers search... more>> <<less
Download (1230KB)
Added: 2009-04-12 License: Freeware Price: Free
201 downloads
EntityTable 1.0
EntityTable provides software that enhances/fixes JTable. more>>
EntityTable provides software that enhances/fixes JTable.
Each table row corresponds to a data Object in a List.
Main features:
- column hiding
- locking
- panning
- row scrolling
- row sorting
- intuitive focus behaviour
- optional virtual rows and columns
- Java 1.4 support
<<lessEach table row corresponds to a data Object in a List.
Main features:
- column hiding
- locking
- panning
- row scrolling
- row sorting
- intuitive focus behaviour
- optional virtual rows and columns
- Java 1.4 support
Download (0.67MB)
Added: 2007-02-07 License: MPL (Mozilla Public License) Price:
990 downloads
TableTools 0.20
TableTools sorts, filters or copies any HTML table. more>>
TableTools supercedes the TableSort extension. TableTools sorts, filters or copies any HTML table (ctrl+alt+click sorts, ctrl+shift+click shows/hides filter, ctrl+z+click etc. allows copying in various formats).
Sorting/filtering are smart as they auto-detect the data types such as date/time stamps, numbers (including scientific notations), major currencies, IP addresses, or plain text.
Context menu allows users to force sorting column data as any of the predefined data types. Please check my demo page at http://www.mingyi.org/other/tabletools.html for the detailed feature list.
This extension is the perfect first-glance tool for HTML tables, providing better sorting and filtering capabilities than MS Excel (and directly in FF!), but if you need to make a graph or sth., just use the extension to copy the whole table into Excel!
<<lessSorting/filtering are smart as they auto-detect the data types such as date/time stamps, numbers (including scientific notations), major currencies, IP addresses, or plain text.
Context menu allows users to force sorting column data as any of the predefined data types. Please check my demo page at http://www.mingyi.org/other/tabletools.html for the detailed feature list.
This extension is the perfect first-glance tool for HTML tables, providing better sorting and filtering capabilities than MS Excel (and directly in FF!), but if you need to make a graph or sth., just use the extension to copy the whole table into Excel!
Download (0.036MB)
Added: 2007-07-31 License: MIT/X Consortium License Price:
817 downloads
phpSortable 2.0
phpSortable is a PHP class that shows MySQL QueryResults in an HTML table. more>>
phpSortable project is a PHP class that shows MySQL QueryResults in an HTML table. As implied by the name "Sortable", the table also displays the column headers as links which lead to a version of the table that is sorted according to that column.
Furthermore, it allows you to link the individual rows with other scripts for modifying the rows. The class also permits the user to limit the number of rows to display at once. The table can also be navigated with the "last" and "next" links.
Enhancements:
- The class is now named phpSortable instead of phpSortTable.
- It has a database abstraction interface, so it is possible to work not only with MySQL but with any other database types.
- Therefore, the activeDBLib class must be used, and it can be found at PHPClasses.org.
<<lessFurthermore, it allows you to link the individual rows with other scripts for modifying the rows. The class also permits the user to limit the number of rows to display at once. The table can also be navigated with the "last" and "next" links.
Enhancements:
- The class is now named phpSortable instead of phpSortTable.
- It has a database abstraction interface, so it is possible to work not only with MySQL but with any other database types.
- Therefore, the activeDBLib class must be used, and it can be found at PHPClasses.org.
Download (0.15MB)
Added: 2007-02-16 License: GPL (GNU General Public License) Price:
588 downloads
JustAjax Table 0.7
JustAjax Table project performs all operation with tables on-fly using Ajax requests. more>>
JustAjax Table project performs all operation with tables "on-fly" using Ajax requests.
Main features:
- Supports all popular web browsers.
- Populates the data into the cells automatically .
- On-fly scrolling, sorting, editing.
- PHP/MySQL backend.
- Works with up to 100,000 record tables.
<<lessMain features:
- Supports all popular web browsers.
- Populates the data into the cells automatically .
- On-fly scrolling, sorting, editing.
- PHP/MySQL backend.
- Works with up to 100,000 record tables.
Download (0.040MB)
Added: 2007-06-08 License: Other/Proprietary License Price:
869 downloads
LaTeX::Table 0.0.1
LaTeX::Table is a Perl module that provides functionality for an intuitive generation of LaTeX tables for reports or theses. more>>
LaTeX::Table is a Perl module that provides functionality for an intuitive generation of LaTeX tables for reports or theses.
LaTeX::Table ships with some predefined, good-looking table styles, and supports multipage tables via the xtab package.
Installation:
To install this module, run the following commands:
perl Makefile.PL
make
make test
make install
Alternatively, to install with Module::Build, you can use the following
commands:
perl Build.PL
./Build
./Build test
./Build install
Now start the script generate_examples.pl in the examples directory of this
distibution.
perl generate_examples.pl
This script generates some LaTeX files with some example tables. Now please compile these examples with LaTeX and check if all tables look ok:
latex examples.tex
xdvi examples.dvi
<<lessLaTeX::Table ships with some predefined, good-looking table styles, and supports multipage tables via the xtab package.
Installation:
To install this module, run the following commands:
perl Makefile.PL
make
make test
make install
Alternatively, to install with Module::Build, you can use the following
commands:
perl Build.PL
./Build
./Build test
./Build install
Now start the script generate_examples.pl in the examples directory of this
distibution.
perl generate_examples.pl
This script generates some LaTeX files with some example tables. Now please compile these examples with LaTeX and check if all tables look ok:
latex examples.tex
xdvi examples.dvi
Download (0.010MB)
Added: 2006-08-24 License: GPL (GNU General Public License) Price:
1164 downloads
PyHtmlTable 1.13
PyHtmlTable is a class for Python CGIs to generate HTML tables on the fly. more>>
PyHtmlTable is a class for Python CGIs to generate HTML tables on the fly. The reason that i made this script is I couldnt find something like Table.pm or Table.php
Main features:
- Allows setting of individual row and cell attributes via arbitrary dictionaries
- Allows spanning of rows and columns
- Autogrows table if cells set outside initial Range.
- Allows dynamic insertion of new rows and columns anywhere in the table
- Allows bulk population of table data via arrays to arbitrary locations in the table.
- Provides default cell attributes for tablewide uniformity and the ability to override these on a cell by cell basis.
- NOTE: Row indexes start at 0 like God and Kernighan demand!
- Influenced heavily by Table.pm and Table.php
<<lessMain features:
- Allows setting of individual row and cell attributes via arbitrary dictionaries
- Allows spanning of rows and columns
- Autogrows table if cells set outside initial Range.
- Allows dynamic insertion of new rows and columns anywhere in the table
- Allows bulk population of table data via arrays to arbitrary locations in the table.
- Provides default cell attributes for tablewide uniformity and the ability to override these on a cell by cell basis.
- NOTE: Row indexes start at 0 like God and Kernighan demand!
- Influenced heavily by Table.pm and Table.php
Download (0.011MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1221 downloads
TableDatabase 0.1
TableDatabase project is a small set of programs that treats HTML tables like database tables. more>>
TableDatabase project is a small set of programs that treats HTML tables like database tables.
By "HTML table", I mean any data which is in the form of
< table >
< tr >
< td > column data < /td >
...etc...
< /tr >
< /table >
This software is still in a very early stage, i.e. pre-Alpha.
<<lessBy "HTML table", I mean any data which is in the form of
< table >
< tr >
< td > column data < /td >
...etc...
< /tr >
< /table >
This software is still in a very early stage, i.e. pre-Alpha.
Download (0.013MB)
Added: 2006-11-24 License: GPL (GNU General Public License) Price:
1064 downloads
Tables for Ada 1.7
Tables for Ada is a library provides an implementation of tables indexed by strings. more>>
Tables for Ada is a library provides an implementation of tables indexed by strings. The binary search is used for names of known length. It is also possible to search a table for names of unknown length, i.e. to parse a string using some table. Table elements can be of any private type. Key- insensitive tables are supported.
Enhancements:
- GPS project files were added for GNAT users.
<<lessEnhancements:
- GPS project files were added for GNAT users.
Download (0.017MB)
Added: 2007-05-20 License: GMGPL (GNAT Modified GPL) Price:
888 downloads
Basset::DB::Table 1.04
Basset::DB::Table is used to define database tables, ways to load that data into memory. more>>
Basset::DB::Table is used to define database tables, ways to load that data into memory and build queries based upon the table information.
SYNOPSIS
For example,
my $table = Basset::DB::Table->new(
name => user,
primary_column => id,
autogenerated => 1,
definition => {
id => SQL_INTEGER,
username => SQL_VARCHAR,
password => SQL_VARCHAR,
name => SQL_VARCHAR
}
);
print $table->insert_query, "n"; print $table->update_query, "n"; print $table->delete_query, "n";
Basset::DB::Table provides an abstract and consistent location for defining database tables, building queries based upon them, and so on. It is rarely (if ever) used directly in code, but is used extensively in packages which subclass from Basset::Object::Persistent.
Any queries returned by the query methods are simply strings that must be prepared by DBI in order bo be used.
<<lessSYNOPSIS
For example,
my $table = Basset::DB::Table->new(
name => user,
primary_column => id,
autogenerated => 1,
definition => {
id => SQL_INTEGER,
username => SQL_VARCHAR,
password => SQL_VARCHAR,
name => SQL_VARCHAR
}
);
print $table->insert_query, "n"; print $table->update_query, "n"; print $table->delete_query, "n";
Basset::DB::Table provides an abstract and consistent location for defining database tables, building queries based upon them, and so on. It is rarely (if ever) used directly in code, but is used extensively in packages which subclass from Basset::Object::Persistent.
Any queries returned by the query methods are simply strings that must be prepared by DBI in order bo be used.
Download (0.14MB)
Added: 2007-08-09 License: Perl Artistic License Price:
807 downloads
MySQL table patcher 1.6.2
MySQL table patcher is a patch that reads table creation file (tables.sql) and compares it to what mysqldump gives. more>>
MySQL table patcher is a patch that reads table creation file (tables.sql) and compares it to what mysqldump gives. It creates SQL clauses to update the database to match the creation file.
<<less Download (1.9MB)
Added: 2006-08-02 License: GPL (GNU General Public License) Price:
1179 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 table 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