-
Notifications
You must be signed in to change notification settings - Fork 6.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
questions for "about" documents #830
Comments
This must be a mistake. |
You'd need to check the website nginx config: https://raw.githubusercontent.com/nodejs/build/master/setup/www/resources/config/nodejs.org I've copied the relevant bits below: rewrite ^/about/advisory-board(.*)$ https://$server_name/en/about/organization/ permanent;
rewrite ^/advisory-board(.*)$ https://$server_name/en/about/organization/ permanent;
rewrite ^/about/organization/tsc-meetings/?$ https://$server_name/en/foundation/tsc/minutes/ permanent;
rewrite ^/about/organization/tsc-meetings/(.*?)/minutes.html$ https://$server_name/en/foundation/tsc/minutes/$1/ permanent;
rewrite ^/about/security/?$ https://$server_name/en/security/ permanent;
rewrite ^/contribute/?$ https://$server_name/en/get-involved/ permanent;
rewrite ^/contribute/accepting_contributions.html$ https://github.com/nodejs/dev-policy permanent;
rewrite ^/contribute/becoming_collaborator.html$ https://$server_name/en/get-involved/ permanent;
rewrite ^/contribute/code_contributions/?$ https://$server_name/en/get-involved/ permanent;
rewrite ^/contribute/code_contributions/workflow.html$ https://$server_name/en/get-involved/ permanent;
rewrite ^/documentation(.*)$ https://$server_name/en/docs/ permanent;
rewrite ^/foundation/blog.html$ https://$server_name/en/blog/ permanent;
rewrite ^/foundation/members.html$ https://$server_name/en/foundation/members/ permanent;
rewrite ^/images/foundation-visual-guidelines.pdf$ https://$server_name/static/documents/foundation-visual-guidelines.pdf permanent;
rewrite ^/images/logos/js-black(.*)$ https://$server_name/static/images/logos/js-black$1 permanent;
rewrite ^/images/logos/nodejs-(.*)$ https://$server_name/static/images/logos/nodejs-$1 permanent;
rewrite ^/images/node-foundation-by-laws.pdf$ https://$server_name/static/documents/node-foundation-by-laws.pdf permanent;
rewrite ^/images/.*trademark-policy.pdf$ https://$server_name/static/documents/trademark-policy.pdf permanent;
rewrite ^/video(.*)$ https://$server_name/static/video$1 permanent;
rewrite ^/changelog.html$ https://github.com/nodejs/node/blob/master/CHANGELOG.md permanent;
rewrite ^/api.html$ https://$server_name/api/ permanent;
rewrite ^/index.html$ https://$server_name/ permanent;
rewrite ^/(20\d\d/\d\d/\d\d/.*)$ http://blog.nodejs.org/$1 permanent;
rewrite ^/about/?$ https://$server_name/en/about/ permanent;
rewrite ^/about/advisory-board/?$ https://$server_name/en/about/organization/ permanent;
rewrite ^/about/advisory-board/members/?$ https://$server_name/en/about/organization/ permanent;
rewrite ^/about/organization/?$ https://$server_name/en/about/organization/ permanent;
rewrite ^/about/organization/tsc-meetings/(\d\d\d\d-\d\d-\d\d)/?$ https://$server_name/en/foundation/tsc/minutes/$1/ permanent;
rewrite ^/about/organization/tsc-meetings/(\d\d\d\d-\d\d-\d\d)/minutes.html$ https://$server_name/en/foundation/tsc/minutes/$1/ permanent;
rewrite ^/about/releases/?$ https://$server_name/en/about/releases/ permanent;
rewrite ^/about/resources/?$ https://$server_name/en/about/resources/ permanent;
rewrite ^/about/security/?$ https://$server_name/en/security/ permanent;
rewrite ^/about/trademark/?$ https://$server_name/en/about/trademark/ permanent;
rewrite ^/blog/?$ https://$server_name/en/blog/ permanent;
rewrite ^/community/?$ https://$server_name/en/get-involved/ permanent;
rewrite ^/foundation/?$ https://$server_name/en/foundation/ permanent;
rewrite ^/dist/staging/(.*)$ https://$server_name/dist/$1 permanent; |
@outsideris @stevemao This was taken originally from the io.js website, but all occurrences of "io.js" were replaced with "Node.js". Thanks, you're the first who found this mistake. |
@Fishrock123 Thanks for providing nginx conf.
|
@fhemberger Thank you for confirming it. I will fix it. |
@outsideris Hmm, that could be correct. Yes, the |
@Fishrock123 Can I remove |
@outsideris You definitely do not need to translate them in my opinion, see my comment at #807 (comment) |
It looks like all occurrences of "io.js" were replaced with "Node.js". See, nodejs#830
@Fishrock123 Thank you. |
We're working on translating the website as Korean, see nodejs/nodejs-ko#381. We encounter a few issue with content.
advisory-board
folder, but we can't found where it is used on the website. we guess it is a missing link.So, we can't decide whether we put our effort to translate these documents into Korean. If these aren't used anymore, these should be removed. We can make a pull request for it, if so.
And we can't understand the meaning at Addon API Working Group
in
both Node.js and Node.js
andNode.js, Node.js
, why is there two "Node.js". Does it means different respectively. It was introduced in this commit.The text was updated successfully, but these errors were encountered: