Ivan Zotov
7440d34f57
Fix Russian translation of introduction to be more technical ( #7727 )
8 years ago
Amanvir Sangha
65c9217610
Update OWASP link in docs for dangerous innerHTML ( #7710 )
8 years ago
Ivan Zotov
3330ad836a
Add Russian translation for introduction of tips ( #7690 )
8 years ago
Ray Dai
114e7acee9
Update 14-communicate-between-components.ko-KR.md ( #7686 )
Apply the same change made in #7680 .
8 years ago
Ray Dai
38aefe5d7b
Update 14-communicate-between-components.md ( #7680 )
To demonstrate multiple arguments `bind(this, arg1, arg2, ...)`, also not to pass in for than what `handleClick` needed, namely props, or maybe even pass item itself, etc.
Going to change the kor file after review.
8 years ago
却痕
92c5e22268
docs:translate doc 11-advanced-performance to chinese ( #7584 )
8 years ago
Daniel Lo Nigro
d457201862
Upgrade to Jekyll 3
Full list of changes is at https://jekyllrb.com/docs/upgrading/2-to-3/ . The tl;dr of it is:
- Relative permalinks were removed, so all the files in the `docs` subdirectory need their permalink to be prefixed with `docs/`
- `post` and `page` types were renamed to `posts` and `pages` respectively
- `jekyll-paginate`, `pygments` and `redcarpet` are all now optional, so I needed to explicitly add it to the Gemfile. Jekyll now uses `rouge` rather than `pygments` for syntax highlighting, but rouge does not support highlighting individual lines (`hl_lines`) so we need to continue using Pygments.
- Layout metadata (eg. `sectionid`) is now on a `layout` variable rather than `page`
Tested the following pages and confirmed that they all work:
- "Docs" link (getting started page): http://127.0.0.1:4000/react/docs/getting-started.html
- Downloads: http://127.0.0.1:4000/react/downloads.html
- Tutorial: http://127.0.0.1:4000/react/docs/tutorial.html
- A few pages under the "docs" subdirectory, to confirm they're working properly:
- http://127.0.0.1:4000/react/docs/addons.html
- http://127.0.0.1:4000/react/docs/why-react.html
- http://127.0.0.1:4000/react/docs/create-fragment.html
- A few tips:
- http://127.0.0.1:4000/react/tips/false-in-jsx.html
- http://127.0.0.1:4000/react/tips/style-props-value-px.html
- Non-English versions of the page:
- http://127.0.0.1:4000/react/docs/getting-started-it-IT.html
- http://127.0.0.1:4000/react/docs/getting-started-ja-JP.html
9 years ago
Max
f31c84e765
Update documentation to stateless components
Ref #5949 @jimfb
9 years ago
Simen Bekkhus
3b4b99710f
Fix example from #5870 to avoid double rendering
9 years ago
Simen Bekkhus
2f2f289815
Remove the recommendation to use `isMounted` from beginner docs
9 years ago
David Granado
3d9eb35931
Added additional detail to "props-in-getInitialState" anti-pattern doc
While seemingly self-explanatory, this clarifies the reasons props usage in getInitialState might be considered an antipattern.
9 years ago
Scott Feeney
2464d81705
[docs] remove unnecessary findDOMNode from example
This call is not needed anymore due to https://facebook.github.io/react/blog/2015/10/07/react-v0.14.html#dom-node-refs
9 years ago
Kale
cf5236600c
Use null instead of '' in ternary expression
A blank string ('') resolves to <span></span> which produces a warning when place inside a <tr>
9 years ago
Arkist
814973f33a
Update Korean translation to 84af306
9 years ago
Jim
33cd980f0e
React -> ReactDOM for render() and findDOMNode()
9 years ago
Jim
c426902fca
Added documentation for stateless components, condensed the two pages about refs into a single page.
9 years ago
Paul O’Shannessy
a115c46689
[docs] Stop supporting our JSX compiler page
Link to Babel REPL directly instead.
9 years ago
Thomas Reggi
2cd9b8346b
doc: typo existant to existent
9 years ago
Kohei TAKATA
76e4164916
Translate 01-introduction.md to Japanese
10 years ago
Marjan
25f72b9c2f
Add stop-opacity to unitless style properties
10 years ago
Shim Won
aa5cca496d
Update Korean translation to e88c7bf
10 years ago
Vasiliy Loginevskiy
21610afd44
Docs: Fix jsx iife example
10 years ago
Shim Won
1f3e1360b2
Update Korean translation to e928c65
10 years ago
Masaki KOBAYASHI
1ddd6f1f64
Translate 04-self-closing-tag.md to Japanese
10 years ago
Luke Horvat
c6fe815d65
Add IIFE example to JSX documentation
10 years ago
Shim Won
8efc958a1e
Update Korean transltaion to 4c778e2
10 years ago
Jim
d350c29c2f
Fixed confusing use of the word/name in documentation
10 years ago
Thomas Röggla
21c8c2263e
Replaced call to deprected .getDOMNode() with React.findDOMNode().
The code sample in tip 18 in the docs contained a call to the
.getDOMNode() method which has been deprecated. The method call was
replaced with a call to React.findDOMNode(), which is the preferred way
of getting DOM nodes from a ref.
10 years ago
Shim Won
8221e1f174
Update Korean Translation to 5275244
10 years ago
Ben Alpert
817c3c9390
Deprecate reactjs Google Group
10 years ago
Eric Eastwood
6fbc7ef48b
Add support for unitless tabSize/tab-size
10 years ago
Matthew Miner
899bc9362f
Treat boxOrdinalGroup and flexOrder as unitless.
10 years ago
Shim Won
26fed0c9df
Update Translation to 0183f70
10 years ago
Jim
966cefe6ef
Fix bad links in docs. Fixes #3654 .
10 years ago
Reed Loden
dd010b34e2
SSL/TLSize all the things! (convert http:// to https:// where appropriate)
Update links to use https:// where it is supported. There's probably a lot
more that could be fixed, but these are the core ones I found (especially
the download links in order to prevent MITM attacks). Note that there are
some fb.me links that will redirect to http:// even while accessed over
https://, but this seemed like the best way to fix those for now.
NOTE: Only non-third-party files were modified. There are references to
http:// URLs in vendored/third-party files, but seems appropriate to fix
upstream for those rather than editing the files.
Also, copy one image locally to the blog, as it was hotlinking to a site
that did not support https://.
Last, use youtube-nocookie.com instead of youtube.com for video embeds,
as the former doesn't try to set a cookie on load (privacy enhancement).
10 years ago
Leonardo YongUk Kim
33eec6065f
Create 19-dangerously-set-inner-html.ko-KR.md
Based on 2e1ccae2758e61ab86bc79bdcac0d61747065a4a
10 years ago
Shim Won
1b394414a2
Update Korean translation to 0185c68
10 years ago
Leonardo YongUk Kim
52b3b5ed1b
Translate tips 11 to Korean
1. Create 11-dom-event-listeners.ko-KR.md
2. Update 03-interactivity-and-dynamic-uis.ko-KR.md to add an anchor.
Based on 52494f9d723f4b2db12a0bf16a07b243076c15cf
10 years ago
Leonardo YongUk Kim
9aa14423c9
Create 12-initial-ajax.ko-KR.md
Based on 52494f9d723f4b2db12a0bf16a07b243076c15cf
10 years ago
Leonardo YongUk Kim
a5ef8ecd1e
Create 13-false-in-jsx.ko-KR.md
Based on 52494f9d723f4b2db12a0bf16a07b243076c15cf
10 years ago
Dan Abramov
56357d7dd3
Mention Flux in “communicate between components”
10 years ago
Leonardo YongUk Kim
56a14d28b2
Rename 19--dangerouslySetInnerHTML.md -> 19-dangerously-set-inner-html.md
1. It had double dash.
2. Its name was inconsistent. Other tips are named by their IDs.
10 years ago
jiyeonseo
02c1a4c2ac
Translate tips 05..10
- Up to 3fd6ac5
10 years ago
Jinwoo Oh
d563124cc1
Translate tip-18 to Korean
- Up to 6f44f60
10 years ago
Jinwoo Oh
51b8bdf8f8
Translate tip-17 to Korean
- Up to 6f44f60
10 years ago
Jinwoo Oh
40ae76692c
Translate tip-16 to Korean
- Up to 1cb3f25
10 years ago
Jinwoo Oh
5b2f191879
Translate tip-15 to Korean
- Up to 52494f9
10 years ago
Jinwoo Oh
80f7bf2439
Translate tip-14 to Korean
- Up to 92c37ff
10 years ago
Ted Kim
394770a9ef
Translate tips 01..04 (based on 157d7770c99be26a9e0557d00978f15f6d9db794)
10 years ago
Joseph Nudell
a7a88b523b
Update unprefixed css props doc
10 years ago