Skip to content

Commit

Permalink
v0.6.0-9 Finished docs. Added ChangeLog file
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy98 committed Feb 27, 2014
1 parent 599df5d commit 6e49ffb
Show file tree
Hide file tree
Showing 7 changed files with 177 additions and 135 deletions.
113 changes: 113 additions & 0 deletions ChangeLog
@@ -0,0 +1,113 @@
<div>

&lt; 2012-09-07 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* &lt; v0.2.4 - All the basic stuff

&nbsp;

2012-09-07 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* v0.2.4 - Added cgi support

&nbsp;

2013-03-25 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* v0.2.5 Added xml and svg to the list of recognized types

&nbsp;

2013-04-01 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* v0.2.6 Added compile to js tool 'compile.sh'

&nbsp;

2013-04-02 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* v0.2\. Added mk-server tool to the bin directory

&nbsp;&nbsp;&nbsp;&nbsp;This is a tiny tool that will create a brand new node-simple-router powered server to the working directory.
It can be invoked with no params, producing an executable

&nbsp;&nbsp;&nbsp;&nbsp;server.coffee file. Should you prefer getting a javascript version of the server,
you must invoke it like so: mk-server js. This will produce server.js.

&nbsp;&nbsp;&nbsp;&nbsp;It's worth noting that in order for this to be useful, you should install node-simple-router globally `sudo npm install -g node-simple-router`

&nbsp;

2013-04-03 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* v0.3.0 node-simple-router becomes able to handle form uploads

&nbsp;

2013-07-27 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* v0.3.5 correction for paths which have escaped characters

&nbsp;

2013-08-02 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* v0.3.6 Added default favicon. Fixed cgi-bin.

&nbsp;

2013-08-03 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* v0.4.1 Improved cgi-bin. Looks really usable now.

&nbsp;

2013-08-04 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* v0.4.5 Further improvement for cgi-bin, mainly PHP related. Some issues remain though.

&nbsp;

2013-08-12 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* v0.4.7 CGI works smoothly now. Added scgi support (router.scgi_pass). Works fine too.

&nbsp;

2013-12-28 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* v0.4.9 Fixes nil error when request method is not known/handled.

&nbsp;

2013-12-29 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* v0.4.9-3 As a result of the former, NSR now handles router.any.

&nbsp;

2014-01-10 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* v0.4.9-4 Improved server generated by mk-server tool.

&nbsp;

2014-02-26 Domingo E. Savoretti &lt;esavoretti@gmail.com&gt;

&nbsp;&nbsp;&nbsp;&nbsp;* v0.6.0-1/8 Basic templating handling ala Mustache. Improved docs.

&nbsp;

</div>

* * *

<div>

Copyright 2012, 2013, 2014 Domingo E. Savoretti

Copying and distribution of this file, with or without modification, are

permitted provided the copyright notice and this notice are preserved.

</div>
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
The MIT License

Copyright (c) 2012 Ernesto Savoretti <esavoretti@gmail.com>
Copyright (c) 2012, 2013, 2014 Ernesto Savoretti <esavoretti@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion lib/router.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
, "description" : "Yet another minimalistic router for node.js"
, "tags" : ["http", "simple", "routing", "router", "utils"]
, "keywords": ["http", "url", "dispatch", "router", "request handler", "middleware" ]
, "version" : "0.6.0-8"
, "version" : "0.6.0-9"
, "homepage": "http://sandy98.github.com/node-simple-router"
, "author" : "Ernesto Savoretti <esavoretti@gmail.com>"
, "repository" :
Expand Down
2 changes: 1 addition & 1 deletion src/router.coffee
Expand Up @@ -18,7 +18,7 @@ Router = (options = {}) ->
# Constants.

default_options =
version: '0.6.0-8'
version: '0.6.0-9'
logging: true
log: console.log
static_route: "#{process.cwd()}/public"
Expand Down

0 comments on commit 6e49ffb

Please sign in to comment.