Skip to content

Commit

Permalink
Add changelog to website
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Feb 21, 2010
1 parent 68af59e commit 1db824a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ test-debug: all
benchmark: all
build/default/node benchmark/run.js

doc: doc/node.1 doc/api.html doc/index.html
doc: doc/node.1 doc/api.html doc/index.html doc/changelog.html

doc/api.html: doc/api.txt
asciidoc --unsafe \
Expand All @@ -37,6 +37,11 @@ doc/api.html: doc/api.txt
-a linkcss \
-o doc/api.html doc/api.txt

doc/changelog.html: ChangeLog
echo '<html><head><title>Node.js ChangeLog</title> <link rel="stylesheet" href="./pipe.css" type="text/css" /> <link rel="stylesheet" href="./pipe-quirks.css" type="text/css" /> <body><h1>Node.js ChangeLog</h1> <pre>' > doc/changelog.html
cat ChangeLog >> doc/changelog.html
echo '</pre></body></html>' >> doc/changelog.html

doc/api.xml: doc/api.txt
asciidoc -b docbook -d manpage -o doc/api.xml doc/api.txt

Expand Down
1 change: 1 addition & 0 deletions doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<div id="toc">
<ol>
<li><a href="#download">Download</a></li>
<li><a href="changelog.html">ChangeLog</a></li>
<li><a href="#build">Build</a></li>
<li><a href="#about">About</a></li>
<li><a href="#demo">Demo</a></li>
Expand Down

0 comments on commit 1db824a

Please sign in to comment.