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
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
2010-02-09Use Google's jsmin.py so that Node can be used for evilRyan Dahl
2010-02-03Revert "Adding output of Platform information into the test runner"Ryan Dahl
Broken on at least one platform http://pastie.org/808217 This reverts commit 704f394c6671af5b981900fc3666f1b97ef580a9.
2010-01-30Adding output of Platform information into the test runnerMicheil Smith
2010-01-28Adding OS X .dmg build scripts.Standa Opichal
Simply place this into the root of your nodejs git working copy and run ./tools/osx-dist.sh. It will create an dist-osx folder which will comprise of the resulting .dmg file (install path is /usr/local/nodejs with symlinks added to /usr/local/bin) along with other files used during its construction. $ ls -1 dist-osx/ nodejs-v0.1.26-11-gcd6397c nodejs-v0.1.26-11-gcd6397c.dmg nodejs-v0.1.26-11-gcd6397c.pkg nodejs-v0.1.26-11-gcd6397c.plist The resulting installed package is going to be visible using the OS X 'pkgutil --packages' command. You can even safely uninstall sudoing 'pkgutil --unlink org.nodejs.NodeJS-...' and subsequently let the system forget about the package being ever seen by 'pkgutil --forget org.nodejs.NodeJS-...'. Here is the current package ID I have installed: $ pkgutil --pkgs | grep node org.nodejs.NodeJS-v0.1.26-11-gcd6397c Use this patch freely without hesitation. Signed-off-by: Standa Opichal <opichals@gmail.com>
2010-01-20Initial Solaris supportRyan Dahl
2009-12-09Upgrade waf to 1.5.10Ryan Dahl
2009-10-12Use bundle flags for osx in node-wafRyan Dahl
2009-10-07Fix build.Ryan Dahl
- Add -f flag to rm on make clean. - Use old jsmin - the new one seems to be broken.
2009-10-07Upgrade v8 to 1.3.14Ryan Dahl
2009-10-04Modify node_addon configure apiRyan Dahl
2009-10-04Add node-waf to help with building addons.Ryan Dahl
2009-10-02Use waf-light instead of wafRyan Dahl
This way there won't be strange tools/.waf-12343 directories hanging about. All that waf needs to run is inside the tools/wafadmin directory.
2009-08-31Update test script to use new debug build's name: node_gRyan
2009-06-22Fix bug waf problem with HAVE_CLOCK_SYSCALLRyan
2009-06-22Use v8's test runnerRyan
2009-06-22Create tools directoryRyan
Users will need to "make distclean" to recompile from scratch since I've moved a lot of the core build tools around.