entity relationship
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 301
Bio::Ontology::Relationship 1.4
Bio::Ontology::Relationship is a relationship for an ontology. more>>
Bio::Ontology::Relationship is a relationship for an ontology.
SYNOPSIS
$rel = Bio::Ontology::Relationship->new( -identifier => "16847",
-subject_term => $subj,
-object_term => $obj,
-predicate_term => $pred );
This is a basic implementation of Bio::Ontology::RelationshipI.
The terminology we use here is the one commonly used for ontologies, namely the triple of (subject, predicate, object), which in addition is scoped in a namespace (ontology). It is called triple because it is a tuple of three ontology terms.
There are other terminologies in use for expressing relationships. For those who it helps to better understand the concept, the triple of (child, relationship type, parent) would be equivalent to the terminology chosen here, disregarding the question whether the notion of parent and child is sensible in the context of the relationship type or not. Especially in the case of ontologies with a wide variety of predicates the parent/child terminology and similar ones can quickly become ambiguous (e.g., A synthesises B), meaningless (e.g., A binds B), or even conflicting (e.g., A is-parent-of B), and are therefore strongly discouraged.
<<lessSYNOPSIS
$rel = Bio::Ontology::Relationship->new( -identifier => "16847",
-subject_term => $subj,
-object_term => $obj,
-predicate_term => $pred );
This is a basic implementation of Bio::Ontology::RelationshipI.
The terminology we use here is the one commonly used for ontologies, namely the triple of (subject, predicate, object), which in addition is scoped in a namespace (ontology). It is called triple because it is a tuple of three ontology terms.
There are other terminologies in use for expressing relationships. For those who it helps to better understand the concept, the triple of (child, relationship type, parent) would be equivalent to the terminology chosen here, disregarding the question whether the notion of parent and child is sensible in the context of the relationship type or not. Especially in the case of ontologies with a wide variety of predicates the parent/child terminology and similar ones can quickly become ambiguous (e.g., A synthesises B), meaningless (e.g., A binds B), or even conflicting (e.g., A is-parent-of B), and are therefore strongly discouraged.
Download (4.7MB)
Added: 2007-08-09 License: Perl Artistic License Price:
806 downloads
Myco::Entity 1.22
Myco::Entity is a common base class for all Myco entity classes. more>>
Myco::Entity is a common base class for all Myco entity classes.
SYNOPSIS
### Entity class definition
package Myco::Foo;
use base qw(Myco::Entity);
# Start building metadata
my $metadata = Myco::Entity::Meta->new
( name => __PACKAGE__,
tangram => { table => Foo }
);
$metadata->add_attribute(name => attr1, type => string);
$metadata->add_attribute(name => attr2, type => string);
# class-specific methods defined ...
#
# Fill in $schema with all added_attributes and discover other metadata
$metadata->activate_class;
### Entity class usage
use Myco::Foo;
# Constructor
$obj = Myco::Foo->new;
$obj = Myco::Foo->new(attr1 => value, attr2 => value);
# Access class metadata (see Myco::Entity::Meta)
$meta = Myco::Foo->introspect;
$meta = $obj->introspect;
# Accessors
$obj->get_attr1; # get attribute value
$obj->set_attr1(value); # set attribute value
# Instance methods
$id = $obj->save; # update objects state in persistent
# storage, create new record if needed;
# returns objects Tangram id
$obj->destroy;
$obj->modify(attr1 => val, attr2 => val);
$object_id = $obj->id;
$obj->is_transient; # returns true if object is in Tangram
# transient storage
## object retrieval (see class Myco documentation
# for full detail)
$obj = Myco->load($object_id);
# fetch all objects of given type
@objects = Myco->select(ref $obj);
Provides, via inheritence, common interface in support of basic lifecycle needs for myco entity objects.
This is accomplished through the encapsulation of the CPAN module Class::Tangram which provides a basis for "in-memory" object behavior. Consult its documentation for details on schema definition syntax, getter/setter behavior, check functions, etc.
The common interface for object persistence behavior (referred within myco as "transaction" behavior) is provided through defintion of a handful of related instance methods. This is done with reliance on the services of the class Myco, which encapsulates the functionality of Tangram::Storage and provides system-wide connection handling.
<<lessSYNOPSIS
### Entity class definition
package Myco::Foo;
use base qw(Myco::Entity);
# Start building metadata
my $metadata = Myco::Entity::Meta->new
( name => __PACKAGE__,
tangram => { table => Foo }
);
$metadata->add_attribute(name => attr1, type => string);
$metadata->add_attribute(name => attr2, type => string);
# class-specific methods defined ...
#
# Fill in $schema with all added_attributes and discover other metadata
$metadata->activate_class;
### Entity class usage
use Myco::Foo;
# Constructor
$obj = Myco::Foo->new;
$obj = Myco::Foo->new(attr1 => value, attr2 => value);
# Access class metadata (see Myco::Entity::Meta)
$meta = Myco::Foo->introspect;
$meta = $obj->introspect;
# Accessors
$obj->get_attr1; # get attribute value
$obj->set_attr1(value); # set attribute value
# Instance methods
$id = $obj->save; # update objects state in persistent
# storage, create new record if needed;
# returns objects Tangram id
$obj->destroy;
$obj->modify(attr1 => val, attr2 => val);
$object_id = $obj->id;
$obj->is_transient; # returns true if object is in Tangram
# transient storage
## object retrieval (see class Myco documentation
# for full detail)
$obj = Myco->load($object_id);
# fetch all objects of given type
@objects = Myco->select(ref $obj);
Provides, via inheritence, common interface in support of basic lifecycle needs for myco entity objects.
This is accomplished through the encapsulation of the CPAN module Class::Tangram which provides a basis for "in-memory" object behavior. Consult its documentation for details on schema definition syntax, getter/setter behavior, check functions, etc.
The common interface for object persistence behavior (referred within myco as "transaction" behavior) is provided through defintion of a handful of related instance methods. This is done with reliance on the services of the class Myco, which encapsulates the functionality of Tangram::Storage and provides system-wide connection handling.
Download (0.10MB)
Added: 2006-10-20 License: Perl Artistic License Price:
639 downloads
Term::Animation 2.3
Term::Animation is a Perl module that provides a framework to produce sprite animations using ASCII art. more>>
Term::Animation is a Perl module that provides a framework to produce sprite animations using ASCII art. Each ASCII sprite is given one or more frames, and placed into the animation as an animation entity.
An animation entity can have a callback routine that controls the position and frame of the entity. The module can also do collision detection between entities.
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
<<lessAn animation entity can have a callback routine that controls the position and frame of the entity. The module can also do collision detection between entities.
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
Download (0.018MB)
Added: 2006-12-19 License: Perl Artistic License Price:
1062 downloads
XML::DOM::EntityReference 1.44
XML::DOM::EntityReference is an XML ENTITY reference in XML::DOM. more>>
XML::DOM::EntityReference is an XML ENTITY reference in XML::DOM.
XML::DOM::EntityReference extends XML::DOM::Node.
EntityReference objects may be inserted into the structure model when an entity reference is in the source document, or when the user wishes to insert an entity reference. Note that character references and references to predefined entities are considered to be expanded by the HTML or XML processor so that characters are represented by their Unicode equivalent rather than by an entity reference.
Moreover, the XML processor may completely expand references to entities while building the structure model, instead of providing EntityReference objects. If it does provide such objects, then for a given EntityReference node, it may be that there is no Entity node representing the referenced entity; but if such an Entity exists, then the child list of the EntityReference node is the same as that of the Entity node. As with the Entity node, all descendants of the EntityReference are readonly.
The resolution of the children of the EntityReference (the replacement value of the referenced Entity) may be lazily evaluated; actions by the user (such as calling the childNodes method on the EntityReference node) are assumed to trigger the evaluation.
<<lessXML::DOM::EntityReference extends XML::DOM::Node.
EntityReference objects may be inserted into the structure model when an entity reference is in the source document, or when the user wishes to insert an entity reference. Note that character references and references to predefined entities are considered to be expanded by the HTML or XML processor so that characters are represented by their Unicode equivalent rather than by an entity reference.
Moreover, the XML processor may completely expand references to entities while building the structure model, instead of providing EntityReference objects. If it does provide such objects, then for a given EntityReference node, it may be that there is no Entity node representing the referenced entity; but if such an Entity exists, then the child list of the EntityReference node is the same as that of the Entity node. As with the Entity node, all descendants of the EntityReference are readonly.
The resolution of the children of the EntityReference (the replacement value of the referenced Entity) may be lazily evaluated; actions by the user (such as calling the childNodes method on the EntityReference node) are assumed to trigger the evaluation.
Download (0.039MB)
Added: 2006-10-13 License: Perl Artistic License Price:
1106 downloads
Open Blue Lab 1.1.9 (Financial / Costs)
Open Blue Lab is an enterprise resource planning system. more>>
Open Blue Lab is an enterprise resource planning system.
Whatever your goal is, the objective of this tool is to provide you the ready-to use stuff to create, update, search and view data you need for your application.
Moreover, this stuff is provided with the latest UI goodies like AJAX support that will ensure you the best feeling you never had in browsing.
Like OpenBlueLab.org project is portal aware, that means you have aggregation and personalization too.
That way, you can focus on your added value : the business logic and requirements your customer needs.
Main features:
- to collaborate and communicate better
- to manage your personal time
- to schedule your appointments
- to define and track personal and group project
- to manage your content (asset, document, ...)
- to manage your customer relationship
- to make coffee (not yet, next release maybe
We want to develop a product, free, that fits exactly your needs, so read this web site and take time to indicate us your requirements. They will appear on our todo list, maybe in a long time, but they will. Then, you may incitate people to contribute in your direction by sponsoring somebody to achieve it.
This product is completely free. You can even package it and sell it. If you wonder what is our business model, you can ask to the forum.
Built on java technology, you may download the GUI installer, double-click and use it (with all your entreprise) through your preferred browser, whatever your environment is.
Built on XML and REST technology, you may integrate (in synchronous or asynchronous mode) it very easily in your environment too.
Enhancements:
- In class diagrams, all entities (classes, attributes, and methods) are documented in order to allow HTML documentation generation.
- Some calculating methods were added.
- Inventory evaluation class diagrams were deleted from the model.
- Some changes were made in flowing modes between units of cost analysis.
- iReport reporting was integrated.
<<lessWhatever your goal is, the objective of this tool is to provide you the ready-to use stuff to create, update, search and view data you need for your application.
Moreover, this stuff is provided with the latest UI goodies like AJAX support that will ensure you the best feeling you never had in browsing.
Like OpenBlueLab.org project is portal aware, that means you have aggregation and personalization too.
That way, you can focus on your added value : the business logic and requirements your customer needs.
Main features:
- to collaborate and communicate better
- to manage your personal time
- to schedule your appointments
- to define and track personal and group project
- to manage your content (asset, document, ...)
- to manage your customer relationship
- to make coffee (not yet, next release maybe
We want to develop a product, free, that fits exactly your needs, so read this web site and take time to indicate us your requirements. They will appear on our todo list, maybe in a long time, but they will. Then, you may incitate people to contribute in your direction by sponsoring somebody to achieve it.
This product is completely free. You can even package it and sell it. If you wonder what is our business model, you can ask to the forum.
Built on java technology, you may download the GUI installer, double-click and use it (with all your entreprise) through your preferred browser, whatever your environment is.
Built on XML and REST technology, you may integrate (in synchronous or asynchronous mode) it very easily in your environment too.
Enhancements:
- In class diagrams, all entities (classes, attributes, and methods) are documented in order to allow HTML documentation generation.
- Some calculating methods were added.
- Inventory evaluation class diagrams were deleted from the model.
- Some changes were made in flowing modes between units of cost analysis.
- iReport reporting was integrated.
Download (0.022MB)
Added: 2007-08-10 License: GPL (GNU General Public License) Price:
807 downloads
Other version of Open Blue Lab
License:GPL (GNU General Public License)
License:GPL (GNU General Public License)
Andutteye Software Suite 2.3 (Plugins)
Andutteye Software Suite is a systems management tool. more>>
Andutteye Software Suite is a systems management tool. Andutteye Software Suite has a modular design and every module targets different tasks of systems management.
Andutteye Software Suite will let you manage all aspects of the IT infrastructure, helping to ensure availability, monitor, tune, and optimize performance.
Andutteye Software Suite will make it easier to support and maintain your entire enterprise as a single entity from a central point of operation.
The webinterface has oustanding features like:
- css stylesheet and theme support
- Language support
- Support and complete integration for monitoring, management and change module
- Role based access control to aes objects
- Centralized configuration administration for monitoring and management
- Tweak and present aes gathered data with graphs or reports
- Rss syndication support
<<lessAndutteye Software Suite will let you manage all aspects of the IT infrastructure, helping to ensure availability, monitor, tune, and optimize performance.
Andutteye Software Suite will make it easier to support and maintain your entire enterprise as a single entity from a central point of operation.
The webinterface has oustanding features like:
- css stylesheet and theme support
- Language support
- Support and complete integration for monitoring, management and change module
- Role based access control to aes objects
- Centralized configuration administration for monitoring and management
- Tweak and present aes gathered data with graphs or reports
- Rss syndication support
Download (0.008MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1100 downloads
Other version of Andutteye Software Suite
License:GPL (GNU General Public License)
License:GPL (GNU General Public License)
License:GPL (GNU General Public License)
License:GPL (GNU General Public License)
License:GPL (GNU General Public License)
License:GPL (GNU General Public License)
MathML::Entities 0.13
MathML::Entities is a Perl module that can convert XHTML+MathML Named Entities to Numeric Character References. more>> <<less
Download (0.017MB)
Added: 2006-08-11 License: Perl Artistic License Price:
1169 downloads
HTML Entity Based Codepage Inference 0.01
HEBCI is a technique that allows a Web form handler to transparently detect the character set with which its data was encoded. more>> <<less
Download (0.005MB)
Added: 2005-07-05 License: GPL (GNU General Public License) Price:
1575 downloads
EuroMath2 1.4.0
EuroMath2 project is a platform for editors editing various XML files with multiple namespaces. more>>
EuroMath2 project is a platform for editors editing various XML files with multiple namespaces. Able to contain and manage editors with WYSIWYG capability.
By default it contains:
- a basic XSL-FO editor, capable of editing XML documents transformable to XSL-FO,
- a read-only support for SVG and MathML,
- a (very incomplete) XHTML support (implemented using a stylesheet capable of transforming XHTML into the XSL-FO)
The power of EuroMath2 lies in its extendability by plugins. EuroMath2 offers well-defined XML processing engine extendable by custom plugins and/or XSLT stylesheets. Custom editors may use the default editor, that offers wizards for complex document modification operations. EuroMath comes in two favours: a standalone application, and an Eclipse plugin. For more information how to download and run EuroMath please see the download section.
Main features:
- Open-source, free software released under the MPL1.1 license
- Fully customizable transformers executing XSLT scripts or Eclipse Java plugins.
- XML element/attribute autocompletion driven by custom DTD, XML Schema, Relax, RelaxNG, Trex
- Entity support
- Fully supports documents with multiple namespaces
<<lessBy default it contains:
- a basic XSL-FO editor, capable of editing XML documents transformable to XSL-FO,
- a read-only support for SVG and MathML,
- a (very incomplete) XHTML support (implemented using a stylesheet capable of transforming XHTML into the XSL-FO)
The power of EuroMath2 lies in its extendability by plugins. EuroMath2 offers well-defined XML processing engine extendable by custom plugins and/or XSLT stylesheets. Custom editors may use the default editor, that offers wizards for complex document modification operations. EuroMath comes in two favours: a standalone application, and an Eclipse plugin. For more information how to download and run EuroMath please see the download section.
Main features:
- Open-source, free software released under the MPL1.1 license
- Fully customizable transformers executing XSLT scripts or Eclipse Java plugins.
- XML element/attribute autocompletion driven by custom DTD, XML Schema, Relax, RelaxNG, Trex
- Entity support
- Fully supports documents with multiple namespaces
Download (8.4MB)
Added: 2006-09-05 License: MPL (Mozilla Public License) Price:
1144 downloads
umbrello2sql 0.1
umbrello2sql is a tool for SQL generation from a Umbrello entity relationship diagram. more>>
umbrello2sql is a tool for SQL generation from a Umbrello ntity relationship diagram.
<<less Download (0.003MB)
Added: 2006-11-08 License: GPL (GNU General Public License) Price:
1081 downloads
XML::Mini::Element::Entity 1.2.8
XML::Mini::Element::Entity Perl module is used internally to represent < !ENTITY name stuff >. more>>
XML::Mini::Element::Entity Perl module is used internally to represent < !ENTITY name "stuff" >.
You shouldnt need to use it directly, see XML::Mini::Elements entity() method.
<<lessYou shouldnt need to use it directly, see XML::Mini::Elements entity() method.
Download (0.034MB)
Added: 2007-03-08 License: Perl Artistic License Price:
960 downloads
QErm 0.4 pre5
QErm is a Qt frontend for easy generation of the .txt files that ERM uses. more>>
QErm is a Qt frontend for easy generation of the .txt files that ERM uses. ERM (Entity Relationship Model) is an application that generates web-based entity relationship diagrams (specified in text files).
Enhancements:
- Fixes 2 stupid compilation bugs with Qt 3.1
<<lessEnhancements:
- Fixes 2 stupid compilation bugs with Qt 3.1
Download (0.041MB)
Added: 2005-05-24 License: GPL (GNU General Public License) Price:
1613 downloads
Tiny ERP 4.0.3 / 4.2.0 RC1
Tiny ERP is a free enterprise management software. more>>
Tiny ERP is a free enterprise management software. Tiny ERP project covers all domains for small to medium businesses; accounting, stock management, customer relationship, sales, purchases, project management, ...
Main features:
- CRM & SRM
- Management and financial accounting
- Double-entry stock management
- Monitoring sales
- Automating tasks
- Human Ressources
- Managing and monitoring purchases
<<lessMain features:
- CRM & SRM
- Management and financial accounting
- Double-entry stock management
- Monitoring sales
- Automating tasks
- Human Ressources
- Managing and monitoring purchases
Download (1.3MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
499 downloads
Velosurf 2.1
Velosurf is a thin but efficient database mapping layer meant to be used with Jakarta Velocity. more>>
Velosurf is a thin but efficient database mapping layer meant to be used with Jakarta Velocity.
Velosurfs goal is to generate a set of context variables that automatically map database tables and relationships without the need for any recompilation.
Enhancements:
- This is a corrective release that fixes a serious issue in $entity.insert along with a few minor bugs.
- It has some source refactoring and some new test cases.
<<lessVelosurfs goal is to generate a set of context variables that automatically map database tables and relationships without the need for any recompilation.
Enhancements:
- This is a corrective release that fixes a serious issue in $entity.insert along with a few minor bugs.
- It has some source refactoring and some new test cases.
Download (0.65MB)
Added: 2006-11-18 License: The Apache License Price:
1072 downloads
Elixir 0.3.0
Elixir is a declarative layer on top of SQLAlchemy. more>>
Elixir is a declarative layer on top of SQLAlchemy. The project is a fairly thin wrapper, which provides the ability to define model objects following the Active Record design pattern, and using a DSL syntax similar to that of the Ruby on Rails ActiveRecord system.
Elixir does not intend to replace SQLAlchemys core features, but instead focuses on providing a simpler syntax for defining model objects when you do not need the full expressiveness of SQLAlchemys manual mapper definitions.
Examples:
The Elixir source distribution includes a sample web application that uses the TurboGears web application framework. The application builds upon the tutorials Movie model to create a simple store for buying movies.
The Video Store sample application also includes an example of how to use Elixir with the TurboGears "identity" framework for security and authorization. If you are planning to use Elixir with your TurboGears application, and need to support authorization using identity, you can use this model as a basis:
from turbogears.database import metadata, session
from elixir import Unicode, DateTime, String, Integer
from elixir import Entity, has_field, using_options
from elixir import has_many, belongs_to, has_and_belongs_to_many
from sqlalchemy import ForeignKey
from datetime import datetime
class Visit(Entity):
has_field(visit_key, String(40), primary_key=True)
has_field(created, DateTime, nullable=False, default=datetime.now)
has_field(expiry, DateTime)
using_options(tablename=visit)
@classmethod
def lookup_visit(cls, visit_key):
return Visit.get(visit_key)
class VisitIdentity(Entity):
has_field(visit_key, String(40), primary_key=True)
has_field(user_id, Integer, ForeignKey(tg_user.user_id, name=user_id_fk, use_alter=True), index=True)
using_options(tablename=visit_identity)
class Group(Entity):
has_field(group_id, Integer, primary_key=True)
has_field(group_name, Unicode(16), unique=True)
has_field(display_name, Unicode(255)),
has_field(created, DateTime, default=datetime.now)
has_and_belongs_to_many(users, of_kind=User, inverse=groups)
has_and_belongs_to_many(permissions, of_kind=Permission, inverse=groups)
using_options(tablename=tg_group)
class User(Entity):
has_field(user_id, Integer, primary_key=True)
has_field(user_name, Unicode(16), unique=True)
has_field(email_address, Unicode(255), unique=True)
has_field(display_name, Unicode(255))
has_field(password, Unicode(40))
has_field(created, DateTime, default=datetime.now)
has_and_belongs_to_many(groups, of_kind=Group, inverse=users)
using_options(tablename=tg_user)
@property
def permissions(self):
perms = set()
for g in self.groups:
perms = perms | set(g.permissions)
return perms
class Permission(Entity):
has_field(permission_id, Integer, primary_key=True)
has_field(permission_name, Unicode(16), unique=True)
has_field(description, Unicode(255))
has_and_belongs_to_many(groups, of_kind=Group, inverse=permissions)
using_options(tablename=permission)
More Elixir examples are coming soon, and we would appreciate any additional sample applications that you could provide to illustrate more complex mappings.
<<lessElixir does not intend to replace SQLAlchemys core features, but instead focuses on providing a simpler syntax for defining model objects when you do not need the full expressiveness of SQLAlchemys manual mapper definitions.
Examples:
The Elixir source distribution includes a sample web application that uses the TurboGears web application framework. The application builds upon the tutorials Movie model to create a simple store for buying movies.
The Video Store sample application also includes an example of how to use Elixir with the TurboGears "identity" framework for security and authorization. If you are planning to use Elixir with your TurboGears application, and need to support authorization using identity, you can use this model as a basis:
from turbogears.database import metadata, session
from elixir import Unicode, DateTime, String, Integer
from elixir import Entity, has_field, using_options
from elixir import has_many, belongs_to, has_and_belongs_to_many
from sqlalchemy import ForeignKey
from datetime import datetime
class Visit(Entity):
has_field(visit_key, String(40), primary_key=True)
has_field(created, DateTime, nullable=False, default=datetime.now)
has_field(expiry, DateTime)
using_options(tablename=visit)
@classmethod
def lookup_visit(cls, visit_key):
return Visit.get(visit_key)
class VisitIdentity(Entity):
has_field(visit_key, String(40), primary_key=True)
has_field(user_id, Integer, ForeignKey(tg_user.user_id, name=user_id_fk, use_alter=True), index=True)
using_options(tablename=visit_identity)
class Group(Entity):
has_field(group_id, Integer, primary_key=True)
has_field(group_name, Unicode(16), unique=True)
has_field(display_name, Unicode(255)),
has_field(created, DateTime, default=datetime.now)
has_and_belongs_to_many(users, of_kind=User, inverse=groups)
has_and_belongs_to_many(permissions, of_kind=Permission, inverse=groups)
using_options(tablename=tg_group)
class User(Entity):
has_field(user_id, Integer, primary_key=True)
has_field(user_name, Unicode(16), unique=True)
has_field(email_address, Unicode(255), unique=True)
has_field(display_name, Unicode(255))
has_field(password, Unicode(40))
has_field(created, DateTime, default=datetime.now)
has_and_belongs_to_many(groups, of_kind=Group, inverse=users)
using_options(tablename=tg_user)
@property
def permissions(self):
perms = set()
for g in self.groups:
perms = perms | set(g.permissions)
return perms
class Permission(Entity):
has_field(permission_id, Integer, primary_key=True)
has_field(permission_name, Unicode(16), unique=True)
has_field(description, Unicode(255))
has_and_belongs_to_many(groups, of_kind=Group, inverse=permissions)
using_options(tablename=permission)
More Elixir examples are coming soon, and we would appreciate any additional sample applications that you could provide to illustrate more complex mappings.
Download (MB)
Added: 2007-03-28 License: MIT/X Consortium License Price:
941 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 entity relationship 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