JGraphpad 6.0.6.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News JGraphpad 6.0.6.1 (Default branch)
# 1  
Old 01-22-2009
JGraphpad 6.0.6.1 (Default branch)

Image JGraphpad Pro is a complete application framework for rapid development of JGraph tools. It is meant for developers who wish to provide a stand-alone, rich-client graph application. The user interface is configurable with XML, and it uses a plugin architecture for extra functionality. It features a wide range of application components like palette, overview, the ability to export to many image and XML formats, copy and paste, drag and drop, rich text labels, database or backend connectivity, and visual complexity management. You can use it to create workflow editors, call graphs, CAD tools, network diagrams, database visualization tools, and more. License: GNU General Public License (GPL) Changes:
This release corrects a bug causing editing problems when the focus changed. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
ZF(8)								zendframework tool							     ZF(8)

NAME
zf - command line tool for zendframework SYNOPSIS
zf [--global-opts] action-name [--action-opts] provider-name [--provider-opts] [provider parameters ...] DESCRIPTION
zf is a command line tool to create and manage zendframework projects. The CLI, or command line tool (internally known as the console tool), is currently the primary interface for dispatching Zend_Tool requests. With the CLI tool, developers can issue tooling requests inside the "command line window", also commonly known as a "terminal" window. OPTIONS
zf show version mode[=mini] name-included[=1] This will show the current version number of the copy of Zend Framework the zf.php tool is using. zf show manifest This will show what information is in the tooling systems manifest. This is more important for provider developers than casual users of the tooling system. zf create project MyProjectName The project provider is the first command you might want to run. This will setup the basic structure of your application. This is required before any of the other providers can be executed. zf create module Blog This will create a module named Blog at application/modules/Blog, and all of the artifacts that a module will need. zf create controller Auth This will create a controller named Auth, specifically it will create a file at application/controllers/AuthController.php with the AuthController inside. zf create action login Auth This will create an action in an existing controller. zf create view Auth my-script-name This will create a view script in the controller folder of Auth. zf create model User This will create a model User. zf create form Auth This will create a form Auth. zf configure dbadapter adapter=Pdo_Mysql&username=test&password=test&dbname=test This will configure your database connection and is saved in your application.ini. zf create dbtable User user This creates a Zend_Db_Table model/data file. zf enable layout This enable layout in your application and creates necessary files and store this to your application.ini. HOMEPAGE
More information about zendframework project can be found at <http://framework.zend.com/>. AUTHOR
The development is currently coordinated by Zend Technologies Ltd. <http://framework.zend.com>. This manual page was written by Frank Habermann <lordlamer@lordlamer.de>, for the Debian project (but may be used by others). 1.10.1 2010-02-12 ZF(8)