Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nodejs/node-v0.x-archive
base: a9092d35d3d7
Choose a base ref
...
head repository: nodejs/node-v0.x-archive
compare: 4eeb9e6b6c45
Choose a head ref
  • 4 commits
  • 6 files changed
  • 3 contributors

Commits on Feb 24, 2015

  1. doc: remove broken link to tracing api

    closes nodejs/nodejs.org-archive#77
    
    PR: #9172
    PR-URL: #9172
    Reviewed-By: Julien Gilli <julien.gilli@joyent.com>
    robertkowalski authored and Julien Gilli committed Feb 24, 2015
    Copy the full SHA
    08a1192 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2015

  1. doc: fix default value of opts.decodeURIComponent

    In the documentation for querystring.parse, the documentation mentions
    that the default value for options.decodeURIComponent is the
    decodeURIComponent function, but it's actually the querystring.unescape
    function.
    
    PR-URL: #9259
    Reviewed-by: Julien Gilli <julien.gilli@joyent.com>
    h7lin authored and Julien Gilli committed Feb 25, 2015
    Copy the full SHA
    f1bf883 View commit details
    Browse the repository at this point in the history
  2. doc: add explanations for querystring

     - add an article: `decode a non-utf8 string`
     - explain default and fallback behaviour of `querystring.unescape`
    
    PR-URL: #9259
    Reviewed-by: Julien Gilli <julien.gilli@joyent.com>
    robertkowalski authored and Julien Gilli committed Feb 25, 2015
    Copy the full SHA
    5d821fe View commit details
    Browse the repository at this point in the history
  3. src: fix builtin modules failing with --use-strict

    Currently, lib/_tls_legacy.js and lib/crypto.js cannot be loaded when
    --use-strict is passed to node. In addition to that, console.trace
    throws because it uses arguments.callee.
    
    This change fixes these issues and adds a test that makes sure
    every external built-in module can be loaded with require when
    --use-strict is enabled.
    
    Please note that this change does not fix all issues with built-in
    modules' code running with --use-strict. It is very likely that some
    code in the built-in modules still fails when passing this flag.
    
    However, fixing all code would require us to enable strict mode by
    default in all builtins modules, which would certainly break existing
    applications.
    
    Fixes #9187.
    
    Reviewed-By:
    PR-URL: #9237
    Julien Gilli committed Feb 25, 2015
    Copy the full SHA
    4eeb9e6 View commit details
    Browse the repository at this point in the history