Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2011-08-06Bring gyp into the tools directory; handwritten makefileRyan Dahl
2011-08-06gyp: fix test runnerRyan Dahl
2011-08-03http: make http2 the default, legacy backend is available with --use-http1Ben Noordhuis
Fixes #1441.
2011-08-02test: add targets `test-http2` and `test-all-http2`Ben Noordhuis
Passes `--use-http2` to node. Fixes #1430.
2011-07-28Remove pkg-conf fileRyan Dahl
2011-07-15Addons should not -DEV_MULTIPLICITY=0Brian White
Fixes #1229 Fixes #1332
2011-07-04Fix doctool uses RegExp object as a Functionkoichik
RegExp object is no longer Function. http://code.google.com/p/v8/issues/detail?id=617 Fixes #1262.
2011-06-17Revert "Add --cov code coverage option"Ryan Dahl
This can be done in user space. EG https://github.com/cloudkick/whiskey This reverts commit da9b3340ebb7501ebb8a2896d2c259ffabdab340. This reverts commit b4ff36a41b242c0b379d3c27fb30818de54fe2d4. Conflicts: src/node.cc
2011-04-15Add covhtml.js toolRyan Dahl
2011-03-09Add string class that uses ExternalAsciiStringResource.Tom Hughes
Change the natives to use this class instead of creating completely new strings. Reduces memory usage by about 1 MB.
2011-02-17Fix test runner bug on windowsBert Belder
2011-01-17Bump version to v0.3.5v0.3.5Ryan Dahl
2010-12-21`make test` somewhat worksBert Belder
2010-12-21Better way of getting rid of symlinksBert Belder
Windows, especially msysgit, doesn't like 'em
2010-12-21Wafadmin: don't even think about using msvcBert Belder
2010-12-02Import cpplint.pyRyan Dahl
make cpplint make jslint make lint
2010-12-02Import Google's closure_linterRyan Dahl
Run with 'make lint'
2010-11-30win: Symlink to jsmin.py doesn't work on windowsBert Belder
2010-11-23Add cmake build support.Tom Hughes
Squashed commit of ca128f7dcd28cbcfba154c8577ed54d4aa71dd02 with contributions from Mark Constable (markc@renta.net) and Daniel Gröber (darklord@darkboxed.org).
2010-11-18Generate Table of Contents at compile time.Micheil Smith
2010-11-16Build API page into build/doc; simplify doctool.Micheil Smith
2010-11-15Remove RonnJS not used anymoreRyan Dahl
2010-11-14fix 'make doc'Ryan Dahl
2010-11-02Back to WAFRyan Dahl
Too much instability right now. Hopefully we can revisit autoconf soon.
2010-10-29Install node-wafRyan Dahl
2010-10-29More simplification of the templating & rendering.Micheil Smith
2010-10-29Added a single page version, moved index to be standard page.Micheil Smith
2010-10-29Adding build tools & templates/assetsMicheil Smith
2010-10-25Replace WAF with make/autoconfRyan Dahl
2010-10-19Fix test harness for LinuxRyan Dahl
Mostly just upgraded tools/test.py to the latest one that's in V8. But also fixing the before and after hooks to preserve the test/tmp directory so that running tests manually usually works.
2010-10-13Preliminary pkg-config support.Ben Noordhuis
2010-10-12Dynamically load native scriptsRyan Dahl
2010-10-12Soft migration of sys -> util, Removal of deprecated utils module.Micheil Smith
2010-09-13Add lfs flags to node addon scriptRyan Dahl
2010-09-10Better temporary directory handling for tests.isaacs
Add a setUp and tearDown function to the test case class, and use it to create and remove the test/tmp directory for each test. TODO: amend other tests.
2010-07-14Update ronnjs (fix rendering of html self-closing tags)Jérémy Lal
2010-07-13lib/node, not lib/nodejs !Jérémy Lal
2010-07-12Use ronnjs 0.2 to generate docs. Small cosmetic change.Jérémy Lal
2010-07-12Environment variables NODE_PREFIX, NODE_PATH in node-wafJérémy Lal
Those variables have following defaults : - NODE_PREFIX is relative to the current path of the node_addon.py file It is used as the base path of node include files. - NODE_PATH is ~/.node_libraries It's where modules are installed when calling `node-waf install` Note .js files must be explicitely installed by the module's wscript. Usage : NODE_PREFIX=/usr/local NODE_PATH=~/.node_libraries node-waf configure
2010-07-04Remove a bunch of useless waf filesRyan Dahl
2010-07-02Add my awk script to update AUTHORS fileRyan Dahl
2010-06-20Execute message tests by defaultRyan Dahl
2010-06-12Make addon building work for Cygwin.Brian McKenna
2010-05-29addons should have debugging symbolsRyan Dahl
2010-04-19Upgrade Waf to 1.5.16Ryan Dahl
2010-04-05Upgrade to WAF 1.5.15Ryan Dahl
2010-03-15Include lib/ directory in node executable. Compile on demand.Ryan Dahl
Instead of installing the files in /usr/lib/node/libraries and loading them from the file system, the files are built-in to the node executable. However, they are only compiled on demand. The reasoning is: 1. Allow for more complex internal javascript. In particular, process.stdout and process.stdin can be js implemented streams. 2. Ease system installs. Loading from disk each time is unnecessary overhead. Note that there is no "system" path for modules anymore. Only $HOME/.node_libraries.
2010-03-09Upgrade waf to 1.5.14aRyan Dahl
2010-03-08Upgrade WAF to 1.5.14Ryan Dahl
2010-02-25Split tests.arlolra