Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 3

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 module. If you wish to support this project, at PayPal! News8.2.2010Release 0.8.0 is ready! ... [More] Some big changes and features made it into this release: Binary/B is available and test/assert modules are now also CommonJS compatible. v8cgi now builds on Mac, features the "global.v8cgi" free variable, supports multiple MySQL queries. A new DOM module was introduced. Windows binary is compiled without Context reusing, as this feature is still somewhat problematic. Also, the XDOM (Xerces-based DOM) module is not included in Windows release. Use the JS DOM module instead. For a full list of changes, see the Changelog. 16.11.2009Release 0.7.5 is ready! Many things have changed and more features are available. v8cgi achieves higher level of compatibility with CommonJS Modules/1.1 and Windows users can now use DOM and PostgreSQL modules. For a full list of changes, see the Changelog. 20.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]

4.66667
   
  0 reviews  |  6 users  |  43,129 lines of code  |  1 current contributor  |  Analyzed 6 days ago
 
 

It supports both IPv4 and IPv6. Works on POSIX compliant systems, it is written in C. Supports basic authentication, but doesn't implement completely the http specification. Can be used to easily share directories, since it's basedir can be set using directly the command line. Allows the ... [More] execution of server-side scripts and implements the thread-pool pattern to reuse it's threads. Works on GNU/Linux and MacOsX. [Less]

0
 
  0 reviews  |  1 user  |  4,686 lines of code  |  1 current contributor  |  Analyzed about 2 years ago
 
 

AstroCam is a stepengine control daemon with a webinterface (in perl and in PHP. the user can chosse what he want to use). You can use it to control a webcam (on a stepengine) via browser. I started the project in Dec-2001.

0
 
  0 reviews  |  1 user  |  922 lines of code  |  1 current contributor  |  Analyzed 9 days ago
 
 

Standalone program that can download your favourite feeds, and then show them in your favourite web browser spawning a simple local web server. It will not only download the feeds text, but also the pictures, so you will be able to read offline also comics stripes and enjoy the posts with pictures ... [More] in them. It remembers what you read and what not, and all the information stays in normal files, so you can synchronise that easily to any device that may not have an internet connection. It can also work as a CGI to serve your feeds in your website, and can update the feeds from crontab. It has few dependencies to build and can be cross compiled easily. [Less]

0
 
  0 reviews  |  1 user  |  0 current contributors
 
 

blists is a web interface to mailing list archives that works off indexed mbox files. There are two programs: bindex and bit. bindex generates or updates the index file (incremental updates are supported). bit is a CGI/SSI program that generates web pages on the fly. Both programs are written in C and are very fast.

0
 
  0 reviews  |  1 user  |  2,634 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

The goal of CluE (Cluster Engine) project is to create a scalable web service running on clusters. Processes on different nodes of clusters talk to each other by MPI (Message Passing Interface). This project is written in C to avoid overhead and to approach maximum efficiency. CluE can also be run ... [More] on shared memory multi-CPU architects or single CPU machines, as long as MPI is installed. Features:Static file service CGI (GET and POST methods) FastCGI PHP (via FastCGI) Directory indexing (items are sorted in ascending alphabetic order) Load balancing A simple URLRewrite logging (locally by nodes to cut down communication cost between root and other nodes) At current stage, several PHP applications such as WordPress and PHPMyAdmin can be installed and run flawlessly on CluE. Planned:Support all http status codes Configuration file reading module (XML?) Modularization Documents [Less]

0
 
  0 reviews  |  0 users  |  1,070 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 

This is simple,efficient lib for parsing parameter that comes from client agent for CGI .

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 4 days ago
 
 

Быстрая и простая Wiki. Язык проекта: C++ Протокол: HTTP, CGI, HTML

0
 
  0 reviews  |  0 users  |  2,208 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

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: fastcgi::app::status accept( std::istream & in, std::ostream & out, ... [More] 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]

0
 
  0 reviews  |  0 users  |  175 lines of code  |  0 current contributors  |  Analyzed 7 days ago
 
 

Konta-HTTPd adalah sebuah web server yang sangat sederhana yang menyertakan dukungan CGI yang sangat sederhana pula. Aplikasi ini dibuat dalam rangka tugas kuliah jaringan komputer di Fakultas Ilmu Komputer, Universitas Indonesia. Aplikasi ini ditujukan hanya untuk dipelajari. Anda bebas ... [More] menggunakannya, mempelajarinya, mengembangkannya, mendistribusikannya. Kami TIDAK BERTANGGUNGJAWAB atas segala kerusakan yang ditimbulkannya. Dengan menjalankan aplikasi ini, ANDA MENANGGUNG SEGALA RISIKO yang ada. Konta-HTTPd is a very simple web server with some CGI support. This application was built for computer network assignment at the Computer Science Faculty, University of Indonesia. This application is intended only for learning purpose. You are free to use, learn, expand, distribute it. We are NOT RESPONSIBLE for any damage caused by this application. By running this application, you are at your OWN RISK. [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.