Projects tagged ‘cgi’ and ‘fastcgi’


[12 total ]

6 Users
   

Rack provides a common API for connecting web frameworks, web servers and layers of software inbetween. Official repos: http://github.com/rack/rack
Created about 1 year ago.

3 Users
 

PyLucid is a lightweight, OpenSource ( GPL 2.x or newer ) content management system ( CMS ) written in Python using django . Nearly all output can be customized. No shell account is needed. You only ... [More] need a standard webserver with Python (at least v2.4) CGI and MySQL ( mySQLdb ) to run PyLucid. PyLucid/django are WSGI conform, so you can run it as CGI, fastCGI, mod_Python and others... [Less]
Created over 3 years ago.

2 Users

Plack is a Perl module and namespace that contains a set of reference server implementations, middleware and utility modules for PSGI, Perl Web Server Gateway Interface.
Created about 1 month ago.

2 Users

What is v8cgiSmall set of C++ and JS libraries, allowing coder to use JS as a server-side HTTP processing language. Basic functionality includes IO, GD, MySQL, Sockets, Templating, FastCGI and Apache ... [More] module. If you wish to support this project, at PayPal! News20.10.2009Release 0.7.0 (anniversary edition) is ready! This release brings many new modules (postgresql, process, dom, gl, sprintf more), better (configurable) error handling, stability fixes and more improvements. Version 0.7.0 also features code from much more contributors than before. 25.6.2009Release 0.6.0 is ready! Numerous improvements, features and fixes were implemented in this version. New support for SQLite and Context reusing. New unit tests, reworked global.system object, refactored DB libraries and much more. 15.6.2009Revision 454 renames several scons options. Type scons -h to see a list of them. 3.6.2009Release 0.5.2 is ready! Complete V8 sources are now included in the src tarball. New features include Securable Modules compliance, testing framework, assert+getopt modules and lots of stability and compatibility-related fixes. 14.4.2009Starting from revision 391, v8cgi now ships with an assertion module, basic set of unit tests and a tiny testing framework runner. 8.4.2009Revision 381 is compliant with Securable Modules specification and passes all current tests at http://code.google.com/p/interoperablejs/ :) 30.3.2009Release 0.5.0 is ready! This version fixes several fatal bugs and adds support for command line arguments. The MySQL module now automatically closes opened connections on exit. UPDATE: 0.5.1 contains a critical bugfix regarding MySQL with Apache module :) 26.2.2009Release 0.4.0 is ready! Module system has been rewritten to support both include() and require() methods; path handling is better and MySQL module is able to close its database connection. 6.2.2009Release 0.3.0 is ready! Apache module included, for both Windows and Linux platforms. Also, the build process on MacOS X is now a bit easier :) 22.1.2009Release 0.2.0 is ready! This one contains many improvements and libraries: sockets, http client, fastcgi and GD. Windows build does not contain FastCGI support. 6.1.2009Release 0.1.0 is ready! [Less]
Created 12 months ago.

1 Users

Created 7 months ago.

1 Users

site-C-ing is a web development environment akin to HTML::Mason, but it does to c++ what HTML::Mason does to Perl.
Created over 2 years ago.

0 Users

A small WSGI-based framework for web applications.
Created over 2 years ago.

0 Users

NOTEX stands for "Network Oriented Transforms in ECMAScript and XML (E4X)" and is implemented in the CGI script notex.cgi and FastCGI script notex.fcgi. This CGI script enables you to: Read and ... [More] run server-side any JavaScript file located anywhere on the web Use this JavaScript file to process XML files located anywhere on the web Cache your results to give faster responses to subsequent requests NOTEX adds 20 simple JavaScript functions to your programs, such as GET(url), param('user') and write(output) - for more details please see http://www.notex.info NOTEX is a simple, elegant and effective way to process XML files on a web server using JavaScript's E4X capabilities. It has been tested with Apache version 2 using Perl CGI and FastCGI on both Mac OS X and Ubuntu Linux. It should run unmodified on any other Linux or Unix (e.g. OpenSolaris). [Less]
Created 10 months ago.

0 Users

libdodo is not a web framework but a toolkit(middle-level library) for building fast and scalable web applications easy. Building web sites is not a main goal of libdodo. One of its purposes is to ... [More] develop big and complex systems under high load that require good stability on one hand and small and fast applications for embedded world on another hand. libdodo provides database abstraction, easy use of parallel computation, content parsing and generation, much more and of course interaction with users via webserver. Review documentation section to understand what libdodo is and how it could be used. libdodo is written in c++ to provide high performance and small footprint. [Less]
Created over 3 years ago.

0 Users

This library is a harness for creating FastCGI applications in C++ which are easy to test on the command line. It's as simple as #include class HelloWorld : public fastcgi::app { public: ... [More] fastcgi::app::status accept( std::istream & in, std::ostream & out, std::ostream & err, char ** envp ) { out << "Status: 200\r\n" "Content-Type: text/plain\r\n" "\r\n" ;; out << "Hello World Wide Web!" << std::endl; return 0; } }; extern fastcgi::app::ptr fastcgi::instantiate( ) { return fastcgi::app::ptr(new HelloWorld()); } // [Less]
Created 12 months ago.