├── test ├── fixtures │ ├── empty.js │ ├── empty.txt │ ├── empty │ │ └── .gitkeep │ ├── readdir │ │ ├── are │ │ ├── empty │ │ ├── files │ │ ├── for │ │ ├── just │ │ ├── these │ │ └── dir │ │ │ └── empty │ ├── x.txt │ ├── keys │ │ ├── ca2-serial │ │ ├── ca1-cert.srl │ │ ├── ca2-cert.srl │ │ └── ca2-database.txt │ ├── utf8-bom.json │ ├── foo │ ├── module-loading-error.node │ ├── utf8-bom.js │ ├── registerExt.test │ ├── destroy-stdin.js │ ├── module-load-order │ │ ├── file1 │ │ ├── file1.node │ │ ├── file1.reg │ │ ├── file1.reg2 │ │ ├── file2.node │ │ ├── file2.reg │ │ ├── file2.reg2 │ │ ├── file3.node │ │ ├── file3.reg │ │ ├── file3.reg2 │ │ ├── file4.reg │ │ ├── file4.reg2 │ │ ├── file5.reg2 │ │ ├── file2 │ │ │ ├── index.node │ │ │ ├── index.reg │ │ │ └── index.reg2 │ │ ├── file3 │ │ │ ├── index.node │ │ │ ├── index.reg │ │ │ └── index.reg2 │ │ ├── file4 │ │ │ ├── index.node │ │ │ ├── index.reg │ │ │ └── index.reg2 │ │ ├── file5 │ │ │ ├── index.node │ │ │ ├── index.reg │ │ │ └── index.reg2 │ │ ├── file6 │ │ │ ├── index.node │ │ │ ├── index.reg │ │ │ └── index.reg2 │ │ ├── file7 │ │ │ ├── index.node │ │ │ ├── index.reg │ │ │ └── index.reg2 │ │ ├── file8 │ │ │ ├── index.reg │ │ │ └── index.reg2 │ │ └── file9 │ │ │ └── index.reg2 │ ├── registerExt.hello.world │ ├── deprecated.js │ ├── registerExt2.test │ ├── child-process-persistent.js │ ├── debug-target.js │ ├── module-require │ │ ├── child │ │ │ ├── node_modules │ │ │ │ └── target.js │ │ │ └── index.js │ │ └── parent │ │ │ ├── node_modules │ │ │ └── target.js │ │ │ └── index.js │ ├── person.jpg │ ├── sample.png │ ├── child-process-message-and-exit.js │ ├── person.jpg.gz │ ├── test_cert.pfx │ ├── invalid.json │ ├── uncaught-exceptions │ │ ├── parse-error-mod.js │ │ ├── global.js │ │ ├── timeout.js │ │ ├── parse-error.js │ │ └── domain.js │ ├── break-in-module │ │ └── main.js │ ├── packages │ │ ├── main │ │ │ └── package.json │ │ └── main-index │ │ │ └── package.json │ ├── test-regress-GH-4015.js │ ├── test_rsa_pubkey_2.pem │ ├── child-process-spawn-node.js │ ├── test_rsa_pubkey.pem │ ├── breakpoints.js │ ├── breakpoints_utf8.js │ ├── parent-process-nonpersistent.js │ └── fixture.ini ├── pummel │ └── pummel.status ├── simple │ └── simple.status ├── gc │ └── node_modules │ │ └── weak │ │ ├── .gitignore │ │ └── binding.gyp ├── message │ ├── hello_world.out │ ├── throw_non_error.out │ ├── throw_in_line_with_tabs.out │ ├── stack_overflow.out │ ├── throw_custom_error.out │ ├── max_tick_depth.out │ └── timeout_throw.out ├── internet │ └── internet.status └── addons │ ├── at-exit │ ├── test.js │ └── binding.gyp │ ├── .gitignore │ ├── hello-world │ ├── binding.gyp │ ├── test.js │ └── binding.cc │ ├── async-hello-world │ └── binding.gyp │ └── hello-world-function-export │ ├── binding.gyp │ └── test.js ├── tools ├── gyp │ ├── OWNERS │ ├── .gitignore │ ├── pylib │ │ └── gyp │ │ │ └── generator │ │ │ └── __init__.py │ ├── gyp.bat │ ├── AUTHORS │ ├── gyp_dummy.c │ ├── samples │ │ └── samples.bat │ └── tools │ │ ├── Xcode │ │ └── README │ │ └── emacs │ │ └── run-unit-tests.sh ├── blog │ ├── node_modules │ │ ├── ejs │ │ │ ├── .gitmodules │ │ │ ├── test │ │ │ │ └── fixtures │ │ │ │ │ └── user.ejs │ │ │ ├── index.js │ │ │ ├── .npmignore │ │ │ └── examples │ │ │ │ ├── list.ejs │ │ │ │ └── list.js │ │ ├── glob │ │ │ ├── .npmignore │ │ │ ├── node_modules │ │ │ │ ├── graceful-fs │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── README.md │ │ │ │ └── minimatch │ │ │ │ │ ├── node_modules │ │ │ │ │ └── lru-cache │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ └── AUTHORS │ │ │ │ │ └── .travis.yml │ │ │ ├── .travis.yml │ │ │ ├── examples │ │ │ │ ├── g.js │ │ │ │ └── usr-local.js │ │ │ └── test │ │ │ │ └── zz-cleanup.js │ │ ├── marked │ │ │ ├── .npmignore │ │ │ ├── index.js │ │ │ └── Makefile │ │ └── mkdirp │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ └── examples │ │ │ └── pow.js │ ├── templates │ │ └── index.ejs │ └── README.md ├── wrk │ ├── .gitignore │ └── src │ │ ├── aprintf.h │ │ ├── units.h │ │ └── config.h ├── msvs │ ├── npm │ │ └── npmrc │ ├── genfiles │ │ ├── MSG00001.bin │ │ ├── node_etw_provider.rc │ │ └── node_etw_providerTEMP.BIN │ └── msi │ │ └── WixUI_en-us.wxl ├── run-valgrind.py ├── doc │ └── node_modules │ │ ├── .bin │ │ └── marked │ │ └── marked │ │ ├── .npmignore │ │ ├── index.js │ │ └── Makefile ├── osx-pkg.pmdoc │ ├── 01local-contents.xml │ └── 02npm-contents.xml ├── closure_linter │ ├── closure_linter.egg-info │ │ ├── dependency_links.txt │ │ ├── requires.txt │ │ ├── top_level.txt │ │ ├── entry_points.txt │ │ └── PKG-INFO │ ├── closure_linter │ │ ├── __init__.py │ │ └── common │ │ │ └── __init__.py │ ├── setup.cfg │ ├── PKG-INFO │ └── README ├── pkgsrc │ ├── comment │ └── description ├── osx-pkg-postinstall.sh ├── osx-productsign.sh ├── osx-codesign.sh ├── updateAuthors.awk ├── getnodeisrelease.py └── changelog-head.sh ├── deps ├── uv │ ├── test │ │ └── fixtures │ │ │ ├── empty_file │ │ │ └── load_error.node │ ├── m4 │ │ └── .gitignore │ └── src │ │ └── win │ │ └── fs.c ├── v8 │ ├── tools │ │ ├── android-build.sh │ │ ├── perf_tests │ │ │ └── chromium_revision │ │ ├── mac-tick-processor │ │ └── freebsd-tick-processor │ ├── src │ │ └── mips │ │ │ └── OWNERS │ ├── benchmarks │ │ ├── v8-logo.png │ │ └── spinning-balls │ │ │ └── index.html │ ├── test │ │ ├── webkit │ │ │ └── parser-high-byte-character.js │ │ └── message │ │ │ ├── isvar.out │ │ │ ├── single-function-literal.out │ │ │ └── paren_in_arg_string.out │ ├── build │ │ └── README.txt │ └── OWNERS ├── openssl │ ├── openssl │ │ ├── apps │ │ │ ├── server.srl │ │ │ ├── ca-cert.srl │ │ │ ├── demoCA │ │ │ │ └── serial │ │ │ ├── pca-cert.srl │ │ │ ├── demoSRP │ │ │ │ └── srp_verifier.txt.attr │ │ │ ├── dsap.pem │ │ │ ├── dsa512.pem │ │ │ └── oid.cnf │ │ ├── ms │ │ │ ├── certCA.srl │ │ │ ├── .rnd │ │ │ ├── testce2.bat │ │ │ ├── tpem.bat │ │ │ ├── bcb4.bat │ │ │ ├── tpemce.bat │ │ │ ├── do_nt.bat │ │ │ ├── do_nasm.bat │ │ │ └── do_win64i.bat │ │ ├── test │ │ │ ├── VMSca-response.1 │ │ │ ├── VMSca-response.2 │ │ │ ├── smcont.txt │ │ │ └── testsslproxy │ │ ├── crypto │ │ │ ├── sha │ │ │ │ └── asm │ │ │ │ │ ├── README │ │ │ │ │ ├── sha1-586.pl │ │ │ │ │ ├── sha256-586.pl │ │ │ │ │ └── sha512-586.pl │ │ │ ├── opensslconf.h │ │ │ ├── bn │ │ │ │ ├── asm │ │ │ │ │ ├── x86 │ │ │ │ │ │ ├── f │ │ │ │ │ │ └── div.pl │ │ │ │ │ ├── ia64.S │ │ │ │ │ ├── x86-gf2m.pl │ │ │ │ │ ├── x86_64-gcc.c │ │ │ │ │ ├── armv4-gf2m.pl │ │ │ │ │ ├── s390x-gf2m.pl │ │ │ │ │ └── x86_64-gf2m.pl │ │ │ │ └── todo │ │ │ ├── pkcs7 │ │ │ │ └── p7 │ │ │ │ │ ├── a1 │ │ │ │ │ ├── a2 │ │ │ │ │ ├── cert.p7c │ │ │ │ │ ├── smime.p7m │ │ │ │ │ └── smime.p7s │ │ │ ├── sparccpuid.S │ │ │ ├── x509v3 │ │ │ │ ├── v3_pci.c │ │ │ │ └── v3_pcia.c │ │ │ ├── aes │ │ │ │ ├── asm │ │ │ │ │ └── aes-586.pl │ │ │ │ └── README │ │ │ ├── rc4 │ │ │ │ ├── asm │ │ │ │ │ └── rc4-x86_64.pl │ │ │ │ └── rc4_locl.h │ │ │ ├── whrlpool │ │ │ │ ├── wp_locl.h │ │ │ │ └── asm │ │ │ │ │ └── wp-mmx.pl │ │ │ ├── modes │ │ │ │ └── asm │ │ │ │ │ ├── ghash-armv4.pl │ │ │ │ │ └── ghash-x86.pl │ │ │ ├── dh │ │ │ │ ├── dh192.pem │ │ │ │ ├── dh512.pem │ │ │ │ └── dh1024.pem │ │ │ ├── threads │ │ │ │ ├── ptest.bat │ │ │ │ ├── win32.bat │ │ │ │ ├── solaris.sh │ │ │ │ ├── purify.sh │ │ │ │ ├── profile.sh │ │ │ │ ├── pthread2.sh │ │ │ │ └── pthread.sh │ │ │ ├── fips_ers.c │ │ │ ├── rsa │ │ │ │ └── rsa_locl.h │ │ │ ├── bf │ │ │ │ ├── VERSION │ │ │ │ └── README │ │ │ ├── dsa │ │ │ │ └── README │ │ │ ├── lhash │ │ │ │ └── num.pl │ │ │ ├── cast │ │ │ │ └── asm │ │ │ │ │ └── readme │ │ │ └── pem │ │ │ │ └── message │ │ ├── VMS │ │ │ ├── socketshr_shr.opt │ │ │ ├── ucx_shr_decc_log.opt │ │ │ ├── ucx_shr_decc.opt │ │ │ ├── ucx_shr_vaxc.opt │ │ │ ├── tcpip_shr_decc.opt │ │ │ ├── multinet_shr.opt │ │ │ └── WISHLIST.TXT │ │ ├── include │ │ │ └── openssl │ │ │ │ ├── e_os2.h │ │ │ │ ├── ssl.h │ │ │ │ ├── bn.h │ │ │ │ ├── dh.h │ │ │ │ ├── dtls1.h │ │ │ │ ├── ec.h │ │ │ │ ├── kssl.h │ │ │ │ ├── srtp.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl23.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── tls1.h │ │ │ │ ├── ts.h │ │ │ │ ├── ui.h │ │ │ │ ├── aes.h │ │ │ │ ├── asn1.h │ │ │ │ ├── bio.h │ │ │ │ ├── cast.h │ │ │ │ ├── cmac.h │ │ │ │ ├── cms.h │ │ │ │ ├── comp.h │ │ │ │ ├── conf.h │ │ │ │ ├── crypto.h │ │ │ │ ├── des.h │ │ │ │ ├── dsa.h │ │ │ │ ├── dso.h │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── err.h │ │ │ │ ├── evp.h │ │ │ │ ├── hmac.h │ │ │ │ ├── idea.h │ │ │ │ ├── md2.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ ├── mdc2.h │ │ │ │ ├── ocsp.h │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── rand.h │ │ │ │ ├── rc2.h │ │ │ │ ├── rc4.h │ │ │ │ ├── rsa.h │ │ │ │ ├── seed.h │ │ │ │ ├── sha.h │ │ │ │ ├── srp.h │ │ │ │ ├── x509.h │ │ │ │ ├── asn1t.h │ │ │ │ ├── des_old.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── lhash.h │ │ │ │ ├── modes.h │ │ │ │ ├── opensslv.h │ │ │ │ ├── ossl_typ.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── stack.h │ │ │ │ ├── store.h │ │ │ │ ├── symhacks.h │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── buffer.h │ │ │ │ ├── conf_api.h │ │ │ │ ├── engine.h │ │ │ │ ├── krb5_asn.h │ │ │ │ ├── obj_mac.h │ │ │ │ ├── objects.h │ │ │ │ ├── opensslconf.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pqueue.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── txt_db.h │ │ │ │ ├── ui_compat.h │ │ │ │ ├── x509_vfy.h │ │ │ │ ├── x509v3.h │ │ │ │ ├── camellia.h │ │ │ │ ├── safestack.h │ │ │ │ └── whrlpool.h │ │ ├── engines │ │ │ ├── e_aep.ec │ │ │ ├── e_gmp.ec │ │ │ ├── e_chil.ec │ │ │ ├── e_nuron.ec │ │ │ ├── e_ubsec.ec │ │ │ ├── e_4758cca.ec │ │ │ ├── e_atalla.ec │ │ │ ├── e_capi.ec │ │ │ ├── e_cswift.ec │ │ │ ├── e_padlock.ec │ │ │ ├── e_sureware.ec │ │ │ ├── alpha.opt │ │ │ ├── axp.opt │ │ │ ├── ia64.opt │ │ │ ├── capierr.bat │ │ │ ├── ccgost │ │ │ │ └── gost.ec │ │ │ └── vax.opt │ │ ├── CHANGES │ │ ├── demos │ │ │ ├── pkcs12 │ │ │ │ └── README │ │ │ ├── smime │ │ │ │ ├── sign.txt │ │ │ │ └── encr.txt │ │ │ ├── cms │ │ │ │ ├── sign.txt │ │ │ │ └── encr.txt │ │ │ ├── easy_tls │ │ │ │ └── README │ │ │ ├── bio │ │ │ │ ├── README │ │ │ │ └── Makefile │ │ │ ├── x509 │ │ │ │ └── README │ │ │ ├── engines │ │ │ │ ├── rsaref │ │ │ │ │ └── rsaref.ec │ │ │ │ ├── ibmca │ │ │ │ │ └── hw_ibmca.ec │ │ │ │ ├── zencod │ │ │ │ │ └── hw_zencod.ec │ │ │ │ └── cluster_labs │ │ │ │ │ └── hw_cluster_labs.ec │ │ │ ├── asn1 │ │ │ │ └── README.ASN1 │ │ │ ├── sign │ │ │ │ └── Makefile │ │ │ ├── tunala │ │ │ │ └── Makefile.am │ │ │ ├── state_machine │ │ │ │ └── Makefile │ │ │ └── README │ │ ├── Configure │ │ ├── shlib │ │ │ ├── README │ │ │ ├── irix.sh │ │ │ └── sun.sh │ │ ├── util │ │ │ ├── mkrc.pl │ │ │ ├── deleof.pl │ │ │ ├── FreeBSD.sh │ │ │ ├── point.sh │ │ │ ├── extract-section.pl │ │ │ ├── tab_num.pl │ │ │ └── dirname.pl │ │ ├── doc │ │ │ ├── openssl_button.gif │ │ │ ├── HOWTO │ │ │ │ └── proxy_certificates.txt │ │ │ └── openssl_button.html │ │ ├── MacOS │ │ │ ├── buildinf.h │ │ │ ├── _MWERKS_prefix.h │ │ │ └── _MWERKS_GUSI_prefix.h │ │ ├── openssl.doxy │ │ ├── tools │ │ │ ├── c_hash │ │ │ ├── c_issuer │ │ │ ├── c_name │ │ │ ├── c_info │ │ │ └── c89.sh │ │ ├── bugs │ │ │ └── MS │ │ └── certs │ │ │ └── README.RootCerts │ └── buildinf.h ├── npm │ ├── node_modules │ │ ├── node-gyp │ │ │ ├── gyp │ │ │ │ ├── OWNERS │ │ │ │ ├── .npmignore │ │ │ │ ├── pylib │ │ │ │ │ └── gyp │ │ │ │ │ │ └── generator │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── gyp.bat │ │ │ │ ├── AUTHORS │ │ │ │ ├── gyp_dummy.c │ │ │ │ ├── samples │ │ │ │ │ └── samples.bat │ │ │ │ └── tools │ │ │ │ │ ├── Xcode │ │ │ │ │ └── README │ │ │ │ │ └── emacs │ │ │ │ │ └── run-unit-tests.sh │ │ │ ├── .npmignore │ │ │ └── .jshintrc │ │ ├── request │ │ │ ├── tests │ │ │ │ ├── ssl │ │ │ │ │ └── ca │ │ │ │ │ │ ├── ca.crl │ │ │ │ │ │ └── ca.srl │ │ │ │ ├── unicycle.jpg │ │ │ │ └── googledoodle.jpg │ │ │ └── node_modules │ │ │ │ ├── hawk │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── boom │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── hoek │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ │ │ ├── test1.js │ │ │ │ │ │ │ │ │ ├── test2.js │ │ │ │ │ │ │ │ │ └── test3.js │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── hoek.png │ │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── boom.png │ │ │ │ │ │ └── .npmignore │ │ │ │ │ ├── hoek │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ │ ├── test1.js │ │ │ │ │ │ │ │ ├── test2.js │ │ │ │ │ │ │ │ └── test3.js │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── hoek.png │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── sntp │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── hoek │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ │ │ ├── test1.js │ │ │ │ │ │ │ │ │ ├── test2.js │ │ │ │ │ │ │ │ │ └── test3.js │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── hoek.png │ │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ └── Makefile │ │ │ │ │ └── cryptiles │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ └── Makefile │ │ │ │ ├── .travis.yml │ │ │ │ ├── images │ │ │ │ │ ├── hawk.png │ │ │ │ │ └── logo.png │ │ │ │ ├── .npmignore │ │ │ │ └── Makefile │ │ │ │ ├── node-uuid │ │ │ │ ├── .npmignore │ │ │ │ └── LICENSE.md │ │ │ │ ├── form-data │ │ │ │ ├── test │ │ │ │ │ ├── fixture │ │ │ │ │ │ ├── bacon.txt │ │ │ │ │ │ └── unicycle.jpg │ │ │ │ │ └── run.js │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── node_modules │ │ │ │ │ └── combined-stream │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── delayed-stream │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── run.js │ │ │ │ │ │ │ └── common.js │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── test │ │ │ │ │ │ └── run.js │ │ │ │ ├── Makefile │ │ │ │ └── node-form-data.sublime-project │ │ │ │ ├── http-signature │ │ │ │ ├── node_modules │ │ │ │ │ ├── asn1 │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── ber │ │ │ │ │ │ │ └── errors.js │ │ │ │ │ └── ctype │ │ │ │ │ │ └── tst │ │ │ │ │ │ └── ctf │ │ │ │ │ │ ├── float.json │ │ │ │ │ │ └── int.json │ │ │ │ ├── .npmignore │ │ │ │ └── .dir-locals.el │ │ │ │ ├── qs │ │ │ │ ├── .npmignore │ │ │ │ └── .gitmodules │ │ │ │ ├── oauth-sign │ │ │ │ └── README.md │ │ │ │ ├── tunnel-agent │ │ │ │ └── README.md │ │ │ │ ├── aws-sign │ │ │ │ └── README.md │ │ │ │ ├── cookie-jar │ │ │ │ └── README.md │ │ │ │ └── forever-agent │ │ │ │ └── README.md │ │ ├── semver │ │ │ ├── .npmignore │ │ │ ├── head.js │ │ │ ├── semver.min.js.gz │ │ │ ├── semver.browser.js.gz │ │ │ ├── foot.js │ │ │ └── r.js │ │ ├── ansi │ │ │ ├── .npmignore │ │ │ └── examples │ │ │ │ └── imgcat │ │ │ │ └── yoshi.png │ │ ├── nopt │ │ │ └── .npmignore │ │ ├── retry │ │ │ ├── .npmignore │ │ │ ├── index.js │ │ │ ├── Makefile │ │ │ ├── equation.gif │ │ │ └── test │ │ │ │ ├── runner.js │ │ │ │ └── common.js │ │ ├── glob │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── examples │ │ │ │ ├── usr-local.js │ │ │ │ └── g.js │ │ │ └── test │ │ │ │ └── zz-cleanup.js │ │ ├── graceful-fs │ │ │ └── .npmignore │ │ ├── lru-cache │ │ │ ├── .npmignore │ │ │ └── AUTHORS │ │ ├── mkdirp │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ └── examples │ │ │ │ └── pow.js │ │ ├── read │ │ │ ├── .npmignore │ │ │ └── rs.js │ │ ├── npmconf │ │ │ ├── .npmignore │ │ │ ├── test │ │ │ │ └── fixtures │ │ │ │ │ ├── builtin │ │ │ │ │ └── globalconfig │ │ │ └── node_modules │ │ │ │ └── config-chain │ │ │ │ ├── .npmignore │ │ │ │ ├── node_modules │ │ │ │ └── proto-list │ │ │ │ │ └── README.md │ │ │ │ └── test │ │ │ │ ├── ignore-unfound-file.js │ │ │ │ ├── broken.js │ │ │ │ └── env.js │ │ ├── slide │ │ │ ├── index.js │ │ │ └── lib │ │ │ │ └── slide.js │ │ ├── fstream-npm │ │ │ ├── node_modules │ │ │ │ └── fstream-ignore │ │ │ │ │ ├── test │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .ignore │ │ │ │ │ └── zz-cleanup.js │ │ │ │ │ └── .npmignore │ │ │ └── .npmignore │ │ ├── fstream │ │ │ ├── .travis.yml │ │ │ └── .npmignore │ │ ├── inherits │ │ │ └── inherits.js │ │ ├── sha │ │ │ ├── .npmignore │ │ │ └── node_modules │ │ │ │ └── readable-stream │ │ │ │ ├── duplex.js │ │ │ │ ├── transform.js │ │ │ │ ├── writable.js │ │ │ │ └── passthrough.js │ │ ├── tar │ │ │ ├── .travis.yml │ │ │ ├── .npmignore │ │ │ ├── test │ │ │ │ └── fixtures.tgz │ │ │ └── examples │ │ │ │ └── extracter.js │ │ ├── editor │ │ │ └── example │ │ │ │ ├── beep.json │ │ │ │ └── edit.js │ │ ├── read-package-json │ │ │ ├── node_modules │ │ │ │ └── normalize-package-data │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── node_modules │ │ │ │ │ └── github-url-from-git │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── History.md │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── AUTHORS │ │ │ └── test │ │ │ │ └── fixtures │ │ │ │ ├── bom.json │ │ │ │ └── nobom.json │ │ ├── init-package-json │ │ │ └── node_modules │ │ │ │ └── promzard │ │ │ │ ├── .npmignore │ │ │ │ ├── test │ │ │ │ ├── exports.input │ │ │ │ └── simple.input │ │ │ │ └── example │ │ │ │ └── npm-init │ │ │ │ ├── README.md │ │ │ │ └── package.json │ │ ├── chmodr │ │ │ └── README.md │ │ ├── chownr │ │ │ └── README.md │ │ ├── npm-registry-client │ │ │ ├── .npmignore │ │ │ ├── node_modules │ │ │ │ └── couch-login │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── test │ │ │ │ │ └── fixtures │ │ │ │ │ ├── registry.couch │ │ │ │ │ └── _replicator.couch │ │ │ ├── lib │ │ │ │ ├── tag.js │ │ │ │ └── stars.js │ │ │ └── test │ │ │ │ ├── 00-setup.js │ │ │ │ └── zz-cleanup.js │ │ ├── npm-user-validate │ │ │ ├── .travis.yml │ │ │ └── .npmignore │ │ ├── child-process-close │ │ │ └── test │ │ │ │ ├── worker-fork.js │ │ │ │ └── worker-spawn.js │ │ ├── lockfile │ │ │ └── test │ │ │ │ └── fixtures │ │ │ │ ├── child.js │ │ │ │ └── bad-child.js │ │ ├── rimraf │ │ │ ├── test │ │ │ │ ├── test-sync.js │ │ │ │ ├── test-async.js │ │ │ │ └── run.sh │ │ │ └── AUTHORS │ │ ├── cmd-shim │ │ │ ├── .npmignore │ │ │ └── test │ │ │ │ └── zz-cleanup.js │ │ └── which │ │ │ ├── README.md │ │ │ └── bin │ │ │ └── which │ ├── test │ │ ├── packages │ │ │ ├── npm-test-files │ │ │ │ ├── include4 │ │ │ │ ├── sub │ │ │ │ │ ├── include │ │ │ │ │ ├── include2 │ │ │ │ │ └── include4 │ │ │ │ ├── .npmignore │ │ │ │ └── package.json │ │ │ ├── npm-test-ignore │ │ │ │ ├── include4 │ │ │ │ ├── sub │ │ │ │ │ ├── include │ │ │ │ │ ├── include2 │ │ │ │ │ └── include4 │ │ │ │ ├── README │ │ │ │ ├── package.json │ │ │ │ └── .npmignore │ │ │ ├── npm-test-blerg │ │ │ │ ├── README │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── npm-test-blerg3 │ │ │ │ ├── README │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── npm-test-dir-bin │ │ │ │ ├── README │ │ │ │ ├── bin │ │ │ │ │ └── dir-bin │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── npm-test-platform │ │ │ │ ├── README │ │ │ │ └── package.json │ │ │ ├── npm-test-private │ │ │ │ ├── README │ │ │ │ └── package.json │ │ │ ├── npm-test-url-dep │ │ │ │ ├── README │ │ │ │ └── package.json │ │ │ ├── npm-test-array-bin │ │ │ │ ├── README │ │ │ │ ├── bin │ │ │ │ │ └── array-bin │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── npm-test-bundled-git │ │ │ │ ├── README │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── npm-test-env-reader │ │ │ │ ├── README │ │ │ │ └── test.js │ │ │ ├── npm-test-optional-deps │ │ │ │ ├── README │ │ │ │ └── test.js │ │ │ ├── npm-test-peer-deps │ │ │ │ └── README │ │ │ ├── npm-test-platform-all │ │ │ │ ├── README │ │ │ │ └── package.json │ │ │ ├── npm-test-shrinkwrap │ │ │ │ └── README │ │ │ ├── npm-test-test-package │ │ │ │ ├── README │ │ │ │ └── package.json │ │ │ ├── npm-test-ignore-nested-nm │ │ │ │ ├── README │ │ │ │ ├── lib │ │ │ │ │ └── node_modules │ │ │ │ │ │ └── foo │ │ │ │ ├── test.js │ │ │ │ └── package.json │ │ │ └── npm-test-missing-bindir │ │ │ │ ├── README │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ ├── tap │ │ │ ├── peer-deps-without-package-json │ │ │ │ └── .gitkeep │ │ │ ├── false_name │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── package-with-peer-dep │ │ │ │ └── package.json │ │ │ ├── ignore-shrinkwrap │ │ │ │ └── package.json │ │ │ └── peer-deps-invalid │ │ │ │ └── package.json │ │ ├── disabled │ │ │ ├── change-bin-1 │ │ │ │ ├── bin │ │ │ │ │ └── foo │ │ │ │ └── package.json │ │ │ ├── change-bin-2 │ │ │ │ ├── bin │ │ │ │ │ └── bar │ │ │ │ └── package.json │ │ │ ├── package-foo │ │ │ │ └── package.json │ │ │ ├── bundlerecurs │ │ │ │ └── package.json │ │ │ ├── startstop │ │ │ │ └── package.json │ │ │ ├── package-config │ │ │ │ └── package.json │ │ │ ├── package-bar │ │ │ │ └── package.json │ │ │ ├── failer │ │ │ │ └── package.json │ │ │ └── fast │ │ │ │ └── package.json │ │ └── common.js │ ├── cli.js │ ├── lib │ │ ├── start.js │ │ ├── stop.js │ │ ├── restart.js │ │ ├── faq.js │ │ ├── get.js │ │ ├── utils │ │ │ └── is-git-url.js │ │ ├── set.js │ │ ├── root.js │ │ ├── prefix.js │ │ └── test.js │ ├── html │ │ ├── docfoot.html │ │ ├── favicon.ico │ │ ├── static │ │ │ └── webfonts │ │ │ │ ├── 23242D_3_0.eot │ │ │ │ ├── 23242D_3_0.ttf │ │ │ │ └── 23242D_3_0.woff │ │ └── dochead.html │ ├── .tern-project │ ├── bin │ │ ├── node-gyp-bin │ │ │ ├── node-gyp.cmd │ │ │ └── node-gyp │ │ ├── npm.cmd │ │ └── npm │ └── doc │ │ ├── cli │ │ ├── npm-whoami.md │ │ ├── npm-prefix.md │ │ ├── npm-stop.md │ │ ├── npm-start.md │ │ ├── npm-bin.md │ │ └── npm-root.md │ │ └── api │ │ ├── npm-bin.md │ │ ├── npm-stop.md │ │ └── npm-start.md ├── http_parser │ ├── .gitignore │ ├── CONTRIBUTIONS │ └── .mailmap └── cares │ ├── src │ └── ares_version.c │ └── .gitignore ├── .gitattributes ├── benchmark ├── misc │ ├── function_call │ │ ├── .gitignore │ │ ├── Makefile │ │ └── binding.gyp │ └── string-creation.js ├── report-startup-memory.js └── http_simple_cluster.js ├── doc ├── api │ └── index.markdown ├── favicon.ico ├── images │ ├── logo.png │ ├── anchor.png │ ├── forkme.png │ ├── icons.png │ ├── ebay-logo.png │ ├── sponsored.png │ ├── footer-logo.png │ ├── home-icons.png │ ├── logo-light.png │ ├── logos │ │ ├── nodejs.png │ │ ├── monitor.png │ │ ├── nodejs-dark.eps │ │ ├── nodejs-dark.png │ │ ├── node-favicon.png │ │ ├── nodejs-black.eps │ │ ├── nodejs-black.png │ │ ├── nodejs-green.eps │ │ ├── nodejs-green.png │ │ ├── nodejs-light.eps │ │ ├── nodejs-1024x768.png │ │ ├── nodejs-1280x1024.png │ │ ├── nodejs-1440x900.png │ │ ├── nodejs-1920x1200.png │ │ └── nodejs-2560x1440.png │ ├── ryan-speaker.jpg │ ├── twitter-bird.png │ ├── yahoo-logo.png │ ├── download-logo.png │ ├── icons-interior.png │ ├── linkedin-logo.png │ ├── microsoft-logo.png │ ├── platform-icons.png │ ├── close-downloads.png │ ├── community-icons.png │ ├── footer-logo-alt.png │ ├── not-invented-here.png │ ├── platform-icon-osx.png │ ├── platform-icon-win.png │ ├── platform-icon-generic.png │ └── joyent-logo_orange_nodeorg-01.png ├── blog │ └── favicon.ico ├── trademark-policy.pdf ├── full-white-stripe.jpg ├── thin-white-stripe.jpg ├── mac_osx_nodejs_installer_logo.png └── robots.txt ├── BSDmakefile └── src └── res └── node.ico /test/fixtures/empty.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/gyp/OWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /test/fixtures/empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/readdir/are: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/readdir/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/readdir/files: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/readdir/for: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/readdir/just: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/readdir/these: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/x.txt: -------------------------------------------------------------------------------- 1 | xyz 2 | -------------------------------------------------------------------------------- /deps/uv/test/fixtures/empty_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/v8/tools/android-build.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/readdir/dir/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/gyp/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /test/fixtures/keys/ca2-serial: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /test/fixtures/utf8-bom.json: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | test/fixtures/* -text 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/apps/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/ms/certCA.srl: -------------------------------------------------------------------------------- 1 | 1D 2 | -------------------------------------------------------------------------------- /test/pummel/pummel.status: -------------------------------------------------------------------------------- 1 | prefix pummel 2 | -------------------------------------------------------------------------------- /test/simple/simple.status: -------------------------------------------------------------------------------- 1 | prefix simple 2 | -------------------------------------------------------------------------------- /tools/blog/node_modules/ejs/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/gyp/pylib/gyp/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/wrk/.gitignore: -------------------------------------------------------------------------------- 1 | obj/* 2 | /wrk 3 | -------------------------------------------------------------------------------- /deps/npm/node_modules/node-gyp/gyp/OWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-files/include4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-ignore/include4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/openssl/openssl/apps/ca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/apps/demoCA/serial: -------------------------------------------------------------------------------- 1 | 011E 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/apps/pca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/test/VMSca-response.1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deps/uv/test/fixtures/load_error.node: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /test/fixtures/foo: -------------------------------------------------------------------------------- 1 | 2 | exports.foo = "ok" 3 | -------------------------------------------------------------------------------- /test/gc/node_modules/weak/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /test/message/hello_world.out: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /tools/msvs/npm/npmrc: -------------------------------------------------------------------------------- 1 | prefix=${APPDATA}\npm 2 | -------------------------------------------------------------------------------- /benchmark/misc/function_call/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/tests/ssl/ca/ca.crl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/npm/node_modules/semver/.npmignore: -------------------------------------------------------------------------------- 1 | # nada 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-files/sub/include: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-files/sub/include2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-ignore/sub/include: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-ignore/sub/include2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/v8/tools/perf_tests/chromium_revision: -------------------------------------------------------------------------------- 1 | 210122 2 | -------------------------------------------------------------------------------- /doc/api/index.markdown: -------------------------------------------------------------------------------- 1 | @include _toc.markdown 2 | -------------------------------------------------------------------------------- /test/fixtures/keys/ca1-cert.srl: -------------------------------------------------------------------------------- 1 | D0F28E241CA7423C 2 | -------------------------------------------------------------------------------- /test/fixtures/keys/ca2-cert.srl: -------------------------------------------------------------------------------- 1 | 8306BE7DE1BB099A 2 | -------------------------------------------------------------------------------- /test/fixtures/module-loading-error.node: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /test/fixtures/utf8-bom.js: -------------------------------------------------------------------------------- 1 | module.exports = 42; 2 | -------------------------------------------------------------------------------- /test/internet/internet.status: -------------------------------------------------------------------------------- 1 | prefix internet 2 | -------------------------------------------------------------------------------- /tools/blog/templates/index.ejs: -------------------------------------------------------------------------------- 1 | This is some ejs 2 | -------------------------------------------------------------------------------- /tools/run-valgrind.py: -------------------------------------------------------------------------------- 1 | ../deps/v8/tools/run-valgrind.py -------------------------------------------------------------------------------- /deps/npm/node_modules/ansi/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/node-gyp/.npmignore: -------------------------------------------------------------------------------- 1 | gyp/test 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/node-gyp/gyp/.npmignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/retry/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/* 2 | -------------------------------------------------------------------------------- /deps/npm/test/tap/peer-deps-without-package-json/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/sha/asm/README: -------------------------------------------------------------------------------- 1 | C2.pl works 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/test/VMSca-response.2: -------------------------------------------------------------------------------- 1 | y 2 | y 3 | -------------------------------------------------------------------------------- /test/fixtures/registerExt.test: -------------------------------------------------------------------------------- 1 | this is custom source 2 | -------------------------------------------------------------------------------- /tools/doc/node_modules/.bin/marked: -------------------------------------------------------------------------------- 1 | ../marked/bin/marked -------------------------------------------------------------------------------- /deps/npm/node_modules/glob/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | test/a/ 3 | -------------------------------------------------------------------------------- /deps/npm/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/lru-cache/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /deps/npm/test/tap/false_name/index.js: -------------------------------------------------------------------------------- 1 | module.exports = true 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/VMS/socketshr_shr.opt: -------------------------------------------------------------------------------- 1 | socketshr/share 2 | -------------------------------------------------------------------------------- /test/fixtures/destroy-stdin.js: -------------------------------------------------------------------------------- 1 | process.stdin.destroy(); 2 | -------------------------------------------------------------------------------- /tools/blog/node_modules/glob/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | test/a/ 3 | -------------------------------------------------------------------------------- /tools/blog/node_modules/marked/.npmignore: -------------------------------------------------------------------------------- 1 | .git* 2 | test/ 3 | -------------------------------------------------------------------------------- /tools/doc/node_modules/marked/.npmignore: -------------------------------------------------------------------------------- 1 | .git* 2 | test/ 3 | -------------------------------------------------------------------------------- /deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/npm/node_modules/semver/head.js: -------------------------------------------------------------------------------- 1 | ;(function(exports) { 2 | 3 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-blerg/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-blerg3/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-dir-bin/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-ignore/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-platform/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-private/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-url-dep/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/VMS/ucx_shr_decc_log.opt: -------------------------------------------------------------------------------- 1 | ucx$ipc_shr/share 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file1: -------------------------------------------------------------------------------- 1 | exports.file1 = 'file1'; 2 | -------------------------------------------------------------------------------- /test/fixtures/registerExt.hello.world: -------------------------------------------------------------------------------- 1 | exports.test = 'passed' 2 | -------------------------------------------------------------------------------- /tools/blog/node_modules/ejs/test/fixtures/user.ejs: -------------------------------------------------------------------------------- 1 |

{= name}

-------------------------------------------------------------------------------- /tools/osx-pkg.pmdoc/01local-contents.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/osx-pkg.pmdoc/02npm-contents.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/npm/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require("./bin/npm-cli.js") 3 | -------------------------------------------------------------------------------- /deps/npm/node_modules/mkdirp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log -------------------------------------------------------------------------------- /deps/npm/node_modules/read/.npmignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | node_modules 3 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/tests/ssl/ca/ca.srl: -------------------------------------------------------------------------------- 1 | ADF62016AA40C9C3 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-array-bin/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-bundled-git/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-env-reader/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-optional-deps/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-peer-deps/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-platform-all/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-shrinkwrap/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-test-package/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/e_os2.h: -------------------------------------------------------------------------------- 1 | #include "../../e_os2.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/ssl.h: -------------------------------------------------------------------------------- 1 | #include "../../ssl/ssl.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/test/smcont.txt: -------------------------------------------------------------------------------- 1 | Some test content for OpenSSL CMS -------------------------------------------------------------------------------- /deps/uv/m4/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore libtoolize-generated files. 2 | *.m4 3 | -------------------------------------------------------------------------------- /deps/v8/src/mips/OWNERS: -------------------------------------------------------------------------------- 1 | plind44@gmail.com 2 | gergely@homejinni.com 3 | -------------------------------------------------------------------------------- /test/fixtures/deprecated.js: -------------------------------------------------------------------------------- 1 | require('util').p('This is deprecated'); 2 | -------------------------------------------------------------------------------- /test/fixtures/registerExt2.test: -------------------------------------------------------------------------------- 1 | This is for the object return test 2 | -------------------------------------------------------------------------------- /tools/blog/node_modules/mkdirp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log -------------------------------------------------------------------------------- /tools/closure_linter/closure_linter.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/closure_linter/closure_linter.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | python-gflags -------------------------------------------------------------------------------- /tools/closure_linter/closure_linter/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | -------------------------------------------------------------------------------- /benchmark/report-startup-memory.js: -------------------------------------------------------------------------------- 1 | console.log(process.memoryUsage().rss); 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npmconf/.npmignore: -------------------------------------------------------------------------------- 1 | /test/fixtures/userconfig-with-gc 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npmconf/test/fixtures/builtin: -------------------------------------------------------------------------------- 1 | builtin-config = true 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/retry/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/retry'); -------------------------------------------------------------------------------- /deps/npm/node_modules/slide/index.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lib/slide") 2 | -------------------------------------------------------------------------------- /deps/npm/test/disabled/change-bin-1/bin/foo: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "foo" 3 | -------------------------------------------------------------------------------- /deps/npm/test/disabled/change-bin-2/bin/bar: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "foo" 3 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-ignore-nested-nm/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-missing-bindir/README: -------------------------------------------------------------------------------- 1 | just an npm test 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/VMS/ucx_shr_decc.opt: -------------------------------------------------------------------------------- 1 | sys$share:ucx$ipc_shr.exe/share 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/VMS/ucx_shr_vaxc.opt: -------------------------------------------------------------------------------- 1 | sys$library:ucx$ipc.olb/library 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/e_aep.ec: -------------------------------------------------------------------------------- 1 | L AEPHK e_aep_err.h e_aep_err.c 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/e_gmp.ec: -------------------------------------------------------------------------------- 1 | L GMP e_gmp_err.h e_gmp_err.c 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/bn.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/bn/bn.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/dh.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/dh/dh.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/dtls1.h: -------------------------------------------------------------------------------- 1 | #include "../../ssl/dtls1.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/ec.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/ec/ec.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/kssl.h: -------------------------------------------------------------------------------- 1 | #include "../../ssl/kssl.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/srtp.h: -------------------------------------------------------------------------------- 1 | #include "../../ssl/srtp.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/ssl2.h: -------------------------------------------------------------------------------- 1 | #include "../../ssl/ssl2.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/ssl23.h: -------------------------------------------------------------------------------- 1 | #include "../../ssl/ssl23.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/ssl3.h: -------------------------------------------------------------------------------- 1 | #include "../../ssl/ssl3.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/tls1.h: -------------------------------------------------------------------------------- 1 | #include "../../ssl/tls1.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/ts.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/ts/ts.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/ui.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/ui/ui.h" 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file1.node: -------------------------------------------------------------------------------- 1 | exports.file1 = 'file1.node'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file1.reg: -------------------------------------------------------------------------------- 1 | exports.file1 = 'file1.reg'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file1.reg2: -------------------------------------------------------------------------------- 1 | exports.file1 = 'file1.reg2'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file2.node: -------------------------------------------------------------------------------- 1 | exports.file2 = 'file2.node'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file2.reg: -------------------------------------------------------------------------------- 1 | exports.file2 = 'file2.reg'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file2.reg2: -------------------------------------------------------------------------------- 1 | exports.file2 = 'file2.reg2'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file3.node: -------------------------------------------------------------------------------- 1 | exports.file3 = 'file3.node'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file3.reg: -------------------------------------------------------------------------------- 1 | exports.file3 = 'file3.reg'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file3.reg2: -------------------------------------------------------------------------------- 1 | exports.file3 = 'file3.reg2'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file4.reg: -------------------------------------------------------------------------------- 1 | exports.file4 = 'file4.reg'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file4.reg2: -------------------------------------------------------------------------------- 1 | exports.file4 = 'file4.reg2'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file5.reg2: -------------------------------------------------------------------------------- 1 | exports.file5 = 'file5.reg2'; 2 | -------------------------------------------------------------------------------- /tools/closure_linter/closure_linter.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | closure_linter 2 | -------------------------------------------------------------------------------- /BSDmakefile: -------------------------------------------------------------------------------- 1 | all: 2 | @echo "I need GNU make. Please run \`gmake\` instead." 3 | -------------------------------------------------------------------------------- /deps/openssl/openssl/VMS/tcpip_shr_decc.opt: -------------------------------------------------------------------------------- 1 | sys$share:tcpip$ipc_shr.exe/share 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/apps/demoSRP/srp_verifier.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/opensslconf.h: -------------------------------------------------------------------------------- 1 | #include "../../config/opensslconf.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/e_chil.ec: -------------------------------------------------------------------------------- 1 | L HWCRHK e_chil_err.h e_chil_err.c 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/e_nuron.ec: -------------------------------------------------------------------------------- 1 | L NURON e_nuron_err.h e_nuron_err.c 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/e_ubsec.ec: -------------------------------------------------------------------------------- 1 | L UBSEC e_ubsec_err.h e_ubsec_err.c 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/aes.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/aes/aes.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/asn1.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/asn1/asn1.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/bio.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/bio/bio.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/cast.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/cast/cast.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/cmac.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/cmac/cmac.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/cms.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/cms/cms.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/comp.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/comp/comp.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/conf.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/conf/conf.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/crypto.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/crypto.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/des.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/des/des.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/dsa.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/dsa/dsa.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/dso.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/dso/dso.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/ebcdic.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/ecdh.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/ecdh/ecdh.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/err.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/err/err.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/evp.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/evp/evp.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/hmac.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/hmac/hmac.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/idea.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/idea/idea.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/md2.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/md2/md2.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/md4.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/md4/md4.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/md5.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/md5/md5.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/mdc2.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/mdc2/mdc2.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/ocsp.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/ocsp/ocsp.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/pem.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/pem/pem.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/pem2.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/pem/pem2.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/rand.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/rand/rand.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/rc2.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/rc2/rc2.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/rc4.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/rc4/rc4.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/rsa.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/rsa/rsa.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/seed.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/seed/seed.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/sha.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/sha/sha.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/srp.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/srp/srp.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/x509.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/x509/x509.h" 2 | -------------------------------------------------------------------------------- /doc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/favicon.ico -------------------------------------------------------------------------------- /src/res/node.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/src/res/node.ico -------------------------------------------------------------------------------- /test/addons/at-exit/test.js: -------------------------------------------------------------------------------- 1 | var binding = require('./build/Release/binding'); 2 | -------------------------------------------------------------------------------- /test/fixtures/child-process-persistent.js: -------------------------------------------------------------------------------- 1 | setInterval(function () {}, 500); 2 | -------------------------------------------------------------------------------- /test/fixtures/debug-target.js: -------------------------------------------------------------------------------- 1 | var a = 0; 2 | a += 1; 3 | a += 2; 4 | a += 3; 5 | -------------------------------------------------------------------------------- /tools/blog/node_modules/ejs/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/ejs'); -------------------------------------------------------------------------------- /tools/blog/node_modules/glob/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /tools/closure_linter/closure_linter/common/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | -------------------------------------------------------------------------------- /tools/pkgsrc/comment: -------------------------------------------------------------------------------- 1 | V8 JavaScript for clients and servers (nodejs.org package) 2 | -------------------------------------------------------------------------------- /deps/npm/lib/start.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./utils/lifecycle.js").cmd("start") 2 | -------------------------------------------------------------------------------- /deps/npm/lib/stop.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./utils/lifecycle.js").cmd("stop") 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/.npmignore: -------------------------------------------------------------------------------- 1 | */a 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/fstream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | -------------------------------------------------------------------------------- /deps/npm/node_modules/glob/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | -------------------------------------------------------------------------------- /deps/npm/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npmconf/test/fixtures/globalconfig: -------------------------------------------------------------------------------- 1 | package-config:foo = boo 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/sha/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test 3 | .gitignore 4 | .travis.yml -------------------------------------------------------------------------------- /deps/npm/node_modules/tar/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/VMS/multinet_shr.opt: -------------------------------------------------------------------------------- 1 | multinet:multinet_socket_library.exe/share 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/e_4758cca.ec: -------------------------------------------------------------------------------- 1 | L CCA4758 e_4758cca_err.h e_4758cca_err.c 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/e_atalla.ec: -------------------------------------------------------------------------------- 1 | L ATALLA e_atalla_err.h e_atalla_err.c 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/e_capi.ec: -------------------------------------------------------------------------------- 1 | L CAPI e_capi_err.h e_capi_err.c 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/e_cswift.ec: -------------------------------------------------------------------------------- 1 | L CSWIFT e_cswift_err.h e_cswift_err.c 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/asn1t.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/asn1/asn1t.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/des_old.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/des/des_old.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/ecdsa/ecdsa.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/lhash.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/lhash/lhash.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/modes.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/modes/modes.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/opensslv.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/opensslv.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/ossl_typ.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/pkcs7/pkcs7.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/stack.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/stack/stack.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/store.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/store/store.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/symhacks.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/symhacks.h" 2 | -------------------------------------------------------------------------------- /doc/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logo.png -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file2/index.node: -------------------------------------------------------------------------------- 1 | exports.file2 = 'file2/index.node'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file2/index.reg: -------------------------------------------------------------------------------- 1 | exports.file2 = 'file2/index.reg'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file2/index.reg2: -------------------------------------------------------------------------------- 1 | exports.file2 = 'file2/index.reg2'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file3/index.node: -------------------------------------------------------------------------------- 1 | exports.file3 = 'file3/index.node'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file3/index.reg: -------------------------------------------------------------------------------- 1 | exports.file3 = 'file3/index.reg'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file3/index.reg2: -------------------------------------------------------------------------------- 1 | exports.file3 = 'file3/index.reg2'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file4/index.node: -------------------------------------------------------------------------------- 1 | exports.file4 = 'file4/index.node'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file4/index.reg: -------------------------------------------------------------------------------- 1 | exports.file4 = 'file4/index.reg'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file4/index.reg2: -------------------------------------------------------------------------------- 1 | exports.file4 = 'file4/index.reg2'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file5/index.node: -------------------------------------------------------------------------------- 1 | exports.file5 = 'file5/index.node'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file5/index.reg: -------------------------------------------------------------------------------- 1 | exports.file5 = 'file5/index.reg'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file5/index.reg2: -------------------------------------------------------------------------------- 1 | exports.file5 = 'file5/index.reg2'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file6/index.node: -------------------------------------------------------------------------------- 1 | exports.file6 = 'file6/index.node'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file6/index.reg: -------------------------------------------------------------------------------- 1 | exports.file6 = 'file6/index.reg'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file6/index.reg2: -------------------------------------------------------------------------------- 1 | exports.file6 = 'file6/index.reg2'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file7/index.node: -------------------------------------------------------------------------------- 1 | exports.file7 = 'file7/index.node'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file7/index.reg: -------------------------------------------------------------------------------- 1 | exports.file7 = 'file7/index.reg'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file7/index.reg2: -------------------------------------------------------------------------------- 1 | exports.file7 = 'file7/index.reg2'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file8/index.reg: -------------------------------------------------------------------------------- 1 | exports.file8 = 'file8/index.reg'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file8/index.reg2: -------------------------------------------------------------------------------- 1 | exports.file8 = 'file8/index.reg2'; 2 | -------------------------------------------------------------------------------- /test/fixtures/module-load-order/file9/index.reg2: -------------------------------------------------------------------------------- 1 | exports.file9 = 'file9/index.reg2'; 2 | -------------------------------------------------------------------------------- /tools/blog/node_modules/marked/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/marked'); 2 | -------------------------------------------------------------------------------- /tools/doc/node_modules/marked/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/marked'); 2 | -------------------------------------------------------------------------------- /tools/msvs/genfiles/MSG00001.bin: -------------------------------------------------------------------------------- 1 | PP Information 2 | -------------------------------------------------------------------------------- /benchmark/misc/function_call/Makefile: -------------------------------------------------------------------------------- 1 | binding: 2 | node-gyp rebuild --nodedir=../../.. 3 | -------------------------------------------------------------------------------- /deps/npm/html/docfoot.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /deps/npm/lib/restart.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./utils/lifecycle.js").cmd("restart") 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/fstream-npm/node_modules/fstream-ignore/.npmignore: -------------------------------------------------------------------------------- 1 | test/fixtures 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-files/sub/include4: -------------------------------------------------------------------------------- 1 | This file should be in the package. 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-ignore/sub/include4: -------------------------------------------------------------------------------- 1 | This file should be in the package. 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/bn/asm/x86/f: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | # x86 assember 3 | 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/e_padlock.ec: -------------------------------------------------------------------------------- 1 | L PADLOCK e_padlock_err.h e_padlock_err.c 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/e_sureware.ec: -------------------------------------------------------------------------------- 1 | L SUREWARE e_sureware_err.h e_sureware_err.c 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/asn1/asn1_mac.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/blowfish.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/bf/blowfish.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/buffer.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/buffer/buffer.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/conf_api.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/conf/conf_api.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/engine.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/engine/engine.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/krb5_asn.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/krb5/krb5_asn.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/objects/obj_mac.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/objects.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/objects/objects.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/opensslconf.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/pkcs12/pkcs12.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/pqueue.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/pqueue/pqueue.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/ripemd.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/ripemd/ripemd.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/txt_db.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/txt_db/txt_db.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/ui/ui_compat.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/x509/x509_vfy.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/x509v3.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/x509v3/x509v3.h" 2 | -------------------------------------------------------------------------------- /deps/uv/src/win/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/uv/src/win/fs.c -------------------------------------------------------------------------------- /doc/blog/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/blog/favicon.ico -------------------------------------------------------------------------------- /doc/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/anchor.png -------------------------------------------------------------------------------- /doc/images/forkme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/forkme.png -------------------------------------------------------------------------------- /doc/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/icons.png -------------------------------------------------------------------------------- /test/addons/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.Makefile 3 | *.mk 4 | gyp-mac-tool 5 | /*/build 6 | -------------------------------------------------------------------------------- /test/fixtures/module-require/child/node_modules/target.js: -------------------------------------------------------------------------------- 1 | exports.loaded = 'from child'; 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/node-uuid/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-dir-bin/bin/dir-bin: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | console.log('ok') 3 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-ignore-nested-nm/lib/node_modules/foo: -------------------------------------------------------------------------------- 1 | I WILL NOT BE IGNORED! 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/alpha.opt: -------------------------------------------------------------------------------- 1 | SYMBOL_VECTOR=(bind_engine=PROCEDURE,v_check=PROCEDURE) 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/axp.opt: -------------------------------------------------------------------------------- 1 | SYMBOL_VECTOR=(bind_engine=PROCEDURE,v_check=PROCEDURE) 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/ia64.opt: -------------------------------------------------------------------------------- 1 | SYMBOL_VECTOR=(bind_engine=PROCEDURE,v_check=PROCEDURE) 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/camellia.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/camellia/camellia.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/safestack.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/stack/safestack.h" 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/whrlpool/whrlpool.h" 2 | -------------------------------------------------------------------------------- /doc/images/ebay-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/ebay-logo.png -------------------------------------------------------------------------------- /doc/images/sponsored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/sponsored.png -------------------------------------------------------------------------------- /doc/trademark-policy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/trademark-policy.pdf -------------------------------------------------------------------------------- /test/fixtures/module-require/parent/node_modules/target.js: -------------------------------------------------------------------------------- 1 | exports.loaded = 'from parent'; 2 | -------------------------------------------------------------------------------- /test/fixtures/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/test/fixtures/person.jpg -------------------------------------------------------------------------------- /test/fixtures/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/test/fixtures/sample.png -------------------------------------------------------------------------------- /deps/npm/.tern-project: -------------------------------------------------------------------------------- 1 | { 2 | "libs": [ 3 | ], 4 | "plugins": { 5 | "node": {} 6 | } 7 | } -------------------------------------------------------------------------------- /deps/npm/bin/node-gyp-bin/node-gyp.cmd: -------------------------------------------------------------------------------- 1 | node "%~dp0\..\..\node_modules\node-gyp\bin\node-gyp.js" %* 2 | -------------------------------------------------------------------------------- /deps/npm/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/html/favicon.ico -------------------------------------------------------------------------------- /deps/npm/node_modules/editor/example/beep.json: -------------------------------------------------------------------------------- 1 | { 2 | "a" : 3, 3 | "b" : 4, 4 | "c" : 5 5 | } 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/.ignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | .*.swp 3 | -------------------------------------------------------------------------------- /deps/npm/node_modules/read-package-json/node_modules/normalize-package-data/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/form-data/test/fixture/bacon.txt: -------------------------------------------------------------------------------- 1 | Bacon is delicious. 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-array-bin/bin/array-bin: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | console.log('ok') 3 | -------------------------------------------------------------------------------- /doc/full-white-stripe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/full-white-stripe.jpg -------------------------------------------------------------------------------- /doc/images/footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/footer-logo.png -------------------------------------------------------------------------------- /doc/images/home-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/home-icons.png -------------------------------------------------------------------------------- /doc/images/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logo-light.png -------------------------------------------------------------------------------- /doc/images/logos/nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/nodejs.png -------------------------------------------------------------------------------- /doc/images/ryan-speaker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/ryan-speaker.jpg -------------------------------------------------------------------------------- /doc/images/twitter-bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/twitter-bird.png -------------------------------------------------------------------------------- /doc/images/yahoo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/yahoo-logo.png -------------------------------------------------------------------------------- /doc/thin-white-stripe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/thin-white-stripe.jpg -------------------------------------------------------------------------------- /test/fixtures/child-process-message-and-exit.js: -------------------------------------------------------------------------------- 1 | 2 | process.send('hello'); 3 | process.exit(0); 4 | -------------------------------------------------------------------------------- /test/fixtures/person.jpg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/test/fixtures/person.jpg.gz -------------------------------------------------------------------------------- /test/fixtures/test_cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/test/fixtures/test_cert.pfx -------------------------------------------------------------------------------- /tools/blog/node_modules/glob/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.7 5 | -------------------------------------------------------------------------------- /tools/blog/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /tools/blog/node_modules/mkdirp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /deps/npm/node_modules/init-package-json/node_modules/promzard/.npmignore: -------------------------------------------------------------------------------- 1 | example/npm-init/package.json 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/boom/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/hoek/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test1.js: -------------------------------------------------------------------------------- 1 | exports.x = 1; 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test2.js: -------------------------------------------------------------------------------- 1 | exports.y = 2; 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test3.js: -------------------------------------------------------------------------------- 1 | exports.z = 3; 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/sntp/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /deps/openssl/openssl/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/CHANGES -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/pkcs12/README: -------------------------------------------------------------------------------- 1 | PKCS#12 demo applications 2 | 3 | Written by Steve Henson. 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/smime/sign.txt: -------------------------------------------------------------------------------- 1 | Content-type: text/plain 2 | 3 | Test OpenSSL Signed Content 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/ms/.rnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/ms/.rnd -------------------------------------------------------------------------------- /doc/images/download-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/download-logo.png -------------------------------------------------------------------------------- /doc/images/icons-interior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/icons-interior.png -------------------------------------------------------------------------------- /doc/images/linkedin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/linkedin-logo.png -------------------------------------------------------------------------------- /doc/images/logos/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/monitor.png -------------------------------------------------------------------------------- /doc/images/microsoft-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/microsoft-logo.png -------------------------------------------------------------------------------- /doc/images/platform-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/platform-icons.png -------------------------------------------------------------------------------- /deps/npm/node_modules/chmodr/README.md: -------------------------------------------------------------------------------- 1 | Like `chmod -R`. 2 | 3 | Takes the same arguments as `fs.chmod()` 4 | -------------------------------------------------------------------------------- /deps/npm/node_modules/chownr/README.md: -------------------------------------------------------------------------------- 1 | Like `chown -R`. 2 | 3 | Takes the same arguments as `fs.chown()` 4 | -------------------------------------------------------------------------------- /deps/npm/node_modules/mkdirp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - 0.9 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npm-registry-client/.npmignore: -------------------------------------------------------------------------------- 1 | test/fixtures/cache 2 | node_modules 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npm-user-validate/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /deps/openssl/openssl/Configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/Configure -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/cms/sign.txt: -------------------------------------------------------------------------------- 1 | Content-type: text/plain 2 | 3 | Test OpenSSL CMS Signed Content 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/shlib/README: -------------------------------------------------------------------------------- 1 | Only the windows NT and, linux builds have been tested for SSLeay 0.8.0 2 | -------------------------------------------------------------------------------- /deps/v8/benchmarks/v8-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/v8/benchmarks/v8-logo.png -------------------------------------------------------------------------------- /doc/images/close-downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/close-downloads.png -------------------------------------------------------------------------------- /doc/images/community-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/community-icons.png -------------------------------------------------------------------------------- /doc/images/footer-logo-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/footer-logo-alt.png -------------------------------------------------------------------------------- /doc/images/logos/nodejs-dark.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/nodejs-dark.eps -------------------------------------------------------------------------------- /doc/images/logos/nodejs-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/nodejs-dark.png -------------------------------------------------------------------------------- /doc/images/not-invented-here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/not-invented-here.png -------------------------------------------------------------------------------- /doc/images/platform-icon-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/platform-icon-osx.png -------------------------------------------------------------------------------- /doc/images/platform-icon-win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/platform-icon-win.png -------------------------------------------------------------------------------- /test/fixtures/invalid.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "foo", 3 | "version": "0.0.1" 4 | "description": "im broken" 5 | } -------------------------------------------------------------------------------- /test/fixtures/module-require/child/index.js: -------------------------------------------------------------------------------- 1 | exports.loaded = require('target'); 2 | exports.module = module; 3 | -------------------------------------------------------------------------------- /test/fixtures/uncaught-exceptions/parse-error-mod.js: -------------------------------------------------------------------------------- 1 | console.log('parse error on next line'); 2 | var a = '; 3 | -------------------------------------------------------------------------------- /tools/closure_linter/setup.cfg: -------------------------------------------------------------------------------- 1 | [egg_info] 2 | tag_build = 3 | tag_date = 0 4 | tag_svn_revision = 0 5 | 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/child-process-close/test/worker-fork.js: -------------------------------------------------------------------------------- 1 | 2 | process.send('hello'); 3 | process.exit(0); 4 | -------------------------------------------------------------------------------- /deps/npm/node_modules/fstream-npm/.npmignore: -------------------------------------------------------------------------------- 1 | # ignore the output junk from the example scripts 2 | example/output 3 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /deps/npm/test/disabled/package-foo/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "package-foo", 3 | "version": "0.5.0" 4 | } 5 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/cms/encr.txt: -------------------------------------------------------------------------------- 1 | Content-type: text/plain 2 | 3 | Sample OpenSSL Data for CMS encryption 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/ms/testce2.bat: -------------------------------------------------------------------------------- 1 | cecopy %1.exe CE:\OpenSSL 2 | cerun CE:\OpenSSL\%1 %2 %3 %4 %5 %6 %7 %8 %9 3 | -------------------------------------------------------------------------------- /deps/openssl/openssl/util/mkrc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/util/mkrc.pl -------------------------------------------------------------------------------- /doc/images/logos/node-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/node-favicon.png -------------------------------------------------------------------------------- /doc/images/logos/nodejs-black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/nodejs-black.eps -------------------------------------------------------------------------------- /doc/images/logos/nodejs-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/nodejs-black.png -------------------------------------------------------------------------------- /doc/images/logos/nodejs-green.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/nodejs-green.eps -------------------------------------------------------------------------------- /doc/images/logos/nodejs-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/nodejs-green.png -------------------------------------------------------------------------------- /doc/images/logos/nodejs-light.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/nodejs-light.eps -------------------------------------------------------------------------------- /test/fixtures/uncaught-exceptions/global.js: -------------------------------------------------------------------------------- 1 | console.log('going to throw an error'); 2 | throw new Error('global'); 3 | -------------------------------------------------------------------------------- /test/fixtures/uncaught-exceptions/timeout.js: -------------------------------------------------------------------------------- 1 | setTimeout(function() { 2 | throw new Error('timeout'); 3 | }, 10); 4 | -------------------------------------------------------------------------------- /tools/blog/node_modules/ejs/.npmignore: -------------------------------------------------------------------------------- 1 | # ignore any vim files: 2 | *.sw[a-z] 3 | vim/.netrwhist 4 | node_modules 5 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npmconf/node_modules/config-chain/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | node_modules/* 3 | npm_debug.log 4 | -------------------------------------------------------------------------------- /deps/npm/node_modules/sha/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/tar/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | node_modules 3 | examples/extract/ 4 | test/tmp/ 5 | test/fixtures/ 6 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/smime/encr.txt: -------------------------------------------------------------------------------- 1 | Content-type: text/plain 2 | 3 | Sample OpenSSL Data for PKCS#7 encryption 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/capierr.bat: -------------------------------------------------------------------------------- 1 | perl ../util/mkerr.pl -conf e_capi.ec -nostatic -staticloader -write e_capi.c 2 | -------------------------------------------------------------------------------- /doc/images/logos/nodejs-1024x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/nodejs-1024x768.png -------------------------------------------------------------------------------- /doc/images/logos/nodejs-1280x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/nodejs-1280x1024.png -------------------------------------------------------------------------------- /doc/images/logos/nodejs-1440x900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/nodejs-1440x900.png -------------------------------------------------------------------------------- /doc/images/logos/nodejs-1920x1200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/nodejs-1920x1200.png -------------------------------------------------------------------------------- /doc/images/logos/nodejs-2560x1440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/logos/nodejs-2560x1440.png -------------------------------------------------------------------------------- /doc/images/platform-icon-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/platform-icon-generic.png -------------------------------------------------------------------------------- /doc/mac_osx_nodejs_installer_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/mac_osx_nodejs_installer_logo.png -------------------------------------------------------------------------------- /test/fixtures/break-in-module/main.js: -------------------------------------------------------------------------------- 1 | var mod = require('./mod.js'); 2 | mod.hello(); 3 | mod.hello(); 4 | debugger; 5 | -------------------------------------------------------------------------------- /tools/blog/README.md: -------------------------------------------------------------------------------- 1 | # node-blog-gen 2 | 3 | Generates the node blog from the markdown files in doc/blog/. 4 | 5 | 6 | -------------------------------------------------------------------------------- /tools/blog/node_modules/glob/node_modules/minimatch/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/form-data/.npmignore: -------------------------------------------------------------------------------- 1 | *.un~ 2 | /node_modules/* 3 | /test/tmp 4 | /.idea 5 | *.iml 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/form-data/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.6" 4 | - "0.8" 5 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/boom/node_modules/hoek/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/boom/node_modules/hoek/test/modules/test1.js: -------------------------------------------------------------------------------- 1 | exports.x = 1; 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/boom/node_modules/hoek/test/modules/test2.js: -------------------------------------------------------------------------------- 1 | exports.y = 2; 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/boom/node_modules/hoek/test/modules/test3.js: -------------------------------------------------------------------------------- 1 | exports.z = 3; 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/sntp/node_modules/hoek/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/sntp/node_modules/hoek/test/modules/test1.js: -------------------------------------------------------------------------------- 1 | exports.x = 1; 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/sntp/node_modules/hoek/test/modules/test2.js: -------------------------------------------------------------------------------- 1 | exports.y = 2; 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/sntp/node_modules/hoek/test/modules/test3.js: -------------------------------------------------------------------------------- 1 | exports.z = 3; 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/retry/Makefile: -------------------------------------------------------------------------------- 1 | SHELL := /bin/bash 2 | 3 | test: 4 | @node test/runner.js 5 | 6 | .PHONY: test 7 | 8 | -------------------------------------------------------------------------------- /deps/npm/node_modules/sha/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/sha/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/pkcs7/p7/a1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/pkcs7/p7/a1 -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/pkcs7/p7/a2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/pkcs7/p7/a2 -------------------------------------------------------------------------------- /test/fixtures/packages/main/package.json: -------------------------------------------------------------------------------- 1 | {"name":"package-name" 2 | ,"version":"1.2.3" 3 | ,"main":"package-main-module"} 4 | -------------------------------------------------------------------------------- /deps/npm/bin/node-gyp-bin/node-gyp: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | node "`dirname "$0"`/../../node_modules/node-gyp/bin/node-gyp.js" "$@" 3 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/http-signature/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | Makefile 3 | deps 4 | docs 5 | test 6 | tools -------------------------------------------------------------------------------- /deps/npm/node_modules/retry/equation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/retry/equation.gif -------------------------------------------------------------------------------- /deps/npm/node_modules/sha/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-ignore-nested-nm/test.js: -------------------------------------------------------------------------------- 1 | fs = require('fs') 2 | fs.statSync(__dirname + '/lib/node_modules/foo') 3 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/bn/asm/ia64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/bn/asm/ia64.S -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/sparccpuid.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/sparccpuid.S -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/easy_tls/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/demos/easy_tls/README -------------------------------------------------------------------------------- /test/fixtures/packages/main-index/package.json: -------------------------------------------------------------------------------- 1 | {"name":"package-name" 2 | ,"version":"1.2.3" 3 | ,"main":"package-main-module"} 4 | -------------------------------------------------------------------------------- /test/fixtures/uncaught-exceptions/parse-error.js: -------------------------------------------------------------------------------- 1 | console.log('require fails on next line'); 2 | require('./parse-error-mod.js'); 3 | -------------------------------------------------------------------------------- /tools/msvs/genfiles/node_etw_provider.rc: -------------------------------------------------------------------------------- 1 | LANGUAGE 0x9,0x1 2 | 1 11 "MSG00001.bin" 3 | 1 WEVT_TEMPLATE "node_etw_providerTEMP.BIN" 4 | -------------------------------------------------------------------------------- /deps/npm/html/static/webfonts/23242D_3_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/html/static/webfonts/23242D_3_0.eot -------------------------------------------------------------------------------- /deps/npm/html/static/webfonts/23242D_3_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/html/static/webfonts/23242D_3_0.ttf -------------------------------------------------------------------------------- /deps/npm/node_modules/fstream/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | node_modules/ 3 | examples/deep-copy/ 4 | examples/path/ 5 | examples/filter-copy/ 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/read-package-json/node_modules/normalize-package-data/node_modules/github-url-from-git/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/.npmignore: -------------------------------------------------------------------------------- 1 | *.un~ 2 | /node_modules 3 | /test/tmp 4 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/boom/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/hoek/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/sntp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/tar/test/fixtures.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/tar/test/fixtures.tgz -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/x509v3/v3_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/x509v3/v3_pci.c -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/x509v3/v3_pcia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/x509v3/v3_pcia.c -------------------------------------------------------------------------------- /deps/openssl/openssl/doc/openssl_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/doc/openssl_button.gif -------------------------------------------------------------------------------- /doc/images/joyent-logo_orange_nodeorg-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/doc/images/joyent-logo_orange_nodeorg-01.png -------------------------------------------------------------------------------- /deps/npm/html/static/webfonts/23242D_3_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/html/static/webfonts/23242D_3_0.woff -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/semver/semver.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/semver/semver.min.js.gz -------------------------------------------------------------------------------- /deps/npm/test/disabled/change-bin-1/package.json: -------------------------------------------------------------------------------- 1 | {"name":"npm-test-change-bin" 2 | ,"version":"1.2.3" 3 | ,"directories":{"bin":"./bin"}} 4 | -------------------------------------------------------------------------------- /deps/npm/test/disabled/change-bin-2/package.json: -------------------------------------------------------------------------------- 1 | {"name":"npm-test-change-bin" 2 | ,"version":"2.3.4" 3 | ,"directories":{"bin":"./bin"}} 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/aes/asm/aes-586.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/aes/asm/aes-586.pl -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/bn/asm/x86-gf2m.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/bn/asm/x86-gf2m.pl -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/bn/asm/x86_64-gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/bn/asm/x86_64-gcc.c -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/pkcs7/p7/cert.p7c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/pkcs7/p7/cert.p7c -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/pkcs7/p7/smime.p7m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/pkcs7/p7/smime.p7m -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/pkcs7/p7/smime.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/pkcs7/p7/smime.p7s -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/sha/asm/sha1-586.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/sha/asm/sha1-586.pl -------------------------------------------------------------------------------- /deps/openssl/openssl/ms/tpem.bat: -------------------------------------------------------------------------------- 1 | rem called by testpem 2 | 3 | echo test %1 %2 4 | %ssleay% %1 -in %2 -out %tmp1% 5 | %cmp% %2 %tmp1% 6 | 7 | -------------------------------------------------------------------------------- /test/message/throw_non_error.out: -------------------------------------------------------------------------------- 1 | before 2 | 3 | *test*message*throw_non_error.js:31 4 | throw ({ foo: 'bar' }); 5 | ^ 6 | [object Object] 7 | -------------------------------------------------------------------------------- /tools/msvs/genfiles/node_etw_providerTEMP.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/tools/msvs/genfiles/node_etw_providerTEMP.BIN -------------------------------------------------------------------------------- /deps/npm/node_modules/read-package-json/node_modules/normalize-package-data/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.8" -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/form-data/Makefile: -------------------------------------------------------------------------------- 1 | SHELL := /bin/bash 2 | 3 | test: 4 | @./test/run.js 5 | 6 | .PHONY: test 7 | 8 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/tests/unicycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/request/tests/unicycle.jpg -------------------------------------------------------------------------------- /deps/npm/node_modules/semver/semver.browser.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/semver/semver.browser.js.gz -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-ignore/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-ignore" 2 | , "version":"1.2.5" 3 | , "scripts":{"test":"bash test.sh"}} 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/bn/asm/armv4-gf2m.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/bn/asm/armv4-gf2m.pl -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/bn/asm/s390x-gf2m.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/bn/asm/s390x-gf2m.pl -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/bn/asm/x86_64-gf2m.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/bn/asm/x86_64-gf2m.pl -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/rc4/asm/rc4-x86_64.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/rc4/asm/rc4-x86_64.pl -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/sha/asm/sha256-586.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/sha/asm/sha256-586.pl -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/sha/asm/sha512-586.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/sha/asm/sha512-586.pl -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/whrlpool/wp_locl.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void whirlpool_block(WHIRLPOOL_CTX *,const void *,size_t); 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/bio/README: -------------------------------------------------------------------------------- 1 | This directory contains some simple examples of the use of BIO's 2 | to simplify socket programming. 3 | 4 | -------------------------------------------------------------------------------- /deps/v8/test/webkit/parser-high-byte-character.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/v8/test/webkit/parser-high-byte-character.js -------------------------------------------------------------------------------- /test/fixtures/test-regress-GH-4015.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs'); 2 | 3 | function load() { 4 | fs.statSync('.'); 5 | load(); 6 | } 7 | load(); 8 | -------------------------------------------------------------------------------- /deps/npm/node_modules/ansi/examples/imgcat/yoshi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/ansi/examples/imgcat/yoshi.png -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/.npmignore: -------------------------------------------------------------------------------- 1 | *.un~ 2 | /node_modules/* 3 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/tests/googledoodle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/request/tests/googledoodle.jpg -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-files/.npmignore: -------------------------------------------------------------------------------- 1 | /sub/ignore1 2 | ./sub/include2 3 | ignore3 4 | ./include4 5 | ignoredir1 6 | ignoredir2/ 7 | *.tgz 8 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-ignore/.npmignore: -------------------------------------------------------------------------------- 1 | /sub/ignore1 2 | ./sub/include2 3 | ignore3 4 | ./include4 5 | ignoredir1 6 | ignoredir2/ 7 | *.tgz 8 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/bn/todo: -------------------------------------------------------------------------------- 1 | Cache RECP_CTX values 2 | make the result argument independant of the inputs. 3 | split up the _exp_ functions 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/modes/asm/ghash-armv4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/modes/asm/ghash-armv4.pl -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/modes/asm/ghash-x86.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/modes/asm/ghash-x86.pl -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/whrlpool/asm/wp-mmx.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/crypto/whrlpool/asm/wp-mmx.pl -------------------------------------------------------------------------------- /deps/openssl/openssl/util/deleof.pl: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | 3 | while (<>) 4 | { 5 | print 6 | last if (/^# DO NOT DELETE THIS LINE/); 7 | } 8 | -------------------------------------------------------------------------------- /doc/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Disallow: /dist/ 3 | Disallow: /docs/ 4 | Allow: /dist/latest/ 5 | Allow: /dist/latest/docs/api/ 6 | Allow: /api/ 7 | -------------------------------------------------------------------------------- /tools/wrk/src/aprintf.h: -------------------------------------------------------------------------------- 1 | #ifndef APRINTF_H 2 | #define APRINTF_H 3 | 4 | char *aprintf(char **, const char *, ...); 5 | 6 | #endif /* APRINTF_H */ 7 | -------------------------------------------------------------------------------- /deps/http_parser/.gitignore: -------------------------------------------------------------------------------- 1 | core 2 | tags 3 | *.o 4 | test 5 | test_g 6 | test_fast 7 | url_parser 8 | *.mk 9 | *.Makefile 10 | *.so 11 | *.a 12 | -------------------------------------------------------------------------------- /deps/npm/node_modules/lockfile/test/fixtures/child.js: -------------------------------------------------------------------------------- 1 | var lockFile = require('../../lockfile.js') 2 | 3 | lockFile.lock('never-forget', function () {}) 4 | -------------------------------------------------------------------------------- /deps/npm/node_modules/node-gyp/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi": true, 3 | "laxcomma": true, 4 | "es5": true, 5 | "node": true, 6 | "strict": false 7 | } 8 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/boom/node_modules/hoek/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/sntp/node_modules/hoek/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /deps/npm/test/disabled/bundlerecurs/package.json: -------------------------------------------------------------------------------- 1 | { "name" : "bundletest" 2 | , "version" : "1.0.0" 3 | , "dependencies" : { "bundletest" : "*" } 4 | } 5 | -------------------------------------------------------------------------------- /deps/npm/test/disabled/startstop/package.json: -------------------------------------------------------------------------------- 1 | {"name":"startstop" 2 | ,"version":"1.2.3" 3 | ,"scripts":{"start":"echo 'start'","stop":"echo 'stop'"}} 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/dh/dh192.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MB4CGQDUoLoCULb9LsYm5+/WN992xxbiLQlEuIsCAQM= 3 | -----END DH PARAMETERS----- 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/doc/HOWTO/proxy_certificates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/openssl/openssl/doc/HOWTO/proxy_certificates.txt -------------------------------------------------------------------------------- /deps/npm/node_modules/child-process-close/test/worker-spawn.js: -------------------------------------------------------------------------------- 1 | 2 | var out = new Array(100000).join('x'); 3 | 4 | console.log(out); 5 | console.error(out); 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/qs/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | benchmark.js 4 | component.json 5 | examples.js 6 | History.md 7 | Makefile 8 | -------------------------------------------------------------------------------- /deps/npm/node_modules/rimraf/test/test-sync.js: -------------------------------------------------------------------------------- 1 | var rimraf = require("../rimraf") 2 | , path = require("path") 3 | rimraf.sync(path.join(__dirname, "target")) 4 | -------------------------------------------------------------------------------- /test/message/throw_in_line_with_tabs.out: -------------------------------------------------------------------------------- 1 | before 2 | 3 | *test*message*throw_in_line_with_tabs.js:32 4 | throw ({ foo: 'bar' }); 5 | ^ 6 | [object Object] 7 | -------------------------------------------------------------------------------- /deps/npm/node_modules/read/rs.js: -------------------------------------------------------------------------------- 1 | var read = require('read'); 2 | read({ silent: true, prompt: 'stars: ' }, function(er, data) { 3 | console.log(er, data) 4 | }) 5 | -------------------------------------------------------------------------------- /deps/npm/node_modules/retry/test/runner.js: -------------------------------------------------------------------------------- 1 | var far = require('far').create(); 2 | 3 | far.add(__dirname); 4 | far.include(/\/test-.*\.js$/); 5 | far.execute(); 6 | -------------------------------------------------------------------------------- /deps/npm/test/disabled/package-config/package.json: -------------------------------------------------------------------------------- 1 | {"name":"package-config" 2 | ,"version":"1.2.3" 3 | ,"config":{"foo":"bar"} 4 | ,"scripts":{"test":"./test.js"}} 5 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-ignore-nested-nm/package.json: -------------------------------------------------------------------------------- 1 | {"name":"npm-test-ignore-nested-nm" 2 | ,"version":"1.2.5" 3 | ,"scripts":{"test":"node test.js"}} 4 | -------------------------------------------------------------------------------- /test/addons/at-exit/binding.gyp: -------------------------------------------------------------------------------- 1 | { 2 | 'targets': [ 3 | { 4 | 'target_name': 'binding', 5 | 'sources': [ 'binding.cc' ] 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /test/addons/hello-world/binding.gyp: -------------------------------------------------------------------------------- 1 | { 2 | 'targets': [ 3 | { 4 | 'target_name': 'binding', 5 | 'sources': [ 'binding.cc' ] 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /benchmark/misc/function_call/binding.gyp: -------------------------------------------------------------------------------- 1 | { 2 | 'targets': [ 3 | { 4 | 'target_name': 'binding', 5 | 'sources': [ 'binding.cc' ] 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /deps/npm/node_modules/slide/lib/slide.js: -------------------------------------------------------------------------------- 1 | exports.asyncMap = require("./async-map") 2 | exports.bindActor = require("./bind-actor") 3 | exports.chain = require("./chain") 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/x509/README: -------------------------------------------------------------------------------- 1 | This directory contains examples of how to contruct 2 | various X509 structures. Certificates, certificate requests 3 | and CRLs. 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/ms/bcb4.bat: -------------------------------------------------------------------------------- 1 | perl Configure BC-32 2 | perl util\mkfiles.pl > MINFO 3 | 4 | @rem create make file 5 | perl util\mk1mf.pl no-asm BC-NT > bcb.mak 6 | 7 | -------------------------------------------------------------------------------- /test/fixtures/keys/ca2-database.txt: -------------------------------------------------------------------------------- 1 | R 380729182912Z 110314182914Z 8306BE7DE1BB099A unknown /C=US/ST=CA/L=SF/O=Joyent/OU=Node.js/CN=agent4/emailAddress=ry@tinyclouds.org 2 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/Makefile: -------------------------------------------------------------------------------- 1 | SHELL := /bin/bash 2 | 3 | test: 4 | @./test/run.js 5 | 6 | .PHONY: test 7 | 8 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/images/hawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/request/node_modules/hawk/images/hawk.png -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/request/node_modules/hawk/images/logo.png -------------------------------------------------------------------------------- /deps/npm/node_modules/semver/foot.js: -------------------------------------------------------------------------------- 1 | 2 | })( 3 | typeof exports === 'object' ? exports : 4 | typeof define === 'function' && define.amd ? {} : 5 | semver = {} 6 | ); 7 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/rc4/rc4_locl.h: -------------------------------------------------------------------------------- 1 | #ifndef HEADER_RC4_LOCL_H 2 | #define HEADER_RC4_LOCL_H 3 | #include 4 | #include 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/threads/ptest.bat: -------------------------------------------------------------------------------- 1 | del mttest.exe 2 | 3 | purify cl /O2 -DWIN32 /MD -I..\..\out mttest.c /Femttest ..\..\out\ssl32.lib ..\..\out\crypt32.lib 4 | 5 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/threads/win32.bat: -------------------------------------------------------------------------------- 1 | del mttest.exe 2 | 3 | cl /O2 -DWIN32 /MD -I..\..\out mttest.c /Femttest ..\..\out\ssleay32.lib ..\..\out\libeay32.lib 4 | 5 | -------------------------------------------------------------------------------- /test/addons/async-hello-world/binding.gyp: -------------------------------------------------------------------------------- 1 | { 2 | 'targets': [ 3 | { 4 | 'target_name': 'binding', 5 | 'sources': [ 'binding.cc' ] 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /test/gc/node_modules/weak/binding.gyp: -------------------------------------------------------------------------------- 1 | { 2 | 'targets': [ 3 | { 4 | 'target_name': 'weakref', 5 | 'sources': [ 'src/weakref.cc' ] 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /tools/closure_linter/closure_linter.egg-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | fixjsstyle = closure_linter.fixjsstyle:main 3 | gjslint = closure_linter.gjslint:main 4 | 5 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/README.md: -------------------------------------------------------------------------------- 1 | A list of objects, bound by their prototype chain. 2 | 3 | Used in npm's config stuff. 4 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npmconf/node_modules/config-chain/test/ignore-unfound-file.js: -------------------------------------------------------------------------------- 1 | 2 | var cc = require('..') 3 | 4 | //should not throw 5 | cc(__dirname, 'non_existing_file') 6 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/fips_ers.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #ifdef OPENSSL_FIPS 4 | # include "fips_err.h" 5 | #else 6 | static void *dummy=&dummy; 7 | #endif 8 | -------------------------------------------------------------------------------- /deps/npm/lib/faq.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = faq 3 | 4 | faq.usage = "npm faq" 5 | 6 | var npm = require("./npm.js") 7 | 8 | function faq (args, cb) { npm.commands.help(["faq"], cb) } 9 | -------------------------------------------------------------------------------- /deps/npm/node_modules/lockfile/test/fixtures/bad-child.js: -------------------------------------------------------------------------------- 1 | var lockFile = require('../../lockfile.js') 2 | 3 | lockFile.lockSync('never-forget') 4 | 5 | throw new Error('waaaaaaaaa') 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npm-registry-client/node_modules/couch-login/.npmignore: -------------------------------------------------------------------------------- 1 | test/fixtures/couch.log 2 | test/fixtures/.delete 3 | test/fixtures/pid 4 | test/fixtures/_users.couch 5 | -------------------------------------------------------------------------------- /deps/npm/node_modules/read-package-json/test/fixtures/bom.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "this", 3 | "description": "file", 4 | "author": "has ", 5 | "version" : "0.0.1" 6 | } -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/oauth-sign/README.md: -------------------------------------------------------------------------------- 1 | oauth-sign 2 | ========== 3 | 4 | OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module. 5 | -------------------------------------------------------------------------------- /deps/npm/test/disabled/package-bar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "package-bar", 3 | "version": "0.5.0", 4 | "dependencies": { 5 | "package-foo": "*" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /deps/npm/test/tap/package-with-peer-dep/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "package-with-peer-dep", 3 | "version": "0.0.0", 4 | "peerDependencies": { 5 | "opener": "*" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /deps/openssl/openssl/MacOS/buildinf.h: -------------------------------------------------------------------------------- 1 | #ifndef MK1MF_BUILD 2 | # define CFLAGS "-DB_ENDIAN" 3 | # define PLATFORM "macos" 4 | # define DATE "Sun Feb 27 19:44:16 MET 2000" 5 | #endif 6 | -------------------------------------------------------------------------------- /deps/v8/test/message/isvar.out: -------------------------------------------------------------------------------- 1 | *%(basename)s:31: SyntaxError: builtin %%IS_VAR: not a variable 2 | %%IS_VAR(x+x); 3 | ^ 4 | SyntaxError: builtin %%IS_VAR: not a variable 5 | -------------------------------------------------------------------------------- /test/addons/hello-world-function-export/binding.gyp: -------------------------------------------------------------------------------- 1 | { 2 | 'targets': [ 3 | { 4 | 'target_name': 'binding', 5 | 'sources': [ 'binding.cc' ] 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /deps/npm/node_modules/read-package-json/test/fixtures/nobom.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "this", 3 | "description": "file", 4 | "author": "has ", 5 | "version" : "0.0.1" 6 | } -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-array-bin/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-array-bin" 2 | , "version":"1.2.5" 3 | , "bin": [ "bin/array-bin" ] 4 | , "scripts": { "test": "node test.js" } } 5 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-private/package.json: -------------------------------------------------------------------------------- 1 | {"name":"npm-test-private" 2 | ,"version":"9.9.9-9" 3 | ,"homepage":"http://www.youtube.com/watch?v=1MLry6Cn_D4" 4 | ,"private":"true"} 5 | -------------------------------------------------------------------------------- /deps/npm/test/tap/false_name/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "buffer-equal", 3 | "version": "0.0.0", 4 | "main": "index.js", 5 | "dependencies": { 6 | "tap": "0.2.5" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/threads/solaris.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | /bin/rm -f mttest 3 | cc -DSOLARIS -I../../include -g mttest.c -o mttest -L../.. -lthread -lssl -lcrypto -lnsl -lsocket 4 | 5 | -------------------------------------------------------------------------------- /test/message/stack_overflow.out: -------------------------------------------------------------------------------- 1 | before 2 | 3 | *test*message*stack_overflow.js:* 4 | function stackOverflow() { 5 | ^ 6 | RangeError: Maximum call stack size exceeded 7 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/tunnel-agent/README.md: -------------------------------------------------------------------------------- 1 | tunnel-agent 2 | ============ 3 | 4 | HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module. 5 | -------------------------------------------------------------------------------- /deps/npm/node_modules/semver/r.js: -------------------------------------------------------------------------------- 1 | var semver = require('./') 2 | var r = new semver.Range('git+https://user:password0123@github.com/foo/bar.git', true) 3 | r.inspect = null 4 | console.log(r) 5 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-blerg/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-blerg" 2 | , "version" : "0.0.0" 3 | , "scripts" : { "test" : "node test.js" } 4 | , "publishConfig": {"tag": "foo"} 5 | } 6 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-dir-bin/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-dir-bin" 2 | , "version":"1.2.5" 3 | , "directories": { "bin": "./bin" } 4 | , "scripts": { "test": "node test.js" } } 5 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/threads/purify.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | /bin/rm -f mttest 3 | purify cc -DSOLARIS -I../../include -g mttest.c -o mttest -L../.. -lthread -lssl -lcrypto -lnsl -lsocket 4 | 5 | -------------------------------------------------------------------------------- /deps/openssl/openssl/openssl.doxy: -------------------------------------------------------------------------------- 1 | PROJECT_NAME=OpenSSL 2 | GENERATE_LATEX=no 3 | OUTPUT_DIRECTORY=doxygen 4 | INPUT=ssl include 5 | FILE_PATTERNS=*.c *.h 6 | RECURSIVE=yes 7 | PREDEFINED=DOXYGEN 8 | -------------------------------------------------------------------------------- /deps/openssl/openssl/tools/c_hash: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # print out the hash values 3 | # 4 | 5 | for i in $* 6 | do 7 | h=`openssl x509 -hash -noout -in $i` 8 | echo "$h.0 => $i" 9 | done 10 | -------------------------------------------------------------------------------- /deps/openssl/openssl/tools/c_issuer: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # print out the issuer 4 | # 5 | 6 | for i in $* 7 | do 8 | n=`openssl x509 -issuer -noout -in $i` 9 | echo "$i $n" 10 | done 11 | -------------------------------------------------------------------------------- /deps/openssl/openssl/tools/c_name: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # print the subject 4 | # 5 | 6 | for i in $* 7 | do 8 | n=`openssl x509 -subject -noout -in $i` 9 | echo "$i $n" 10 | done 11 | -------------------------------------------------------------------------------- /tools/blog/node_modules/ejs/examples/list.ejs: -------------------------------------------------------------------------------- 1 | <% if (names.length) { %> 2 |
    3 | <% names.forEach(function(name){ %> 4 |
  • <%= name %>
  • 5 | <% }) %> 6 |
7 | <% } %> -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/form-data/node-form-data.sublime-project: -------------------------------------------------------------------------------- 1 | { 2 | "folders": 3 | [ 4 | { 5 | "path": "/Users/alexi/Dropbox/Projects/node-form-data" 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/Makefile: -------------------------------------------------------------------------------- 1 | SHELL := /bin/bash 2 | 3 | test: 4 | @./test/run.js 5 | 6 | .PHONY: test 7 | 8 | -------------------------------------------------------------------------------- /deps/npm/test/common.js: -------------------------------------------------------------------------------- 1 | 2 | // whatever, it's just tests. 3 | ;["util","assert"].forEach(function (thing) { 4 | thing = require("thing") 5 | for (var i in thing) global[i] = thing[i] 6 | } 7 | 8 | -------------------------------------------------------------------------------- /deps/openssl/openssl/util/FreeBSD.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | perl util/perlpath.pl /usr/bin 4 | perl util/ssldir.pl /usr/local 5 | perl util/mk1mf.pl FreeBSD >Makefile.FreeBSD 6 | perl Configure FreeBSD 7 | -------------------------------------------------------------------------------- /deps/npm/node_modules/editor/example/edit.js: -------------------------------------------------------------------------------- 1 | var editor = require('../'); 2 | editor(__dirname + '/beep.json', function (code, sig) { 3 | console.log('finished editing with code ' + code); 4 | }); 5 | -------------------------------------------------------------------------------- /deps/npm/node_modules/read-package-json/node_modules/normalize-package-data/AUTHORS: -------------------------------------------------------------------------------- 1 | # Names sorted by how much code was originally theirs. 2 | Isaac Z. Schlueter 3 | Meryn Stol -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/aws-sign/README.md: -------------------------------------------------------------------------------- 1 | aws-sign 2 | ======== 3 | 4 | AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module. 5 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/form-data/test/fixture/unicycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/request/node_modules/form-data/test/fixture/unicycle.jpg -------------------------------------------------------------------------------- /deps/npm/node_modules/rimraf/test/test-async.js: -------------------------------------------------------------------------------- 1 | var rimraf = require("../rimraf") 2 | , path = require("path") 3 | rimraf(path.join(__dirname, "target"), function (er) { 4 | if (er) throw er 5 | }) 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/mkdirp/examples/pow.js: -------------------------------------------------------------------------------- 1 | var mkdirp = require('mkdirp'); 2 | 3 | mkdirp('/tmp/foo/bar/baz', function (err) { 4 | if (err) console.error(err) 5 | else console.log('pow!') 6 | }); 7 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npm-registry-client/lib/tag.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = tag 3 | 4 | function tag (project, version, tag, cb) { 5 | this.request("PUT", project+"/"+tag, JSON.stringify(version), cb) 6 | } 7 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npm-user-validate/.npmignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .*.swp 3 | 4 | .DS_Store 5 | *~ 6 | .project 7 | .settings 8 | npm-debug.log 9 | coverage.html 10 | .idea 11 | lib-cov 12 | 13 | node_modules -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/cookie-jar/README.md: -------------------------------------------------------------------------------- 1 | cookie-jar 2 | ========== 3 | 4 | Cookie Jar. Originally pulled from LearnBoost/tobi, maintained as vendor in request, now a standalone module. 5 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/form-data/test/run.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var far = require('far').create(); 3 | 4 | far.add(__dirname); 5 | far.include(/test-.*\.js$/); 6 | 7 | far.execute(); 8 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/boom/images/boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/request/node_modules/hawk/node_modules/boom/images/boom.png -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/hoek/images/hoek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/request/node_modules/hawk/node_modules/hoek/images/hoek.png -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/dh/dh512.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MEYCQQDaWDwW2YUiidDkr3VvTMqS3UvlM7gE+w/tlO+cikQD7VdGUNNpmdsp13Yn 3 | a6LT1BLiGPTdHghM9tgAPnxHdOgzAgEC 4 | -----END DH PARAMETERS----- 5 | -------------------------------------------------------------------------------- /tools/blog/node_modules/mkdirp/examples/pow.js: -------------------------------------------------------------------------------- 1 | var mkdirp = require('mkdirp'); 2 | 3 | mkdirp('/tmp/foo/bar/baz', function (err) { 4 | if (err) console.error(err) 5 | else console.log('pow!') 6 | }); 7 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/threads/profile.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | /bin/rm -f mttest 3 | cc -p -DSOLARIS -I../../include -g mttest.c -o mttest -L/usr/lib/libc -ldl -L../.. -lthread -lssl -lcrypto -lnsl -lsocket 4 | 5 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/ccgost/gost.ec: -------------------------------------------------------------------------------- 1 | L GOST e_gost_err.h e_gost_err.c 2 | L NONE asymm.h NONE 3 | L NONE md.h NONE 4 | L NONE crypt.h NONE 5 | L NONE gostkeyx.h NONE 6 | -------------------------------------------------------------------------------- /tools/blog/node_modules/marked/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @cp lib/marked.js marked.js 3 | @uglifyjs -o marked.min.js marked.js 4 | 5 | clean: 6 | @rm marked.js 7 | @rm marked.min.js 8 | 9 | .PHONY: clean all 10 | -------------------------------------------------------------------------------- /tools/doc/node_modules/marked/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | @cp lib/marked.js marked.js 3 | @uglifyjs -o marked.min.js marked.js 4 | 5 | clean: 6 | @rm marked.js 7 | @rm marked.min.js 8 | 9 | .PHONY: clean all 10 | -------------------------------------------------------------------------------- /deps/npm/node_modules/cmd-shim/.npmignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | 10 | pids 11 | logs 12 | results 13 | 14 | npm-debug.log 15 | 16 | node_modules 17 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-blerg3/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-blerg3" 2 | , "homepage": "https://github.com/isaacs/npm/issues/2658" 3 | , "version" : "0.0.0" 4 | , "scripts" : { "test" : "node test.js" } 5 | } 6 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-missing-bindir/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-missing-bindir" 2 | , "version" : "0.0.0" 3 | , "scripts" : { "test" : "node test.js" } 4 | , "directories": { "bin" : "./not-found" } } 5 | -------------------------------------------------------------------------------- /deps/openssl/openssl/bugs/MS: -------------------------------------------------------------------------------- 1 | If you use the function that does an fopen inside the DLL, it's malloc 2 | will be used and when the function is then written inside, more 3 | hassles 4 | .... 5 | 6 | 7 | think about it. 8 | -------------------------------------------------------------------------------- /test/addons/hello-world/test.js: -------------------------------------------------------------------------------- 1 | var assert = require('assert'); 2 | var binding = require('./build/Release/binding'); 3 | assert.equal('world', binding.hello()); 4 | console.log('binding.hello() =', binding.hello()); 5 | -------------------------------------------------------------------------------- /test/message/throw_custom_error.out: -------------------------------------------------------------------------------- 1 | before 2 | 3 | *test*message*throw_custom_error.js:31 4 | throw ({ name: 'MyCustomError', message: 'This is a custom message' }); 5 | ^ 6 | MyCustomError: This is a custom message 7 | -------------------------------------------------------------------------------- /tools/osx-pkg-postinstall.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # TODO Can this be done inside the .pmdoc? 3 | # TODO Can we extract $PREFIX from the installer? 4 | cd /usr/local/bin 5 | ln -sf ../lib/node_modules/npm/bin/npm-cli.js npm 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/read-package-json/node_modules/normalize-package-data/node_modules/github-url-from-git/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha test.js --reporter spec --require should 4 | 5 | .PHONY: test 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/rimraf/test/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | for i in test-*.js; do 4 | echo -n $i ... 5 | bash setup.sh 6 | node $i 7 | ! [ -d target ] 8 | echo "pass" 9 | done 10 | rm -rf target 11 | -------------------------------------------------------------------------------- /deps/openssl/openssl/certs/README.RootCerts: -------------------------------------------------------------------------------- 1 | The OpenSSL project does not (any longer) include root CA certificates. 2 | 3 | Please check out the FAQ: 4 | * How can I set up a bundle of commercial root CA certificates? 5 | -------------------------------------------------------------------------------- /test/addons/hello-world-function-export/test.js: -------------------------------------------------------------------------------- 1 | var assert = require('assert'); 2 | var binding = require('./build/Release/binding'); 3 | assert.equal('world', binding()); 4 | console.log('binding.hello() =', binding()); 5 | -------------------------------------------------------------------------------- /deps/http_parser/CONTRIBUTIONS: -------------------------------------------------------------------------------- 1 | Contributors must agree to the Contributor License Agreement before patches 2 | can be accepted. 3 | 4 | http://spreadsheets2.google.com/viewform?hl=en&formkey=dDJXOGUwbzlYaWM4cHN1MERwQS1CSnc6MQ 5 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-array-bin/test.js: -------------------------------------------------------------------------------- 1 | require('child_process').exec('array-bin', { env: process.env }, 2 | function (err) { 3 | if (err && err.code) throw new Error('exited badly with code = ' + err.code) 4 | }) 5 | -------------------------------------------------------------------------------- /deps/openssl/openssl/MacOS/_MWERKS_prefix.h: -------------------------------------------------------------------------------- 1 | #include 2 | #define B_ENDIAN 3 | #ifdef __POWERPC__ 4 | #pragma longlong on 5 | #endif 6 | #if 0 7 | #define MAC_OS_GUSI_SOURCE 8 | #endif 9 | #define MONOLITH 10 | -------------------------------------------------------------------------------- /tools/gyp/gyp.bat: -------------------------------------------------------------------------------- 1 | @rem Copyright (c) 2009 Google Inc. All rights reserved. 2 | @rem Use of this source code is governed by a BSD-style license that can be 3 | @rem found in the LICENSE file. 4 | 5 | @python "%~dp0/gyp" %* 6 | -------------------------------------------------------------------------------- /deps/openssl/openssl/MacOS/_MWERKS_GUSI_prefix.h: -------------------------------------------------------------------------------- 1 | #include 2 | #define B_ENDIAN 3 | #ifdef __POWERPC__ 4 | #pragma longlong on 5 | #endif 6 | #if 1 7 | #define MAC_OS_GUSI_SOURCE 8 | #endif 9 | #define MONOLITH 10 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/rsa/rsa_locl.h: -------------------------------------------------------------------------------- 1 | extern int int_rsa_verify(int dtype, const unsigned char *m, unsigned int m_len, 2 | unsigned char *rm, size_t *prm_len, 3 | const unsigned char *sigbuf, size_t siglen, 4 | RSA *rsa); 5 | -------------------------------------------------------------------------------- /deps/openssl/openssl/util/point.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f "$2" 4 | if test "$OSTYPE" = msdosdjgpp || test "x$PLATFORM" = xmingw ; then 5 | cp "$1" "$2" 6 | else 7 | ln -s "$1" "$2" 8 | fi 9 | echo "$2 => $1" 10 | 11 | -------------------------------------------------------------------------------- /deps/cares/src/ares_version.c: -------------------------------------------------------------------------------- 1 | 2 | #include "ares_setup.h" 3 | #include "ares.h" 4 | 5 | const char *ares_version(int *version) 6 | { 7 | if(version) 8 | *version = ARES_VERSION; 9 | 10 | return ARES_VERSION_STR; 11 | } 12 | -------------------------------------------------------------------------------- /deps/npm/node_modules/init-package-json/node_modules/promzard/test/exports.input: -------------------------------------------------------------------------------- 1 | exports.a = 1 + 2 2 | exports.b = prompt('To be or not to be?', '!2b') 3 | exports.c = {} 4 | exports.c.x = prompt() 5 | exports.c.y = tmpdir + "/y/file.txt" 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npm-registry-client/node_modules/couch-login/test/fixtures/registry.couch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/npm-registry-client/node_modules/couch-login/test/fixtures/registry.couch -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/test/run.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var far = require('far').create(); 3 | 4 | far.add(__dirname); 5 | far.include(/test-.*\.js$/); 6 | 7 | far.execute(); 8 | -------------------------------------------------------------------------------- /deps/openssl/openssl/VMS/WISHLIST.TXT: -------------------------------------------------------------------------------- 1 | * Have the building procedure contain a LINK-only possibility. 2 | Wished by Mark Daniel 3 | 4 | One way to enable that is also to go over to DESCRIP.MMS files. 5 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/bf/VERSION: -------------------------------------------------------------------------------- 1 | The version numbers will follow my SSL implementation 2 | 3 | 0.7.2r - Some reasonable default compiler options from 4 | Peter Gutman 5 | 6 | 0.7.2m - the first release 7 | -------------------------------------------------------------------------------- /tools/gyp/AUTHORS: -------------------------------------------------------------------------------- 1 | # Names should be added to this file like so: 2 | # Name or Organization 3 | 4 | Google Inc. 5 | Bloomberg Finance L.P. 6 | 7 | Steven Knight 8 | Ryan Norton 9 | -------------------------------------------------------------------------------- /tools/gyp/gyp_dummy.c: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2009 Google Inc. All rights reserved. 2 | * Use of this source code is governed by a BSD-style license that can be 3 | * found in the LICENSE file. */ 4 | 5 | int main() { 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npm-registry-client/node_modules/couch-login/test/fixtures/_replicator.couch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/npm-registry-client/node_modules/couch-login/test/fixtures/_replicator.couch -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/forever-agent/README.md: -------------------------------------------------------------------------------- 1 | forever-agent 2 | ============= 3 | 4 | HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module. 5 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/boom/node_modules/hoek/images/hoek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/request/node_modules/hawk/node_modules/boom/node_modules/hoek/images/hoek.png -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/sntp/node_modules/hoek/images/hoek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/node/master/deps/npm/node_modules/request/node_modules/hawk/node_modules/sntp/node_modules/hoek/images/hoek.png -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-dir-bin/test.js: -------------------------------------------------------------------------------- 1 | require('child_process').exec('dir-bin', { stdio: 'pipe', 2 | env: process.env }, function (err) { 3 | if (err && err.code) throw new Error('exited badly with code = ' + err.code) 4 | }) 5 | -------------------------------------------------------------------------------- /deps/openssl/openssl/tools/c_info: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # print the subject 4 | # 5 | 6 | for i in $* 7 | do 8 | n=`openssl x509 -subject -issuer -enddate -noout -in $i` 9 | echo "$i" 10 | echo "$n" 11 | echo "--------" 12 | done 13 | -------------------------------------------------------------------------------- /deps/v8/tools/mac-tick-processor: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # A wrapper script to call 'linux-tick-processor' with Mac-specific settings. 4 | 5 | tools_path=`cd $(dirname "$0");pwd` 6 | $tools_path/linux-tick-processor --mac --nm=$tools_path/mac-nm $@ 7 | -------------------------------------------------------------------------------- /tools/gyp/samples/samples.bat: -------------------------------------------------------------------------------- 1 | @rem Copyright (c) 2009 Google Inc. All rights reserved. 2 | @rem Use of this source code is governed by a BSD-style license that can be 3 | @rem found in the LICENSE file. 4 | 5 | @python %~dp0/samples %* 6 | -------------------------------------------------------------------------------- /tools/pkgsrc/description: -------------------------------------------------------------------------------- 1 | Node.js is an evented I/O framework for the V8 JavaScript engine. It is 2 | intended for writing scalable network programs such as web servers. 3 | 4 | Packaged by nodejs.org 5 | 6 | Homepage: 7 | http://nodejs.org/ 8 | -------------------------------------------------------------------------------- /deps/npm/bin/npm.cmd: -------------------------------------------------------------------------------- 1 | :: Created by npm, please don't edit manually. 2 | @IF EXIST "%~dp0\node.exe" ( 3 | "%~dp0\node.exe" "%~dp0\.\node_modules\npm\bin\npm-cli.js" %* 4 | ) ELSE ( 5 | node "%~dp0\.\node_modules\npm\bin\npm-cli.js" %* 6 | ) 7 | -------------------------------------------------------------------------------- /deps/openssl/openssl/util/extract-section.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | 3 | while() { 4 | if (/=for\s+comment\s+openssl_manual_section:(\S+)/) 5 | { 6 | print "$1\n"; 7 | exit 0; 8 | } 9 | } 10 | 11 | print "$ARGV[0]\n"; 12 | 13 | -------------------------------------------------------------------------------- /deps/npm/node_modules/init-package-json/node_modules/promzard/test/simple.input: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "a": 1 + 2, 3 | "b": prompt('To be or not to be?', '!2b'), 4 | "c": { 5 | "x": prompt(), 6 | "y": tmpdir + "/y/file.txt" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /deps/npm/node_modules/node-gyp/gyp/gyp.bat: -------------------------------------------------------------------------------- 1 | @rem Copyright (c) 2009 Google Inc. All rights reserved. 2 | @rem Use of this source code is governed by a BSD-style license that can be 3 | @rem found in the LICENSE file. 4 | 5 | @python "%~dp0/gyp" %* 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/which/README.md: -------------------------------------------------------------------------------- 1 | The "which" util from npm's guts. 2 | 3 | Finds the first instance of a specified executable in the PATH 4 | environment variable. Does not cache the results, so `hash -r` is not 5 | needed when the PATH changes. 6 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/aes/README: -------------------------------------------------------------------------------- 1 | This is an OpenSSL-compatible version of AES (also called Rijndael). 2 | aes_core.c is basically the same as rijndael-alg-fst.c but with an 3 | API that looks like the rest of the OpenSSL symmetric cipher suite. 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/threads/pthread2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # build using pthreads where it's already built into the system 4 | # 5 | /bin/rm -f mttest 6 | gcc -DPTHREADS -I../../include -g mttest.c -o mttest -L../.. -lssl -lcrypto -lpthread 7 | 8 | -------------------------------------------------------------------------------- /deps/v8/test/message/single-function-literal.out: -------------------------------------------------------------------------------- 1 | undefined:1: SyntaxError: Single function literal required 2 | (function() { return 5; })(); 3 | ^ 4 | SyntaxError: Single function literal required 5 | at *%(basename)s:32:16 -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/node-uuid/LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010 Robert Kieffer 2 | 3 | Dual licensed under the [MIT](http://en.wikipedia.org/wiki/MIT_License) and [GPL](http://en.wikipedia.org/wiki/GNU_General_Public_License) licenses. 4 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/dsa/README: -------------------------------------------------------------------------------- 1 | The stuff in here is based on patches supplied to me by 2 | Steven Schoch to do DSS. 3 | I have since modified a them a little but a debt of gratitude 4 | is due for doing the initial work. 5 | -------------------------------------------------------------------------------- /deps/openssl/openssl/ms/tpemce.bat: -------------------------------------------------------------------------------- 1 | rem called by testpemce 2 | 3 | echo test %1 %2 4 | cecopy %2 CE:\OpenSSL 5 | cerun CE:\OpenSSL\%ssleay% %1 -in \OpenSSL\%2 -out \OpenSSL\%tmp1% 6 | del %tmp1% >nul 2>&1 7 | cecopy CE:\OpenSSL\%tmp1% . 8 | %cmp% %2 %tmp1% 9 | -------------------------------------------------------------------------------- /deps/npm/node_modules/node-gyp/gyp/AUTHORS: -------------------------------------------------------------------------------- 1 | # Names should be added to this file like so: 2 | # Name or Organization 3 | 4 | Google Inc. 5 | Bloomberg Finance L.P. 6 | 7 | Steven Knight 8 | Ryan Norton 9 | -------------------------------------------------------------------------------- /deps/npm/node_modules/node-gyp/gyp/gyp_dummy.c: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2009 Google Inc. All rights reserved. 2 | * Use of this source code is governed by a BSD-style license that can be 3 | * found in the LICENSE file. */ 4 | 5 | int main() { 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npmconf/node_modules/config-chain/test/broken.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | var cc = require('..') 4 | var assert = require('assert') 5 | 6 | 7 | //throw on invalid json 8 | assert.throws(function () { 9 | cc(__dirname + '/broken.json') 10 | }) 11 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-bundled-git/package.json: -------------------------------------------------------------------------------- 1 | {"name":"npm-test-bundled-git" 2 | ,"scripts":{"test":"node test.js"} 3 | ,"version":"1.2.5" 4 | ,"dependencies":{"glob":"git://github.com/isaacs/node-glob.git#npm-test"} 5 | ,"bundledDependencies":["glob"]} 6 | -------------------------------------------------------------------------------- /deps/npm/test/tap/ignore-shrinkwrap/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Rocko Artischocko", 3 | "name": "ignore-shrinkwrap", 4 | "version": "0.0.0", 5 | "dependencies": { 6 | "npm-test-ignore-shrinkwrap-file": "http://localhost:1337/package.js" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/engines/rsaref/rsaref.ec: -------------------------------------------------------------------------------- 1 | # configuration file for util/mkerr.pl 2 | # 3 | # use like this: 4 | # 5 | # perl ../../../util/mkerr.pl -conf rsaref.ec \ 6 | # -nostatic -staticloader -write *.c 7 | 8 | L RSAREF rsaref_err.h rsaref_err.c 9 | -------------------------------------------------------------------------------- /tools/blog/node_modules/glob/node_modules/graceful-fs/README.md: -------------------------------------------------------------------------------- 1 | Just like node's `fs` module, but it does an incremental back-off when 2 | EMFILE is encountered. 3 | 4 | Useful in asynchronous situations where one needs to try to open lots 5 | and lots of files. 6 | -------------------------------------------------------------------------------- /tools/wrk/src/units.h: -------------------------------------------------------------------------------- 1 | #ifndef UNITS_H 2 | #define UNITS_H 3 | 4 | char *format_binary(long double); 5 | char *format_metric(long double); 6 | char *format_time_us(long double); 7 | 8 | int scan_metric(char *, uint64_t *); 9 | 10 | #endif /* UNITS_H */ 11 | -------------------------------------------------------------------------------- /deps/npm/html/dochead.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | @NAME@ 4 | 5 | 6 | 7 | 8 |
9 | -------------------------------------------------------------------------------- /deps/npm/node_modules/node-gyp/gyp/samples/samples.bat: -------------------------------------------------------------------------------- 1 | @rem Copyright (c) 2009 Google Inc. All rights reserved. 2 | @rem Use of this source code is governed by a BSD-style license that can be 3 | @rem found in the LICENSE file. 4 | 5 | @python %~dp0/samples %* 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/run.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var far = require('far').create(); 3 | 4 | far.add(__dirname); 5 | far.include(/test-.*\.js$/); 6 | 7 | far.execute(); 8 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/http-signature/.dir-locals.el: -------------------------------------------------------------------------------- 1 | ((nil . ((indent-tabs-mode . nil) 2 | (tab-width . 8) 3 | (fill-column . 80))) 4 | (js-mode . ((js-indent-level . 2) 5 | (indent-tabs-mode . nil) 6 | ))) -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-test-package/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-test-package" 2 | , "author" : "Testy McMock" 3 | , "version" : "1.2.3-99-b" 4 | , "description" : "This is a test package used for debugging. It has some random data and that's all." 5 | } 6 | -------------------------------------------------------------------------------- /deps/openssl/openssl/engines/vax.opt: -------------------------------------------------------------------------------- 1 | ! 2 | ! Ensure transfer vector is at beginning of image 3 | ! 4 | CLUSTER=FIRST 5 | COLLECT=FIRST,$$ENGINE 6 | ! 7 | ! make psects nonshareable so image can be installed. 8 | ! 9 | PSECT_ATTR=$CHAR_STRING_CONSTANTS,NOWRT 10 | -------------------------------------------------------------------------------- /test/fixtures/module-require/parent/index.js: -------------------------------------------------------------------------------- 1 | var child = require('../child'); 2 | //console.log(child.module.require, child.module); 3 | console.log(child.module.require('target')); 4 | console.log(child.loaded); 5 | exports.loaded = child.module.require('target'); 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/README.md: -------------------------------------------------------------------------------- 1 | # npm-init 2 | 3 | An initter you init wit, innit? 4 | 5 | ## More stuff here 6 | 7 | Blerp derp herp lerg borgle pop munch efemerate baz foo a gandt synergy 8 | jorka chatt slurm. 9 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/README.md: -------------------------------------------------------------------------------- 1 | cryptiles 2 | ========= 3 | 4 | General purpose crypto utilities 5 | 6 | [![Build Status](https://secure.travis-ci.org/hueniverse/cryptiles.png)](http://travis-ci.org/hueniverse/cryptiles) 7 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/asn1/README.ASN1: -------------------------------------------------------------------------------- 1 | This is a demo of the new ASN1 code. Its an OCSP ASN1 module. Doesn't 2 | do much yet other than demonstrate what the new ASN1 modules might look 3 | like. 4 | 5 | It wont even compile yet: the new code isn't in place. 6 | 7 | 8 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/engines/ibmca/hw_ibmca.ec: -------------------------------------------------------------------------------- 1 | # configuration file for util/mkerr.pl 2 | # 3 | # use like this: 4 | # 5 | # perl ../../../util/mkerr.pl -conf hw_ibmca.ec \ 6 | # -nostatic -staticloader -write *.c 7 | 8 | L IBMCA hw_ibmca_err.h hw_ibmca_err.c 9 | -------------------------------------------------------------------------------- /deps/openssl/openssl/ms/do_nt.bat: -------------------------------------------------------------------------------- 1 | 2 | perl util\mkfiles.pl >MINFO 3 | perl util\mk1mf.pl no-asm VC-NT >ms\nt.mak 4 | perl util\mk1mf.pl dll no-asm VC-NT >ms\ntdll.mak 5 | 6 | perl util\mkdef.pl libeay NT > ms\libeay32.def 7 | perl util\mkdef.pl ssleay NT > ms\ssleay32.def 8 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/threads/pthread.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # build using pthreads 4 | # 5 | # http://www.mit.edu:8001/people/proven/pthreads.html 6 | # 7 | /bin/rm -f mttest 8 | pgcc -DPTHREADS -I../../include -g mttest.c -o mttest -L../.. -lssl -lcrypto 9 | 10 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/engines/zencod/hw_zencod.ec: -------------------------------------------------------------------------------- 1 | # configuration file for util/mkerr.pl 2 | # 3 | # use like this: 4 | # 5 | # perl ../../../util/mkerr.pl -conf hw_zencod.ec \ 6 | # -nostatic -staticloader -write *.c 7 | 8 | L ZENCOD hw_zencod_err.h hw_zencod_err.c 9 | -------------------------------------------------------------------------------- /tools/osx-productsign.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -x 4 | set -e 5 | 6 | if ! [ -n "$SIGN" ]; then 7 | echo "No SIGN environment var. Skipping codesign." >&2 8 | exit 0 9 | fi 10 | 11 | productsign --sign "$SIGN" "$PKG" "$PKG"-SIGNED 12 | mv "$PKG"-SIGNED "$PKG" 13 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/qs/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "support/expresso"] 2 | path = support/expresso 3 | url = git://github.com/visionmedia/expresso.git 4 | [submodule "support/should"] 5 | path = support/should 6 | url = git://github.com/visionmedia/should.js.git 7 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-bundled-git/test.js: -------------------------------------------------------------------------------- 1 | var a = require("./node_modules/glob/node_modules/minimatch/package.json") 2 | var e = require("./minimatch-expected.json") 3 | var assert = require("assert") 4 | assert.deepEqual(a, e, "didn't get expected minimatch/package.json") 5 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-platform/package.json: -------------------------------------------------------------------------------- 1 | {"name":"npm-test-platform" 2 | ,"version":"9.9.9-9" 3 | ,"homepage":"http://www.youtube.com/watch?v=dQw4w9WgXcQ" 4 | ,"os":["!this_is_not_a_real_os", "!neither_is_this"] 5 | ,"cpu":["!this_is_not_a_real_cpu","!this_isnt_either"]} 6 | -------------------------------------------------------------------------------- /deps/openssl/openssl/util/tab_num.pl: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | 3 | $num=1; 4 | $width=40; 5 | 6 | while (<>) 7 | { 8 | chop; 9 | 10 | $i=length($_); 11 | 12 | $n=$width-$i; 13 | $i=int(($n+7)/8); 14 | print $_.("\t" x $i).$num."\n"; 15 | $num++; 16 | } 17 | 18 | -------------------------------------------------------------------------------- /deps/cares/.gitignore: -------------------------------------------------------------------------------- 1 | /Debug/ 2 | /build/gyp 3 | /out/ 4 | /Release/ 5 | 6 | /cares.Makefile 7 | /cares.target.mk 8 | 9 | /*.opensdf 10 | /*.sdf 11 | /*.sln 12 | /*.suo 13 | /*.vcxproj 14 | /*.vcxproj.filters 15 | /*.vcxproj.user 16 | 17 | *.so 18 | *.[oa] 19 | .buildstamp 20 | -------------------------------------------------------------------------------- /deps/npm/node_modules/retry/test/common.js: -------------------------------------------------------------------------------- 1 | var common = module.exports; 2 | var path = require('path'); 3 | 4 | var rootDir = path.join(__dirname, '..'); 5 | common.dir = { 6 | lib: rootDir + '/lib' 7 | }; 8 | 9 | common.assert = require('assert'); 10 | common.fake = require('fake'); -------------------------------------------------------------------------------- /deps/npm/node_modules/rimraf/AUTHORS: -------------------------------------------------------------------------------- 1 | # Authors sorted by whether or not they're me. 2 | Isaac Z. Schlueter (http://blog.izs.me) 3 | Wayne Larsen (http://github.com/wvl) 4 | ritch 5 | Marcel Laverdet 6 | Yosef Dinerstein 7 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-platform-all/package.json: -------------------------------------------------------------------------------- 1 | {"name":"npm-test-platform-all" 2 | ,"version":"9.9.9-9" 3 | ,"homepage":"http://www.zombo.com/" 4 | ,"os":["darwin","linux","win32","solaris","haiku","sunos","freebsd","openbsd","netbsd"] 5 | ,"cpu":["arm","mips","ia32","x64","sparc"]} 6 | -------------------------------------------------------------------------------- /test/message/max_tick_depth.out: -------------------------------------------------------------------------------- 1 | tick 20 2 | tick 19 3 | tick 18 4 | tick 17 5 | tick 16 6 | tick 15 7 | tick 14 8 | tick 13 9 | tick 12 10 | tick 11 11 | tick 10 12 | tick 9 13 | tick 8 14 | tick 7 15 | tick 6 16 | tick 5 17 | tick 4 18 | tick 3 19 | tick 2 20 | tick 1 21 | tick 0 22 | -------------------------------------------------------------------------------- /tools/blog/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/AUTHORS: -------------------------------------------------------------------------------- 1 | # Authors, sorted by whether or not they are me 2 | Isaac Z. Schlueter 3 | Carlos Brito Lage 4 | Marko Mikulicic 5 | Trent Mick 6 | -------------------------------------------------------------------------------- /tools/msvs/msi/WixUI_en-us.wxl: -------------------------------------------------------------------------------- 1 | 2 | 3 | Choose a custom location or click Next to install 4 | 5 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npmconf/node_modules/config-chain/test/env.js: -------------------------------------------------------------------------------- 1 | var cc = require('..') 2 | var assert = require('assert') 3 | 4 | assert.deepEqual({ 5 | hello: true 6 | }, cc.env('test_', { 7 | 'test_hello': true, 8 | 'ignore_this': 4, 9 | 'ignore_test_this_too': [] 10 | })) 11 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/common.js: -------------------------------------------------------------------------------- 1 | var common = module.exports; 2 | 3 | common.DelayedStream = require('..'); 4 | common.assert = require('assert'); 5 | common.fake = require('fake'); 6 | common.PORT = 49252; 7 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-files/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-files" 2 | , "version":"1.2.5" 3 | , "files": 4 | [ "include4" 5 | , "sub/include" 6 | , "sub/include2" 7 | , "sub/include4" 8 | , "test.sh" 9 | , ".npmignore" ] 10 | , "scripts":{"test":"bash test.sh"}} 11 | -------------------------------------------------------------------------------- /test/fixtures/test_rsa_pubkey_2.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PUBLIC KEY----- 2 | MIGHAoGBAKwyBF3HER55exw++oXOn/r8gh2h4pKUGfvfrUVZnAxBQbSoJutdi11c 3 | /KqnYHgZOG+IiqJolkhMJNjzsKJXtsW8faWZQwkuwJzcFpDhcVBsRTkPmM0V8/uD 4 | vwwQpsJv2sR9gwjYQbBt8pFRlSth4Fp3MgwcQwQcPKIFesKiFNcxAgEj 5 | -----END RSA PUBLIC KEY----- 6 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npm-registry-client/lib/stars.js: -------------------------------------------------------------------------------- 1 | var qs = require('querystring') 2 | 3 | module.exports = stars 4 | 5 | function stars (name, cb) { 6 | name = encodeURIComponent(name) 7 | var path = "/-/_view/starredByUser?key=\""+name+"\"" 8 | this.request("GET", path, cb) 9 | } 10 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/dh/dh1024.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MIGHAoGBAJf2QmHKtQXdKCjhPx1ottPb0PMTBH9A6FbaWMsTuKG/K3g6TG1Z1fkq 3 | /Gz/PWk/eLI9TzFgqVAuPvr3q14a1aZeVUMTgo2oO5/y2UHe6VaJ+trqCTat3xlx 4 | /mNbIK9HA2RgPC3gWfVLZQrY+gz3ASHHR5nXWHEyvpuZm7m3h+irAgEC 5 | -----END DH PARAMETERS----- 6 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/engines/cluster_labs/hw_cluster_labs.ec: -------------------------------------------------------------------------------- 1 | # configuration file for util/mkerr.pl 2 | # 3 | # use like this: 4 | # 5 | # perl ../../../util/mkerr.pl -conf hw_cluster_labs.ec \ 6 | # -nostatic -staticloader -write *.c 7 | 8 | L CL hw_cluster_labs_err.h hw_cluster_labs_err.c 9 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/sign/Makefile: -------------------------------------------------------------------------------- 1 | CC=cc 2 | CFLAGS= -g -I../../include -Wall 3 | LIBS= -L../.. -lcrypto 4 | EXAMPLES=sign 5 | 6 | all: $(EXAMPLES) 7 | 8 | sign: sign.o 9 | $(CC) -o sign sign.o $(LIBS) 10 | 11 | clean: 12 | rm -f $(EXAMPLES) *.o 13 | 14 | test: all 15 | ./sign 16 | -------------------------------------------------------------------------------- /test/message/timeout_throw.out: -------------------------------------------------------------------------------- 1 | *test*message*timeout_throw.js:* 2 | undefined_reference_error_maker; 3 | ^ 4 | ReferenceError: undefined_reference_error_maker is not defined 5 | at null._onTimeout (*test*message*timeout_throw.js:*:*) 6 | at Timer.listOnTimeout [as ontimeout] (timers.js:*:*) 7 | -------------------------------------------------------------------------------- /deps/npm/node_modules/glob/examples/usr-local.js: -------------------------------------------------------------------------------- 1 | var Glob = require("../").Glob 2 | 3 | var pattern = "{./*/*,/*,/usr/local/*}" 4 | console.log(pattern) 5 | 6 | var mg = new Glob(pattern, {mark: true}, function (er, matches) { 7 | console.log("matches", matches) 8 | }) 9 | console.log("after") 10 | -------------------------------------------------------------------------------- /deps/npm/test/disabled/failer/package.json: -------------------------------------------------------------------------------- 1 | { "name" : "npm-test-failer" 2 | , "version" : "9999.999.99" 3 | , "dependencies" : { "base64" : "*" } 4 | , "scripts" : { "install" : "exit 1", "test": "echo 'This is where the test output would go'; echo 'more test output'; echo 'MOAR MOAR MoAR'; exit 1" } 5 | } 6 | -------------------------------------------------------------------------------- /deps/openssl/openssl/doc/openssl_button.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /deps/v8/build/README.txt: -------------------------------------------------------------------------------- 1 | For build instructions, please refer to: 2 | 3 | https://code.google.com/p/v8/wiki/BuildingWithGYP 4 | 5 | TL;DR version on *nix: 6 | $ make dependencies # Only needed once. 7 | $ make ia32.release -j8 8 | $ make ia32.release.check # Optionally: run tests. 9 | 10 | -------------------------------------------------------------------------------- /deps/npm/lib/get.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = get 3 | 4 | get.usage = "npm get (See `npm config`)" 5 | 6 | var npm = require("./npm.js") 7 | 8 | get.completion = npm.commands.config.completion 9 | 10 | function get (args, cb) { 11 | npm.commands.config(["get"].concat(args), cb) 12 | } 13 | -------------------------------------------------------------------------------- /deps/npm/node_modules/glob/examples/g.js: -------------------------------------------------------------------------------- 1 | var Glob = require("../").Glob 2 | 3 | var pattern = "test/a/**/[cg]/../[cg]" 4 | console.log(pattern) 5 | 6 | var mg = new Glob(pattern, {mark: true, sync:true}, function (er, matches) { 7 | console.log("matches", matches) 8 | }) 9 | console.log("after") 10 | -------------------------------------------------------------------------------- /deps/npm/node_modules/init-package-json/node_modules/promzard/example/npm-init/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "npm-init", 3 | "version": "0.0.0", 4 | "description": "an initter you init wit, innit?", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "asdf" 8 | }, 9 | "license": "BSD" 10 | } -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-url-dep/package.json: -------------------------------------------------------------------------------- 1 | { "name":"npm-test-url-dep" 2 | , "version" : "1.2.3" 3 | , "dependencies" : 4 | { "jsonify" : "https://github.com/substack/jsonify/tarball/master" 5 | , "sax": "isaacs/sax-js" 6 | , "canonical-host": "git://github.com/isaacs/canonical-host" 7 | } } 8 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/tunala/Makefile.am: -------------------------------------------------------------------------------- 1 | # Our includes come from the OpenSSL build-tree we're in 2 | INCLUDES = -I$(top_builddir)/../../include 3 | 4 | bin_PROGRAMS = tunala 5 | 6 | tunala_SOURCES = tunala.c buffer.c cb.c ip.c sm.c breakage.c 7 | tunala_LDADD = -L$(top_builddir)/../.. -lssl -lcrypto 8 | -------------------------------------------------------------------------------- /deps/v8/benchmarks/spinning-balls/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /tools/blog/node_modules/glob/examples/g.js: -------------------------------------------------------------------------------- 1 | var Glob = require("../").Glob 2 | 3 | var pattern = "test/a/**/[cg]/../[cg]" 4 | console.log(pattern) 5 | 6 | var mg = new Glob(pattern, {mark: true, sync:true}, function (er, matches) { 7 | console.log("matches", matches) 8 | }) 9 | console.log("after") 10 | -------------------------------------------------------------------------------- /tools/blog/node_modules/glob/examples/usr-local.js: -------------------------------------------------------------------------------- 1 | var Glob = require("../").Glob 2 | 3 | var pattern = "{./*/*,/*,/usr/local/*}" 4 | console.log(pattern) 5 | 6 | var mg = new Glob(pattern, {mark: true}, function (er, matches) { 7 | console.log("matches", matches) 8 | }) 9 | console.log("after") 10 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-env-reader/test.js: -------------------------------------------------------------------------------- 1 | var envs = [] 2 | for (var e in process.env) { 3 | if (e.match(/npm|^path$/i)) envs.push(e + '=' + process.env[e]) 4 | } 5 | envs.sort(function (a, b) { 6 | return a === b ? 0 : a > b ? -1 : 1 7 | }).forEach(function (e) { 8 | console.log(e) 9 | }) 10 | -------------------------------------------------------------------------------- /deps/openssl/openssl/tools/c89.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -k 2 | # 3 | # Re-order arguments so that -L comes first 4 | # 5 | opts="" 6 | lopts="" 7 | 8 | for arg in $* ; do 9 | case $arg in 10 | -L*) lopts="$lopts $arg" ;; 11 | *) opts="$opts $arg" ;; 12 | esac 13 | done 14 | 15 | c89 $lopts $opts 16 | -------------------------------------------------------------------------------- /deps/npm/lib/utils/is-git-url.js: -------------------------------------------------------------------------------- 1 | module.exports = isGitUrl 2 | 3 | function isGitUrl (url) { 4 | switch (url.protocol) { 5 | case "git:": 6 | case "git+http:": 7 | case "git+https:": 8 | case "git+rsync:": 9 | case "git+ftp:": 10 | case "git+ssh:": 11 | return true 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npm-registry-client/test/00-setup.js: -------------------------------------------------------------------------------- 1 | var tap = require('tap') 2 | var rimraf = require('rimraf') 3 | 4 | tap.test('setup', function (t) { 5 | rimraf(__dirname + '/fixtures/cache', function (er) { 6 | if (er) throw er 7 | t.pass('cache cleaned') 8 | t.end() 9 | }) 10 | }) 11 | -------------------------------------------------------------------------------- /deps/npm/node_modules/read-package-json/node_modules/normalize-package-data/node_modules/github-url-from-git/History.md: -------------------------------------------------------------------------------- 1 | 2 | 1.1.1 / 2013-04-23 3 | ================== 4 | 5 | * package.json: Move test stuff to devDeps 6 | 7 | 1.1.0 / 2013-04-19 8 | ================== 9 | 10 | * Add support for gist urls 11 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | 19 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-blerg/test.js: -------------------------------------------------------------------------------- 1 | 2 | var assert = require("assert") 3 | assert.equal(undefined, process.env.npm_config__password, "password exposed!") 4 | assert.equal(undefined, process.env.npm_config__auth, "auth exposed!") 5 | assert.equal(undefined, process.env.npm_config__authCrypt, "authCrypt exposed!") 6 | -------------------------------------------------------------------------------- /deps/openssl/openssl/ms/do_nasm.bat: -------------------------------------------------------------------------------- 1 | 2 | perl util\mkfiles.pl >MINFO 3 | perl util\mk1mf.pl nasm VC-WIN32 >ms\nt.mak 4 | perl util\mk1mf.pl dll nasm VC-WIN32 >ms\ntdll.mak 5 | perl util\mk1mf.pl nasm BC-NT >ms\bcb.mak 6 | 7 | perl util\mkdef.pl 32 libeay > ms\libeay32.def 8 | perl util\mkdef.pl 32 ssleay > ms\ssleay32.def 9 | -------------------------------------------------------------------------------- /test/fixtures/child-process-spawn-node.js: -------------------------------------------------------------------------------- 1 | var assert = require('assert'); 2 | 3 | function onmessage(m) { 4 | console.log('CHILD got message:', m); 5 | assert.ok(m.hello); 6 | process.removeListener('message', onmessage); 7 | } 8 | 9 | process.on('message', onmessage); 10 | process.send({ foo: 'bar' }); 11 | -------------------------------------------------------------------------------- /test/fixtures/uncaught-exceptions/domain.js: -------------------------------------------------------------------------------- 1 | var domain = require('domain'); 2 | 3 | var d = domain.create(); 4 | d.on('error', function(err) { 5 | console.log('[ignored]', err.stack); 6 | }); 7 | 8 | d.run(function() { 9 | setImmediate(function() { 10 | throw new Error('in domain'); 11 | }); 12 | }); 13 | -------------------------------------------------------------------------------- /tools/osx-codesign.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -x 4 | set -e 5 | 6 | if ! [ -n "$SIGN" ] && [ $STEP -eq 1 ]; then 7 | echo "No SIGN environment var. Skipping codesign." >&2 8 | exit 0 9 | fi 10 | 11 | codesign -s "$SIGN" "$PKGDIR"/usr/local/bin/node 12 | codesign -s "$SIGN" "$PKGDIR"/32/usr/local/bin/node 13 | -------------------------------------------------------------------------------- /deps/npm/node_modules/npm-registry-client/test/zz-cleanup.js: -------------------------------------------------------------------------------- 1 | var tap = require('tap') 2 | var rimraf = require('rimraf') 3 | 4 | tap.test('teardown', function (t) { 5 | rimraf(__dirname + '/fixtures/cache', function (er) { 6 | if (er) throw er 7 | t.pass('cache cleaned') 8 | t.end() 9 | }) 10 | }) 11 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-blerg3/test.js: -------------------------------------------------------------------------------- 1 | 2 | var assert = require("assert") 3 | assert.equal(undefined, process.env.npm_config__password, "password exposed!") 4 | assert.equal(undefined, process.env.npm_config__auth, "auth exposed!") 5 | assert.equal(undefined, process.env.npm_config__authCrypt, "authCrypt exposed!") 6 | -------------------------------------------------------------------------------- /deps/openssl/buildinf.h: -------------------------------------------------------------------------------- 1 | /* crypto/Makefile usually creates the file at build time. Since we don't care 2 | * about the build timestamp we fill in placeholder values. */ 3 | #ifndef MK1MF_BUILD 4 | #define CFLAGS "-C flags not included-" 5 | #define PLATFORM "google" 6 | #define DATE "Sun Jan 1 00:00:00 GMT 1970" 7 | #endif 8 | -------------------------------------------------------------------------------- /test/fixtures/test_rsa_pubkey.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDCFENGw33yGihy92pDjZQhl0C3 3 | 6rPJj+CvfSC8+q28hxA161QFNUd13wuCTUcq0Qd2qsBe/2hFyc2DCJJg0h1L78+6 4 | Z4UMR7EOcpfdUE9Hf3m/hs+FUR45uBJeDK1HSFHD8bHKD6kv8FPGfJTotc+2xjJw 5 | oYi+1hqp1fIekaxsyQIDAQAB 6 | -----END PUBLIC KEY----- 7 | -------------------------------------------------------------------------------- /tools/gyp/tools/Xcode/README: -------------------------------------------------------------------------------- 1 | Specifications contains syntax formatters for Xcode 3. These do not appear to be supported yet on Xcode 4. To use these with Xcode 3 please install both the gyp.pbfilespec and gyp.xclangspec files in 2 | 3 | ~/Library/Application Support/Developer/Shared/Xcode/Specifications/ 4 | 5 | and restart Xcode. -------------------------------------------------------------------------------- /tools/updateAuthors.awk: -------------------------------------------------------------------------------- 1 | # git log --pretty='format:%ae %an' | tac | awk -f tools/updateAuthors.awk 2 | { 3 | if (!x[$1]++) { 4 | #print $0 5 | n = split($0, a, " "); 6 | s = a[2]; 7 | for (i = 3; i <= n ; i++) { 8 | s = s " " a[i]; 9 | } 10 | print s " <" $1 ">"; 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /benchmark/http_simple_cluster.js: -------------------------------------------------------------------------------- 1 | var cluster = require('cluster'); 2 | var os = require('os'); 3 | 4 | if (cluster.isMaster) { 5 | console.log('master running on pid %d', process.pid); 6 | for (var i = 0, n = os.cpus().length; i < n; ++i) cluster.fork(); 7 | } else { 8 | require(__dirname + '/http_simple.js'); 9 | } 10 | -------------------------------------------------------------------------------- /deps/http_parser/.mailmap: -------------------------------------------------------------------------------- 1 | # update AUTHORS with: 2 | # git log --all --reverse --format='%aN <%aE>' | perl -ne 'BEGIN{print "# Authors ordered by first contribution.\n"} print unless $h{$_}; $h{$_} = 1' > AUTHORS 3 | Ryan Dahl 4 | Salman Haq 5 | Simon Zimmermann 6 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-missing-bindir/test.js: -------------------------------------------------------------------------------- 1 | 2 | var assert = require("assert") 3 | assert.equal(undefined, process.env.npm_config__password, "password exposed!") 4 | assert.equal(undefined, process.env.npm_config__auth, "auth exposed!") 5 | assert.equal(undefined, process.env.npm_config__authCrypt, "authCrypt exposed!") 6 | -------------------------------------------------------------------------------- /deps/openssl/openssl/apps/dsap.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DSA PARAMETERS----- 2 | MIGcAkEA+ZiKEvZmc9MtnaFZh4NiZ3oZS4J1PHvPrm9MXj5ntVheDPkdmBDTncya 3 | GAJcMjwsyB/GvLDGd6yGCw/8eF+09wIVAK3VagOxGd/Q4Af5NbxR5FB7CXEjAkA2 4 | t/q7HgVLi0KeKvcDG8BRl3wuy7bCvpjgtWiJc/tpvcuzeuAayH89UofjAGueKjXD 5 | ADiRffvSdhrNw5dkqdql 6 | -----END DSA PARAMETERS----- 7 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/lhash/num.pl: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | 3 | #node 10 -> 4 4 | 5 | while (<>) 6 | { 7 | next unless /^node/; 8 | chop; 9 | @a=split; 10 | $num{$a[3]}++; 11 | } 12 | 13 | @a=sort {$a <=> $b } keys %num; 14 | foreach (0 .. $a[$#a]) 15 | { 16 | printf "%4d:%4d\n",$_,$num{$_}; 17 | } 18 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/state_machine/Makefile: -------------------------------------------------------------------------------- 1 | CFLAGS=-I../../include -Wall -Werror -g 2 | 3 | all: state_machine 4 | 5 | state_machine: state_machine.o 6 | $(CC) -o state_machine state_machine.o -L../.. -lssl -lcrypto 7 | 8 | test: state_machine 9 | ./state_machine 10000 ../../apps/server.pem ../../apps/server.pem 10 | -------------------------------------------------------------------------------- /deps/openssl/openssl/shlib/irix.sh: -------------------------------------------------------------------------------- 1 | FLAGS="-DTERMIOS -O2 -mips2 -DB_ENDIAN -fomit-frame-pointer -Wall -Iinclude" 2 | SHFLAGS="-DPIC -fpic" 3 | 4 | gcc -c -Icrypto $SHFLAGS $FLAGS -o crypto.o crypto/crypto.c 5 | ld -shared -o libcrypto.so crypto.o 6 | gcc -c -Issl $SHFLAGS $FLAGS -o ssl.o ssl/ssl.c 7 | ld -shared -o libssl.so ssl.o 8 | -------------------------------------------------------------------------------- /deps/v8/test/message/paren_in_arg_string.out: -------------------------------------------------------------------------------- 1 | *%(basename)s:29: SyntaxError: Function arg string contains parenthesis 2 | var paren_in_arg_string_bad = new Function(')', 'return;'); 3 | ^ 4 | SyntaxError: Function arg string contains parenthesis 5 | at Function () 6 | at *%(basename)s:29:31 -------------------------------------------------------------------------------- /tools/blog/node_modules/ejs/examples/list.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Module dependencies. 4 | */ 5 | 6 | var ejs = require('../') 7 | , fs = require('fs') 8 | , str = fs.readFileSync(__dirname + '/list.ejs', 'utf8'); 9 | 10 | var ret = ejs.render(str, { 11 | names: ['foo', 'bar', 'baz'] 12 | }); 13 | 14 | console.log(ret); -------------------------------------------------------------------------------- /tools/wrk/src/config.h: -------------------------------------------------------------------------------- 1 | #ifndef CONFIG_H 2 | #define CONFIG_H 3 | 4 | #if defined(__FreeBSD__) || defined(__APPLE__) 5 | #define HAVE_KQUEUE 6 | #elif defined(__sun) 7 | #define HAVE_EVPORT 8 | #elif defined(__linux__) 9 | #define HAVE_EPOLL 10 | #define _POSIX_C_SOURCE 200809L 11 | #endif 12 | 13 | #endif /* CONFIG_H */ 14 | -------------------------------------------------------------------------------- /deps/openssl/openssl/apps/dsa512.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DSA PARAMETERS----- 2 | MIGdAkEAnRtpjibb8isRcBmG9hnI+BnyGFOURgbQYlAzSwI8UjADizv5X9EkBk97 3 | TLqqQJv9luQ3M7stWtdaEUBmonZ9MQIVAPtT71C0QJIxVoZTeuiLIppJ+3GPAkEA 4 | gz6I5cWJc847bAFJv7PHnwrqRJHlMKrZvltftxDXibeOdPvPKR7rqCxUUbgQ3qDO 5 | L8wka5B33qJoplISogOdIA== 6 | -----END DSA PARAMETERS----- 7 | -------------------------------------------------------------------------------- /deps/v8/tools/freebsd-tick-processor: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # A wrapper script to call 'linux-tick-processor'. 4 | 5 | # Known issues on FreeBSD: 6 | # No ticks from C++ code. 7 | # You must have d8 built and in your path before calling this. 8 | 9 | tools_path=`cd $(dirname "$0");pwd` 10 | $tools_path/linux-tick-processor "$@" 11 | -------------------------------------------------------------------------------- /tools/closure_linter/PKG-INFO: -------------------------------------------------------------------------------- 1 | Metadata-Version: 1.0 2 | Name: closure_linter 3 | Version: 2.2.6 4 | Summary: Closure Linter 5 | Home-page: http://code.google.com/p/closure-linter 6 | Author: The Closure Linter Authors 7 | Author-email: opensource@google.com 8 | License: Apache 9 | Description: UNKNOWN 10 | Platform: UNKNOWN 11 | -------------------------------------------------------------------------------- /tools/getnodeisrelease.py: -------------------------------------------------------------------------------- 1 | import sys,os,re 2 | 3 | node_version_h = os.path.join(os.path.dirname(__file__), '..', 'src', 4 | 'node_version.h') 5 | 6 | f = open(node_version_h) 7 | 8 | for line in f: 9 | if re.match('#define NODE_VERSION_IS_RELEASE', line): 10 | release = int(line.split()[2]) 11 | print release 12 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/boom/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | 19 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/sntp/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | 19 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/cast/asm/readme: -------------------------------------------------------------------------------- 1 | There is a ppro flag in cast-586 which turns on/off 2 | generation of pentium pro/II friendly code 3 | 4 | This flag makes the inner loop one cycle longer, but generates 5 | code that runs %30 faster on the pentium pro/II, while only %7 slower 6 | on the pentium. By default, this flag is on. 7 | 8 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/README: -------------------------------------------------------------------------------- 1 | NOTE: Don't expect any of these programs to work with current 2 | OpenSSL releases, or even with later SSLeay releases. 3 | 4 | Original README: 5 | ============================================================================= 6 | 7 | Some demo programs sent to me by various people 8 | 9 | eric 10 | -------------------------------------------------------------------------------- /deps/npm/node_modules/glob/test/zz-cleanup.js: -------------------------------------------------------------------------------- 1 | // remove the fixtures 2 | var tap = require("tap") 3 | , rimraf = require("rimraf") 4 | , path = require("path") 5 | 6 | tap.test("cleanup fixtures", function (t) { 7 | rimraf(path.resolve(__dirname, "a"), function (er) { 8 | t.ifError(er, "removed") 9 | t.end() 10 | }) 11 | }) 12 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | 19 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/bn/asm/x86/div.pl: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | # x86 assember 3 | 4 | sub bn_div_words 5 | { 6 | local($name)=@_; 7 | 8 | &function_begin($name,""); 9 | &mov("edx",&wparam(0)); # 10 | &mov("eax",&wparam(1)); # 11 | &mov("ebx",&wparam(2)); # 12 | &div("ebx"); 13 | &function_end($name); 14 | } 15 | 1; 16 | -------------------------------------------------------------------------------- /deps/openssl/openssl/shlib/sun.sh: -------------------------------------------------------------------------------- 1 | FLAGS="-DTERMIO -O3 -DB_ENDIAN -fomit-frame-pointer -mv8 -Wall -Iinclude" 2 | SHFLAGS="-DPIC -fpic" 3 | 4 | gcc -c -Icrypto $SHFLAGS -fpic $FLAGS -o crypto.o crypto/crypto.c 5 | ld -G -z text -o libcrypto.so crypto.o 6 | 7 | gcc -c -Issl $SHFLAGS $FLAGS -o ssl.o ssl/ssl.c 8 | ld -G -z text -o libssl.so ssl.o 9 | -------------------------------------------------------------------------------- /deps/npm/bin/npm: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | basedir=`dirname "$0"` 4 | 5 | case `uname` in 6 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 7 | esac 8 | 9 | if [ -x "$basedir/node.exe" ]; then 10 | "$basedir/node.exe" "$basedir/node_modules/npm/bin/npm-cli.js" "$@" 11 | else 12 | node "$basedir/node_modules/npm/bin/npm-cli.js" "$@" 13 | fi 14 | -------------------------------------------------------------------------------- /deps/npm/node_modules/node-gyp/gyp/tools/Xcode/README: -------------------------------------------------------------------------------- 1 | Specifications contains syntax formatters for Xcode 3. These do not appear to be supported yet on Xcode 4. To use these with Xcode 3 please install both the gyp.pbfilespec and gyp.xclangspec files in 2 | 3 | ~/Library/Application Support/Developer/Shared/Xcode/Specifications/ 4 | 5 | and restart Xcode. -------------------------------------------------------------------------------- /tools/blog/node_modules/glob/test/zz-cleanup.js: -------------------------------------------------------------------------------- 1 | // remove the fixtures 2 | var tap = require("tap") 3 | , rimraf = require("rimraf") 4 | , path = require("path") 5 | 6 | tap.test("cleanup fixtures", function (t) { 7 | rimraf(path.resolve(__dirname, "a"), function (er) { 8 | t.ifError(er, "removed") 9 | t.end() 10 | }) 11 | }) 12 | -------------------------------------------------------------------------------- /deps/npm/doc/cli/npm-whoami.md: -------------------------------------------------------------------------------- 1 | npm-whoami(1) -- Display npm username 2 | ===================================== 3 | 4 | ## SYNOPSIS 5 | 6 | npm whoami 7 | 8 | ## DESCRIPTION 9 | 10 | Print the `username` config to standard output. 11 | 12 | ## SEE ALSO 13 | 14 | * npm-config(1) 15 | * npm-config(7) 16 | * npmrc(5) 17 | * npm-adduser(1) 18 | -------------------------------------------------------------------------------- /deps/npm/lib/set.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = set 3 | 4 | set.usage = "npm set (See `npm config`)" 5 | 6 | var npm = require("./npm.js") 7 | 8 | set.completion = npm.commands.config.completion 9 | 10 | function set (args, cb) { 11 | if (!args.length) return cb(set.usage) 12 | npm.commands.config(["set"].concat(args), cb) 13 | } 14 | -------------------------------------------------------------------------------- /tools/closure_linter/closure_linter.egg-info/PKG-INFO: -------------------------------------------------------------------------------- 1 | Metadata-Version: 1.0 2 | Name: closure-linter 3 | Version: 2.2.6 4 | Summary: Closure Linter 5 | Home-page: http://code.google.com/p/closure-linter 6 | Author: The Closure Linter Authors 7 | Author-email: opensource@google.com 8 | License: Apache 9 | Description: UNKNOWN 10 | Platform: UNKNOWN 11 | -------------------------------------------------------------------------------- /deps/npm/doc/cli/npm-prefix.md: -------------------------------------------------------------------------------- 1 | npm-prefix(1) -- Display prefix 2 | =============================== 3 | 4 | ## SYNOPSIS 5 | 6 | npm prefix 7 | 8 | ## DESCRIPTION 9 | 10 | Print the prefix to standard out. 11 | 12 | ## SEE ALSO 13 | 14 | * npm-root(1) 15 | * npm-bin(1) 16 | * npm-folders(5) 17 | * npm-config(1) 18 | * npm-config(7) 19 | * npmrc(5) 20 | -------------------------------------------------------------------------------- /deps/npm/node_modules/fstream-npm/node_modules/fstream-ignore/test/zz-cleanup.js: -------------------------------------------------------------------------------- 1 | var tap = require("tap") 2 | , rimraf = require("rimraf") 3 | , path = require("path") 4 | 5 | tap.test("remove fixtures", function (t) { 6 | rimraf(path.resolve(__dirname, "fixtures"), function (er) { 7 | t.ifError(er, "remove fixtures") 8 | t.end() 9 | }) 10 | }) 11 | -------------------------------------------------------------------------------- /deps/openssl/openssl/ms/do_win64i.bat: -------------------------------------------------------------------------------- 1 | 2 | perl util\mkfiles.pl >MINFO 3 | perl ms\uplink-ia64.pl > ms\uptable.asm 4 | ias -o ms\uptable.obj ms\uptable.asm 5 | perl util\mk1mf.pl VC-WIN64I >ms\nt.mak 6 | perl util\mk1mf.pl dll VC-WIN64I >ms\ntdll.mak 7 | 8 | perl util\mkdef.pl 32 libeay > ms\libeay32.def 9 | perl util\mkdef.pl 32 ssleay > ms\ssleay32.def 10 | -------------------------------------------------------------------------------- /tools/gyp/tools/emacs/run-unit-tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Copyright (c) 2012 Google Inc. All rights reserved. 3 | # Use of this source code is governed by a BSD-style license that can be 4 | # found in the LICENSE file. 5 | emacs --no-site-file --no-init-file --batch \ 6 | --load ert.el --load gyp.el --load gyp-tests.el \ 7 | -f ert-run-tests-batch-and-exit 8 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/hoek/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | complexity.md 19 | -------------------------------------------------------------------------------- /test/fixtures/breakpoints.js: -------------------------------------------------------------------------------- 1 | debugger; 2 | function a(x) { 3 | var i = 10; 4 | while (--i != 0); 5 | debugger; 6 | return i; 7 | } 8 | function b() { 9 | return ['hello', 'world'].join(' '); 10 | } 11 | a(); 12 | a(1); 13 | b(); 14 | b(); 15 | 16 | 17 | 18 | setInterval(function() { 19 | }, 5000); 20 | 21 | 22 | now = new Date(); 23 | debugger; 24 | -------------------------------------------------------------------------------- /test/fixtures/breakpoints_utf8.js: -------------------------------------------------------------------------------- 1 | debugger; 2 | function a(x) { 3 | var i = 10; 4 | while (--i != 0); 5 | debugger; 6 | return i; 7 | } 8 | function b() { 9 | return ['こんにち', 'わ'].join(' '); 10 | } 11 | a(); 12 | a(1); 13 | b(); 14 | b(); 15 | 16 | 17 | 18 | setInterval(function() { 19 | }, 5000); 20 | 21 | 22 | now = new Date(); 23 | debugger; 24 | -------------------------------------------------------------------------------- /deps/npm/doc/api/npm-bin.md: -------------------------------------------------------------------------------- 1 | npm-bin(3) -- Display npm bin folder 2 | ==================================== 3 | 4 | ## SYNOPSIS 5 | 6 | npm.commands.bin(args, cb) 7 | 8 | ## DESCRIPTION 9 | 10 | Print the folder where npm will install executables. 11 | 12 | This function should not be used programmatically. Instead, just refer 13 | to the `npm.bin` member. 14 | -------------------------------------------------------------------------------- /deps/npm/lib/root.js: -------------------------------------------------------------------------------- 1 | module.exports = root 2 | 3 | var npm = require("./npm.js") 4 | 5 | root.usage = "npm root\nnpm root -g\n(just prints the root folder)" 6 | 7 | function root (args, silent, cb) { 8 | if (typeof cb !== "function") cb = silent, silent = false 9 | if (!silent) console.log(npm.dir) 10 | process.nextTick(cb.bind(this, null, npm.dir)) 11 | } 12 | -------------------------------------------------------------------------------- /deps/npm/node_modules/lru-cache/AUTHORS: -------------------------------------------------------------------------------- 1 | # Authors, sorted by whether or not they are me 2 | Isaac Z. Schlueter 3 | Carlos Brito Lage 4 | Marko Mikulicic 5 | Trent Mick 6 | Kevin O'Hara 7 | Marco Rogers 8 | Jesse Dailey 9 | -------------------------------------------------------------------------------- /deps/openssl/openssl/test/testsslproxy: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | echo 'Testing a lot of proxy conditions.' 4 | echo 'Some of them may turn out being invalid, which is fine.' 5 | for auth in A B C BC; do 6 | for cond in A B C 'A|B&!C'; do 7 | sh ./testssl $1 $2 $3 "-proxy -proxy_auth $auth -proxy_cond $cond" 8 | if [ $? = 3 ]; then exit 1; fi 9 | done 10 | done 11 | -------------------------------------------------------------------------------- /tools/changelog-head.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cat ChangeLog | { 3 | s=-1 4 | while read line; do 5 | if [ "${line:0:1}" == "-" ]; then 6 | line=" $line" 7 | fi 8 | if [ "${line:0:1}" == "2" ]; then 9 | let "++s" 10 | fi 11 | if [ $s -eq 1 ]; then 12 | exit 13 | else 14 | echo "$line" 15 | fi 16 | done 17 | } 18 | 19 | -------------------------------------------------------------------------------- /deps/npm/doc/api/npm-stop.md: -------------------------------------------------------------------------------- 1 | npm-stop(3) -- Stop a package 2 | ============================= 3 | 4 | ## SYNOPSIS 5 | 6 | npm.commands.stop(packages, callback) 7 | 8 | ## DESCRIPTION 9 | 10 | This runs a package's "stop" script, if one was provided. 11 | 12 | npm can run stop on multiple packages. Just specify multiple packages 13 | in the `packages` parameter. 14 | -------------------------------------------------------------------------------- /deps/npm/doc/cli/npm-stop.md: -------------------------------------------------------------------------------- 1 | npm-stop(1) -- Stop a package 2 | ============================= 3 | 4 | ## SYNOPSIS 5 | 6 | npm stop 7 | 8 | ## DESCRIPTION 9 | 10 | This runs a package's "stop" script, if one was provided. 11 | 12 | ## SEE ALSO 13 | 14 | * npm-run-script(1) 15 | * npm-scripts(7) 16 | * npm-test(1) 17 | * npm-start(1) 18 | * npm-restart(1) 19 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @./node_modules/.bin/lab 3 | test-cov: 4 | @./node_modules/.bin/lab -r threshold -t 100 5 | test-cov-html: 6 | @./node_modules/.bin/lab -r html -o coverage.html 7 | complexity: 8 | @./node_modules/.bin/cr -o complexity.md -f markdown lib 9 | 10 | .PHONY: test test-cov test-cov-html complexity 11 | 12 | -------------------------------------------------------------------------------- /deps/openssl/openssl/apps/oid.cnf: -------------------------------------------------------------------------------- 1 | 2.99999.1 SET.ex1 SET x509v3 extension 1 2 | 2.99999.2 SET.ex2 SET x509v3 extension 2 3 | 2.99999.3 SET.ex3 SET x509v3 extension 3 4 | 2.99999.4 SET.ex4 SET x509v3 extension 4 5 | 2.99999.5 SET.ex5 SET x509v3 extension 5 6 | 2.99999.6 SET.ex6 SET x509v3 extension 6 7 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/bf/README: -------------------------------------------------------------------------------- 1 | This is a quick packaging up of my blowfish code into a library. 2 | It has been lifted from SSLeay. 3 | The copyright notices seem a little harsh because I have not spent the 4 | time to rewrite the conditions from the normal SSLeay ones. 5 | 6 | Basically if you just want to play with the library, not a problem. 7 | 8 | eric 15-Apr-1997 9 | -------------------------------------------------------------------------------- /deps/v8/OWNERS: -------------------------------------------------------------------------------- 1 | bmeurer@chromium.org 2 | danno@chromium.org 3 | dslomov@chromium.org 4 | hpayer@chromium.org 5 | jkummerow@chromium.org 6 | mmassi@chromium.org 7 | mstarzinger@chromium.org 8 | mvstanton@chromium.org 9 | rossberg@chromium.org 10 | svenpanne@chromium.org 11 | ulan@chromium.org 12 | vegorov@chromium.org 13 | verwaest@chromium.org 14 | yangguo@chromium.org 15 | -------------------------------------------------------------------------------- /test/fixtures/parent-process-nonpersistent.js: -------------------------------------------------------------------------------- 1 | 2 | var spawn = require('child_process').spawn, 3 | path = require('path'), 4 | childPath = path.join(__dirname, 'child-process-persistent.js'); 5 | 6 | var child = spawn(process.execPath, [ childPath ], { 7 | detached: true, 8 | stdio: 'ignore' 9 | }); 10 | 11 | console.log(child.pid); 12 | 13 | child.unref(); 14 | -------------------------------------------------------------------------------- /deps/npm/doc/api/npm-start.md: -------------------------------------------------------------------------------- 1 | npm-start(3) -- Start a package 2 | =============================== 3 | 4 | ## SYNOPSIS 5 | 6 | npm.commands.start(packages, callback) 7 | 8 | ## DESCRIPTION 9 | 10 | This runs a package's "start" script, if one was provided. 11 | 12 | npm can run tests on multiple packages. Just specify multiple packages 13 | in the `packages` parameter. 14 | -------------------------------------------------------------------------------- /deps/npm/doc/cli/npm-start.md: -------------------------------------------------------------------------------- 1 | npm-start(1) -- Start a package 2 | =============================== 3 | 4 | ## SYNOPSIS 5 | 6 | npm start 7 | 8 | ## DESCRIPTION 9 | 10 | This runs a package's "start" script, if one was provided. 11 | 12 | ## SEE ALSO 13 | 14 | * npm-run-script(1) 15 | * npm-scripts(7) 16 | * npm-test(1) 17 | * npm-restart(1) 18 | * npm-stop(1) 19 | -------------------------------------------------------------------------------- /deps/npm/node_modules/cmd-shim/test/zz-cleanup.js: -------------------------------------------------------------------------------- 1 | var test = require('tap').test 2 | var path = require('path') 3 | var fixtures = path.resolve(__dirname, 'fixtures') 4 | var rimraf = require('rimraf') 5 | 6 | test('cleanup', function(t) { 7 | rimraf(fixtures, function(er) { 8 | if (er) 9 | throw er 10 | t.pass('cleaned up') 11 | t.end() 12 | }) 13 | }) 14 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/hoek/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @./node_modules/.bin/lab 3 | test-cov: 4 | @./node_modules/.bin/lab -r threshold -t 100 5 | test-cov-html: 6 | @./node_modules/.bin/lab -r html -o coverage.html 7 | complexity: 8 | @./node_modules/.bin/cr -o complexity.md -f markdown lib 9 | 10 | .PHONY: test test-cov test-cov-html complexity -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/float.json: -------------------------------------------------------------------------------- 1 | { "metadata": 2 | { 3 | "ctf2json_version": "1.0", 4 | "created_at": 1316563626, 5 | "derived_from": "/lib/libc.so", 6 | "ctf_version": 2, 7 | "requested_types": [ "float" ] 8 | }, 9 | "data": 10 | [ 11 | { "name": "float", "float": { "length": 4 } } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /deps/npm/test/packages/npm-test-optional-deps/test.js: -------------------------------------------------------------------------------- 1 | var fs = require("fs") 2 | var assert = require("assert") 3 | var path = require("path") 4 | 5 | // sax should be the only dep that ends up installed 6 | 7 | var dir = path.resolve(__dirname, "node_modules") 8 | assert.deepEqual(fs.readdirSync(dir), ["sax"]) 9 | assert.equal(require("sax/package.json").version, "0.3.5") 10 | -------------------------------------------------------------------------------- /test/addons/hello-world/binding.cc: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | using namespace v8; 5 | 6 | Handle Method(const Arguments& args) { 7 | HandleScope scope; 8 | return scope.Close(String::New("world")); 9 | } 10 | 11 | void init(Handle target) { 12 | NODE_SET_METHOD(target, "hello", Method); 13 | } 14 | 15 | NODE_MODULE(binding, init); 16 | -------------------------------------------------------------------------------- /benchmark/misc/string-creation.js: -------------------------------------------------------------------------------- 1 | 2 | var common = require('../common.js'); 3 | var bench = common.createBenchmark(main, { 4 | millions: [100] 5 | }) 6 | 7 | function main(conf) { 8 | var n = +conf.millions * 1e6; 9 | bench.start(); 10 | var s; 11 | for (var i = 0; i < n; i++) { 12 | s = '01234567890'; 13 | s[1] = "a"; 14 | } 15 | bench.end(n / 1e6); 16 | } 17 | -------------------------------------------------------------------------------- /deps/npm/doc/cli/npm-bin.md: -------------------------------------------------------------------------------- 1 | npm-bin(1) -- Display npm bin folder 2 | ==================================== 3 | 4 | ## SYNOPSIS 5 | 6 | npm bin 7 | 8 | ## DESCRIPTION 9 | 10 | Print the folder where npm will install executables. 11 | 12 | ## SEE ALSO 13 | 14 | * npm-prefix(1) 15 | * npm-root(1) 16 | * npm-folders(5) 17 | * npm-config(1) 18 | * npm-config(7) 19 | * npmrc(5) 20 | -------------------------------------------------------------------------------- /deps/npm/doc/cli/npm-root.md: -------------------------------------------------------------------------------- 1 | npm-root(1) -- Display npm root 2 | =============================== 3 | 4 | ## SYNOPSIS 5 | 6 | npm root 7 | 8 | ## DESCRIPTION 9 | 10 | Print the effective `node_modules` folder to standard out. 11 | 12 | ## SEE ALSO 13 | 14 | * npm-prefix(1) 15 | * npm-bin(1) 16 | * npm-folders(5) 17 | * npm-config(1) 18 | * npm-config(7) 19 | * npmrc(5) 20 | -------------------------------------------------------------------------------- /deps/npm/node_modules/node-gyp/gyp/tools/emacs/run-unit-tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Copyright (c) 2012 Google Inc. All rights reserved. 3 | # Use of this source code is governed by a BSD-style license that can be 4 | # found in the LICENSE file. 5 | emacs --no-site-file --no-init-file --batch \ 6 | --load ert.el --load gyp.el --load gyp-tests.el \ 7 | -f ert-run-tests-batch-and-exit 8 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/boom/node_modules/hoek/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | complexity.md 19 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/sntp/node_modules/hoek/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | complexity.md 19 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/errors.js: -------------------------------------------------------------------------------- 1 | // Copyright 2011 Mark Cavage All rights reserved. 2 | 3 | 4 | module.exports = { 5 | 6 | newInvalidAsn1Error: function(msg) { 7 | var e = new Error(); 8 | e.name = 'InvalidAsn1Error'; 9 | e.message = msg || ''; 10 | return e; 11 | } 12 | 13 | }; 14 | -------------------------------------------------------------------------------- /deps/npm/node_modules/tar/examples/extracter.js: -------------------------------------------------------------------------------- 1 | var tar = require("../tar.js") 2 | , fs = require("fs") 3 | 4 | fs.createReadStream(__dirname + "/../test/fixtures/c.tar") 5 | .pipe(tar.Extract({ path: __dirname + "/extract" })) 6 | .on("error", function (er) { 7 | console.error("error here") 8 | }) 9 | .on("end", function () { 10 | console.error("done") 11 | }) 12 | -------------------------------------------------------------------------------- /deps/npm/node_modules/which/bin/which: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var which = require("../") 3 | if (process.argv.length < 3) { 4 | console.error("Usage: which ") 5 | process.exit(1) 6 | } 7 | 8 | which(process.argv[2], function (er, thing) { 9 | if (er) { 10 | console.error(er.message) 11 | process.exit(er.errno || 127) 12 | } 13 | console.log(thing) 14 | }) 15 | -------------------------------------------------------------------------------- /deps/openssl/openssl/demos/bio/Makefile: -------------------------------------------------------------------------------- 1 | CC=cc 2 | CFLAGS= -g -I../../include 3 | LIBS= -L../.. ../../libssl.a ../../libcrypto.a 4 | EXAMPLES=saccept sconnect 5 | 6 | all: $(EXAMPLES) 7 | 8 | saccept: saccept.o 9 | $(CC) -o saccept saccept.o $(LIBS) 10 | 11 | sconnect: sconnect.o 12 | $(CC) -o sconnect sconnect.o $(LIBS) 13 | 14 | clean: 15 | rm -f $(EXAMPLES) *.o 16 | 17 | -------------------------------------------------------------------------------- /deps/openssl/openssl/util/dirname.pl: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | 3 | if ($#ARGV < 0) { 4 | die "dirname.pl: too few arguments\n"; 5 | } elsif ($#ARGV > 0) { 6 | die "dirname.pl: too many arguments\n"; 7 | } 8 | 9 | my $d = $ARGV[0]; 10 | 11 | if ($d =~ m|.*/.*|) { 12 | $d =~ s|/[^/]*$||; 13 | } else { 14 | $d = "."; 15 | } 16 | 17 | print $d,"\n"; 18 | exit(0); 19 | -------------------------------------------------------------------------------- /deps/npm/lib/prefix.js: -------------------------------------------------------------------------------- 1 | module.exports = prefix 2 | 3 | var npm = require("./npm.js") 4 | 5 | prefix.usage = "npm prefix\nnpm prefix -g\n(just prints the prefix folder)" 6 | 7 | function prefix (args, silent, cb) { 8 | if (typeof cb !== "function") cb = silent, silent = false 9 | if (!silent) console.log(npm.prefix) 10 | process.nextTick(cb.bind(this, null, npm.prefix)) 11 | } 12 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/int.json: -------------------------------------------------------------------------------- 1 | { "metadata": 2 | { 3 | "ctf2json_version": "1.0", 4 | "created_at": 1316563631, 5 | "derived_from": "/lib/libc.so", 6 | "ctf_version": 2, 7 | "requested_types": [ "int" ] 8 | }, 9 | "data": 10 | [ 11 | { "name": "int", "integer": { "length": 4, "signed": true } } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /deps/npm/test/tap/peer-deps-invalid/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Domenic Denicola (http://domenicdenicola.com/)", 3 | "name": "peer-deps-invalid", 4 | "version": "0.0.0", 5 | "dependencies": { 6 | "npm-test-peer-deps-file": "http://localhost:1337/ok.js", 7 | "npm-test-peer-deps-file-invalid": "http://localhost:1337/invalid.js" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /tools/closure_linter/README: -------------------------------------------------------------------------------- 1 | This repository contains the Closure Linter - a style checker for JavaScript. 2 | 3 | To install the application, run 4 | python ./setup.py install 5 | 6 | After installing, you get two helper applications installed into /usr/local/bin: 7 | 8 | gjslint.py - runs the linter and checks for errors 9 | fixjsstyle.py - tries to fix errors automatically 10 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/sntp/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @./node_modules/.bin/lab 3 | test-cov: 4 | @./node_modules/.bin/lab -r threshold -t 100 5 | test-cov-html: 6 | @./node_modules/.bin/lab -r html -o coverage.html 7 | complexity: 8 | @./node_modules/.bin/cr -o complexity.md -f markdown lib 9 | 10 | .PHONY: test test-cov test-cov-html complexity 11 | 12 | -------------------------------------------------------------------------------- /deps/npm/lib/test.js: -------------------------------------------------------------------------------- 1 | module.exports = test 2 | 3 | var testCmd = require("./utils/lifecycle.js").cmd("test") 4 | , log = require("npmlog") 5 | 6 | function test (args, cb) { 7 | testCmd(args, function (er) { 8 | if (!er) return cb() 9 | if (er.code === "ELIFECYCLE") { 10 | return cb("Test failed. See above for more details.") 11 | } 12 | return cb(er) 13 | }) 14 | } 15 | -------------------------------------------------------------------------------- /deps/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @./node_modules/.bin/lab 3 | test-cov: 4 | @./node_modules/.bin/lab -r threshold -t 100 5 | test-cov-html: 6 | @./node_modules/.bin/lab -r html -o coverage.html 7 | complexity: 8 | @./node_modules/.bin/cr -o complexity.md -f markdown lib 9 | 10 | .PHONY: test test-cov test-cov-html complexity 11 | 12 | -------------------------------------------------------------------------------- /deps/npm/test/disabled/fast/package.json: -------------------------------------------------------------------------------- 1 | { "name" : "fast" 2 | , "description" : "does nothing, and not very fast" 3 | , "version" : "1.2.3" 4 | , "scripts" : 5 | { "preinstall" : "sleep 1 && echo fast 1 $(date +%s) && echo fast 2" 6 | , "install" : "sleep 1 && echo fast 2 $(date +%s) && echo fast 3" 7 | , "postinstall" : "sleep 1 && echo fast 3 $(date +%s) && echo fast 4" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /deps/openssl/openssl/crypto/pem/message: -------------------------------------------------------------------------------- 1 | -----BEGIN PRIVACY-ENHANCED MESSAGE----- 2 | Proc-Type: 4,ENCRYPTED 3 | Proc-Type: 4,MIC-ONLY 4 | Proc-Type: 4,MIC-CLEAR 5 | Content-Domain: RFC822 6 | DEK-Info: DES-CBC,0123456789abcdef 7 | Originator-Certificate 8 | xxxx 9 | Issuer-Certificate 10 | xxxx 11 | MIC-Info: RSA-MD5,RSA, 12 | xxxx 13 | 14 | 15 | -----END PRIVACY-ENHANCED MESSAGE----- 16 | 17 | -------------------------------------------------------------------------------- /test/fixtures/fixture.ini: -------------------------------------------------------------------------------- 1 | ; a comment 2 | root=something 3 | 4 | url = http://example.com/?foo=bar 5 | 6 | [ the section with whitespace ] 7 | this has whitespace = yep ; and a comment; and then another 8 | 9 | just a flag, no value. 10 | 11 | [section] 12 | one=two 13 | Foo=Bar 14 | this=Your Mother! 15 | blank= 16 | 17 | [Section Two] 18 | something else=blah 19 | remove = whitespace --------------------------------------------------------------------------------