<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -332,7 +332,7 @@ function createIncomingMessageStream (connection, incoming_listener) {
   var incoming;
   var field = null, value = null;
 
-  connection.addListener(&quot;message_begin&quot;, function () {
+  connection.addListener(&quot;messageBegin&quot;, function () {
     incoming = new IncomingMessage(connection);
   });
 
@@ -341,7 +341,7 @@ function createIncomingMessageStream (connection, incoming_listener) {
     incoming.uri += data;
   });
 
-  connection.addListener(&quot;header_field&quot;, function (data) {
+  connection.addListener(&quot;headerField&quot;, function (data) {
     if (value) {
       incoming._addHeaderLine(field, value);
       field = null;
@@ -354,7 +354,7 @@ function createIncomingMessageStream (connection, incoming_listener) {
     }
   });
 
-  connection.addListener(&quot;header_value&quot;, function (data) {
+  connection.addListener(&quot;headerValue&quot;, function (data) {
     if (value) {
       value += data;
     } else {
@@ -362,7 +362,7 @@ function createIncomingMessageStream (connection, incoming_listener) {
     }
   });
 
-  connection.addListener(&quot;headers_complete&quot;, function (info) {
+  connection.addListener(&quot;headerComplete&quot;, function (info) {
     if (field &amp;&amp; value) {
       incoming._addHeaderLine(field, value);
     }
@@ -385,7 +385,7 @@ function createIncomingMessageStream (connection, incoming_listener) {
     incoming.emit(&quot;body&quot;, chunk);
   });
 
-  connection.addListener(&quot;message_complete&quot;, function () {
+  connection.addListener(&quot;messageComplete&quot;, function () {
     incoming.emit(&quot;complete&quot;);
   });
 </diff>
      <filename>lib/http.js</filename>
    </modified>
    <modified>
      <diff>@@ -69,7 +69,7 @@ HTTPConnection::on_message_begin (http_parser *parser)
 {
   HTTPConnection *connection = static_cast&lt;HTTPConnection*&gt; (parser-&gt;data);
   assert(connection-&gt;attached_);
-  connection-&gt;Emit(&quot;message_begin&quot;, 0, NULL);
+  connection-&gt;Emit(&quot;messageBegin&quot;, 0, NULL);
   return 0;
 }
 
@@ -78,7 +78,7 @@ HTTPConnection::on_message_complete (http_parser *parser)
 {
   HTTPConnection *connection = static_cast&lt;HTTPConnection*&gt; (parser-&gt;data);
   assert(connection-&gt;attached_);
-  connection-&gt;Emit(&quot;message_complete&quot;, 0, NULL);
+  connection-&gt;Emit(&quot;messageComplete&quot;, 0, NULL);
   return 0;
 }
 
@@ -100,7 +100,7 @@ HTTPConnection::on_header_field (http_parser *parser, const char *buf, size_t le
   HTTPConnection *connection = static_cast&lt;HTTPConnection*&gt;(parser-&gt;data);
   assert(connection-&gt;attached_);
   Local&lt;Value&gt; argv[1] = { String::New(buf, len) };
-  connection-&gt;Emit(&quot;header_field&quot;, 1, argv);
+  connection-&gt;Emit(&quot;headerField&quot;, 1, argv);
   return 0;
 }
 
@@ -111,7 +111,7 @@ HTTPConnection::on_header_value (http_parser *parser, const char *buf, size_t le
   HTTPConnection *connection = static_cast&lt;HTTPConnection*&gt;(parser-&gt;data);
   assert(connection-&gt;attached_);
   Local&lt;Value&gt; argv[1] = { String::New(buf, len) };
-  connection-&gt;Emit(&quot;header_value&quot;, 1, argv);
+  connection-&gt;Emit(&quot;headerValue&quot;, 1, argv);
   return 0;
 }
 
@@ -173,7 +173,7 @@ HTTPConnection::on_headers_complete (http_parser *parser)
 
   Local&lt;Value&gt; argv[1] = { message_info };
 
-  connection-&gt;Emit(&quot;headers_complete&quot;, 1, argv);
+  connection-&gt;Emit(&quot;headerComplete&quot;, 1, argv);
 
   return 0;
 }</diff>
      <filename>src/http.cc</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>18da8ffaeed3cf2bd3c5225a8f451db7e2883d73</id>
    </parent>
  </parents>
  <author>
    <name>Ryan Dahl</name>
    <email>ry@tinyclouds.org</email>
  </author>
  <url>http://github.com/ujh/node/commit/cda659a8c8462f112d46c47029eefaaeae88b9b6</url>
  <id>cda659a8c8462f112d46c47029eefaaeae88b9b6</id>
  <committed-date>2009-09-29T09:06:14-07:00</committed-date>
  <authored-date>2009-09-29T09:06:14-07:00</authored-date>
  <message>Camel-case all http events</message>
  <tree>3d702e9f17defbffef60d1c7865f9cbde0d6b8e6</tree>
  <committer>
    <name>Ryan Dahl</name>
    <email>ry@tinyclouds.org</email>
  </committer>
</commit>
