description
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 803
Geometry Description Markup Language 2.9.0
Geometry Description Markup Language workpackage is primarly ment to provide geometry data exchange format for the LCG apps. more>>
Geometry Description Markup Language (GDML) workpackage is primarly ment to provide geometry data exchange format for the LCG applications. The workpackage consists of the GDML Schema part, which is a fully self-consistent definition of the GDML syntax and the GDML I/O part which provides means for writing out and reading in GDML files.
The GDML Schema does not depend in any way on the GDML I/O packages. In particular, new extensions to the GDML I/O packages can be implemented (interfaces to new application, like for instance visualisation, editors, etc), while the GDML Schema definition remains unchanged.
Enhancements:
- The loop machinery was improved so that any volume can be used in a loop.
- An installation script was added along with support for auxiliary volume information.
- A SimpleExtension example that shows how to extend GDML with custom elements was added.
- The obsolete PyGDML package was removed.
<<lessThe GDML Schema does not depend in any way on the GDML I/O packages. In particular, new extensions to the GDML I/O packages can be implemented (interfaces to new application, like for instance visualisation, editors, etc), while the GDML Schema definition remains unchanged.
Enhancements:
- The loop machinery was improved so that any volume can be used in a loop.
- An installation script was added along with support for auxiliary volume information.
- A SimpleExtension example that shows how to extend GDML with custom elements was added.
- The obsolete PyGDML package was removed.
Download (2.6MB)
Added: 2007-03-17 License: GPL (GNU General Public License) Price:
954 downloads
mod_python 3.3.1
mod_python is an Apache module that embeds the Python interpreter within the server. more>>
mod_python is an Apache module that embeds the Python interpreter within the server.
With mod_python you can write web-based applications in Python that will run many times faster than traditional CGI and will have access to advanced features such as ability to retain database connections and other data between hits and access to Apache internals.
A more detailed description of what mod_python can do is available in this OReilly article.
<<lessWith mod_python you can write web-based applications in Python that will run many times faster than traditional CGI and will have access to advanced features such as ability to retain database connections and other data between hits and access to Apache internals.
A more detailed description of what mod_python can do is available in this OReilly article.
Download (0.34MB)
Added: 2007-02-16 License: The Apache License Price:
986 downloads
Geo::Google::Location 0.02
Geo::Google::Location is a geographical point. more>>
Geo::Google::Location is a geographical point.
SYNOPSIS
use Geo::Google::Point;
# you shouldnt need to construct these yourself,
# have a Geo::Google object do it for you.
OBJECT METHODS
Geo::Google::Location objects provide the following accessor methods
Method Description
------ -----------
icon an icon to use when drawing this point.
id a unique identifier for this point.
infostyle unknown function.
latitude latitude of the point, to hundred-thousandth degree precision.
lines a few lines describing the point, useful as a label
longitude longitude of the point, to hundred-thousandth degree precision.
title a concise description of the point.
toString a method that renders the point in Google Maps XML format.
<<lessSYNOPSIS
use Geo::Google::Point;
# you shouldnt need to construct these yourself,
# have a Geo::Google object do it for you.
OBJECT METHODS
Geo::Google::Location objects provide the following accessor methods
Method Description
------ -----------
icon an icon to use when drawing this point.
id a unique identifier for this point.
infostyle unknown function.
latitude latitude of the point, to hundred-thousandth degree precision.
lines a few lines describing the point, useful as a label
longitude longitude of the point, to hundred-thousandth degree precision.
title a concise description of the point.
toString a method that renders the point in Google Maps XML format.
Download (0.010MB)
Added: 2006-11-27 License: Perl Artistic License Price:
1062 downloads
Lemonldap::Portal::Session 0.01
Lemonldap::Portal::Session is a Perl extension for Lemonldap websso. more>>
Lemonldap::Portal::Session is a Perl extension for Lemonldap websso.
SYNOPSIS
use Lemonldap::Portal::Session;
my $paramxml = $test->{DefinitionSession} ; # $test is the result of XML parsing
my $obj = Lemonldap::Portal::Session->init ($paramxml,entry =>$entry) ;
Lemonldap::Portal::Session is a parser of XML description of session to keys,values of hash .
It is a piece of lemonldap websso framework . see eg directory for implementation .
<<lessSYNOPSIS
use Lemonldap::Portal::Session;
my $paramxml = $test->{DefinitionSession} ; # $test is the result of XML parsing
my $obj = Lemonldap::Portal::Session->init ($paramxml,entry =>$entry) ;
Lemonldap::Portal::Session is a parser of XML description of session to keys,values of hash .
It is a piece of lemonldap websso framework . see eg directory for implementation .
Download (0.005MB)
Added: 2007-03-21 License: Perl Artistic License Price:
947 downloads
OpenSched xml.0.2 (Experimental)
Opensched is a tool for project management. more>>
Opensched is a tool for project management. OpenSched takes as input a file describing the project and generates the following:
Textural descriptions of the generated project plan.
Gantt charts.
Network diagrams.
The textural description can be generated in one or more of raw text, HTML, and TeX formats. The Gantt charts and network diagrams are generated directly as EPS drawings. The package contains routines to convert these to GIFs and PNGs.
Enhancements:
- The monthly_* commands have been replaced with XSL transformations.
<<lessTextural descriptions of the generated project plan.
Gantt charts.
Network diagrams.
The textural description can be generated in one or more of raw text, HTML, and TeX formats. The Gantt charts and network diagrams are generated directly as EPS drawings. The package contains routines to convert these to GIFs and PNGs.
Enhancements:
- The monthly_* commands have been replaced with XSL transformations.
Download (0.16MB)
Added: 2006-11-02 License: GPL (GNU General Public License) Price:
1086 downloads
SPOPS::Manual::Configuration 0.87
SPOPS::Manual::Configuration is a description of variables used in the SPOPS configuration process. more>>
SPOPS::Manual::Configuration is a description of variables used in the SPOPS configuration process.
These are variables used in all SPOPS implementations. The name of the variable is the key used in the configuration hashref.
Here is a fairly minimal example of a configuration hashref:
1: my $spops = {
2: news => {
3: class => My::News,
4: isa => [ qw/ MyApp::Datasource SPOPS::DBI::Pg SPOPS::DBI / ],
5: rules_from => [ My::DiscoverField ],
6: code_class => [],
7: field_discover => yes,
8: base_table => news,
9: id_field => news_id,
10: increment_field => 1,
11: no_insert => [ news_id ],
12: no_update => [ news_id ],
13: },
14: };
<<lessThese are variables used in all SPOPS implementations. The name of the variable is the key used in the configuration hashref.
Here is a fairly minimal example of a configuration hashref:
1: my $spops = {
2: news => {
3: class => My::News,
4: isa => [ qw/ MyApp::Datasource SPOPS::DBI::Pg SPOPS::DBI / ],
5: rules_from => [ My::DiscoverField ],
6: code_class => [],
7: field_discover => yes,
8: base_table => news,
9: id_field => news_id,
10: increment_field => 1,
11: no_insert => [ news_id ],
12: no_update => [ news_id ],
13: },
14: };
Download (0.28MB)
Added: 2006-10-13 License: Perl Artistic License Price:
1109 downloads
Crazy Eye Icons for Linux -
6 icons of a funny creature with just one eye more>> Description:
Six freeware icons of a funny creature with just one eye.
Content:
Crazy Eye, Anger, Dance, Run, Sad, Sleep<<less
Download (351KB)
Added: 2009-04-23 License: Freeware Price: Free
184 downloads
Fast Icon Users for Linux -
User icons with functions like: add, chat, edit, offline, remove, send, upload more>> Description:
11 icons of users.
Content:
User icons with functions like: add, chat, edit, offline, remove, send, upload, user, user group, video chat, voice chat<<less
Download (313KB)
Added: 2009-04-04 License: Freeware Price:
211 downloads
3D RSS Feeds Icon for Linux -
1 Free Rss Feed icon designed with 3D look. more>> Description:
1 Free Rss Feed icon designed with 3D look.
Content:
RSS feeds<<less
Download (96KB)
Added: 2009-04-18 License: Freeware Price: Free
190 downloads
CAD::Drawing::IO::Image 0.02
CAD::Drawing::IO::Image is a Perl module with output methods for images. more>>
CAD::Drawing::IO::Image is a Perl module with output methods for images.
Requisite Plug-in Functions
See CAD::Drawing::IO for a description of the plug-in architecture.
check_type
Returns true if $type is "img" or $filename matches one of the ImageMagick type extensions.
$fact = check_type($filename, $type);
Methods
load
Requires vectorization...
load();
save
save();
image_color
image_color($color, $data);
<<lessRequisite Plug-in Functions
See CAD::Drawing::IO for a description of the plug-in architecture.
check_type
Returns true if $type is "img" or $filename matches one of the ImageMagick type extensions.
$fact = check_type($filename, $type);
Methods
load
Requires vectorization...
load();
save
save();
image_color
image_color($color, $data);
Download (0.005MB)
Added: 2007-03-17 License: Perl Artistic License Price:
952 downloads
gremind 0.1.1
gremind project is a simple reminder manager for GNOME. more>>
gremind project is a simple reminder manager for GNOME.
The project allows you to set reminders (by time and description) so, when the time expires, notifies you with a discrete popup on the system tray and, optionally, plays a custom sound.
<<lessThe project allows you to set reminders (by time and description) so, when the time expires, notifies you with a discrete popup on the system tray and, optionally, plays a custom sound.
Download (0.13MB)
Added: 2007-07-03 License: GPL (GNU General Public License) Price:
844 downloads
Coffee Break Icons for Linux -
For all those coffee lovers out there, a free Coffee Icon collection. more>> Description:
10 freeware icons inspired in some delicious coffee foods.
Content:
Apple, Breads, Cheese, Coffee cups, Coffee pot, Cookies, Toast<<less
Download (483KB)
Added: 2009-04-24 License: Freeware Price: Free
182 downloads
htmloptim 1.2
htmloptim reduces the size of an HTML file by removing unnecessary characters like spaces, tabs, line feeds, and blank lines. more>>
htmloptim project reduces the size of an HTML file by removing unnecessary characters like spaces, tabs, line feeds, and blank lines.
Enhancements:
- added the -p option (remove trailing spaces and tabs)
- added skipping of more < pre > like tags: < listing > < plaintext > < xmp >
- added description of the script
<<lessEnhancements:
- added the -p option (remove trailing spaces and tabs)
- added skipping of more < pre > like tags: < listing > < plaintext > < xmp >
- added description of the script
Download (0.006MB)
Added: 2006-08-11 License: GPL (GNU General Public License) Price:
1170 downloads
Sweet System Icons for Linux -
12 freeware icons inspired by the sweet look and feel of baby rooms artwork. more>> Description:
12 freeware icons inspired by the sweet look and feel of baby rooms artwork.
Content:
CD, Computer, Documents, Favorits, Folders, Home<<less
Download (287KB)
Added: 2009-03-31 License: Freeware Price:
206 downloads
XML::Conf 0.04
XML::Conf is a simple configuration module based on XML. more>>
XML::Conf is a simple configuration module based on XML.
SYNOPSIS
Here follows some examples as the tests are done.
use XML::Conf;
my $c = XML::Conf->new($filename);
$w = $c->FIRSTKEY();
$v = $c->NEXTKEY();
$c->EXISTS($v);
$c->DELETE($v);
$c->CLEAR();
This is the description of the class, currently it only containg only the descriptions of the private and public methods and attributes.
<<lessSYNOPSIS
Here follows some examples as the tests are done.
use XML::Conf;
my $c = XML::Conf->new($filename);
$w = $c->FIRSTKEY();
$v = $c->NEXTKEY();
$c->EXISTS($v);
$c->DELETE($v);
$c->CLEAR();
This is the description of the class, currently it only containg only the descriptions of the private and public methods and attributes.
Download (0.006MB)
Added: 2006-09-08 License: Perl Artistic License Price:
1141 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 description 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