From: Carl Worth Date: Sun, 5 Dec 2010 11:30:29 +0000 (-0800) Subject: Rename example.js to nodemuch.js X-Git-Url: https://git.cworth.org/git?p=nodemuch;a=commitdiff_plain;h=a7666a88da31cb770f62af6a0de7b7422feb3874 Rename example.js to nodemuch.js We decided on a project name so we can use a real filename now. --- diff --git a/example.js b/example.js deleted file mode 100644 index fb57c91..0000000 --- a/example.js +++ /dev/null @@ -1,24 +0,0 @@ -var http = require( "http" ), - parse = require( "url" ).parse, - exec = require( "child_process" ).exec; - -http.createServer( function(req, res) { - var url = parse( req.url ), - action = url.pathname.split( "/" ).splice(-1)[0]; - if ( action === "search" ) { - exec( "notmuch search " + url.query, function( error, stdout, stderr ) { - res.writeHead( 200, { "Content-Type": "text/plain" } ); - res.end( stdout ); - }); - } else if ( action === "show" ) { - exec( "notmuch show " + url.query, function( error, stdout, stderr ) { - res.writeHead( 200, { "Content-Type": "text/plain" } ); - res.end( stdout ); - }); - } else { - res.writeHead( 404 ); - res.end("404"); - } -}).listen( 8124, "127.0.0.1" ); - -console.log( "Server running at http://127.0.0.1:8124/" ); diff --git a/nodemuch.js b/nodemuch.js new file mode 100644 index 0000000..fb57c91 --- /dev/null +++ b/nodemuch.js @@ -0,0 +1,24 @@ +var http = require( "http" ), + parse = require( "url" ).parse, + exec = require( "child_process" ).exec; + +http.createServer( function(req, res) { + var url = parse( req.url ), + action = url.pathname.split( "/" ).splice(-1)[0]; + if ( action === "search" ) { + exec( "notmuch search " + url.query, function( error, stdout, stderr ) { + res.writeHead( 200, { "Content-Type": "text/plain" } ); + res.end( stdout ); + }); + } else if ( action === "show" ) { + exec( "notmuch show " + url.query, function( error, stdout, stderr ) { + res.writeHead( 200, { "Content-Type": "text/plain" } ); + res.end( stdout ); + }); + } else { + res.writeHead( 404 ); + res.end("404"); + } +}).listen( 8124, "127.0.0.1" ); + +console.log( "Server running at http://127.0.0.1:8124/" );