Re: [Jruby-devel] A strategy for Mongrel.

2006-06-19 Thread Scott L Holmes
From the scm repository at Rubyforge.org http://rubyforge.org/plugins/scmsvn/viewcvs.php/trunk/ext/http11/http11_parser.rl?root=mongrel&view=log   Scott  On 6/19/06, Danny Lagrouw <[EMAIL PROTECTED]> wrote: Ola,The JavaCC (Compiler Compiler) should be able to create a parser basedon BNF. I'd look

Re: [Jruby-devel] Mongrel support.

2006-06-18 Thread Scott L Holmes
OK, uncle on the C. I was thinking that we could find another state machine compiler that gens Java but that ended up not making any sence because these generators act like macro languages or preprocessor - they dress up C and gen C or they dress up Java and gen Java. My goal is to get a web base

Re: [Jruby-devel] Mongrel support.

2006-06-18 Thread Scott L Holmes
Here's the very beginning of mongrel.rb: require 'socket' require 'http11' require 'thread' require 'stringio' require 'mongrel/cgi' require 'mongrel/handlers' require 'mongrel/command' require 'mongrel/tcphack' require 'yaml' require 'time' So, I have some questions. How are we doing with sock