Main > Free Download Search >

Free import and export references software for linux

import and export references

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2528
MT::Import::Mbox::Importer 1.0

MT::Import::Mbox::Importer 1.0


MT::Import::Mbox::Importer is a wrapper class for importing a collection of mbox folders using MT::Import::Mbox. more>>
MT::Import::Mbox::Importer is a wrapper class for importing a collection of mbox folders using MT::Import::Mbox.

SYNOPSIS

use MT::Import::Config::Importer;

my $mt = MT::Import::Mbox::Importer->new("/path/to/config");
$mt->collect();

# You can also do this :

my $cfg = Config::Simple->new(...);
my $mt = MT::Import::Mbox::Importer->new($cfg);
$mt->collect();

This is a wrapper class for importing a collection of mbox folders into Movable Type using MT::Import::Mbox.

<<less
Download (0.007MB)
Added: 2006-06-28 License: Perl Artistic License Price:
1214 downloads
Web Reference Database 0.9.0

Web Reference Database 0.9.0


Web Reference Database is a bibliographic manager that can import and export references in various formats. more>>
Web Reference Database is a bibliographic manager that can import and export references in various formats (including BibTeX, Endnote, MODS XML, and OpenOffice).
It can make formatted lists of citations in HTML, RTF, PDF, or LaTeX, and offers powerful searching, rich metadata, and RSS support
Enhancements:
- This release offers major function enhancements and bugfixes.
- Batch import from various bibliographic formats (including BibTeX, Endnote, RIS, ISI, and MODS XML) is now supported, as is import from a PubMed ID.
- An OpenDocument spreadsheet for use with OpenOffice.org can be exported, and formatted citation lists can be generated as HTML, RTF, PDF, or LaTeX. An SRU/W service and support for unAPI, OpenURL, and COinS metadata have been added.
- These allow the data to be used by the next generation of bibliographic clients.
- A new command line client is also included.
<<less
Download (0.89MB)
Added: 2006-10-27 License: GPL (GNU General Public License) Price:
1093 downloads
BORG Calendar and Task Tracker 1.6

BORG Calendar and Task Tracker 1.6


BORG is a combination calendar and task tracking system. more>>
BORG is a combination calendar and task tracking system. The calendar supports simple todos. The Task Tracker goes way beyond todos.
BORG is basically meant to be a small self-contained Java application that you can run locally. Many users run BORG Calendar and Task Tracker from a thumb drive.
BORG actually stands for Berger-Organizer. Unfortunately, the name BORG seems to be a popular choice for software products, probably due to the number of Star Trek fans that write code. The fact that BORG calendar also seems to refer to the Microsoft Outlook calendar makes things even more confusing. Oh well....
Why would anyone want to use a home-grown calendar/task tracker when there are so many others out there, freeware and otherwise?
A potential BORG user might agree with the following:
- I use a calendar/task tracker to remind me to do everything in life that I have to do.
- I do not want to set up a web server just to see my calendar
- I do not want to access the internet to see my calendar
- I work on Linux, Windows and other OSs and would like any of my machines to run my calendar program
- I dont want to have to worry about my calendar not working if I upgrade linux, windows, glibc, mySQL, apache, < fill in any third-party software that causes things to stop working >, etc...
- I like open source software. Even if the developer(s) die, I can still build and enhance my calendar program.
Main features:
- Nice Month-at-a-time view
- To-Do list
- Month-print
- Repeating Appointments
- Private Appointments that do not show by default (for recording things like "rectal exam 2pm" that you dont need your friends/coworkers to see over your shoulder).
- The Task Tracker tracks issues and tasks through a set of states with start and end dates, sub-tasks, descriptions, and resolutions.
- Pop-up reminders
- Email reminders
- User tunable task types and state transitions in the task tracker
- Week and Day Views
- A simple address book
- File-based DB or MySQL DB
- XML import/export
- iCal import/export
- more ...
<<less
Download (3.7MB)
Added: 2007-05-07 License: GPL (GNU General Public License) Price:
905 downloads
Perl6::Export::Attrs 0.0.3

Perl6::Export::Attrs 0.0.3


Perl6::Export::Attrs - the Perl 6 is export(...) trait as a Perl 5 attribute. more>>
Perl6::Export::Attrs - the Perl 6 is export(...) trait as a Perl 5 attribute.
SYNOPSIS
package Some::Module;
use Perl6::Export::Attrs;
# Export &foo by default, when explicitly requested,
# or when the :ALL export set is requested...
sub foo :Export(:DEFAULT) {
print "phooo!";
}
# Export &var by default, when explicitly requested,
# or when the :bees, :pubs, or :ALL export set is requested...
# the parens after is export are like the parens of a qw(...)
sub bar :Export(:DEFAULT :bees :pubs) {
print "baaa!";
}
# Export &baz when explicitly requested
# or when the :bees or :ALL export set is requested...
sub baz :Export(:bees) {
print "baassss!";
}
# Always export &qux
# (no matter what else is explicitly or implicitly requested)
sub qux :Export(:MANDATORY) {
print "quuuuuuuuux!";
}
IMPORT {
# This block is called when the module is used (as usual),
# but it is called after any export requests have been handled.
# Those requests will have been stripped from its @_ argument list
}
Implements a Perl 5 native version of what the Perl 6 symbol export mechanism will look like.
Its very straightforward:
- If you want a subroutine to be capable of being exported (when explicitly requested in the use arguments), you mark it with the :Export attribute.
- If you want a subroutine to be automatically exported when the module is used (without specific overriding arguments), you mark it with the :Export(:DEFAULT) attribute.
- If you want a subroutine to be automatically exported when the module is used (even if the user specifies overriding arguments), you mark it with the :Export(:MANDATORY) attribute.
- If the subroutine should also be exported when particular export groups are requested, you add the names of those export groups to the attributes argument list.
<<less
Download (0.005MB)
Added: 2007-01-23 License: Perl Artistic License Price:
1004 downloads
JDBCImporter 0.73

JDBCImporter 0.73


JDBCImporter provides a consistent mechanism for importing data from a file to a database. more>>
JDBCImporter provides a consistent mechanism for importing data from a file to a database, exporting data from a database to a file, and generating data.
JDBCImporter API can run from the command line using an XML config file or from inside an Ant build script. It works with CSV, fixed data, and XML files and supports numbers, strings, and date/times as database column types.
Custom classes can be used to parse different file formats, format column values into different file formats, translate column values before importing or after exporting, or allocate or release JDBC connections.
Installation:
Below are the installation steps for installing JDBC Importer:
unzip the jdbcimporter.zip file
add jdbcimporter.jar and commons-logging.jar to the CLASSPATH.
For example: set CLASSPATH=%CLASSPATH%;INSTALL_DIRlibjdbcimporter.jar;INSTALL_DIRlibcommons-logging.jar
JDBC Importer
Basic Usage:
> java [options] net.sourceforge.jdbcimporter.Importer [plugin file]
where :
config file : the import config file
plugin file : the (optional) property file that describes the plugins available during the import
options : two system properties may be set (both are optional)
jdbcimporter.engine = The import engine to use
jdbcimporter.failonerror = Flag indicating that the import should end if an error occurrs
Enhancements:
- This release fixes a bug with CSV delimiter parser.
<<less
Download (1.0MB)
Added: 2007-04-30 License: LGPL (GNU Lesser General Public License) Price:
907 downloads
PerlPoint::Import::POD 0.06

PerlPoint::Import::POD 0.06


PerlPoint::Import::POD is a standard PerlPoint import filter for POD. more>>
PerlPoint::Import::POD is a standard PerlPoint import filter for POD.

SYNOPSIS

# command line: process a POD file
perlpoint ... IMPORT:file.pod

...

# or, in a PerlPoint source:

// include a POD file with "pod" extension
INCLUDE{import=1 file="example.pod"}

// include a POD file without "pod" extension
INCLUDE{import=pod file="example"}

// import a snippet in POD,
// which in turn contains some PerlPoint
EMBED{import=pod}

=head2 Embedded PerlPoint

A POD paragraph.

=for perlpoint It I !

END_EMBED

Standard import filters are loaded automatically by the Parser when you import a POD file in one of the ways shown in the SYNOPSIS.

FUNCTION

According to the standard import filter API (see PerlPoint::Parser) this module provides one function, importFilter(). I transforms a POD file into PerlPoint.

<<less
Download (0.011MB)
Added: 2007-02-14 License: Perl Artistic License Price:
982 downloads
GTK Photo Gallery 0.51

GTK Photo Gallery 0.51


GTK Photo Gallery is an album to manage small and medium-sized photograph collections. more>>
GTK Photo Gallery is an album to manage small and medium-sized photograph collections. It is possible to upload images to an online laboratory.
It allows quick management by processing multiple files together. Rotate, delete, move, and manage descriptions can be done for all files in one directory at once.
GTK Photo Gallery is implemented with GTK2-Perl, and due to the lack of a Web server in between, it is much faster than CGI-based scripts. It uses the same directory structure as (and can be used together with) My Photo Gallery (a set of CGI scripts).
It is possible to export (and import) an album in 0.7, 4.7 or 8.5 GB parts for easy CD/DVD backup.
Each part contains a html index as overview and for navigation. User can choose the thumnail sizes to export.
This can be used to create a simple static web album.
Enhancements:
- Automatic configuration is done on startup if theres no configuration file.
- Speed enhancements on applying changes to albums and bugfixes were done.
<<less
Download (0.18MB)
Added: 2007-06-04 License: GPL (GNU General Public License) Price:
879 downloads
BottomFeeder 4.4

BottomFeeder 4.4


BottomFeeder is a viewer for RSS feeds. more>>
BottomFeeder is a news aggregator client for RSS and Atom feeds, written in VisualWorks Smalltalk. BottomFeeder runs on x86 Linux (also FreeBSD), PowerPC linux, Sparc Linux, Windows (98/ME/NT/2000/XP), Mac OS8/9, Mac OS X, AIX, SGI Irix, Compaq UNIX, HP-UX, and Solaris.
Main features:
- Full support for CSS, including user defined CSS
- View news in 3 pane or 2 pane modes
- Subscribe to any RSS or Atom format in use
- View items in a summary Newspaper View
- Synchronize 2 or more BottomFeeders via HTTP or file import
- Subscribe to feeds or feedlists
- Supports HTTPS, HTTP Authentication, and HTTP Digest Authentication
- Plugins for blogging, IRC, and MSN Messenger contacts
- Easy to update or upgrade from within BottomFeeder
- Save as many or as few feed items for as long as you want
- Import or Export in common OPML format
- Binary compatible on every platform. No need to recompile
Enhancements:
- The Feedlists folder has been eliminated.
- Importing a feedlist now adds feeds directly to your subscription list.
- The separate "Searches" folder has been eliminated.
- Search feeds are now part of your subscription list, and are marked with a new icon.
- Tabs now open empty and remember their previous state.
- There are many other changes and enhancements.
<<less
Download (2.3MB)
Added: 2007-07-10 License: Artistic License Price:
2046 downloads
Gourmet Recipe Manager 0.13.3

Gourmet Recipe Manager 0.13.3


Gourmet Recipe Manager is a simple but powerful recipe managing application that is intended for the GNOME desktop environment. more>>
Gourmet Recipe Manager is a simple but powerful recipe-managing application. Gourmet is intended for the GNOME desktop environment, but works on any platform that gtk supports, including windows.
Gourmet allows you to collect, search and organize your recipes, and to automatically generate shopping lists from your collection. Take a look at the screenshots for a sense of how this works.
Gourmet Recipe Manager is free software. If you want to contribute to the project and youre a python programmer, please take a look at the source code and start hacking! If you would like to use Gourmet in a language other than English, you can help translate gourmet using the rosetta web-based tool.
Simple Search
Screenshot of Search viewA simple index view allows you to look at all your recipes as a list and quickly search through them by ingredient, title, category, cuisine, rating, or instructions. Searching happens as you type to save you keystrokes, and multiple kinds of searches can easily be combined from this same view (so you can search for salads (category) with walnuts (ingredient) without having to open a separate dialog. You can easily sort recipes by clicking on the column youd like to sort by. Furthermore, for advanced users, you can search using regular expressions.
Recipe Editor
Screenshot of Search viewA recipe card view allows editing and entering individual recipes easily. It also instantly multiplies ingredient amounts if you need to multiply or divide a recipe, and even adjusts units to keep them as readable as possible (so that 2 tbs. x 4 displays as 1/2 cup). Gourmet aims to make entering ingredients as intuitive and painless as possible, while still allowing for powerful features. Major Features:
A keyed ingredient list which allows searches and shopping-list generation to understand synonyms (like aubergine and eggplant) and ignore ingredient descriptions (i.e. to treat "tomatoes, finely chopped" as "tomatoes" for the purpose of searching and generating shopping lists.
An intuitive spreadsheet-like editing interface
An alternative, fast form-like ingredient entering interface (which allows you to easily type ingredient lists without looking at the screen.
Drag-n-drop support for importing ingredient lists from your web browser or other application.
Support for pasting ingredient lists in from your clipboard.
Support for grouping ingredients within a recipe.
Support for calling another recipe as an ingredient.(Note: this allows you to use a recipe as a menu!)
Support for optional ingredients.
In addition to ingredients and instructions, you can enter information about categories, cuisines, and ratings that you can later use to search for recipes. In each case, Gourmet allows you a drop down menu of standard categories and categories youve used in the past, but also allows you to enter any custom categories you like.
You can also add images to your recipe for an attractive display. Thumbnails will be displayed in the recipe index. Currently, only HTML export supports images.
Import and Export
Gourmet includes simple and powerful import and export filters for a number of formats, including the two most common recipe formats on the web (mealmaster and mastercook).
Gourmet can import the following kinds of files:
Mealmaster Files
MasterCook text files
MasterCook XML files
Gourmet XML files
A number of popular recipe websites, such as epicurious and recipezaar
Gourmet also can import ingredient lists from a regular plain text list, which can be imported from a file, pasted from the clipboard or dragged onto the editing view.
Gourmet can export the following kinds of files:
Mealmaster files
Rich Text Format
Plain Text
Recipe Web Pages
Gourmet XML files
On GNU/Linux systems, gourmet can also export PDF or postscript files via its printing interface.
Gourmet aims to import and export as many common formats as possible. If you have a format youd like to import, please submit a feature request, or, if youre a programmer, go ahead and start writing the filter yourself!
Shopping List Manager
Screenshot of Shopping List ViewGourmet allows you to automatically generate shopping list from your recipes. You can easily multiply recipes when you add them to adjust for the number of people youre cooking for. If the units are convertable, different units used in different recipes will be added up correctly on your shoppings list (Gourmet even knows the density of some common foods to allow volume-to-weight conversions!). If Gourmet cant convert your units, the shopping list will simply display both units -- for example, the screenshot shows both tsp. and cloves of garlic, since these units cant be sensibly combined.
If you already have an item that appears on your shopping list, you can drag it into your "pantry" so it wont be included! Items added to your pantry will be remembered in the future (so you dont have to manually remove items like "water" from your shopping list every time a recipe calls for it). However, since the pantry list is shown next to the shopping list, you will always have a list at hand of all the ingredients called for by your recipes. (You can drag an item back from the pantry to the shopping list if youve run out.)
The shopping list is also automatically sorted into categories. Gourmet knows the basic categories of a number of foods (produce, meat, fish), and you can create whatever categories are convenient for your own shopping -- I use it for sorting out the basic sections and aisles of my local grocery store and those items that I get from specialty stores. You can set up shopping categories as you enter recipes, or you can move ingredients around within the shopping list view by drag and dropping or using a popup menu.
Main features:
- Simple searching and sorting
- Easy recipe editing
- Import and export from various formats
- A shopping list creator and organizer
<<less
Download (2.1MB)
Added: 2007-01-04 License: GPL (GNU General Public License) Price:
1027 downloads
Navicat MySQL database tool for Linux (Freeware) 8.0.29

Navicat MySQL database tool for Linux (Freeware) 8.0.29


Navicat MySQL Manager is a set of graphical database management and monitoring tools for MySQL. Navicat is easy-to-use and powerful. It supports backup/ restore, import/ export data and synchronize database. more>>

Navicat MySQL Manager is a set of graphical database management and monitoring tools for MySQL.

Major features

  1. This is an all-inclusive mysql front end provides a powerful graphical interface for databases management and maintenance.
  2. Easy installation and intuitive interface make it an irreplaceable tool for mysql on the web or your local desktop.
  3. Navicat supports all verions of MySQL and it lets you convert data to/ from MySQL, synchronizes and backups database in a snap through helpful wizards
  4. Major features of Navicat full version include Visual Query Builder, Import/ Export, Report Builder, Backup/ Restore, SSH and HTTP Tunneling and Data Transfer.
  5. Navicat also supports to import data from ODBC, batch job scheduling (create schedule for Import/Export, Data Transfer and saved queries),
    printing of table structure. It also includes a full featured graphical manager for setting the users and access privileges
  6. Navicat version 8 supports Code Completion, Form View and email Notification Services, etc.
  7. Navicat is the number 1 MySQL database administration shareware in Download.com with over 350,000 downloads and 1,100,000 installations worldwide. Some of the users including Sony Music, Intel, Kodak, FedEx, KPMG Consulting, Ericsson,
    Siemens AG, Yahoo!, NTT DoCoMo (Japan), Hitachi (Japan), Imation, Lexmark, Cisco Systems, RSA Security, Avis (Europe), U.S. Department of Energy, UPS, Disney, Oxford University, Harvard University, NASA Space Flight Center, MIT, Michigan State University, University of Michigan, ...
  8. Navicat delivers a personal experience, simplifying the way you work. The program is also available for Windows and Mac OS X.
<<less
Download (0.00KB)
Added: 2009-04-04 License: Freeware Price: $0
210 downloads
UMMF::Export::Java 1.02

UMMF::Export::Java 1.02


UMMF::Export::Java is a code generator for JavaTemplate. more>>
UMMF::Export::Java is a code generator for JavaTemplate.

SYNOPSIS

use UMMF::Export::Java;

my $exporter = UMMF::Export::Java->new(output => *STDOUT);
my $exporter->export_Model($model);

This package allow UML models to be represented as Java code.

<<less
Download (0.67MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
871 downloads
SDE for JDeveloper (CE) for Linux 4.0

SDE for JDeveloper (CE) for Linux 4.0


SDE for Oracle JDeveloper is a UML tool tightly integrated with JDeveloper. SDE-JD supports all types of UML diagrams, code engineering,... New features include collaboratively modeling with CVS and S more>>

Visual Paradigm SDE for JDeveloper is a UML CASE tool/plug-in tightly integrated with JDeveloper. This UML modeling software supports full software lifecycle - analysis, design, implementation, testing and deployment. This UML CASE tool helps you build quality applications faster, better and cheaper. You can draw all types of UML diagrams in JDeveloper, reverse engineer Java code to class diagrams, generate Java code and generate documentation.
SDE-JD Features:
+Support UML version 2.1
+Business Workflow diagram
+Modeling collaboratively with CVS and Subversion (New Feature)
+Support UML2 model through XMI (New Feature)
+Shape editor
+Data flow diagram
+Fast project loading and saving speed
+Use Case Details Editor - An all-in-one environment for specifying a use cases details including general model specification and use case descriptions
+EJB Diagram - Visualize EJB systems.
+EJB Code Generation and Deployment - Generate beans for your application development and deployment.
+ORM support - generate Java objects from database
+Database generation - ERD to database tables
+Database reverse - existing DBMS to ERD
+Reverse engineering - code to model, code to diagram
+Instant Reverse for Java, C++, .NET exe/dll, XML, XML Schema,IDL
+Code Generation - model to code, diagram to code
+Round-trip engineering
+Automatic synchronization between source code and diagrams
+Automatic diagram layout - rearrange shapes and connectors on diagrams in elegant styles
+Import Rational Rose project
+Import XMI/export XMI
+Export diagrams to JPG, PNG, SVG
+Visio Integration - draw UML diagrams with MS Visio stencils
+PDF/HTML Report generator
+Version control
+More...
Other UML Modeling Tools / UML Plugins:
Java Platform (Windows/Linux/Mac OS X):
+SDE for Eclipse
+SDE for Borland JBuilder
+SDE for IntelliJ IDEA
+SDE for NetBeans
+SDE for Sun ONE
+SDE for WebLogic Workshop
Windows Platform:
+SDE for Microsoft Visual Studio
+More SDE...

<<less
Download (114.17MB)
Added: 2009-04-13 License: Freeware Price: $0
193 downloads
IMS Transport 1.0.3

IMS Transport 1.0.3


IMS Transport provides a Plone product that supports importing and exporting of IMS packages. more>>
IMS Transport provides a Plone product that supports importing and exporting of IMS packages.
The IMS Transport Tool allows Plone users to upload content in the form of an IMS package.
Although preliminary support is included for popular proprietary learning management system packages, support for extending this product to handle the import or export of any IMS package is also included.
Works with:
- Plone 2.5.1
- Plone 2.5
This is the first major release of this product.
<<less
Download (0.45MB)
Added: 2007-03-10 License: GPL (GNU General Public License) Price:
962 downloads
SDE for Sun ONE (CE) for Linux 4.2

SDE for Sun ONE (CE) for Linux 4.2


UML Plugin for Sun ONE: UML diagrams, Rational Rose, XMI import/export more>> SDE for Sun ONE is a UML CASE tool/plug-in tightly integrated with Sun ONE. This UML modeling software supports full software lifecycle - analysis, design, implementation, testing and deployment. This UML CASE tool helps you build quality applications faster, better and cheaper. You can draw all types of UML diagrams in Sun ONE, reverse engineer Java code to class diagrams, generate Java code and generate documentation.
SDE-SO Features:
+Support UML version 2.1
+Business Workflow diagram
+Bookmark (New Feature)
+Handi-Selection (New Feature)
+Command-line operations (New Feature)
+User Interface Designer (Enhanced)
+Data flow diagram
+Use Case Details Editor - An all-in-one environment for specifying a general model specification and use case descriptions
+EJB Diagram - Visualize EJB systems
+EJB Code Generation
+ORM support - generate Java objects from database
+Database generation - ERD to database tables
+Database reverse - existing DBMS to ERD
+Reverse engineering - code to model, code to diagram
+Reverse engineering Java, C++, XML Schema, XML, .NET exe/dll, CORBA IDL, XML Schema and Python (Enhanced)
+Code Generation - model to code, diagram to code
+Java Round-trip engineering
+Automatic synchronization between source code and diagrams
+Automatic diagram layout
+Modeling collaboratively with VP Teamwork Server, CVS and Subversion (Enhanced)
+Shape editor
+Import Rational Rose project, XMI/export XMI, Telelogic Rhapsody Project (New Feature)
+Support Stored Procedure and Database Trigger (New Feature)
+Export diagrams to JPG, PNG, SVG, EMF, PDF
+PDF/HTML/MS Word Report generator
+Multilingual support
+More...
Other UML Modeling Tools / UML Plugins:
Java Platform (Windows/Linux/Mac OS X):
+SDE for Eclipse
+SDE for Oracle JDeveloper
+SDE for Borland JBuilder
+SDE for IntelliJ IDEA
+SDE for NetBeans
+SDE for WebLogic Workshop
Windows Platform:
+SDE for Microsoft Visual Studio
+More SDE...
<<less
Download (128MB)
Added: 2009-03-31 License: Freeware Price: Free
206 downloads
 
Other version of SDE for Sun ONE (CE) for Linux
SDE for Sun ONE (CE) for Linux 4.1of UML diagrams in Sun ONE, reverse engineer Java code to class diagrams, generate Java code and ... CVS and Subversion +Shape editor +Import Rational Rose project +Import XMI/export XMI
License:freeware
Download (122.9MB)
203 downloads
Added: 2009-04-03
Bookmarks Unifier 2.0 Beta 7

Bookmarks Unifier 2.0 Beta 7


Bookmarks Unifier is a bookmarks converter/manager/cleaner. more>>
Bookmarks Unifier is a bookmarks converter/manager and cleaner. It enables users to create/maintain their internet bookmarks collections. Various formats from different browsers, which include Internet Explorer, Mozilla/Firefox, and Opera, are supported.
Bookmarks among these browsers can be converted, imported, exported one to/from another by using this program. Interface of this utility is fairly simple and straight forward, that means no more trying out each menu entries to get it work !
From now on, you can just import all of your bookmarks into the database, and export them to formats you like ! The more important thing is, it is FREE, and it is cross platform via the JAVA technology.
Main features:
- Importing(Merging) bookmars from IE/Firefox/Opera to one database
- Exporting database to bookmarks format of IE/Firefox/Opera
- URL duplications are detected, therefore no more duplicated URL all over the places
- Database is just a file which can be exchanged with other people, no more compressing IE Favorites folders
- Simple to use
- It supports UTF8 filenames/bookmark entry names
- No limitation of number of entries
- It is cross platforms (supports Linux/Windows/Macs)
- It is fast
- It is free !
<<less
Download (0.021MB)
Added: 2006-01-09 License: Freeware Price:
1509 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5