Main > Free Download Search >

Free records software for linux

records

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 822
XML::Records 0.12

XML::Records 0.12


XML::Records is a Perl module for perlish record-oriented interface to XML. more>>
XML::Records is a Perl module for perlish record-oriented interface to XML.

SYNOPSIS

use XML::Records;
my $p=XML::Records->new(data.lst);
$p->set_records(credit,debit);
my ($t,$r)
while ( (($t,$r)=$p->get_record()) && $t) {
my $amt=$r->{Amount};
if ($t eq debit) {
...
}
}

XML::Records provides a single interface for processing XML data on a stream-oriented, tree-oriented, or record-oriented basis. A subclass of XML::TokeParser, it adds methods to read "records" and tree fragments from XML documents.

In many documents, the immediate children of the root element form a sequence of identically-named and independent elements such as log entries, transactions, etc., each of which consists of "field" child elements or attributes. You can access each such "record" as a simple Perl hash.

You can also read any element and its children into a lightweight tree implemented as a Perl hash, or feed the contents of any element and its children into a SAX handler (making it possible to process "records" with modules like XML::DOM or XML::XPath).

<<less
Download (0.007MB)
Added: 2006-09-19 License: Perl Artistic License Price:
1130 downloads
Nethack Records 0.5.1

Nethack Records 0.5.1


Nethack Records is a dynamic Nethack statistics generator for display on the Web. more>>
Nethack Records project is a dynamic Nethack statistics generator for display on the Web.
Nethack Records is an on-demand statistics generator for Nethack that is meant to be run on a Web server. It has several types of statistics, ranging from character info to daily and weekly stats.
It is implemented with a modern template system, and is very customizable. One can sort by most field-types, such as character class or gender. The code is separated from the XHTML by means of HTML::Template.
CSS is utilized to its fullest extent, allowing you to make it look however you like, without knowing Perl.
Main features:
- Top 10 players view
- All players view
- Sort by various criteria e.g. Class and Cause of death
- Various ranking possibilities
- Last five players view
- Todays games
- View per game statistics
Enhancements:
- Added quit and date-patches by Casey Zacek
- Fixed bug with empty logfile
- Added alternative css-file
- Added contact-person to options-file
- Fixed bug that appeared with<<less
Download (0.068MB)
Added: 2007-06-08 License: GPL (GNU General Public License) Price:
870 downloads
Gtk2::Ex::RecordsFilter 0.03

Gtk2::Ex::RecordsFilter 0.03


Gtk2::Ex::RecordsFilter is a high level widget to browse reasonably large amounts of relational data. more>>
Gtk2::Ex::RecordsFilter is a high level widget to browse reasonably large amounts of relational data. This widget is inspired by the song browser of iTunes.

SYNOPSIS

use Gtk2 -init;
use Gtk2::Ex::RecordsFilter;

# Create a recordset
my $recordset = [
[Automobiles,Cars,Toyota,Camry],
[Automobiles,SUV,BMW,Xi],
[Automobiles,SUV,Toyota,Highlander],
[Automobiles,Cars,Mitsubishi,Lancer]
];

# Create the recordsfilter object
my $recordsfilter = Gtk2::Ex::RecordsFilter->new;

# Specify the headers for the columns
my $headers = [Category, Sub-Category, Brand, Model];
Gtk2::Ex::RecordsFilter->set_headers($headers);

# Inject data into the widget
Gtk2::Ex::RecordsFilter->set_data($recordset);

# Get a ref to its widget
my $recordsfilter_widget = $recordsfilter->get_widget();

# Create the root window
my $window = Gtk2::Window->new;
$window->signal_connect(destroy => sub { Gtk2->main_quit; });
$window->set_default_size(500, 300);

# Add the widget to the root window
$window->add($recordsfilter_widget);
$window->show_all;

Gtk2->main;

When working with large amounts of relational records (csv files, database records, music files index), a common task is to filter out a subset or records from a given set. For example, in a master-detail database design, the master recordset, which is typically smaller than the detail recordset, can be filtered out and the filtered subset of master records can then be used to perform additional tasks on the detail records that they point to.

A common example of this usage is the song browser in your own mp3 player application (for example, the iTunes application). This application will allow you to choose an mp3 file (the detail record) based on criteria such as Artist, Album, Song (the master record). Once the master record is choosen (i.e., the Artist, Album and Song) it then performs a task on the detail record (i.e., play the mp3 file).

This Gtk2::Ex::RecordsFilter widget is inspired by the iTunes song browser widget. But this widget carries certain functionality which is not present in the iTunes song browser. The iTunes song browser allows the user to choose one song (one master record) at a time and play it. However, a more general usage should allow the user to choose multiple master records at a time. One approach for such multiple selections is to enable the user to click on different records with the CTRL key pressed and then choose all the highlighted records in one shot. This widget takes a different approach, which I call the shopping cart approach. This is explained in the next section.

<<less
Download (0.008MB)
Added: 2006-11-11 License: Perl Artistic License Price:
1077 downloads
XML::SAX::ByRecord 0.41

XML::SAX::ByRecord 0.41


XML::SAX::ByRecord can record oriented processing of (data) documents. more>>
XML::SAX::ByRecord can record oriented processing of (data) documents.
SYNOPSIS
use XML::SAX::Machines qw( ByRecord ) ;
my $m = ByRecord(
"My::RecordFilter1",
"My::RecordFilter2",
...
{
Handler => $h, ## optional
}
);
$m->parse_uri( "foo.xml" );
XML::SAX::ByRecord is a SAX machine that treats a document as a series of records. Everything before and after the records is emitted as-is while the records are excerpted in to little mini-documents and run one at a time through the filter pipeline contained in ByRecord.
The output is a document that has the same exact things before, after, and between the records that the input document did, but which has run each record through a filter. So if a document has 10 records in it, the per-record filter pipeline will see 10 sets of ( start_document, body of record, end_document ) events. An example is below.
This has several use cases:
- Big, record oriented documents
Big documents can be treated a record at a time with various DOM oriented processors like XML::Filter::XSLT.
- Streaming XML
Small sections of an XML stream can be run through a document processor without holding up the stream.
- Record oriented style sheets / processors
Sometimes its just plain easier to write a style sheet or - SAX filter that applies to a single record at at time, rather than having to run through a series of records.
<<less
Download (0.042MB)
Added: 2007-08-17 License: Perl Artistic License Price:
798 downloads
EnsEMBL::Web::Record 1.01

EnsEMBL::Web::Record 1.01


EnsEMBL::Web::Record is a family of modules used for managing a users persistant data in a database. more>>
EnsEMBL::Web::Record is a family of modules used for managing a users persistant data in a database.

SYNOPSIS

Many web sites now encourage users to register and login to access more advanced features, and to customise a site to their needs.

The EnsEMBL::Web::Record group of Perl modules is design to manage any arbitrary type of user created data in an SQL database. This module follows the Active Record design pattern, in that each new instantiated Record object represents a single row of a database.

That object can be manipulated programatically, and any changes made can be stored in the database with a single record->save function call.

Because arbitrary Perl data structures can be stored in this manner, EnsEMBL::Web::Record allows user preferences to be easily saved, and allows developers to implement new featurs quickly.

This module was first used (and has been abstracted from) the Ensembl genome browser (http://www.ensembl.org).

New user data can be added to the database:

use EnsEMBL::Web::Record;

my $bookmark = EnsEMBL::Web::Record->new();
$bookmark->url(http://www.ensembl.org);
$bookmark->name(Ensembl);
$bookmark->save;
...

The Record can be associated with an user id:

$record->user($id);

The same record can also be removed:

$bookmark->delete;

EnsEMBL::Web::Record also provides a number of methods for getting collections of records from the database, using a field selector.

EnsEMBL::Web::Record::find_bookmarks_by_user_id($id).

<<less
Download (0.006MB)
Added: 2007-02-22 License: Perl Artistic License Price:
974 downloads
Off-the-Record Messaging 3.1.0

Off-the-Record Messaging 3.1.0


Off-the-Record Messaging is a Pidgin plugin that allows you to have private conversations over instant messaging. more>>
Off-the-Record Messaging is a Pidgin plugin that allows you to have private conversations over instant messaging by providing:
Encryption
No one else can read your instant messages.
Authentication
You are assured the correspondent is who you think it is.
Deniability
The messages you send do not have digital signatures that are checkable by a third party. Anyone can forge messages after a conversation to make them look like they came from you. However, during a conversation, your correspondent is assured
the messages he sees are authentic and unmodified.
Perfect forward secrecy
If you lose control of your private keys, no previous conversation is compromised.
Enhancements:
- Translations for English, Dutch, Spanish, French, Slovak
- Added option to not log OTR conversations
- Large messages are now fragmented transparently instead of failing
- Removed "view secure session id" and "verify fingerprint" options from the OTR button menu. Added "authenticate buddy" option in its place. This new option allows you to authenticate your buddies by entering some secret that only the two of you know, rather than by using a long user-unfriendly sequence of hex characters. [The old "verify fingerprint" dialog is still available via an "Advanced..." button from the new "authenticate buddy" dialog.]
<<less
Download (0.39MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
807 downloads
Geo::TigerLine::Record::B 0.02

Geo::TigerLine::Record::B 0.02


Geo::TigerLine::Record::B is a TIGER/Line 2003 Polygon Geographic Entity Codes: Corrections. more>>
Geo::TigerLine::Record::B is a TIGER/Line 2003 Polygon Geographic Entity Codes: Corrections.

SYNOPSIS

use Geo::TigerLine::Record::B;

@records = Geo::TigerLine::Record::B->parse_file($fh);
@records = Geo::TigerLine::Record::B->parse_file($fh, &callback);

$record = Geo::TigerLine::Record::B->new(%fields);

$record->rt();
$record->version();
$record->file();
$record->cenid();
$record->polyid();
$record->statecq();
$record->countycq();
$record->tractcq();
$record->blockcq();
$record->aianhhfpcq();
$record->aianhhcq();
$record->aihhtlicq();
$record->aitscecq();
$record->aitscq();
$record->anrccq();
$record->concitcq();
$record->cousubcq();
$record->submcdcq();
$record->placecq();
$record->uacc();
$record->urcc();
$record->rs_b1();

This is a class representing record type B of the TIGER/Line 2003 census geographic database. Each object is one record. It also contains methods to parse TIGER/Line record type B files and turn them into objects.

This is intended as an intermediate format between pulling the raw data out of the simplistic TIGER/Line data files into something more sophisticated (a process you should only have to do once). As such, its not very fast, but its careful, easy to use and performs some verifications on the data being read.

As this class is autogenerated by mk_parsers, think before you modify this file. Its OO, so consider sub-classing instead.

<<less
Download (0.040MB)
Added: 2006-07-04 License: Perl Artistic License Price:
1207 downloads
MARC::Errorchecks 1.12

MARC::Errorchecks 1.12


MARC::Errorchecks is a Perl module with a collection of MARC 21/AACR2 error checks. more>>
MARC::Errorchecks is a Perl module with a collection of MARC 21/AACR2 error checks.

Module for storing MARC error checking subroutines, based on MARC 21, AACR2, and LCRIs. These are used to find errors not easily checked by the MARC::Lint and MARC::Lintadditions modules, such as those that cross field boundaries.

Each subroutine should generally be passed a MARC::Record object.
Returned warnings/errors are generated as follows: push @warningstoreturn, join , ($field->tag(), ": [ERROR TEXT]t"); return @warningstoreturn;

SYNOPSIS

use MARC::Batch;
use MARC::Errorchecks;

#See also MARC::Lintadditions for more checks
#use MARC::Lintadditions;

#change file names as desired
my $inputfile = marcfile.mrc;
my $errorfilename = errors.txt;
my $errorcount = 0;
open (OUT, ">$errorfilename");
#initialize $infile as new MARC::Batch object
my $batch = MARC::Batch->new(USMARC, "$inputfile");
my $errorcount = 0;
#loop through batch file of records
while (my $record = $batch->next()) {
#if $record->field(001) #add this if some records in file do not contain an 001 field
my $controlno = $record->field(001)->as_string(); #call MARC::Errorchecks subroutines

my @errorstoreturn = ();

# check everything

push @errorstoreturn, (@{MARC::Errorchecks::check_all_subs($record)});

# or only a few
push @errorstoreturn, (@{MARC::Errorchecks::check_010($record)});
push @errorstoreturn, (@{MARC::Errorchecks::check_bk008_vs_bibrefandindex($record)});

# report results
if (@errorstoreturn){
#########################################
print OUT join( "t", "$controlno", @errorstoreturn, "tn");

$errorcount++;
}

} #while

<<less
Download (0.072MB)
Added: 2007-03-09 License: Perl Artistic License Price:
965 downloads
refbase 0.8

refbase 0.8


refbase is a Web-based multi-user interface for managing scientific literature and bibliographic references. more>>
refbase is a Web-based multi-user interface for managing scientific literature and bibliographic references. It offers powerful search engine and automatically generated citation lists.
Main features:
- search the database using different search forms
- search within results
- browse found records and view selected records in detail
- display rich text (i.e. italics, super/sub-script, greek letters)
- extract literature cited within a text
- track queries using RSS
- a print-friendly view
- display the selected records in different citation formats
- user specific fields which are stored individually for each user
- display or search within only the users own literature
- export selected records to MODS XML and (via the GPLed bibutils programs) to BibTex, EndNote, and RIS
- automatic email announcements for newly added records
- save and recall search queries
- adding records to user-specific groups
- add/edit/delete records as well as file upload & download links
- import of full records from Cambridge Scientific Abstracts
- user management interface provided to the database admin
- set access permissions on a per-user basis
- People with access to a shell on the refbase server can use the tools in the contrib/endnote directory to batch transfer many records from Endnote into refbase.
<<less
Download (0.28MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1220 downloads
MARC::Charset 0.95

MARC::Charset 0.95


MARC::Charset is a Perl module to convert MARC-8 encoded strings to UTF-8. more>>
MARC::Charset is a Perl module to convert MARC-8 encoded strings to UTF-8.

SYNOPSIS

# import the marc8_to_utf8 function
use MARC::Charset marc8_to_utf8;

# prepare STDOUT for utf8
binmode(STDOUT, utf8);

# print out some marc8 as utf8
print marc8_to_utf8($marc8_string);

MARC::Charset allows you to turn MARC-8 encoded strings into UTF-8 strings. MARC-8 is a single byte character encoding that predates unicode, and allows you to put non-Roman scripts in MARC bibliographic records.

<<less
Download (0.18MB)
Added: 2006-08-24 License: Perl Artistic License Price:
1158 downloads
FreeMED 0.8.4

FreeMED 0.8.4


FreeMED is a Web-based medical records . more>>
FreeMED is a Web-based medical records (EMR) and patient management system with a printing system, patient scheduling, an HL7 interface, a billing system, XML-RPC Web services, and many other features.
FreeMED has an extensible modular architecture, allowing it to be customized based on individual practices without having to rewrite core components of the system. It is HIPAA compliant.
Enhancements:
- NPI support (used with newer version of REMITT), initial superbill support, enhanced billing logic and better billing behavior, a DHTML viewer for Djvu documents, additional community documentation from freemed.info, many bugfixes, and incremental module improvements.
<<less
Download (3.8MB)
Added: 2007-05-22 License: LGPL (GNU Lesser General Public License) Price:
891 downloads
Google::Adwords::StatsRecord 0.6.0

Google::Adwords::StatsRecord 0.6.0


Google::Adwords::StatsRecord is a Google Adwords StatsRecord Object. more>>
Google::Adwords::StatsRecord is a Google Adwords StatsRecord Object.

This object is a read-only object used in returned calls from Google Adwords API.

More info is available here -
http://www.google.com/apis/adwords/developer/StatsRecord.html

METHODS

Accessors (read only)

* averagePosition - The average position of impressions that were shown for this records entity
* clicks - The number of clicks collected by this records entity.
* conversionRate - The ratio of conversions over convertible clicks for this records entity.
* conversions - The number of clicks that were actually converted for this records entity.
* cost - The total cost incurred (in micro-units of currency) by this records entity.
* id - The Id of this records entity
* impressions - The number of impressions shown on behalf of this records entity

<<less
Download (0.041MB)
Added: 2006-11-22 License: Perl Artistic License Price:
1066 downloads
VegaDNS 0.9.9.5

VegaDNS 0.9.9.5


VegaDNS is a tiny dns administration tool to allow easy administration of DNS records through a Web browser. more>>
VegaDNS project is a tinydns administration tool written in PHP to allow easy administration of DNS records through a web browser.
Main features:
- Tiered access with Senior Admin, Group Admin, and User levels
- Import multiple domains at once via AXFR
- Uses PHP Sessions, no cookies required
- Uses Smarty Template engine for clear separation of PHP from HTML
- Web configurable Default Records to auto-populate new domains with
<<less
Download (0.12MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1194 downloads
Freedbtool 1.13

Freedbtool 1.13


Freedbtool is a command-line tool for accessing the freedb.org music database, allowing both query and submit transactions. more>>
Freedbtool is a command-line tool for accessing the freedb.org music database, allowing both query and submit transactions.
It accesses the database using the Web-based protocol. Freedbtool also includes a discid program.
Enhancements:
- This version fixes various bugs, and improves the process of updating and submitting of freedb records.
- The new scan feature checks for all freedb records with a given discid.
<<less
Download (0.020MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1192 downloads
parprouted 0.64

parprouted 0.64


parprouted is a daemon for transparent IP (Layer 3) proxy ARP bridging. more>>
parprouted is a daemon for transparent IP (Layer 3) proxy ARP bridging. This is useful for creation of transparent firewalls and bridging networks with different MAC protocols.
For installation follow these commands:
Typing "make all && make install" will install parprouted into /usr/local hierarchy.
Enhancements:
- A bug that caused parprouted to send ARP requests for incomplete records has been fixed.
<<less
Download (0.017MB)
Added: 2007-01-14 License: GPL (GNU General Public License) Price:
1016 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5