Main > Free Download Search >

Free collections catalog software for linux

collections catalog

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1143
My cOLLection manager 0.6.0

My cOLLection manager 0.6.0


My cOLLection manager is a manager program for your collections. more>>
My cOLLection manager is a manager program for your collections. My cOLLection manager is a fast and easy to use frontend for gdbm with an ncurses interface.

The program was originally designed to organize a large music CD collection, but it is has no restrictions on the entry of any other large range of items. Its main goal is flexibillity.

<<less
Download (0.097MB)
Added: 2006-08-16 License: GPL (GNU General Public License) Price:
1165 downloads
MaCollec Collections Manager 0.1.2

MaCollec Collections Manager 0.1.2


MaCollec is a Web-based Collections Manager written in PHP/Javascript. more>>
MaCollec is a Web-based Collections Manager written in PHP/Javascript. MaCollec Collections Manager is based on the AJAX technology to produce a nice-looking and pleasant interface. It doesnt require a database.
Items informations (including covers pictures) are retrieved from online libraries.
MaCollec works correctly only with a modern browser (like Mozilla Firefox, Opera, ...) which supports all major Web standards currently in use, including CSS 2.1, HTML 4.01, ECMAScript, DOM 2 ...
Main features:
- Easy install
- No database
- Fetches items (Books, Films, Albums) informations from online libraries.
- Multi-users (each user has his own folder)
- 2 different views to display folders (list and icons)
- Unlimited number of folders/subfolders
- Allows items properties to be updated
- Allows saving additional properties: loaning (date, person), purchase (date, price), notes and rating
- Wikipedia links
<<less
Download (0.084MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
1166 downloads
Audio collection script 1.0

Audio collection script 1.0


Audio collection script is a script which can help you manage collections of audio files. more>>
Audio collection script is a script which can help you manage collections of audio files. For example, I have a directory with all my audio files in it, sorted by band/album. I also have an audio collections directory. Within that directory I have a few list files which contain patterns for songs that should be part of that collection. The script generates or updates a subdirectory for each list file present and creates links within those directories to all music files from my main audio directory that match the patterns in the list file.

An example:

Your music files are in /audio
Your collections are in /audio-collections
The file /audio-collections/funny.list has the following lines:

/audio-collections/funny/
#the next line matches all songs within a tripod directory
tripod/
monty*python
kevin*bloody*wilson
bill*clinton*miss*lewinsky*and*i

When run, it will process each .list file in the current directory. So for this example, when run from /audio-collections, it will create or clean out the directory /audio-collections/funny and create links inside it for any files found within /audio which match the specified patterns.

The first line in each list file specifies the directory to create and use for the links. The patterns in the file will match on the full path of a song.

Note: I am pretty sure it would not be a good path to put your collections inside your main audio directory.
<<less
Download (0.002MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
970 downloads
External Site Catalog 1.2

External Site Catalog 1.2


External Site Catalog allows you to index and search external sites in a Plone site. more>>
External Site Catalog allows you to index and search external sites in a Plone site.

ExternalSiteCatalog is a web crawler that can index external sites and make them searchable in Plone.

You can specify the sites to index in a Plone Configlet, and directly index them from Plone, or let a scheduler do the job.

Searching the external sites is done in a special portlet that is installed with ExternalSiteCatalog.

External sites are not searchable in the normal Plone catalog, but are only available in a separate catalog in the portal_externalcatalog tool.

<<less
Download (0.20MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
988 downloads
Class::IntrospectionMethods::Catalog 1.003

Class::IntrospectionMethods::Catalog 1.003


Class::IntrospectionMethods::Catalog can manage catalogs from IntrospectionMethods. more>>
Class::IntrospectionMethods::Catalog can manage catalogs from IntrospectionMethods.

Exported functions

set_method_info( target_class, method_name, info_ref )

Store construction info for method method_name of class target_class.

set_global_catalog (target_class, ...)

Store catalog informations. The first parameter is the class featuring the methods declared in the global catalog.

Following paramaters is a set of named paramaters (e.g. key => value):

name

Mandatory name for the global catalog

list

array ref containing the list of slot and catalog. E.g.:

list => [
[qw/foo bar baz/] => foo_catalog,
[qw/a b z/] => alpha_catalog,
my_object => my_catalog
],
isa

Optional hash ref declaring a containment for catalog. E.g:

list => [ foo => USER ,
admin => ROOT ],
isa => { USER => ROOT }

Then the ROOT catalog will return foo, and the USER catalog will return foo and admin.

help

Optional hash ref (slot_name => help). Store some help information for each slot.

set_global_catalog will construct:

A ClassCatalog object containing the global catalog informations.

A sub_ref containing the ClassCatalog object in a closure.

Returns ( slot_name, sub_ref ). The sub_ref is to be installed in the target class.

When called as a class method, the subref will return the ClassCatalog object. When called as a target class method, the subref will return an ObjectCatalog object associated to the ClassCatalog object stored in the closure.

These 2 object have the same API. ObjectCatalog is used to contain catalog changes that may occur at run-time. ClassCatalog informations will not change.

<<less
Download (0.031MB)
Added: 2007-07-18 License: Perl Artistic License Price:
829 downloads
PerlBean::Collection 1.0

PerlBean::Collection 1.0


PerlBean::Collection is a Perl module that contains a collection of PerlBean objects. more>>
PerlBean::Collection is a Perl module that contains a collection of PerlBean objects.

SYNOPSIS

use strict;
use PerlBean;
use PerlBean::Collection;
use PerlBean::Attribute::Factory;

my $bean = PerlBean->new( {
package => Athlete,
} );
my $factory = PerlBean::Attribute::Factory->new();
my $attr = $factory->create_attribute( {
method_factory_name => name,
short_description => the name of the athlete,
} );
$bean->add_method_factory($attr);

my $bean2 = PerlBean->new( {
package => Cyclist,
base => [ qw(Athlete)],
} );
my $factory = PerlBean::Attribute::Factory->new();
my $attr2 = $factory->create_attribute( {
method_factory_name => cycle,
short_description => the cyclists cycle,
} );
$bean2->add_method_factory($attr2);

my $collection = PerlBean::Collection->new();
$collection->add_perl_bean($bean);
$collection->add_perl_bean($bean2);
$collection->write(tmp);

ABSTRACT

Code hierarchy generation for bean like Perl modules

PerlBean::Collection contains a collection of PerlBean objects in order to generate an hierarchy of Perl modules.

<<less
Download (0.089MB)
Added: 2007-02-22 License: Perl Artistic License Price:
977 downloads
Gnome Catalog 0.3.4.2

Gnome Catalog 0.3.4.2


This is a cataloging software for CDs and DVDs. more>>

Gnome Catalog 0.3.4.2 is a handy application for Gnome. It is actually a cataloging software for CDs and DVDs.

It can catalog your DVDs/CDs and files in your hard disk. Generate thumbnails of the video files and image files via nautilus (gnome file manager), and saves it in the database files. Save the metadata of the files, then you can search in the metatada of mp3, avis, images (exif).
The program have been develop in python-gtk for gnome desktop, using pyvorbis, mp3info, musicbraiz, and sqlite as database backend. The program should be very easy of use and very fast.

Enhancements: Feb 21 2009

  • German translation
  • Solved bugs regarding utf8 characters

Requirements:

  • python-gtk2
  • python-pyvorbis
  • python-pysqlite2
  • python-gnome2
  • gtk+
<<less
Added: 2009-02-21 License: GPL Price: FREE
1 downloads
 
Other version of Gnome Catalog
Gnome Catalog 0.2.1Gnome Catalog is a cataloging software for CDs and DVDs. Gnome Catalog 0.2.1 - José Sánchez ... Gnome Catalog is a cataloging software for CDs and DVDs. Catalog your dvds/cds and files in your
License:GPL (GNU General Public License)
Download (0.20MB)
1540 downloads
Added: 2005-08-10
CDCollect 0.6.0

CDCollect 0.6.0


CDCollect is a CD catalog application for gnome. more>>
CDCollect is a CD catalog application for gnome 2.8. Its functionality is similar to the old gtktalog application for gnome 1.4.
CDCollects goal is to be able to catalog your entire CD collection allowing for searches of your CD files with a clean and simple interface.
CDCollect is written in mono using monodevelop and the gtk-sharp and sqlite libraries.
Main features:
- Easy to use interface (if you feel it does not follow the gnome hig then its a bug).
- Allow the use of plugins (external programs) to collect information for each file of a CD in your catalog.
- Searches can be performed on CDs or files in the collection.
- It also catalogs compressed files (using external programs such as unzip, unrar, etc.).
<<less
Download (0.075MB)
Added: 2006-11-25 License: GPL (GNU General Public License) Price:
1064 downloads
Open Media Collectors Database 1.0.2

Open Media Collectors Database 1.0.2


Open Media Collectors Database is a PHP and MySQL based inventory application. more>>
Open Media Collectors Database project (OpenDb) is a PHP and MySQL based inventory application that allows you to easily catalog and lend media-related items, including DVD, VCD, CD, VHS, games, books, and laser discs.
There are also quite a few Contributed item types available, and if thats not enough you can define your own.
OpenDb is GPL licenced and built on PHP and MySQL. Anything that you can collect and lend, you can catalog with this system. OpenDb allows you to add new types, by describing them in system database tables designed for the purpose.
It includes workflow mechanism for lending, possibility to use different themes and/or creating themes, retrieving data from Amazon, imdb & others, plugins, language packs, etc.
Main features:
- Catalogue all sorts of things including DVD, (S)VCD, DivX, CD, VHS, Games, Books and Laser Discs
- Lending workflow
- Flexible add of new types
- Themes
- Supports metadata from Amazon, imdb, etc.
- Plugins
- Language Packs
<<less
Download (1.1MB)
Added: 2007-07-15 License: GPL (GNU General Public License) Price:
515 downloads
Bundle::Catalog 1.02

Bundle::Catalog 1.02


Bundle::Catalog is a bundle to install all Catalog related modules. more>>
Bundle::Catalog is a bundle to install all Catalog related modules.

SYNOPSIS

perl -MCPAN -e install Bundle::Catalog

This bundle includes all the modules used by the Perl Catalog module.

A Bundle is a module that simply defines a collection of other modules. It is used by the CPAN module to automate the fetching, building and installing of modules from the CPAN ftp archive sites.

<<less
Download (0.92MB)
Added: 2006-09-29 License: Perl Artistic License Price:
1123 downloads
My Network Catalog r1

My Network Catalog r1


My Network Catalog is an indexing engine that allows Windows shares to be bound together over a local network. more>>
My Network Catalog is an indexing engine that allows Windows shares (or Samba shares) to be bound together over a local network.

My Network Catalog allows an easy centralized search of all the files available over the network.

<<less
Download (0.021MB)
Added: 2006-06-16 License: LGPL (GNU Lesser General Public License) Price:
1230 downloads
KCatalog 1.0

KCatalog 1.0


KCatalog is an Multimedia catalog utility which allows you to organize huge collection of MP3/Movie files. more>>
KCatalog project is an Multimedia catalog utility which allows you to organize huge collection of Movie/MP3 files in your hard disks,CDs,DVDs or any other media.
You can explore your multimedia collection easily and find the file you wish in just a few seconds. KCatalog provides extensive support to organize MP3 collection.
A very useful application for serious music lovers...
Main features:
- View MP3 information grouping it by albums, artists, genres, file location or your comments
- View movie information by file location or your comments
- Keep track of your Mp3/Movie CDs or DVDs by saving information like who borrowed it from you, notes regarding the CD/DVD etc
- Create and Manage M3U Playlists
- Sort your files by many different categories like artist, album, genre, title, file Location and your own comments.
- Facility to handle changes in drive letter or changes in Mount Location which is especially useful in linux platforms where the removable storage mount location may change or when you plug your harddisk in some other machine causing your drive letters to change
- Use your favourite application to play music or movie
- Catalog your MP3/Movie CDs, DVDs and other removable storage mediums based on the comments you give
- Efficient pattern matching to search for MP3 Files using file names, file location, ID3 tags (artist, album, genre, title) or your own comments.
- Search facility with advanced pattern matching options
- Database Backup/Recover Mechanism which ensures that your database will not be lost
- Supports both Linux and Windows platforms
- Pluggable Look & Feel
- And more over its Open source
<<less
Download (MB)
Added: 2007-01-08 License: GPL (GNU General Public License) Price:
1070 downloads
comisat Games Collection 0.5.2

comisat Games Collection 0.5.2


comisat Games Collection is an all-in-one free collection of games written in gambas for unix-like system. more>>
comisat Games Collection is an all-in-one free collection of games written in gambas for unix-like system. They are available in italian and (not completely) in english.

comisat Games Collection is FREE SOFTWARE, released under the terms of the GNU General Public License Version 2 as published by Free Software Fundation. You can help the development of comisat Games Collection testing the software, mailing bugs, translating the project in different languages, correcting and improving the code.

<<less
Download (7.9MB)
Added: 2006-10-12 License: GPL (GNU General Public License) Price:
1110 downloads
JavaDoc Taglets Collection 2.0.0

JavaDoc Taglets Collection 2.0.0


JavaDoc Taglets Collection is set of general purpose taglets for use with the JavaDoc tool. more>>
JavaDoc Taglets Collection is set of general purpose taglets for use with the JavaDoc tool. It provides a standard set of new tags, and allows you to create new ones by configuration or using simple Java interfaces. The project has been tested with J2SE 1.4 and 1.5 and JavaSE 1.6.
Enhancements:
- First public release of the Taglets Collection.
- Completed documentation for release 2.
- Added demos to userguide and distribution.
- Added to do list and known bugs information.
<<less
Download (6.4MB)
Added: 2007-05-11 License: BSD License Price:
898 downloads
Dispositionator 0.2

Dispositionator 0.2


Dispositionator is a Web application to make it easy to embed collections of papers and slides of talks into Web pages. more>>
Dispositionator is a Web application to make it easy to embed collections of papers and slides of talks into Web pages, using templates.
Talk material, related files, and information about events and associated topics are handled and can be sorted and filtered.
The data is kept in a simple XML file and thus no database is required.
Enhancements:
- With DispoDesktop, an SDL full-screen frontend can now be used in addition to the Web-based default frontend.
- Support for talk locations, filtering by speaker, and abstracts was introduced.
<<less
Download (0.45MB)
Added: 2006-01-16 License: Free To Use But Restricted Price:
1376 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5