From 9e27f704d76133368d7517c2a18aa1ba8bbb13d4 Mon Sep 17 00:00:00 2001 From: skratchdot Date: Fri, 29 Sep 2017 21:43:22 -0400 Subject: [PATCH] [Gatsby] "https://facebook.github.io/react/" -> "https://reactjs.org/" (#10970) --- README.md | 4 ++-- _config.yml | 4 ++-- _layouts/default.html | 4 ++-- _posts/2015-07-03-react-v0.14-beta-1.md | 2 +- _posts/2016-07-11-introducing-reacts-error-code-system.md | 2 +- _posts/2017-09-26-react-v16.0.md | 4 ++-- docs/cross-origin-errors.md | 2 +- tutorial/tutorial.md | 2 +- warnings/unknown-prop.md | 2 +- 9 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 938e0d2c..0d2ae6f5 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # React Documentation & Website -## [Read the React Documentation](https://facebook.github.io/react/) +## [Read the React Documentation](https://reactjs.org/) This folder is not the right place to *read* the documentation. -Instead, head over [to the React website](https://facebook.github.io/react/) to read it. +Instead, head over [to the React website](https://reactjs.org/) to read it. This folder only contains the source code for the website. diff --git a/_config.yml b/_config.yml index 2bc53ec7..3c30a3f6 100644 --- a/_config.yml +++ b/_config.yml @@ -1,8 +1,8 @@ --- name: React description: A JavaScript library for building user interfaces -url: https://facebook.github.io -baseurl: /react +url: https://reactjs.org/ +baseurl: / permalink: /blog/:year/:month/:day/:title.html paginate_path: /blog/page:num/ paginate: 5 diff --git a/_layouts/default.html b/_layouts/default.html index 923eceea..59be067b 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -22,8 +22,8 @@ - - + + diff --git a/_posts/2015-07-03-react-v0.14-beta-1.md b/_posts/2015-07-03-react-v0.14-beta-1.md index d5643ebf..57db47aa 100644 --- a/_posts/2015-07-03-react-v0.14-beta-1.md +++ b/_posts/2015-07-03-react-v0.14-beta-1.md @@ -7,7 +7,7 @@ This week, many people in the React community are at [ReactEurope](https://www.r With React 0.14, we're continuing to let React mature and to make minor changes as the APIs continue to settle down. I'll talk only about the two largest changes in this blog post; when we publish the final release we'll be sure to update all of our documentation and include a full changelog. -You can install the new beta with `npm install react@0.14.0-beta1` and `npm install react-dom@0.14.0-beta1`. As mentioned in [Deprecating react-tools](https://facebook.github.io/react/blog/2015/06/12/deprecating-jstransform-and-react-tools.html), we're no longer updating the react-tools package so this release doesn't include a new version of it. Please try the new version out and let us know what you think, and please do file issues on our GitHub repo if you run into any problems. +You can install the new beta with `npm install react@0.14.0-beta1` and `npm install react-dom@0.14.0-beta1`. As mentioned in [Deprecating react-tools](https://reactjs.org/blog/2015/06/12/deprecating-jstransform-and-react-tools.html), we're no longer updating the react-tools package so this release doesn't include a new version of it. Please try the new version out and let us know what you think, and please do file issues on our GitHub repo if you run into any problems. ## Two Packages diff --git a/_posts/2016-07-11-introducing-reacts-error-code-system.md b/_posts/2016-07-11-introducing-reacts-error-code-system.md index f1b3f35d..7cb687e1 100644 --- a/_posts/2016-07-11-introducing-reacts-error-code-system.md +++ b/_posts/2016-07-11-introducing-reacts-error-code-system.md @@ -13,6 +13,6 @@ In order to make debugging in production easier, we're introducing an Error Code While we hope you don't see errors often, you can see how it works [here](/docs/error-decoder.html?invariant=109&args[]=Foo). This is what the same error from above will look like: -> Minified React error #109; visit https://facebook.github.io/react/docs/error-decoder.html?invariant=109&args[]=Foo for the full message or use the non-minified dev environment for full errors and additional helpful warnings. +> Minified React error #109; visit https://reactjs.org/docs/error-decoder.html?invariant=109&args[]=Foo for the full message or use the non-minified dev environment for full errors and additional helpful warnings. We do this so that the developer experience is as good as possible, while also keeping the production bundle size as small as possible. This feature shouldn't require any changes on your side — use the `min.js` files in production or bundle your application code with `process.env.NODE_ENV === 'production'` and you should be good to go! diff --git a/_posts/2017-09-26-react-v16.0.md b/_posts/2017-09-26-react-v16.0.md index 727ab864..9636e8f3 100644 --- a/_posts/2017-09-26-react-v16.0.md +++ b/_posts/2017-09-26-react-v16.0.md @@ -71,7 +71,7 @@ See the [documentation for `ReactDOMServer`](/docs/react-dom-server.html) for mo ### Support for custom DOM attributes -Instead of ignoring unrecognized HTML and SVG attributes, React will now [pass them through to the DOM](https://facebook.github.io/react/blog/2017/09/08/dom-attributes-in-react-16.html). This has the added benefit of allowing us to get rid of most of React's attribute whitelist, resulting in reduced file sizes. +Instead of ignoring unrecognized HTML and SVG attributes, React will now [pass them through to the DOM](https://reactjs.org/blog/2017/09/08/dom-attributes-in-react-16.html). This has the added benefit of allowing us to get rid of most of React's attribute whitelist, resulting in reduced file sizes. ### Reduced file size @@ -168,7 +168,7 @@ React 16 includes a number of small breaking changes. These only affect uncommon * There is no `react/lib/*` and `react-dom/lib/*` anymore. Even in CommonJS environments, React and ReactDOM are precompiled to single files (“flat bundles”). If you previously relied on undocumented React internals, and they don’t work anymore, let us know about your specific case in a new issue, and we’ll try to figure out a migration strategy for you. * There is no `react-with-addons.js` build anymore. All compatible addons are published separately on npm, and have single-file browser versions if you need them. -* The deprecations introduced in 15.x have been removed from the core package. `React.createClass` is now available as `create-react-class`, `React.PropTypes` as `prop-types`, `React.DOM` as `react-dom-factories`, `react-addons-test-utils` as `react-dom/test-utils`, and shallow renderer as `react-test-renderer/shallow`. See [15.5.0](https://facebook.github.io/react/blog/2017/04/07/react-v15.5.0.html) and [15.6.0](https://facebook.github.io/react/blog/2017/06/13/react-v15.6.0.html) blog posts for instructions on migrating code and automated codemods. +* The deprecations introduced in 15.x have been removed from the core package. `React.createClass` is now available as `create-react-class`, `React.PropTypes` as `prop-types`, `React.DOM` as `react-dom-factories`, `react-addons-test-utils` as `react-dom/test-utils`, and shallow renderer as `react-test-renderer/shallow`. See [15.5.0](https://reactjs.org/blog/2017/04/07/react-v15.5.0.html) and [15.6.0](https://reactjs.org/blog/2017/06/13/react-v15.6.0.html) blog posts for instructions on migrating code and automated codemods. * The names and paths to the single-file browser builds have changed to emphasize the difference between development and production builds. For example: * `react/dist/react.js` → `react/umd/react.development.js` * `react/dist/react.min.js` → `react/umd/react.production.min.js` diff --git a/docs/cross-origin-errors.md b/docs/cross-origin-errors.md index 6a51094f..39aebd34 100644 --- a/docs/cross-origin-errors.md +++ b/docs/cross-origin-errors.md @@ -8,7 +8,7 @@ permalink: docs/cross-origin-errors.html > > The following section applies only to the development mode of React. Error handling in production mode is done with regular try/catch statements. -In [development mode](https://facebook.github.io/react/docs/optimizing-performance.html), React uses a global `error` event handler to preserve the "pause on exceptions" behavior of browser DevTools. It also logs errors to the developer console. +In [development mode](https://reactjs.org/docs/optimizing-performance.html), React uses a global `error` event handler to preserve the "pause on exceptions" behavior of browser DevTools. It also logs errors to the developer console. If an error is thrown from a [different origin](https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy) the browser will mask its details and React will not be able to log the original error message. This is a security precaution taken by browsers to avoid leaking sensitive information. diff --git a/tutorial/tutorial.md b/tutorial/tutorial.md index 8fbbe869..37e3bbfc 100644 --- a/tutorial/tutorial.md +++ b/tutorial/tutorial.md @@ -71,7 +71,7 @@ We recommend following [these instructions](http://babeljs.io/docs/editors) to c ### Help, I'm Stuck! -If you get stuck, check out the [community support resources](https://facebook.github.io/react/community/support.html). In particular, [Reactiflux chat](/community/support.html#reactiflux-chat) is a great way to get quick help. If you don't get a good answer anywhere, please file an issue, and we'll help you out. +If you get stuck, check out the [community support resources](https://reactjs.org/community/support.html). In particular, [Reactiflux chat](/community/support.html#reactiflux-chat) is a great way to get quick help. If you don't get a good answer anywhere, please file an issue, and we'll help you out. With this out of the way, let's get started! diff --git a/warnings/unknown-prop.md b/warnings/unknown-prop.md index f28f3215..e3dd80b9 100644 --- a/warnings/unknown-prop.md +++ b/warnings/unknown-prop.md @@ -7,7 +7,7 @@ The unknown-prop warning will fire if you attempt to render a DOM element with a There are a couple of likely reasons this warning could be appearing: -1. Are you using `{...this.props}` or `cloneElement(element, this.props)`? Your component is transferring its own props directly to a child element (eg. https://facebook.github.io/react/docs/transferring-props.html). When transferring props to a child component, you should ensure that you are not accidentally forwarding props that were intended to be interpreted by the parent component. +1. Are you using `{...this.props}` or `cloneElement(element, this.props)`? Your component is transferring its own props directly to a child element (eg. https://reactjs.org/docs/transferring-props.html). When transferring props to a child component, you should ensure that you are not accidentally forwarding props that were intended to be interpreted by the parent component. 2. You are using a non-standard DOM attribute on a native DOM node, perhaps to represent custom data. If you are trying to attach custom data to a standard DOM element, consider using a custom data attribute as described [on MDN](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Using_data_attributes).