export
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1006
BBDB::Export 0.012
BBDB::Export is a Perl module to export data from The Insidious Big Brother Database. more>>
BBDB::Export is a Perl module to export data from The Insidious Big Brother Database.
SYNOPSIS
use BBDB::Export;
# export to LDIF
my $exporter = BBDB::Export::LDIF->new(
{
bbdb_file => "/path/to/.bbdb",
output_file => "export.ldif",
dc => "dc=geekfarm, dc=org",
}
);
$exporter->export();
# sync with ldap via ldapadd and ldapdelete
my $exporter = BBDB::Export::LDAP->new(
{
bbdb_file => "/path/to/.bbdb",
output_file => "/tmp/tempfile",
dc => "dc=geekfarm, dc=org",
ldappass => "supersecret",
}
);
$exporter->export();
# export to vcards
my $exporter = BBDB::Export::vCard->new(
{
bbdb_file => "/path/to/.bbdb",
output_dir => "/some/path/",
}
);
$exporter->export();
# create .mail_aliases
my $exporter = BBDB::Export::MailAliases->new(
{
bbdb_file => "/path/to/.bbdb",
output_file => ".mail_aliases",
}
);
$exporter->export();
This module was designed to export to your bbdb data to a wide array of formats, and also to make it easy to write new modules to export to new formats. Current export options include building an LDIF, vCard, or .mail_aliases, and automatically updating an ldap server.
For a fully functional command line converter, see the bbdb-export script that comes with this module.
BBDB::Export should not be used directly. Use any of the available subclasses using the examples above. For more examples of using BBDB::Export, see the test cases.
<<lessSYNOPSIS
use BBDB::Export;
# export to LDIF
my $exporter = BBDB::Export::LDIF->new(
{
bbdb_file => "/path/to/.bbdb",
output_file => "export.ldif",
dc => "dc=geekfarm, dc=org",
}
);
$exporter->export();
# sync with ldap via ldapadd and ldapdelete
my $exporter = BBDB::Export::LDAP->new(
{
bbdb_file => "/path/to/.bbdb",
output_file => "/tmp/tempfile",
dc => "dc=geekfarm, dc=org",
ldappass => "supersecret",
}
);
$exporter->export();
# export to vcards
my $exporter = BBDB::Export::vCard->new(
{
bbdb_file => "/path/to/.bbdb",
output_dir => "/some/path/",
}
);
$exporter->export();
# create .mail_aliases
my $exporter = BBDB::Export::MailAliases->new(
{
bbdb_file => "/path/to/.bbdb",
output_file => ".mail_aliases",
}
);
$exporter->export();
This module was designed to export to your bbdb data to a wide array of formats, and also to make it easy to write new modules to export to new formats. Current export options include building an LDIF, vCard, or .mail_aliases, and automatically updating an ldap server.
For a fully functional command line converter, see the bbdb-export script that comes with this module.
BBDB::Export should not be used directly. Use any of the available subclasses using the examples above. For more examples of using BBDB::Export, see the test cases.
Download (0.013MB)
Added: 2006-10-11 License: Perl Artistic License Price:
1109 downloads
Exporter::Easy 0.16
Exporter::Easy is a Perl module that takes the drudgery out of Exporting symbols. more>>
Exporter::Easy is a Perl module that takes the drudgery out of Exporting symbols.
SYNOPSIS
In module YourModule.pm:
package YourModule;
use Exporter::Easy (
OK => [ $munge, frobnicate ] # symbols to export on request
);
In other files which wish to use YourModule:
use ModuleName qw(frobnicate); # import listed symbols
frobnicate ($left, $right) # calls YourModule::frobnicate
Exporter::Easy makes using Exporter easy. In its simplest case it allows you to drop the boilerplate code that comes with using Exporter, so
require Exporter;
use base qw( Exporter );
use vars qw( @EXPORT );
@EXPORT = ( init );
becomes
use Exporter::Easy ( EXPORT => [ init ] );
and more complicated situations where you use tags to build lists and more tags become easy, like this
use Exporter::Easy (
EXPORT => [qw( init :base )],
TAGS => [
base => [qw( open close )],
read => [qw( read sysread readline )],
write => [qw( print write writeline )],
misc => [qw( select flush )],
all => [qw( :base :read :write :misc)],
no_misc => [qw( :all !:misc )],
],
OK => [qw( some other stuff )],
);
This will set @EXPORT, @EXPORT_OK, @EXPORT_FAIL and %EXPORT_TAGS in the current package, add Exporter to that packages @ISA and do a use vars on all the variables mentioned. The rest is handled as normal by Exporter.
<<lessSYNOPSIS
In module YourModule.pm:
package YourModule;
use Exporter::Easy (
OK => [ $munge, frobnicate ] # symbols to export on request
);
In other files which wish to use YourModule:
use ModuleName qw(frobnicate); # import listed symbols
frobnicate ($left, $right) # calls YourModule::frobnicate
Exporter::Easy makes using Exporter easy. In its simplest case it allows you to drop the boilerplate code that comes with using Exporter, so
require Exporter;
use base qw( Exporter );
use vars qw( @EXPORT );
@EXPORT = ( init );
becomes
use Exporter::Easy ( EXPORT => [ init ] );
and more complicated situations where you use tags to build lists and more tags become easy, like this
use Exporter::Easy (
EXPORT => [qw( init :base )],
TAGS => [
base => [qw( open close )],
read => [qw( read sysread readline )],
write => [qw( print write writeline )],
misc => [qw( select flush )],
all => [qw( :base :read :write :misc)],
no_misc => [qw( :all !:misc )],
],
OK => [qw( some other stuff )],
);
This will set @EXPORT, @EXPORT_OK, @EXPORT_FAIL and %EXPORT_TAGS in the current package, add Exporter to that packages @ISA and do a use vars on all the variables mentioned. The rest is handled as normal by Exporter.
Download (0.009MB)
Added: 2006-10-03 License: Perl Artistic License Price:
1116 downloads
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.
<<lessSYNOPSIS
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.
Download (0.67MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
871 downloads
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.
<<lessSYNOPSIS
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.
Download (0.005MB)
Added: 2007-01-23 License: Perl Artistic License Price:
1004 downloads
iTunes Playlist Export 1.3.1
iTunes Playlist Export exports .m3u playlists from your iTunes playlists. more>>
iTunes Export provides useful features that are not included in the iTunes application. iTunes Export project is open source and freely available for use.
iTunes Export currently provides the ability to export iTunes Playlists to the standard .m3u file format. Unfortunately, this feature is not included in the iTunes application and is extremely useful for users who wish to use iTunes with other applications or devices.
iTunes Export provides a simple command line application that can be used to generate playlists, a Graphical UI that provides a wizard interface to exporting playlists, or a DLL that can be used by other developers to add the ability to read iTunes Music Library XML files to other applications.
iTunes Export is written using C# on the .NET runtime. It should work on all versions of Windows that support .NET. The iTunesExport command line application also works on Linux using Mono 0.29 or later.
<<lessiTunes Export currently provides the ability to export iTunes Playlists to the standard .m3u file format. Unfortunately, this feature is not included in the iTunes application and is extremely useful for users who wish to use iTunes with other applications or devices.
iTunes Export provides a simple command line application that can be used to generate playlists, a Graphical UI that provides a wizard interface to exporting playlists, or a DLL that can be used by other developers to add the ability to read iTunes Music Library XML files to other applications.
iTunes Export is written using C# on the .NET runtime. It should work on all versions of Windows that support .NET. The iTunesExport command line application also works on Linux using Mono 0.29 or later.
Download (MB)
Added: 2007-05-17 License: BSD License Price:
896 downloads
GENE Graph Export Engine 0.3
GENE Graph Export Engine is an advanced XML exporter. more>>
GENE Graph Export Engine is an advanced XML exporter.
GENE Graph Export Engine is a complex convertor/framework for multi-namespace XML transforming and exporting.
It is able to convert various XML types including SVG, DocBook, MathML, XSL-FO, and their combinations into a wide area of output formats: PDF, PNG, SVG, PS, MIF, RTF, and XHTML.
Custom XSLT scripts can be registered easily and are used automatically. It requires Sun JRE 5.0.
Enhancements:
- GENE Core bugfixes. FOP plugin bugfixes.
- Gene Runner I18N support has been added. l12n in Slovak.
- Configuration ability has been added.
- New command line switches have been added.
- Preliminary buggy CML (Chemical Markup Language) and XHTML->DocBook exporters have been added.
<<lessGENE Graph Export Engine is a complex convertor/framework for multi-namespace XML transforming and exporting.
It is able to convert various XML types including SVG, DocBook, MathML, XSL-FO, and their combinations into a wide area of output formats: PDF, PNG, SVG, PS, MIF, RTF, and XHTML.
Custom XSLT scripts can be registered easily and are used automatically. It requires Sun JRE 5.0.
Enhancements:
- GENE Core bugfixes. FOP plugin bugfixes.
- Gene Runner I18N support has been added. l12n in Slovak.
- Configuration ability has been added.
- New command line switches have been added.
- Preliminary buggy CML (Chemical Markup Language) and XHTML->DocBook exporters have been added.
Download (1.1MB)
Added: 2006-07-03 License: MPL (Mozilla Public License) Price:
1209 downloads
F-Spot 0.4.0
F-Spot is an application designed to provide personal photo management to the GNOME desktop. more>>
F-Spot project is an application designed to provide personal photo management to the GNOME desktop.
Main features:
- import
- export
- printing
- advanced sorting of digital images.
<<lessMain features:
- import
- export
- printing
- advanced sorting of digital images.
Download (2.3MB)
Added: 2007-08-03 License: GPL (GNU General Public License) Price:
820 downloads
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.
<<lessThe 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.
Download (0.45MB)
Added: 2007-03-10 License: GPL (GNU General Public License) Price:
962 downloads
Tagore Beta 1.2
Tagore project is a personal desktop wiki for GNOME. more>>
Tagore project is a personal desktop wiki for GNOME.
Tagore lets you take notes using the textile syntax and display them with the embeded browser. You can add tags to your notes for easy organizing them and you can later export them to html.
<<lessTagore lets you take notes using the textile syntax and display them with the embeded browser. You can add tags to your notes for easy organizing them and you can later export them to html.
Download (0.036MB)
Added: 2006-09-10 License: GPL (GNU General Public License) Price:
1141 downloads
MuseScore 0.6.1
MuseScore is a graphical WYSIWYG music score typesetter. more>>
MuseScore is a graphical WYSIWYG music score typesetter. It uses a TrueType music font derived from the lilypond project feta fonts. Notes are entered on an "virtual note sheet". When you enter the notes, the score is immediately reformatted.
Main features:
- WYSIWYG, notes are entered on a "virtual note sheet"
- uses TrueType fonts for screen and printing (adapted from the LilyPond project feta fonts)
- easy and fast note entry
- integrated fluid sound font player; JACK audio server driver
- MusicXml import/export
- standard midifile (SMF) import/export
- programmed in C++ using the Qt gui library
- Xml file format
- GPL licenced
<<lessMain features:
- WYSIWYG, notes are entered on a "virtual note sheet"
- uses TrueType fonts for screen and printing (adapted from the LilyPond project feta fonts)
- easy and fast note entry
- integrated fluid sound font player; JACK audio server driver
- MusicXml import/export
- standard midifile (SMF) import/export
- programmed in C++ using the Qt gui library
- Xml file format
- GPL licenced
Download (4.3MB)
Added: 2007-08-01 License: GPL (GNU General Public License) Price:
822 downloads
XML Copy Editor 1.1.0.1
XML Copy Editor is an XML editor with DTD/XML Schema/RELAX NG validation. more>>
XML Copy Editor is an XML editor with DTD/XML Schema/RELAX NG validation, XSLT, XPath, pretty-printing, syntax highlighting, folding, tag completion/locking and lossless import/export of Microsoft Word documents.
Enhancements:
- This release fixes a number of bugs and introduces support for CSS.
<<lessEnhancements:
- This release fixes a number of bugs and introduces support for CSS.
Download (3.9MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
866 downloads
Plotmeister 0.2.0
Plotmeister is the swiss army knife for data exploration. more>>
Plotmeister project is the swiss army knife for data exploration.
Plotmeister contains of backend tools to transform your ASCII data into a Plotmeister compliant data format.
In GUI frontend enables the user to explore the data set interactively. Variables from the source data set can be changed on the fly by adjusting sliders in the GUI. The plot will be updated on the fly.
Installation:
1. Unpack the plotmeister archive
tar xvzf plotmeister-VERSION.tar.gz
2. Update environmental settings
export PATH=$PATH:PATH_TO_PLOTMEISTER/plotmeister-VERSION
3. If you want to use the backend tools you need to set PATH and PERL5LIB. I recommend to include the Perl backend tools and the Palo tools to your PATH variable.
For Perl backend tools:
export PATH=$PATH:PATH_TO_PLOTMEISTER/plotmeister-VERSION/backend/pmeister
export PERL5LIB=$PERL5LIB:PATH_TO_PLOTMEISTER/plotmeister-VERSION/backend/pmeister
For Palo tools:
export PATH=$PATH:PATH_TO_PLOTMEISTER/plotmeister-VERSION/backend/palo
4. Start plotmeister
simply execute
$> plotmeister.py
<<lessPlotmeister contains of backend tools to transform your ASCII data into a Plotmeister compliant data format.
In GUI frontend enables the user to explore the data set interactively. Variables from the source data set can be changed on the fly by adjusting sliders in the GUI. The plot will be updated on the fly.
Installation:
1. Unpack the plotmeister archive
tar xvzf plotmeister-VERSION.tar.gz
2. Update environmental settings
export PATH=$PATH:PATH_TO_PLOTMEISTER/plotmeister-VERSION
3. If you want to use the backend tools you need to set PATH and PERL5LIB. I recommend to include the Perl backend tools and the Palo tools to your PATH variable.
For Perl backend tools:
export PATH=$PATH:PATH_TO_PLOTMEISTER/plotmeister-VERSION/backend/pmeister
export PERL5LIB=$PERL5LIB:PATH_TO_PLOTMEISTER/plotmeister-VERSION/backend/pmeister
For Palo tools:
export PATH=$PATH:PATH_TO_PLOTMEISTER/plotmeister-VERSION/backend/palo
4. Start plotmeister
simply execute
$> plotmeister.py
Download (0.057MB)
Added: 2007-02-19 License: GPL (GNU General Public License) Price:
978 downloads
GenericTionary 1.0
GenericTionary is a multilingual dictionary software which makes it possible to generate dictionaries from flat files. more>>
GenericTionary is a multilingual dictionary software which makes it possible to generate dictionaries from flat files, to import the dictionaries which are generated with itself, and to export them back to flat files. It can handle multiple dictionaries.
GenericTionary has been developed using Qt 3.3.5 under Pardus.
With GenericTionary you can generate new dictionaries which can be used with GenericTionary, import them into GenericTionary and export back to flat files.
<<lessGenericTionary has been developed using Qt 3.3.5 under Pardus.
With GenericTionary you can generate new dictionaries which can be used with GenericTionary, import them into GenericTionary and export back to flat files.
Download (0.072MB)
Added: 2006-05-22 License: GPL (GNU General Public License) Price:
1250 downloads
feedoocha 0.1 Beta
feedoocha is a RSS feed creator. more>>
feedoocha is a RSS feed creator.
In order to maintain my RSS Feed, Ive developed a new mono application named "feedoocha"; its just a RSS Feed generator written in C#, running in mono with the ability to import/export the XML Feed file from a remote FTP server. So far, Im using it to add new topic to my feed.
<<lessIn order to maintain my RSS Feed, Ive developed a new mono application named "feedoocha"; its just a RSS Feed generator written in C#, running in mono with the ability to import/export the XML Feed file from a remote FTP server. So far, Im using it to add new topic to my feed.
Download (0.028MB)
Added: 2006-08-22 License: GPL (GNU General Public License) Price:
1160 downloads
ora2pg 4.5
Ora2Pg is a Perl module to export an Oracle database schema to a PostgreSQL compatible schema. more>>
Ora2Pg is a Perl module to export an Oracle database schema to a PostgreSQL compatible schema. ora2pg project connects your Oracle database, extracts its structure, and generates an SQL script that you can load into your PostgreSQL database.
It dumps the database schema (tables, views, sequences, indexes, grants) with primary, unique, and foreign keys into PostgreSQL syntax without editing the SQL code generated.
It also dump Oracle data into PostgreSQL DB as online process or into a file. You can choose what columns can be exported for each table.
Enhancements:
- This release fixes column order in Oracle INDEX extraction.
- They are now dumped exactly as created.
<<lessIt dumps the database schema (tables, views, sequences, indexes, grants) with primary, unique, and foreign keys into PostgreSQL syntax without editing the SQL code generated.
It also dump Oracle data into PostgreSQL DB as online process or into a file. You can choose what columns can be exported for each table.
Enhancements:
- This release fixes column order in Oracle INDEX extraction.
- They are now dumped exactly as created.
Download (0.040MB)
Added: 2007-06-20 License: Perl Artistic License Price:
524 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 export 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