From eb565e1ce24ab62521f9920896f4f1ad4943e168 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 27 Jan 2011 19:47:17 -0800 Subject: [PATCH] Simplify website --- Makefile | 9 +--- doc/changelog_footer.html | 3 -- doc/changelog_header.html | 10 ---- doc/index.html | 108 ++++---------------------------------- 4 files changed, 11 insertions(+), 119 deletions(-) delete mode 100644 doc/changelog_footer.html delete mode 100644 doc/changelog_header.html diff --git a/Makefile b/Makefile index 05b1988646..6da2be830f 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ website_files = \ build/doc/sponsored.png \ build/doc/pipe.css -doc: build/default/node $(apidoc_dirs) $(website_files) $(apiassets) $(apidocs) build/doc/changelog.html +doc: build/default/node $(apidoc_dirs) $(website_files) $(apiassets) $(apidocs) $(apidoc_dirs): mkdir -p $@ @@ -85,13 +85,6 @@ build/doc/%: doc/% build/doc/api/%.html: doc/api/%.markdown build/default/node $(apidoc_dirs) $(apiassets) tools/doctool/doctool.js build/default/node tools/doctool/doctool.js doc/template.html $< > $@ -build/doc/changelog.html: ChangeLog build/default/node build/doc/ $(apidoc_dirs) $(apiassets) tools/doctool/doctool.js - build/default/node tools/doctool/doctool.js doc/template.html $< \ - | sed 's|assets/|api/assets/|g' \ - | sed 's|||g' > $@ - @echo $(apiassets) - - build/doc/%: website-upload: doc diff --git a/doc/changelog_footer.html b/doc/changelog_footer.html deleted file mode 100644 index dc684c58dd..0000000000 --- a/doc/changelog_footer.html +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/doc/changelog_header.html b/doc/changelog_header.html deleted file mode 100644 index 3be858a9b4..0000000000 --- a/doc/changelog_header.html +++ /dev/null @@ -1,10 +0,0 @@ - - - - - Node.js ChangeLog - - - -

Node.js ChangeLog

-
\ No newline at end of file
diff --git a/doc/index.html b/doc/index.html
index b0b3b2218d..643d8aa553 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -18,13 +18,12 @@
     
     
@@ -80,6 +79,11 @@ net.createServer(function (socket) { examples.

+ +

+ Go to the Wiki for lots more information. +

+

Download

@@ -99,30 +103,11 @@ net.createServer(function (socket) {

Historical: versions, docs

-

Build

-

- Node is tested on Linux, Macintosh, and - Solaris. It also runs on - Windows/Cygwin, - FreeBSD, and OpenBSD. The build system requires Python - 2.4 or better. V8, on which Node is built, supports only IA-32, - x64, and ARM processors. V8 is included in the Node distribution. - To use TLS, OpenSSL is required. There are no other dependencies. + For build instructions see + https://github.com/ry/node/wiki/Installation

-
-./configure
-make
-make install
- -

- Then have a look at the API documentation. -

- -

To run the tests

- -
make test

About

@@ -205,79 +190,6 @@ make install

- - - - -

Contributing

-

- Patches are welcome. The process is simple: -

- -
-git clone git://github.com/ry/node.git
-cd node
-(make your changes)
-./configure --debug
-make test-all # Check your patch with both debug and release builds
-git commit -m "Good description of what your patch does"
-git format-patch HEAD^
-
- -

- Be sure the your patch includes your full name and your valid email - address. Git can be configured to do this like so: -

-git config --global user.email "ry@tinyclouds.org"
-git config --global user.name "Ryan Dahl"
-
-

- -

- Before your code can be accepted you have to sign the - contributor license agreement. -

- -

- The best way for your patch to get noticed is to submit it to the - developers mailing list - in form of a gists or file attachement. -

- -

- You should ask the mailing list if a new feature is wanted before - working on a patch. -

-