Thread: [phpwebapp-commits] CVS: top10/db update_db.sql,NONE,1.1 update_db.sh,NONE,1.1 top10_tables.sql,NONE
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2004-01-05 14:38:36
|
Update of /cvsroot/phpwebapp/top10/db In directory sc8-pr-cvs1:/tmp/cvs-serv30508/db Added Files: update_db.sql update_db.sh top10_tables.sql top10_data.sql init_db.sh dump_db.sh Log Message: --- NEW FILE: update_db.sql --- -- Change status to 'expired' for all pending requests -- that are older than 24 hours. UPDATE requests SET status = 'expired' WHERE status = 'pending' AND DATE_ADD(time, INTERVAL 24 HOUR) < NOW() ; -- Move all the requests older than 1 month from the table -- requests to the table old_requests. -- INSERT -- INTO old_requests (request_id, time, username, ip, type, data, status) -- SELECT request_id, time, username, ip, type, data, status -- FROM requests -- WHERE status = 'expired' -- AND DATE_ADD(time, INTERVAL 1 MONTH) < NOW() -- ; -- DELETE FROM requests -- WHERE status = 'expired' -- AND DATE_ADD(time, INTERVAL 1 MONTH) < NOW() -- ; --- NEW FILE: update_db.sh --- #!/bin/bash # This script must be executed periodically at least once a day mysql --user='root' --password='' top10_db < update_db.sql --- NEW FILE: top10_tables.sql --- -- MySQL dump 8.22 -- -- Server version 3.23.54 -- -- Create the database top10_db -- CREATE DATABASE IF NOT EXISTS top10_db; USE top10_db; -- -- Table structure for table 'categories' -- DROP TABLE IF EXISTS categories; CREATE TABLE categories ( category varchar(50) NOT NULL default '' ) TYPE=MyISAM; -- -- Dumping data for table 'categories' -- INSERT INTO categories (category) VALUES ('web application framework'),('content managment system'),('document managment system'),('groupware'),('wiki'); -- -- Table structure for table 'comments' -- DROP TABLE IF EXISTS comments; CREATE TABLE comments ( comment_id int(10) unsigned NOT NULL auto_increment, proj_id varchar(100) NOT NULL default '', username varchar(30) NOT NULL default '', title varchar(255) NOT NULL default '', comment text NOT NULL, date date NOT NULL default '0000-00-00', ip varchar(20) NOT NULL default '', PRIMARY KEY (comment_id) ) TYPE=MyISAM; -- -- Table structure for table 'languages' -- DROP TABLE IF EXISTS languages; CREATE TABLE languages ( prog_lang varchar(30) NOT NULL default '' ) TYPE=MyISAM; -- -- Dumping data for table 'languages' -- INSERT INTO languages (prog_lang) VALUES ('PHP'),('Perl'),('JSP'),('Java'); -- -- Table structure for table 'licenses' -- DROP TABLE IF EXISTS licenses; CREATE TABLE licenses ( license varchar(50) NOT NULL default '' ) TYPE=MyISAM; -- -- Dumping data for table 'licenses' -- INSERT INTO licenses (license) VALUES ('GPL'),('LGPL'); -- -- Table structure for table 'preference_list' -- DROP TABLE IF EXISTS preference_list; CREATE TABLE preference_list ( proj_id varchar(100) NOT NULL default '', username varchar(30) NOT NULL default '', position smallint(4) NOT NULL default '0', PRIMARY KEY (proj_id,username) ) TYPE=MyISAM; -- -- Table structure for table 'proj_list' -- DROP TABLE IF EXISTS proj_list; CREATE TABLE proj_list ( proj_id varchar(100) NOT NULL default '', proj_name varchar(100) NOT NULL default '', proj_descr text NOT NULL, category varchar(100) NOT NULL default '', status varchar(10) NOT NULL default '', license varchar(100) NOT NULL default '', prog_lang varchar(100) NOT NULL default '', register_date date default NULL, group_id varchar(10) NOT NULL default '', points int(11) NOT NULL default '0', nr_comments int(11) NOT NULL default '0', PRIMARY KEY (proj_id) ) TYPE=MyISAM; -- -- Table structure for table 'proj_members' -- DROP TABLE IF EXISTS proj_members; CREATE TABLE proj_members ( proj_id varchar(100) NOT NULL default '', username varchar(30) NOT NULL default '', PRIMARY KEY (proj_id,username) ) TYPE=MyISAM; -- -- Table structure for table 'requests' -- DROP TABLE IF EXISTS requests; CREATE TABLE requests ( request_id varchar(50) NOT NULL default '', time timestamp(14) NOT NULL, username varchar(30) NOT NULL default '', ip varchar(20) NOT NULL default '', type varchar(30) NOT NULL default '', data varchar(255) NOT NULL default '', status varchar(10) NOT NULL default '', PRIMARY KEY (request_id) ) TYPE=MyISAM; --- NEW FILE: top10_data.sql --- INSERT INTO proj_members (proj_id, username) VALUES ('ezln23-service','-'),('jaffa','dashohoxha'),('jaffa','test'),('jwebunit','dashohoxha'),('salmon','dasho'),('salmon','test'),('sslext','dasho'),('strutsgenerator','dashohoxha'),('test','usr1'),('test','usr2'); INSERT INTO preference_list (proj_id, username, position) VALUES ('doulos','test',10),('webdocwf','test',9),('struts-menu','dashohoxha',0),('echo','dasho',1),('echopoint','dasho',0),('eservices','test',8),('htmltable','test',7),('jspwidget','test',6),('wact','test',5),('ojbc','test',4),('nunitasp','test',3),('j-tr','test',2),('realmethods','test',1),('obliquid','test',0),('tapestry','test',11),('aft','test',12),('doulos','dashohoxha',2),('tapestry','dashohoxha',3),('phpmvc','dashohoxha',4),('ojbc','dashohoxha',5),('wact','dashohoxha',6); INSERT INTO proj_list VALUES ('sslext','Struts SSL Switching Extension','Extension to the Apache Jakarta Struts <span style=\"background-color:pink\">framework</span> that allows developers to configure <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s to automatically switch between the http and https protocols. Configuration is performed within the Struts config xml file. ','web application framework','new','','',NULL,'',2,0),('salmon','SOFIA','The Salmon Open <span style=\"background-color:pink\">Framework</span> for Internet <span style=\"background-color:pink\">Application</span>s (SOFIA) is a RAD tool set for the J2EE. It integrates best-of-breed tools with a Java <span style=\"background-color:pink\">framework</span> to provide an end-to-end solution for developing high quality database driven <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s. ','web application framework','new','','',NULL,'',12,0),('jaffa','Java Application Framework For All','An Enterprise Focused Java <span style=\"background-color:pink\">Framework</span> For Rapid <span style=\"background-color:pink\">Application</span> Development. JAFFA is a Java <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> development stack, extending exsiting projects like Tomcat and Struts with MVC based <span style=\"background-color:pink\">web</span> widgets, built-in persistence and component generators too ','web application framework','new','','',NULL,'',17,0),('strutsgenerator','Karapan Sapi Struts Generator','Karapan Sapi is <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span> generator, based on Struts <span style=\"background-color:pink\">Framework</span>. Karapan Sapi will generate some common code that always repeated in developing <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>. Karapan Sapi automatically create SQL DDL, Java Object, DAO code, Struts Action and St ','web application framework','new','','',NULL,'',7,0),('jwebunit','jWebUnit','j<span style=\"background-color:pink\">Web</span>Unit is a Java-based <span style=\"background-color:pink\">framework</span> for testing <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s. It provides a set of test assertions and <span style=\"background-color:pink\">application</span> navigation methods. j<span style=\"background-color:pink\">Web</span>Unit utilizes JUnit and HttpUnit. See the project Home Page for an overview and documentation. ','web application framework','new','','',NULL,'',7,0),('merlinwork','Merlin Web Application Framework','\"Merlin <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span> <span style=\"background-color:pink\">Framework</span>\" is a <span style=\"background-color:pink\">framework</span> for <span style=\"background-color:pink\">web</span>-based database driven <span style=\"background-color:pink\">application</span>s written in php. \"Merlin <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span> <span style=\"background-color:pink\">Framework</span>\" uses PEAR for the data layer and SMARTY template engine for the presentation layer. ','web application framework','new','','',NULL,'',0,0),('jbanana','JBanana','JBanana is a <span style=\"background-color:pink\">framework</span> MVC 2 based on java, servlet and XML/XSL which allows quick development of <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s, reducing the time normally required to develop these types of <span style=\"background-color:pink\">application</span>s. ','web application framework','new','','',NULL,'',0,0),('phpmvc','php.MVC Web Application Framework','php.MVC is an open source <span style=\"background-color:pink\">framework</span> for PHP <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">application</span>s. php.MVC implements the Model-View-Controller (MVC) design pattern, and encourages <span style=\"background-color:pink\">application</span> design based on the Model 2 paradigm. The <span style=\"background-color:pink\">framework</span> provides a single entry point Controller. ','web application framework','new','','',NULL,'',6,0),('perl-oak','Perl Oak','The Perl Oak Component tree is a implementation of a complete <span style=\"background-color:pink\">framework</span> for designing enterprise <span style=\"background-color:pink\">application</span>s. Includes: The Oak <span style=\"background-color:pink\">framework</span>, the Forest <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span> Builder (a <span style=\"background-color:pink\">Web</span> Interface to create <span style=\"background-color:pink\">Web</span> interfaces) and OakXP, a XP project manager. ','web application framework','approved','','',NULL,'',0,0),('struts','Struts Applications','The Struts/SourceForge site hosts sample <span style=\"background-color:pink\">application</span>s and related components based on the Apache Struts <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span>. ','web application framework','approved','','',NULL,'',0,0),('struts-menu','Struts Menu','<span style=\"background-color:pink\">Web</span> menuing <span style=\"background-color:pink\">framework</span> for JSP and Struts based <span style=\"background-color:pink\">application</span>s. Menus can be defined in an XML file and displayed through the use of JSP tags. Support for dynamic javascript menus is included. ','web application framework','new','','',NULL,'',10,0),('nunitasp','NUnitAsp','NUnitAsp extends the popular NUnit testing <span style=\"background-color:pink\">framework</span> to allow automated testing of ASP.NET <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s. ','web application framework','new','','',NULL,'',7,0),('echopoint','Echo Point','The EchoPoint project provides a rich collection of <span style=\"background-color:pink\">web</span> components which seamlessly integrate with the Echo <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Framework</span>. EchoPoint, combined with the Echo <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Framework</span>, provides the one of the simplest and richest <span style=\"background-color:pink\">framework</span>s for <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">application</span> devel ','web application framework','new','','',NULL,'',10,0),('obliquid','obliquid','Obliquid is a PHP/XML <span style=\"background-color:pink\">framework</span> for building groupware <span style=\"background-color:pink\">Web</span> portals. It provides Lego bricks that may be composed to build an Internet <span style=\"background-color:pink\">application</span>. It has multilingual support and themes. Modules include user management, calendar, news, cms and messaging. ','web application framework','new','','',NULL,'',10,0),('echo','Echo','Echo is an event-driven <span style=\"background-color:pink\">framework</span> for developing <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s in Java. Programming with the Echo <span style=\"background-color:pink\">framework</span> is similar to creating <span style=\"background-color:pink\">application</span>s or applets with the Swing API. ','web application framework','new','','',NULL,'',9,0),('realmethods','realMethods Framework','A J2EE <span style=\"background-color:pink\">application</span> <span style=\"b ackground-color:pink\">framework</span>, based on the core J2EE design patterns. Provides support for BMP, CMR/CMP 2.0, security, logging, connection pooling, <span style=\"background-color:pink\">Web</span> Services, and much more. Integrates and leverages many 3rd party open source and commercial efforts. ','web application framework','new','','',NULL,'',9,0),('j-tr','j-tr.net','<span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">application</span> for infrastructure of j-tr.net, based on Struts <span style=\"background-color:pink\">framework</span>. ','web application framework','new','','',NULL,'',8,0),('ojbc','OJB Console','The OJB Console is an extensible struts <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> featuring transparent browse, search, create, update and delete functionality for the objects configured within the Object Relational Bridge (OJB) persistence <span style=\"background-color:pink\">framework</span>. ','web application framework','new','','',NULL,'',11,0),('wact','Web Application Component Toolkit','A Patterns based <span style=\"background-color:pink\">framework</span> for developing <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s in PHP. A Lightweight runtime component tree is generated from compiling templates marked with customizable tags. ','web application framework','new','','',NULL,'',9,0),('phpwebapp','phpWebApp','This is a <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span>, which makes easy and simple the task of building PHP <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s based on relational databases. See the Home Page for more details. ','web application framework','new','','',NULL,'',0,0),('dnn','DotNetNuke','An open source <span style=\"background-color:pink\">Web</span> Portal <span style=\"background-color:pink\">Framework</span> / Content Management System <span style=\"background-color:pink\">application</span> written in ASP.NET / VB.NET for the Windows OS platform. ','web application framework','new','','',NULL,'',9,0),('jspwidget','JSPWidget','JSPWidget is a JSP <span style=\"background-color:pink\">Framework</span> that provides event-driven,view state retained,server-side GUI controls to make JSP development as intuitive as in traditional client forms or in client-based <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">application</span>s. ','web application framework','new','','',NULL,'',4,0),('htmltable','HTMLTable','Rendering tables in HTML with capability of sorting, paging and multiple items operations can be tricky. If you are bulding <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s using JSP/Servlet APIs and moreover using Struts, then this <span style=\"background-color:pink\">framework</span> is what you need. ','web application framework','new','','',NULL,'',3,0),('webonswing','WebOnSwing','Component based <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span>. You can map your Swing based <span style=\"background-color:pink\">application</span>s to html <span style=\"background-color:pink\">web</span> pages, using exactly the same source code for both contexts. ','web application framework','new','','',NULL,'',0,0),('tinypersistence','tinypersistence .NET','Persistence <span style=\"background-color:pink\">framework</span> for .NET, composed of a ligthweight <span style=\"background-color:pink\">framework</span> and a source code generator, think for small to medium <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s. ','web application framework','new','','',NULL,'',0,0),('eservices','eservices','The goal of this project is to create an <span style=\"background-color:pink\">application</span> that will allow service based organizations to have a <span style=\"background-color:pink\">web</span> presence. Java, J2EE, and various <span style=\"background-color:pink\">framework</span>s and tools will be used to develop the <span style=\"background-color:pink\">application</span>. ','web application framework','new','','',NULL,'',2,0),('webdocwf','Web document management and workflow','<span style=\"background-color:pink\">Web</span>DocWf is an object oriented <span style=\"background-color:pink\">framework</span> to develop business <span style=\"background-color:pink\">application</span>s based on XML technology, relational databases and <span style=\"background-color:pink\">Web</span>Dav with an HTML user interface and workflow functionality. Aonyx is the follow up project for Enhydra 3.11 ! ','web application framework','new','','',NULL,'',1,0),('doulos','Doulos Web Application Framework','Doulos is a <span style=\"background-color:pink\">framework</span> for rapidly developing object-oriented <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s in PHP using the Model View Controller (MVC) paradigm. It elegantly reduces the total code to be written, manages and validates form data, encapsulates SQL databases, and more! ','web application framework','new','','',NULL,'',8,0),('tapestry','Tapestry: Java Web Components','Comprehensive component-based <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span>. Works with Servlet API 2.2 and JDK 1.2 or above. Tapestry reconceptualizes <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> development in terms of Java objects, methods and properties, instead of URLs and query parameters. ','web application framework','new','','',NULL,'',7,0),('aft','AFT - Anteater: Ant Functional Testing','Anteater is an Ant-based functional testing <span style=\"background-color:pink\">framework</span> for <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">application</span>s and <span style=\"background-color:pink\">Web</span> services. ','web application framework','new','','',NULL,'',0,0),('edscontacts','eDreamers','Set of added-value PHP based <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s, modules and components to use to build more complex <span style=\"background-color:pink\">web</span> based <span style=\"background-color:pink\">application</span>s (eD<span style=\"background-color:pink\">Framework</span>) or to include in your existing developments (eDNews, eDExplorer, ...) ','web application framework','new','','',NULL,'',0,0),('simper','Simper - Simple Persistence in Java','A lightweight persistence <span style=\"background-color:pink\">framework</span> in Java, specifically designed for <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s. Uses Servlet Filters (2.3) and the Apache Jakarta DynaBeans. ','web application framework','new','','',NULL,'',0,0),('pamweb','PAMWeb','PAM<span style=\"background-color:pink\">Web</span> stands for Pluggable <span style=\"background-color:pink\">Application</span> Modules for the <span style=\"background-color:pink\">Web</span>. It comprises a simple <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> with ready-made reusable modules (e.g. user profile and permissions management) to be plugged into Java-based <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>. ','web application framework','new','','',NULL,'',0,0),('jzonic','jZonic','jZonic is a Java <span style=\"backgro und-color:pink\">framework</span> for <span style=\"background-color:pink\">web</span>-<span style=\"background-color:pink\">application</span> supporting an XML workflow, XML sitemap management, connection pooling, uses jConfig, build upon the MVC architecture and include several demo <span style=\"background-color:pink\">application</span>s ','web application framework','new','','',NULL,'',0,0),('bugkilla','Bugkilla - J2EE Functional Test Suite','Bugkilla is a set of java tools for the functional test of J2EE <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span>s. Specification and execution of tests will be automated for <span style=\"background-color:pink\">web</span> front end and business logic layer. One goal is to integrate with existing <span style=\"background-color:pink\">framework</span>s and tools. ','web application framework','new','','',NULL,'',0,0),('jmf','Jade Management Framework','Provides a general purpose JSP management <span style=\"background-color:pink\">framework</span> and extensive <span style=\"background-color:pink\">application</span> development utilities, such as a persistence <span style=\"background-color:pink\">framework</span> and a 2D applet graphics engine. The idea is to provide comprehensive core services for any <span style=\"background-color:pink\">web</span>-enabled <span style=\"background-color:pink\">application</span>. ','web application framework','new','','',NULL,'',0,0),('fatphpframework','fatPHPFramework','fatPHP<span style=\"background-color:pink\">Framework</span> - object oriented <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span> <span style=\"background-color:pink\">Framework</span> written in PHP This <span style=\"background-color:pink\">Framework</span> will provide basic funtionality needed for most <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span>s. ','web application framework','new','','',NULL,'',0,0),('xtremesuite','WebOS','<span style=\"background-color:pink\">Web</span>OS is an <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> built with Jini services exposed as JMX Managed Beans (MBeans for short). It provides ease of configuration, ease of administration, ease of programming and improved performances. ','web application framework','new','','',NULL,'',0,0),('webrad','Web Rapid Application Development','<span style=\"background-color:pink\">Web</span>RAD is a <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> development <span style=\"background-color:pink\">framework</span> and library of components for Delphi/Kylix that replaces HTML editing with a drag-and-drop approach. <span style=\"background-color:pink\">Web</span>RAD includes over 30 components including javascript enabled data-aware tables, images and forms ','web application framework','new','','',NULL,'',0,0),('plankton','Plankton','Plankton is a <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span> <span style=\"background-color:pink\">Framework</span> - an integrated collection of classes that provide the building blocks and underlying architecture for an entire <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> - for the PHP scripting language. ','web application framework','new','','',NULL,'',0,0),('presentingxml','Presenting XML','Presenting XML is a Java <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> for presenting HTML, PDF, WML etc. in a device independent manner. The <span style=\"background-color:pink\">framework</span> supports a flow of content (XML files, flat files, SQL, dynamic XML) through SAX pipelines and XSLT transforms to a device ','web application framework','new','','',NULL,'',0,0),('pagebox','PageBox - presentation deployment','Creation of a <span style=\"background-color:pink\">framework</span> for deployment of <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">application</span> on <span style=\"background-color:pink\">application</span> servers. J2EE and Java embedded servers, .NET and PHP versions. We also develop a <span style=\"background-color:pink\">Web</span> authoring tool, Cuckoo in Word VBA. ','web application framework','new','','',NULL,'',0,0),('openthought','OpenThought','<span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span> <span style=\"background-color:pink\">Framework</span> which allows you to build <span style=\"background-color:pink\">application</span>s that never require the page to reload. Communications between the browser and server are done in the background, and displayed automatically using DHTML. ','web application framework','new','','',NULL,'',0,0),('bc4j-multi-row','JDeveloper BC4J Multi-Row Extensions','Extensions to Oracle JDeveloper Business Components for Java (BC4J) <span style=\"background-color:pink\">framework</span> support libraries, that provide multiple-row database DML operations in Servlet and JSP <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s via an easy-to-use Java API and JSP tag library. ','web application framework','new','','',NULL,'',0,0),('lino','Lino Database Application Framework','Lino is a <span style=\"background-color:pink\">framework</span> to create database-oriented <span style=\"background-color:pink\">application</span>s with an extensible library of highly reusable schema modules. A Lino database can run via a <span style=\"background-color:pink\">web</span> or GUI <span style=\"background-color:pink\">application</span>, via console interface, via agents, or via any combination of those. ','web application framework','new','','',NULL,'',0,0),('poof','PHP Object Oriented Framework','POOF is a PHP library that separates the Page Content, Layout and <span style=\"background-color:pink\">Application</span> Logic in an object oriented fashion. POOF is designed to give the <span style=\"background-color:pink\">web</span> developer a <span style=\"background-color:pink\">framework</span> for efficient and modular <span style=\"background-color:pink\">application</span> development. ','web application framework','new','','',NULL,'',0,0),('webunit','WebUnit framework','A <span style=\"background-color:pink\">framework</span> for performing client-side tests of <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s, based on PyUnit. ','web application framework','new','','',NULL,'',0,0),('cassandra','Cassandra','<span style=\"background-color:pink\">Application</span> <span style=\"background-color:pink\">Framework</span> for the development of large scale <span style=\"background-color:pink\">web</span> portals. ','web application framework','new','','',NULL,'',0,0),('tags','TAGS','TAGS is a <span style=\"background-color:pink\">framework</span> for <span style=\"background-color:pink\">web</span>-based educational tools (with some similarities to <span style=\"background-color:pink\">Web</span>CT). Although numerous <span style=\"background-color:pink\">application</span>s have been built into it, Finesse (used to teach students about stock market trading) and the document approval tool (used for electronic ','web application framework','new','','',NULL,'',0,0),('labeo','Labeo Web Application Framework','Labeo is a <span style=\"background-color:pink\">framework</span> for building Java(tm) 2 Enterprise Edition <span style=\"background-color:pink\">application</span>s. It separates business logic from presentation, allowing the Java programmer and presentation layer developer (HTML/WML etc) to collaborate effectively. ','web application framework' ,'new','','',NULL,'',0,0),('dracoweb','Draco','Draco is a <span style=\"background-color:pink\">framework</span> for the rapid development of dynamic <span style=\"background-color:pink\">web</span> sites and <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s. It provides a method for a clean separation of code and markup and has an extensive standard library. Draco is written in and makes use of the Python language. ','web application framework','new','','',NULL,'',0,0),('zang','Zang CMS Framework','Zang! is a portal <span style=\"background-color:pink\">framework</span> written in object oriented PHP, based on best practices and object oriented design patterns to provide a platform to easily develop modules for all kinds of <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s. ','web application framework','new','','',NULL,'',0,0),('wafer','Web Application Framework Research','Wafer is a research project which compares numerous open source <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span>s and provides a common example <span style=\"background-color:pink\">application</span> implemented in each <span style=\"background-color:pink\">framework</span>. ','web application framework','new','','',NULL,'',0,0),('actionframework','ActionFramework','Action-driven component-oriented <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> based on Model-View-Controller (MVC) architecture. Goals: minimum complexity & dependency on the <span style=\"background-color:pink\">framework</span> API, maximum power, reliability and conformance to common standards. ','web application framework','new','','',NULL,'',0,0),('ismo','Ismo the PHP web application framework','Ismo is a <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> that takes care of all the boring stuff and let\'s you focus on the fun and interesting parts! ','web application framework','new','','',NULL,'',0,0),('j2ee-fusebox','J2EE Fusebox Application Framework','In pursuit of developing a \"simple to use\" yet very powerful <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> in the J2EE environment that will appeal to both the Java community and Fusebox architects and coders from other platforms. ','web application framework','new','','',NULL,'',0,0),('wdialog','WDialog framework for web applications','WDialog is a system to make dialog-centric <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s. It imitates the behaviour of widgets found in GUIs, but acts in a HTML/HTTP environment. There is a UI language (XML), but callbacks are coded in a normal programming language (O\'Caml, Perl) ','web application framework','new','','',NULL,'',0,0),('gandalf','gandalf wizard framework','A Java-based <span style=\"background-color:pink\">framework</span> that allows developers to quickly generate Java-based wizard forms. Forms can be created using Java Swing (<span style=\"background-color:pink\">application</span>-based) or Java Servlet (<span style=\"background-color:pink\">web</span>-based). ','web application framework','new','','',NULL,'',0,0),('jwaf','Java Web Application Framework','Java <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span> <span style=\"background-color:pink\">Framework</span> (JWAF) is a <span style=\"background-color:pink\">framework</span> designed to extend existing per-tier <span style=\"background-color:pink\">framework</span>s such as Struts and Castor, to provide a complete 5-tier <span style=\"background-color:pink\">framework</span> and toolset that can be used to rapidly build business process <span style=\"background-color:pink\">application</span> and more. ','web application framework','new','','',NULL,'',0,0),('colander','Colander Internet Agent','Colander is a Java <span style=\"background-color:pink\">application</span> which acts as a scripted personal Internet agent (performance of arbitrary scripted tasks through the provided <span style=\"background-color:pink\">framework</span>.) Access is possible through a standard <span style=\"background-color:pink\">web</span> browser. ','web application framework','new','','',NULL,'',0,0),('bsframework','Bright Side Framework','The BS <span style=\"background-color:pink\">Framework</span> provides ready-to-use high level J2EE components which will help you quickly build database-oriented J2EE <span style=\"background-color:pink\">application</span>s accessed by rich java/Swing clients on HTTP (for the <span style=\"background-color:pink\">web</span> aficionado, we also have a Struts client). ','web application framework','new','','',NULL,'',0,0),('big-brother','Big Brother','Big-Brother is a collection of J2EE filters and servlets that provide custom monitoring and auditing of <span style=\"background-color:pink\">web</span>-<span style=\"background-color:pink\">application</span>s, keeping track of who does what, when, and how often. It makes use of the jakarta-apache Struts <span style=\"background-color:pink\">framework</span> for the interface GUI. ','web application framework','new','','',NULL,'',0,0),('foowd','FOOWD','FOOWD is a <span style=\"background-color:pink\">framework</span> for building object orientated (OO) <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s in PHP. It is a collection of base classes ripe for extending that handle object persistency, user authorisation, security, data administration, input handling, all the things requ ','web application framework','new','','',NULL,'',0,0),('wotonomy','wotonomy','A pure java user interface <span style=\"background-color:pink\">framework</span> for building both <span style=\"background-color:pink\">web</span> and gui <span style=\"background-color:pink\">application</span>s, heavily inspired by the NeXT and OpenStep APIs. Includes clean-room implementations of parts of the <span style=\"background-color:pink\">Web</span>Objects and JavaClient <span style=\"background-color:pink\">framework</span>s plus the Foundation classes. ','web application framework','new','','',NULL,'',0,0),('wildweb','WildWEB','Wild<span style=\"background-color:pink\">WEB</span> is an opensource <span style=\"background-color:pink\">framework</span> to <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> development. It provides a complete set of core services to <span style=\"background-color:pink\">web</span> aplications such as HTML/code separation through an advanced Template system, database abstraction, rich set of functions to automaticall ','web application framework','new','','',NULL,'',0,0),('genie-framework','Genie Framework','Genie is a Java <span style=\"background-color:pink\">framework</span> for JSP based <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s. It provides a JSP tag library and services for configuration and session handling, request dispatching, parameter conversion and validation and error handling. ','web application framework','new','','',NULL,'',0,0),('niggle','Niggle web application framework','The Niggle <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> is a java class library that allows a complete separation of data and presentation from the servlet\'s dispatching logic. It leverages various Java API\'s as well as the freemarker template library. ','web application framework','new','','',NULL,'',0,0),('beanfactory','BeanFactory','BeanFactory is a JavaBean component <span style=\"background-color:pink\">framework</span> that allows software components to be configured and deployed using simple runtime deployment descriptors. It also has an integrated Model View Controller <span style=\"background-color:pink\">framework</span> for building J2EE <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s. ','web application framework','new','','',NULL,'',0,0),('webwork','WebWork','[Attention]: <span style=\"background-color:pink\">Web</span>Work has moved to http://sf.net/projects/opensymphony. <span style=\"background-color:pink\">Web</span>Work is a <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> for J2EE. It is based on a concept called \"Pull HMVC\" (Pull Hierarchical Model View Controller). ','web application framework','new','','',NULL,'',0,0),('gestinanna','Gestinanna','A secure, scalable (one or more machines with one or more sites) <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> for the Uttu <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> driver running under mod_perl. Gestinanna tries to put security and reliability first. ','web application framework','new','','',NULL,'',0,0),('mapper','Mapper: WEB/GUI Presentation Framework','Mapper is a presentation <span style=\"background-color:pink\">framework</span> for XML, <span style=\"background-color:pink\">WEB</span> & GUI <span style=\"background-color:pink\">application</span>s based on the Model-View-Controller pattern. Its event driven components & models provide an easy & consistent way to bind fields to ValueObjects or Collections for all presentation types. ','web application framework','new','','',NULL,'',0,0),('wraf','Web Resource Application Framework','Wraf implements a RDF API that hopes to realize the Semantic <span style=\"background-color:pink\">Web</span>. The <span style=\"background-color:pink\">framework</span> uses RDF for data, user interface, modules and object methods. It uses interfaces to other sources in order to integrate all data in one enviroment, regardless of storage form ','web application framework','new','','',NULL,'',0,0),('sawa','SAWA: Simple API for Web Applications','The Simple API for <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span>s (SAWA for short) is a Perl <span style=\"background-color:pink\">framework</span> designed to allow developers to rapidly create and deploy modular, component-based <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">application</span>s both in mod_perl and plain CGI environments. ','web application framework','new','','',NULL,'',0,0),('aquarium','Aquarium Web Application Framework','Aquarium is a <span style=\"background-color:pink\">Web</span> site <span style=\"background-color:pink\">framework</span> written in Python. It\'s goal is to allow <span style=\"background-color:pink\">Web</span> engineers to develop <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">application</span>s quickly. To this end, it provides necessary toolkits, session management, and, most importantly, a convenient modular structure. ','web application framework','new','','',NULL,'',0,0),('warfare','WARFARE','WARFARE is a lightweight, extensible <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span> <span style=\"background-color:pink\">Framework</span> to enable Construction and maintenace of <span style=\"background-color:pink\">web</span> based <span style=\"background-color:pink\">application</span>s without writing any Java code. A <span style=\"background-color:pink\">Web</span> based interface allows for real time maintenance and tweaks to the system. ','web application framework','new','','',NULL,'',0,0),('watf','Web Application Testing Framework','HttpUnit like <span style=\"background-color:pink\">framework</span> (written on Java) designed for testing <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s containing embended in HTML JavaScript. ','web application framework','new','','',NULL,'',0,0),('stleaf','stLeaf - smartLeaf','stLeaf (SmarT, Lightweight Enterprise <span style=\"background-color:pink\">Application</span> <span style=\"background-color:pink\">Framework</span>) is a <span style=\"background-color:pink\">framework</span> to build end-to-end, highly-dynamic <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>. ','web application framework','new','','',NULL,'',0,0),('wounittest','WOUnitTest','WOUnitTest is a <span style=\"background-color:pink\">Web</span>Objects <span style=\"background-color:pink\">framework</span> for unit testing <span style=\"background-color:pink\">Web</span>Objects <span style=\"background-color:pink\">application</span>s based on JUnit. ','web application framework','new','','',NULL,'',0,0),('perlwebmvc','perl WebMVC','perl <span style=\"background-color:pink\">Web</span>MVC is a mod_perl <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> designed around the Model View Controller design pattern. It is written in perl with an XML configuration component. ','web application framework','new','','',NULL,'',0,0),('webleaf','WebLEAF','STILL ACTIVE AND BEING DEVELOPED INTERNALLY AT THE UIB (http://www.uib.es) BUT NO LONGER SUPPORTED THROUGH SOURCEFORGE DUE TO LACK OF TIME AND PUBLIC INTEREST. <span style=\"background-color:pink\">Web</span>LEAF is a servlet <span style=\"background-color:pink\">framework</span> for the development of <span style=\"background-color:pink\">web</span> server side java <span style=\"background-color:pink\">application</span>s, speci ','web application framework','new','','',NULL,'',0,0),('xkins','Xkins','Xkins is a <span style=\"background-color:pink\">framework</span> that manages skins. Skins are used for a <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> to look in a different way for each skin. A skin not only manages colors and images, but also layout of the <span style=\"background-color:pink\">web</span> page. Its written in Java. Can use Velocity templates and Struts ','web application framework','new','','',NULL,'',0,0),('pcstoolkit','PCS Java Toolkit','PCS Java Toolkit provides useful stuff for developing Java <span style=\"background-color:pink\">Application</span>s, especially <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span>s. E.g. a small and simple <span style=\"background-color:pink\">framework</span> for building <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s similar to Jakarta\'s Struts. ','web application framework','new','','',NULL,'',0,0),('websyntax','Syntax','Syntax is a <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> for building CMS, KMS and many other forms of dynamic and personalized database-driven <span style=\"background-color:pink\">web</span>sites. It includes an object-oriented PHP API and ultimately will run in multiple environments. ','web application framework','new','','',NULL,'',0,0),('satyr','Satyr','Satyr is a highly flexible <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> designed to make it easier to build and maintain sophisticated <span style=\"background-color:pink\">w eb</span> <span style=\"background-color:pink\">application</span>s that incorporate complex flow logic. Satyr draws on industry proven patterns and standards such as JMS, XML, and MVC. ','web application framework','new','','',NULL,'',0,0),('winservlet','WIN-Servlet','WIN-Servlet is a <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> that supports a windows-like program structure. A browser has its own session-context and window-stack. Supports: component-based dialogs (FORM), input validation, standard HTML/JavaScript pages, servlet API 2.2 ','web application framework','new','','',NULL,'',0,0),('xorro','Xorro Presentation Layer','Xorro is a presentation <span style=\"background-color:pink\">framework</span> for <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s that facilitates two-way iterative development between programmers and <span style=\"background-color:pink\">web</span> designers. It provides the power of XSLT in a simpler, more maintainable form. ','web application framework','new','','',NULL,'',0,0),('phlexdb','PHlexDB CMF','PHlexDB is a set of tools written in PHP that together make up an unassuming, flexible content management <span style=\"background-color:pink\">framework</span>. This system is designed for building <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s that deal with multiple and related datatypes. ','web application framework','new','','',NULL,'',0,0),('webdialog','webdialog','<span style=\"background-color:pink\">web</span>dialog is a java Servlet/JSP <span style=\"background-color:pink\">framework</span> for writing <span style=\"background-color:pink\">application</span>s that use a standards based <span style=\"background-color:pink\">web</span> browser (Mozilla 1.01+, IE 6+) to render their gui. The <span style=\"background-color:pink\">framework</span> will make the fact that the <span style=\"background-color:pink\">application</span> is browser based as transparent as possible. ','web application framework','new','','',NULL,'',0,0),('xwidget','XWidget Application Framework','XWidget is a widget -oriented GUI <span style=\"background-color:pink\">framework</span> for build <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s that run on a J2EE <span style=\"background-color:pink\">application</span> server. It is a component- and event- based <span style=\"background-color:pink\">framework</span> that is modelled after the Java Swing <span style=\"background-color:pink\">framework</span>. ','web application framework','new','','',NULL,'',0,0),('swazoo','Swazoo','The goal of the Swazoo (Smalltalk <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span> Zoo) project is to provide an Open Source, vendor agnostic, dialect neutral <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> for Smalltalk. ','web application framework','new','','',NULL,'',0,0),('ruby-waf','Ruby Web Application Framework','Based on the Jakarta Struts project, the Ruby <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span> <span style=\"background-color:pink\">framework</span> is a <span style=\"background-color:pink\">framework</span> for developing <span style=\"background-color:pink\">web</span>/wap <span style=\"background-color:pink\">application</span>s founded in the Ruby programming language. ','web application framework','new','','',NULL,'',0,0),('piproject','The Pi project','JavaUniverse is proud to provide the \"Pi\" <span style=\"background-color:pink\">framework</span> to the open source community. \"Pi\" is a <span style=\"background-color:pink\">web</span> presentation and <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> based on Servlet/JSP technology and implements the MVC pattern. Pi is evolving into a full fledge J2EE <span style=\"background-color:pink\">framework</span>. ','web application framework','new','','',NULL,'',0,0),('coursetracking','Training Course - Employee Tracking','This is a database-driven <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> to track training courses information in a company. The project uses Jakarta Struts <span style=\"background-color:pink\">framework</span>. You can add/edit course information and add/delete employees to/from courses. ','web application framework','new','','',NULL,'',0,0),('swas','SWAS: Simple Web Application System','SWAS is the Simple <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span> System, a <span style=\"background-color:pink\">web</span> database-based <span style=\"background-color:pink\">application</span> development <span style=\"background-color:pink\">framework</span>: +The best form-based <span style=\"background-color:pink\">web</span>-database interface +Easy report generation +Templating language: SWAL (Simple <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span> Language) ','web application framework','new','','',NULL,'',0,0),('bingox','BingoX - Web Development Framework','BingoX is an open source, object oriented <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">Application</span> <span style=\"background-color:pink\">Framework</span> written in mod_perl meant to dramatically reduce the time required to build large dynamic, database driven <span style=\"background-color:pink\">web</span> sites and <span style=\"background-color:pink\">application</span>s. ','web application framework','new','','',NULL,'',0,0),('zifx','Z39.50/XML Interoperability Framework.','ZiFX is a Z39.50/XML Interoperability <span style=\"background-color:pink\">Framework</span> available as two Java APIs suitable to develop stand-alone and <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">application</span>s for cross-searching (XS). It provides a Z39.50 Client/Server, a Z39.50/XML TagLib and a XS Portlet for Apache Cocoon. ','web application framework','new','','',NULL,'',0,0),('dante-framework','Dante','Dante is a Java-based <span style=\"background-color:pink\">Web</span>-<span style=\"background-color:pink\">Application</span> <span style=\"background-color:pink\">Framework</span> which allows programmers to develop <span style=\"background-color:pink\">Web</span>-<span style=\"background-color:pink\">Application</span> like normal Swing-<span style=\"background-color:pink\">Application</span>s. No HTML / CSS /JavaScript knowledge needed. ','web application framework','new','','',NULL,'',0,0),('webwrench','Web Wrench','<span style=\"background-color:pink\">Web</span> Wrench is a <span style=\"background-color:pink\">web</span>site <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> written in PHP. This object-oriented solution simplifies <span style=\"background-color:pink\">web</span>-based site management and provides an API for <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> development. ','web application framework','new','','',NULL,'',0,0),('wspark','Spark Application Server','Python <span style=\"background-color:pink\">framework</span> for developing distributed <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s. Composed by a <span style=\"background-color:pink\">web</span>server and a number of registered <span style=\"background-color:pink\">application</span>s, each handling an url family (www.foo.com/*). The <span style=\"background -color:pink\">application</span>s can run on the same server or on other servers. ','web application framework','new','','',NULL,'',0,0),('ventana','Ventana','Ventana is a strongly OO Flash MX <span style=\"background-color:pink\">Application</span> <span style=\"background-color:pink\">Framework</span>, to let you build DB-driven, full multi-windows, module-based <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s. ','web application framework','new','','',NULL,'',0,0),('eocene-php','Eocene (PHP Version)','A simple and easy to use OO (Object Oriented) <span style=\"background-color:pink\">Web</span> development <span style=\"background-color:pink\">framework</span> to provide a foundation for building <span style=\"background-color:pink\">Web</span> <span style=\"background-color:pink\">application</span>s. It uses PHP for foundation classes and xml-based text files for <span style=\"background-color:pink\">application</span> configurations. ','web application framework','new','','',NULL,'',0,0),('fishcap','Fishcap','Fishcap is a Java <span style=\"background-color:pink\">framework</span> to develop service driven portlet <span style=\"background-color:pink\">application</span>s independent of the Portal vendor. It can also be used as a <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span>. ','web application framework','new','','',NULL,'',0,0),('ducky','Ducky','Ducky is the <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> with many possibilities. Current status is a planning. For further information see the project homepage. This project will have more description when production process will be alive. ','web application framework','new','','',NULL,'',0,0),('integratis','Integratis Web Development Framework','A <span style=\"background-color:pink\">web</span> development <span style=\"background-color:pink\">framework</span>; includes an <span style=\"background-color:pink\">application</span> server which provides a persistent object cache and transaction support, an intelligent HTML parser, multi-threaded scripting, multiple scripting language support within a single OO <span style=\"background-color:pink\">framework</span>. ','web application framework','new','','',NULL,'',0,0),('tacos','Tacos - Tapestry Components','Tacos provides a component repository for the Tapestry <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> development <span style=\"background-color:pink\">framework</span>. It defines a component descriptor language in XML, and provides a Java API to manipulate it. ','web application framework','new','','',NULL,'',0,0),('changingpages','Changing Pages','Changing Pages is a Content Management and delivery <span style=\"background-color:pink\">application</span> written in Perl and using MySQL. Uses a set of Perl modules and scripts that form a <span style=\"background-color:pink\">framework</span> for creating bespoke <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s incorporating secure login through encrypted cookies. ','web application framework','new','','',NULL,'',0,0),('webpuzzle','Web Puzzle','<span style=\"background-color:pink\">Web</span> Puzzle will be a new python <span style=\"background-color:pink\">framework</span> to build: a) an object database b) an <span style=\"background-color:pink\">application</span> storage c) an <span style=\"background-color:pink\">application</span> server d) a content management system e) a virtual file system ','web application framework','new','','',NULL,'',0,0),('hawk','hawk application framework','hawk <span style=\"background-color:pink\">application</span> <span style=\"background-color:pink\">framework</span> is a powerful solution for people whom understand weakness of template-based technologies for building <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s like jsp, asp, etc. hawk nestling edition is an open source product. ','web application framework','new','','',NULL,'',0,0),('mara','MARA','Multiple <span style=\"background-color:pink\">Application</span>s Reduced Administration, a simplified <span style=\"background-color:pink\">framework</span> for building service oriented servers like firewalls, filers, mail gateways, mail servers, <span style=\"background-color:pink\">web</span> servers, ... ','web application framework','new','','',NULL,'',0,0),('stamina','Stamina','A <span style=\"background-color:pink\">framework</span> for building <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s (servlets) in Java. The main emphasis is on state machine based <span style=\"background-color:pink\">application</span> flow control and user interface componentisation ','web application framework','new','','',NULL,'',0,0),('aspenos','AspenOS Servlet Framework','AspenOS is used by <span style=\"background-color:pink\">web</span> development teams to develop <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span>s with a moderately complex core and flexible content delivery. It is a Java servlet <span style=\"background-color:pink\">framework</span> with multiple role support for users. ','web application framework','new','','',NULL,'',0,0),('projectapollo','Project Apollo','Project Apollo seeks to provide a Java based <span style=\"background-color:pink\">web</span> <span style=\"background-color:pink\">application</span> development <span style=\"background-color:pink\">framework</span>. The <span style=\"background-color:pink\">framework</span> is not a RAD tool, but a set of tools and design patterns which can be used to build a properly designed and robust <span style=\"background-color:pink\">application</span>. ','web application framework','new','','',NULL,'',0,0),('p2pe','Peer2Peer Extreme','The Development of A Peer2Peer Software that will help users to make use of the .net <span style=\"background-color:pink\">framework</span> and its many advantages. In Addition this will be a p2p <span style=\"background-color:pink\"... [truncated message content] |