Alexandria Book Collection Manager 0.6.3 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Alexandria Book Collection Manager 0.6.3 (Default branch)
# 1  
Old 02-22-2008
Alexandria Book Collection Manager 0.6.3 (Default branch)

ImageAlexandria is a GNOME application to help manage abook collection. It retrieves book information(including cover pictures) from several onlinelibraries, allows you to search for a book (eitherby EAN/ISBN, title, authors, or keyword), canimport and export data into ONIX, Tellico, andEAN/ISBN-list formats, generates Web pages fromyour libraries, allows marking your books asloaned, saves data using the YAML format, featuresan HIG-compliant user interface, shows books indifferent views that can be filtered or sorted,and handles book rating and notes.License: GNU General Public License (GPL)Changes:
This release adds an export function for iPod Notes, removes the refresh button from the toolbar, adds asynchronous loading and visual feedback to make the GUI feel more responsive, adds Amazon ECS 4.0 support to replace the old AWS 3.x Amazon provider, adds tooltips to the icon view of books, and fixes many bugs.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Solaris

Alexandria backup tool

Hi All, Can anybody worked on Alexandria backup tool. What are the versions are available? What are the platforms it support? Does it support solaris 9? Please help me. Even if you can refer some URL it is great. Charles C. (4 Replies)
Discussion started by: charlcy
4 Replies
Login or Register to Ask a Question
DtMmdbBookGetTocObjectId(library call)									    DtMmdbBookGetTocObjectId(library call)

NAME
DtMmdbBookGetTocObjectId -- obtains the locator of a book's TOC section SYNOPSIS
#include <DtMmdb.h> DtMmdbHandle* DtMmdbBookGetTocObjectId( DtMmdbInfoRequest* request); DESCRIPTION
The DtMmdbBookGetTocObjectId function returns the object identifier of the specified book's TOC section. Use the DtMmdbFreeHandleList function to release the memory when the object identifier is no longer needed. Table lookup is involved when the identifier is specified by either the primary_oid or sequence_num field. ARGUMENTS
request Specifies the bookcase in the bookcase descriptor field, as well as a valid value in the primary_oid, the secondary_oid, or the sequence_num field. The primary_oid represents the DtInfo Database object identifier of the TOC section; the secondary_oid rep- resents the object identifier of the book itself; and the sequence_num represents the sequence number of the book within the bookcase (0 based). If more than one of these fields have a valid value, the order of precedence is: primary_oid, secondary_oid, and, last, sequence_num. RETURN VALUE
If DtMmdbBookGetTocObjectId completes successfully, it returns a pointer to the object identifier for the book's TOC section. If it fails, it returns a NULL pointer. EXAMPLE
The following shows how a DtMmdbBookGetTocObjectId call might be coded. DtMmdbInfoRequest request; request.bookcase_descriptor = DtMmdbGetBookCase(myInfoLibPtr, "myBase"); request.sequence_num = 1; DtMmdbBookGetTocObjectId(&request); SEE ALSO
TO BE SUPPLIED. DtMmdbBookGetTocObjectId(library call)