export to csv
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1258
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
Agata Report 7.2
Agata Report is a cross-platform database reporting tool with graph generation and a query tool. more>>
Agata Report is a cross-platform database reporting tool with graph generation and a query tool that allows you to get data from PostgreSQL, MySQL, SQLite, Oracle, DB2, MS-SQL, Informix, InterBase, Sybase, or Frontbase and export that data as PostScript, plain text, HTML, XML, PDF, or spreadsheet (CSV) formats through its graphical interface.
You can also define subtotals, levels and a grand total for the report, merge the data into a document, generate address labels, or even generate a complete ER-diagram from your database.
<<lessYou can also define subtotals, levels and a grand total for the report, merge the data into a document, generate address labels, or even generate a complete ER-diagram from your database.
Download (3.7MB)
Added: 2005-08-05 License: GPL (GNU General Public License) Price:
905 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
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
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
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
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
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.
<<lessJDBCImporter 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.
Download (1.0MB)
Added: 2007-04-30 License: LGPL (GNU Lesser General Public License) Price:
907 downloads
JRegexpTester 0.37
JRegexpTester is a standalone Swing application. more>>
JRegexpTester is a standalone Swing application that helps you test regular expressions with the Sun Java standard API (java.util.regex).
The extracted data can be modified with formatters similar to those used by sprintf, or with standard Java date and decimal formatters. JRegexpTester features RegExLib library integration with more than 900 patterns.
Since the release 0.3, JRegexpTester helps you manage CSV (comma-separated values) files.
Main features:
- easy to use interface.
- immediate response.
- large file extraction permitted (line by line).
- automatic integration of the entire RegExLib.com library (more than 900 patterns ready to use except those .Net specific).
- save/load/export(text,html)./search
- users can easily see all the groups capturing text moving the cursor into the pane of details.
- the open-close brackets (curly and square) and parenthesis are clearly highlighted into the regexp text area.
- easy CSV file management (extract/transform). JRegexpTester can help you manage files with more than 65536 rows which cant be read entirely by Gnumeric.
Enhancements:
- integration of the new webservices of RegexLib V2 into the panel of preferences
<<lessThe extracted data can be modified with formatters similar to those used by sprintf, or with standard Java date and decimal formatters. JRegexpTester features RegExLib library integration with more than 900 patterns.
Since the release 0.3, JRegexpTester helps you manage CSV (comma-separated values) files.
Main features:
- easy to use interface.
- immediate response.
- large file extraction permitted (line by line).
- automatic integration of the entire RegExLib.com library (more than 900 patterns ready to use except those .Net specific).
- save/load/export(text,html)./search
- users can easily see all the groups capturing text moving the cursor into the pane of details.
- the open-close brackets (curly and square) and parenthesis are clearly highlighted into the regexp text area.
- easy CSV file management (extract/transform). JRegexpTester can help you manage files with more than 65536 rows which cant be read entirely by Gnumeric.
Enhancements:
- integration of the new webservices of RegexLib V2 into the panel of preferences
Download (1.9MB)
Added: 2007-04-01 License: GPL (GNU General Public License) Price:
937 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
XML::CSV 0.15
XML::CSV is a Perl extension converting CSV files to XML. more>>
XML::CSV is a Perl extension converting CSV files to XML.
SYNOPSIS
use XML::CSV;
$csv_obj = XML::CSV->new();
$csv_obj = XML::CSV->new(%attr);
$status = $csv_obj->parse_doc(file_name);
$status = $csv_obj->parse_doc(file_name, %attr);
$csv_obj->declare_xml(%attr);
$csv_obj->declare_doctype(%attr);
$csv_obj->print_xml(file_name, %attr);
XML::CSV is a new module in is going to be upgraded very often as my time permits. For the time being it uses CSV_XS module object default values to parse the (*.csv) document and then creates a perl data structure with xml tags names and data. At this point it does not allow for a write as you parse interface but is the first upgrade for the next release. I will also allow more access to the data structures and more documentation. I will also put in more support for XML, since currently it only allows a simple XML structure.
Currently you can modify the tag structure to allow for attributes. No DTD support is currently available, but will be implemented in a soon coming release. As the module will provide both: object and event interfaces, it will be used upon individual needs, system resources, and required performance. Ofcourse the DOM implementation takes up more resources and in some instances timing, its the easiest to use.
<<lessSYNOPSIS
use XML::CSV;
$csv_obj = XML::CSV->new();
$csv_obj = XML::CSV->new(%attr);
$status = $csv_obj->parse_doc(file_name);
$status = $csv_obj->parse_doc(file_name, %attr);
$csv_obj->declare_xml(%attr);
$csv_obj->declare_doctype(%attr);
$csv_obj->print_xml(file_name, %attr);
XML::CSV is a new module in is going to be upgraded very often as my time permits. For the time being it uses CSV_XS module object default values to parse the (*.csv) document and then creates a perl data structure with xml tags names and data. At this point it does not allow for a write as you parse interface but is the first upgrade for the next release. I will also allow more access to the data structures and more documentation. I will also put in more support for XML, since currently it only allows a simple XML structure.
Currently you can modify the tag structure to allow for attributes. No DTD support is currently available, but will be implemented in a soon coming release. As the module will provide both: object and event interfaces, it will be used upon individual needs, system resources, and required performance. Ofcourse the DOM implementation takes up more resources and in some instances timing, its the easiest to use.
Download (0.007MB)
Added: 2006-09-15 License: Perl Artistic License Price:
1135 downloads
openModeller Desktop 1.0.5
openModeller Desktop application builds on the openModeller library by providing a user friendly graphical user interface. more>>
openModeller project is a generic framework for carrying out fundamental niche modelling experiments - typically used to predict species distribution given a set of environmental raster layers.
The openModeller Desktop application builds on the openModeller library by providing a user friendly graphical user interface for carrying out niche modelling experiments.
Enhancements:
- Added experiment level summary report
- Fixed issues with text file splitter and show status when done
- Updated about window to show plugins and changelog
- Installer supports unattended install on windows (install using openModeller1.0.5.exe /S from the command prompt)
- Fixed issues with raster data format convertor
- Enabled locality fetching using scraper plugins and added GBIF Web, GBIF Rest, and speciesLink scrapers
- Fixed issue with splash screen hovering modally over firstrun wizard on mac
- You can now export samples as TAB delimited or CSV delimited text
- Dont smooth images when resampling
- Added support for new (mandatory) locality ids in openModeller library
- Fixed issues with window modality (various dialogs)
- Fix for [ 1636820 ] oM Desktop: Interface unresponsvive during experiment run.
- Fixed bug where ascii export was getting rounded to integers
- Handle missing qgis vector data providers more gracefully
- Double clicking on an item int eh experemient selector will cause it to be loaded
- By Popular request, store the experiment outputs in a folder with a human readable name.
- Fix for [ 1636715 ] oM Desktop: Display output format details in options dialog
- Fix for [ 1636825 ] oM Desktop: Select a mask for layers its not default
- Fixed bug [ 1636706 ] openModeller Desktop: generated ascii raster files headers incorrect
- Add new localities options gui - to support modelling with multiple locality files in one directory
- Fixed bug [ 1642350 ] File format filter missing in export image
- Fix for bug [ 1639715 ] Splash windows go to the limbo
- Show alg name after species name in progress dialog (fixes [ 1682407 ] om Desktop: Progress windows should show alg next to sp name)
- Added some better error handling for aborted models. openModeller Desktop is now much less prone to crashing when a problem occurs in the library.
- Fixed support for building on Mac OSX
- Implemented new build system using CMake
- Cleanups and improvments to windows installer to support on demand downloading of sample data and various other improvements.
<<lessThe openModeller Desktop application builds on the openModeller library by providing a user friendly graphical user interface for carrying out niche modelling experiments.
Enhancements:
- Added experiment level summary report
- Fixed issues with text file splitter and show status when done
- Updated about window to show plugins and changelog
- Installer supports unattended install on windows (install using openModeller1.0.5.exe /S from the command prompt)
- Fixed issues with raster data format convertor
- Enabled locality fetching using scraper plugins and added GBIF Web, GBIF Rest, and speciesLink scrapers
- Fixed issue with splash screen hovering modally over firstrun wizard on mac
- You can now export samples as TAB delimited or CSV delimited text
- Dont smooth images when resampling
- Added support for new (mandatory) locality ids in openModeller library
- Fixed issues with window modality (various dialogs)
- Fix for [ 1636820 ] oM Desktop: Interface unresponsvive during experiment run.
- Fixed bug where ascii export was getting rounded to integers
- Handle missing qgis vector data providers more gracefully
- Double clicking on an item int eh experemient selector will cause it to be loaded
- By Popular request, store the experiment outputs in a folder with a human readable name.
- Fix for [ 1636715 ] oM Desktop: Display output format details in options dialog
- Fix for [ 1636825 ] oM Desktop: Select a mask for layers its not default
- Fixed bug [ 1636706 ] openModeller Desktop: generated ascii raster files headers incorrect
- Add new localities options gui - to support modelling with multiple locality files in one directory
- Fixed bug [ 1642350 ] File format filter missing in export image
- Fix for bug [ 1639715 ] Splash windows go to the limbo
- Show alg name after species name in progress dialog (fixes [ 1682407 ] om Desktop: Progress windows should show alg next to sp name)
- Added some better error handling for aborted models. openModeller Desktop is now much less prone to crashing when a problem occurs in the library.
- Fixed support for building on Mac OSX
- Implemented new build system using CMake
- Cleanups and improvments to windows installer to support on demand downloading of sample data and various other improvements.
Download (0.63MB)
Added: 2007-04-24 License: GPL (GNU General Public License) Price:
914 downloads
CartoWeb 3.1.0
CartoWeb is a comprehensive and ready-to-use Web-GIS. more>>
CartoWeb is a comprehensive and ready-to-use Web-GIS (Geographical Information System) as well as a convenient framework for building advanced and customized applications.
Developed by Camptocamp SA, it is based on the UMN MapServer engine and is released under the GNU General Public License (GPL).
Written using innovative language PHP5, CartoWeb is highly modular and customizable thanks to its object-oriented architecture. CartoWeb project runs evenly on Windows or Unix-like platforms and shows its real power when associated to PostgreSQL/PostGIS.
Last but not least, CartoWeb may be set up as a SOAP Web Service enabling to have front-end server on one machine and data and map generation on an other.
Enhancements:
- Redesigned DHTML map interface as a convenient object-oriented API.
- Added JavaScript constraints for polygons: maximum number of points, no crossing.
- Added new improved tabs interface.
- Added support of styles with shapes and labels in outline plugin.
- Added new profile parameter for quick development/production switch.
- Added possibility to separate toolbar icons in several groups dispatched wherever in the interface layout.
- Improved PDF export plugin:
- Support for multiline text blocks ;
- Support for external data source (files, databases) for text blocks ;
- Debugged overview extent ;
- Customizable overview outline colors ;
- Overview can use viewer keymap.
- Redesigned installation script. Added Windows installation wizard (.exe installer).
- Added views plugin.
- Added routing plugin.
- Added layers reordering plugin.
- Added raw-image output switch.
- Renamed class Serializable to CwSerializable (for PHP 5.0.4+ compatibility).
- Added possibility to create output-format specific tables rules (eg. only for PDF, only for HTML, only for CSV...).
- Switched most private plugins methods and members to "protected" in order to facilitate plugin extension.
- Added support for dynamic mapfiles (generation using PHP templates) and multiple mapfiles switching.
- Added support for dynamic changes on layers tree (aka "layers children switching").
- Moved I18n PO files to projects directories.
- Optimized export plugins (HTML, CSV, PDF, etc.) that now uses the main CartoWeb page (separated export.php pages are deprecated).
<<lessDeveloped by Camptocamp SA, it is based on the UMN MapServer engine and is released under the GNU General Public License (GPL).
Written using innovative language PHP5, CartoWeb is highly modular and customizable thanks to its object-oriented architecture. CartoWeb project runs evenly on Windows or Unix-like platforms and shows its real power when associated to PostgreSQL/PostGIS.
Last but not least, CartoWeb may be set up as a SOAP Web Service enabling to have front-end server on one machine and data and map generation on an other.
Enhancements:
- Redesigned DHTML map interface as a convenient object-oriented API.
- Added JavaScript constraints for polygons: maximum number of points, no crossing.
- Added new improved tabs interface.
- Added support of styles with shapes and labels in outline plugin.
- Added new profile parameter for quick development/production switch.
- Added possibility to separate toolbar icons in several groups dispatched wherever in the interface layout.
- Improved PDF export plugin:
- Support for multiline text blocks ;
- Support for external data source (files, databases) for text blocks ;
- Debugged overview extent ;
- Customizable overview outline colors ;
- Overview can use viewer keymap.
- Redesigned installation script. Added Windows installation wizard (.exe installer).
- Added views plugin.
- Added routing plugin.
- Added layers reordering plugin.
- Added raw-image output switch.
- Renamed class Serializable to CwSerializable (for PHP 5.0.4+ compatibility).
- Added possibility to create output-format specific tables rules (eg. only for PDF, only for HTML, only for CSV...).
- Switched most private plugins methods and members to "protected" in order to facilitate plugin extension.
- Added support for dynamic mapfiles (generation using PHP templates) and multiple mapfiles switching.
- Added support for dynamic changes on layers tree (aka "layers children switching").
- Moved I18n PO files to projects directories.
- Optimized export plugins (HTML, CSV, PDF, etc.) that now uses the main CartoWeb page (separated export.php pages are deprecated).
Download (11.6MB)
Added: 2005-11-25 License: GPL (GNU General Public License) Price:
1430 downloads
Palm::Progect::Converter::CSV 2.0.4
Palm::Progect::Converter::CSV is a Perl module to convert between Progect databases and CSV files. more>>
Palm::Progect::Converter::CSV is a Perl module to convert between Progect databases and CSV files.
SYNOPSIS
my $converter = Palm::Progect::Converter->new(
format => CSV,
# ... other args ...
);
$converter->load_records();
# ... do stuff with records
$converter->save_records();
This converts between CSV files and Palm::Progect records and preferences.
The CSV format allows for basic import/export with spreadsheet programs. The CSV file does not look like a tree structure; instead, there is a level column, which indicates the indent level for the current row.
The columns in the format are:
level
The indent level of the record.
description
priority
The priority of the record from 1 to 5, or 0 for no priority.
isAction
isProgress
isNumeric
isInfo
Any record can have one (and only one) of the above types.
If you are going to change the type of a record, remember to set all the other types to false:
isAction isProgress isNumeric isInfo
0 0 0 1
completed
Completed has different values depending upon the type of record. For action items, it is either 1 or 0, for complete or not complete.
For Progress items, it is a number between 1 and 100, indicating a percentage.
For Numeric items it is a number between 1 and 100 indicating the the integer percentage of the numericActual value divided by the numericLimit value.
numericActual
The numerator of a numeric record. If the numeric value of a record is 4/5, then the numericActual value is 4.
numericLimit
The denominator of a numeric record. If the numeric value of a record is 4/5, then the numericLimit value is 5.
DateDue
This is a date in the format specified on the command line with the --csv-date-format option
category
opened
description
note
<<lessSYNOPSIS
my $converter = Palm::Progect::Converter->new(
format => CSV,
# ... other args ...
);
$converter->load_records();
# ... do stuff with records
$converter->save_records();
This converts between CSV files and Palm::Progect records and preferences.
The CSV format allows for basic import/export with spreadsheet programs. The CSV file does not look like a tree structure; instead, there is a level column, which indicates the indent level for the current row.
The columns in the format are:
level
The indent level of the record.
description
priority
The priority of the record from 1 to 5, or 0 for no priority.
isAction
isProgress
isNumeric
isInfo
Any record can have one (and only one) of the above types.
If you are going to change the type of a record, remember to set all the other types to false:
isAction isProgress isNumeric isInfo
0 0 0 1
completed
Completed has different values depending upon the type of record. For action items, it is either 1 or 0, for complete or not complete.
For Progress items, it is a number between 1 and 100, indicating a percentage.
For Numeric items it is a number between 1 and 100 indicating the the integer percentage of the numericActual value divided by the numericLimit value.
numericActual
The numerator of a numeric record. If the numeric value of a record is 4/5, then the numericActual value is 4.
numericLimit
The denominator of a numeric record. If the numeric value of a record is 4/5, then the numericLimit value is 5.
DateDue
This is a date in the format specified on the command line with the --csv-date-format option
category
opened
description
note
Download (0.040MB)
Added: 2006-08-23 License: Perl Artistic License Price:
1157 downloads
Multiple Time Sheets 4
Multiple Time Sheets is a simple tool to help you keep track of how many hours you work and for whom. more>>
Multiple Time Sheets is a simple tool to help you keep track of how many hours you work and for whom.
It differs from most time-tracking software because its designed to work like paper that magically totals up hours.
Main features:
- Uses text files, requiring no database.
- Supports only one user per app, for simpler code.
- Sends and tracks invoices, and payments thereof.
- Features a rudimentary to-do list that displays your list as an outline.
- Sends you a backup of your data automatically.
- Assume the user prefers free-form data entry in text files rather than typing into forms.
- Uses the htmlMimeMail.php class by Richard Heye (phpguru.org).
- CSV and OPML exports of some data.
- Automatic hyperlinking from MTS to your favorite web-based software.
Enhancements:
- This release added a feature that replaces text patterns with links so that strings like "Bug 10" can link to a bug tracking application.
- CSV export was added for the timesheet along with OPML export for the to-do list.
<<lessIt differs from most time-tracking software because its designed to work like paper that magically totals up hours.
Main features:
- Uses text files, requiring no database.
- Supports only one user per app, for simpler code.
- Sends and tracks invoices, and payments thereof.
- Features a rudimentary to-do list that displays your list as an outline.
- Sends you a backup of your data automatically.
- Assume the user prefers free-form data entry in text files rather than typing into forms.
- Uses the htmlMimeMail.php class by Richard Heye (phpguru.org).
- CSV and OPML exports of some data.
- Automatic hyperlinking from MTS to your favorite web-based software.
Enhancements:
- This release added a feature that replaces text patterns with links so that strings like "Bug 10" can link to a bug tracking application.
- CSV export was added for the timesheet along with OPML export for the to-do list.
Download (0.039MB)
Added: 2006-01-31 License: Public Domain Price:
1364 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 to csv 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