diff --git a/gulp/tasks/templates.js b/gulp/tasks/templates.js index f6bfc4c..1f0e60d 100644 --- a/gulp/tasks/templates.js +++ b/gulp/tasks/templates.js @@ -6,11 +6,15 @@ var gulp = require('gulp'); // because this is a gulp task. duh. var HTMLtemplate = require('html-template'); // substack's html template implementation var md = require('markdown-it')({ html: true }); // to convert markdown to html var source = require('vinyl-source-stream'); // used to convert substack's readStream to vinylStream -var replaceStream = require('replacestream'); // used to add an element to the html: making sure each page has it's own class if needed in css var moment = require('moment-timezone'); var exec = require('child_process').exec var utils = require('../util/template-utils.js'); var path = require('path'); +var crypto = require("crypto"); +var gulpif = require('gulp-if'); +var handlebars = require('gulp-compile-handlebars'); +var buffer = require('vinyl-buffer'); +var rename = require('gulp-rename'); gulp.task('templates', function() { var separator = ''; @@ -40,30 +44,60 @@ gulp.task('templates', function() { var html = md.render(markdown); // convert md string to html string var thisFileJSON = _.cloneDeep(templateJSON); // clone in the template JSON object var pageTitle = thisFileJSON['browser-title']; - thisFileJSON = _.omit(thisFileJSON, 'browser-title'); - var finalJSON = {}; - _.forEach(thisFileJSON, function(value, key) { - finalJSON['[i18n-' + key + ']'] = value; - }) - finalJSON['[i18n-content]'] = html; // Attach md2html string to the interpolation object - var htmlObj = HTMLtemplate(); // finally using that holder for the template stream - i18nObj = htmlObj.template('i18n', { - include: false - }); // same var filepath = __dirname.split('gulp/tasks')[0] + 'source/templates/main.html'; // get the main template file location. There can be multiple, this is just a proof of concept var destinationDirectory = path.dirname('public/' + file.filepathArray.join('/')); - var fileStream = fs.createReadStream(filepath) // pulling this code from substack's example on html-template - .pipe(replaceStream('io.js - JavaScript I/O', '' + pageTitle + '')) - .pipe(replaceStream('markdown-page=""', 'markdown-page="' + file.filename + '"')) // add css-triggerable attribute to body - .pipe(replaceStream('[page-stylesheet]', file.filename)) // require in specific stylesheet - .pipe(replaceStream('Build Time:', 'Build Time: ' + buildTime)) - .pipe(replaceStream('Commit Sha:', 'Commit Sha: ' + commitSha)) - .pipe(replaceStream('Commit Msg:', 'Commit Msg: ' + commitMsg)) - .pipe(htmlObj) - .pipe(source(file.filename + '.html')) // converting the readStream to a vinyl stream so gulp can write it back to the disk - .pipe(gulp.dest(destinationDirectory)); // dump it in the appropriate language subfolder - i18nObj.write(finalJSON); // write the interpolation JSON to the template - i18nObj.end(); // saving? this is taken from substack too. + var changedFileCache = []; + + var isChangedFile = function(vinylFile) { + if (vinylFile.isNull()) { + return; + } + if (changedFileCache[vinylFile.path] != null) { + return changedFileCache[vinylFile.path]; + } + + var currentContent = fs.readFileSync(path.join(destinationDirectory, file.filename + '.html'), {encoding: 'utf8'}); + var currentHash = currentContent.match(/Hashsum:\s(\b([a-f0-9]{40})\b)/); + if (currentHash && currentHash.length > 2) { + currentHash = currentHash[1] + } else { + currentHash = null + } + + var contents = String(vinylFile.contents); + var newHash = crypto + .createHash("sha1") + .update(vinylFile.contents, "binary") + .digest("hex"); + + var isChanged = (currentHash !== newHash); + + if (isChanged) { + contents = contents.replace(/Hashsum:(?:\s+\b([a-f0-9]{40})\b)?/, `Hashsum: ${newHash}`) + contents = contents.replace('Build Time:', `Build Time: ${buildTime}`) + contents = contents.replace('Commit Sha:', `Commit Sha: ${commitSha}`) + contents = contents.replace('Commit Msg:', `Commit Msg: ${commitMsg}`) + vinylFile.contents = new Buffer(contents); + } + changedFileCache[vinylFile.path] = isChanged; + return isChanged; + }; + + var templateContent = { + i18n: thisFileJSON, + content: html, + lang: lang, + build: { + markdownPage: file.filename, + pageStylesheet: file.filename + } + }; + + var fileStream = gulp.src(filepath) // pulling this code from substack's example on html-template + .pipe(rename(file.filename + '.html')) // converting the readStream to a vinyl stream so gulp can write it back to the disk + .pipe(buffer()) + .pipe(handlebars(templateContent)) + .pipe(gulpif(isChangedFile, gulp.dest(destinationDirectory))); // dump it in the appropriate language subfolder }); }); }); diff --git a/package.json b/package.json index 4f828ad..4178fb0 100644 --- a/package.json +++ b/package.json @@ -47,21 +47,24 @@ "glob": "^4.3.5", "gulp": "^3.8.10", "gulp-changed": "^1.1.0", + "gulp-compile-handlebars": "^0.4.4", "gulp-connect": "^2.2.0", "gulp-filesize": "0.0.6", "gulp-htmlmin": "^1.0.0", + "gulp-if": "^1.2.5", "gulp-imagemin": "^2.1.0", "gulp-less": "^2.0.1", "gulp-markdown": "^1.0.0", "gulp-postcss": "^4.0.2", + "gulp-rename": "^1.2.0", "gulp-stylus": "^2.0.0", "html-template": "^1.2.1", "lodash": "^2.4.1", "markdown-it": "^3.0.4", "moment-timezone": "^0.3.0", - "replacestream": "^2.0.0", "require-dir": "^0.1.0", "run-sequence": "^1.0.2", + "vinyl-buffer": "^1.0.0", "vinyl-source-stream": "^1.0.0" } } diff --git a/public/cn/es6.html b/public/cn/es6.html index ddc0863..b3880fa 100644 --- a/public/cn/es6.html +++ b/public/cn/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

io.js 运行 ES6

+

io.js 运行 ES6

io.js 是基于 V8 引擎的较新版本构建的。通过持续跟进最新版的 V8 引擎,我们可以保证及时地为开发者带来最新的 JavaScript ECMA-262 规范 中的语言特性,同时也能得到性能和稳定性的提升。

io.js 1.3.0 集成了 V8 4.1.0.14 版本,其中包含的 ES6 特性远超 joyent/node@0.12.x 集成的 3.26.33 版本所包含的。

干掉 --harmony

@@ -121,11 +121,11 @@

如何查阅某一版本的 io.js 所集成的 V8 的版本?

@@ -136,10 +136,11 @@

如何查阅某一版本的 io.js 所集成的 V8 的版本?

diff --git a/public/cn/faq.html b/public/cn/faq.html index 459ea77..606a237 100644 --- a/public/cn/faq.html +++ b/public/cn/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

常见问题

+

常见问题

io.js 是什么?

io.js 是基于 Chrome's V8 运行环境 的 JavaScript 平台。本项目基于 Joyent的 Node.js™ 项目并继续开发,兼容 npm 生态系统。

想知道为什么?io.js 能提供更短、可预测的发布周期。目前,它融合了最新的语言特性,API 和 V8 引擎的性能改进,并且会持续更新 libuv 和其他底层库。

@@ -52,11 +52,11 @@

什么是开放的管理模式?

@@ -67,10 +67,11 @@

什么是开放的管理模式?

diff --git a/public/cn/index.html b/public/cn/index.html index 0aada59..53ff7d9 100644 --- a/public/cn/index.html +++ b/public/cn/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

ES6 带入 Node 社区!

io.js 是一个衍生自 node.js™ ,并兼容 npm 的开发平台。

io.js

@@ -48,11 +48,11 @@ @@ -63,10 +63,11 @@ diff --git a/public/cs/es6.html b/public/cs/es6.html index 1d2557b..e14589e 100644 --- a/public/cs/es6.html +++ b/public/cs/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 on io.js

+

ES6 on io.js

io.js is built against modern versions of V8. By keeping up-to-date with the latest releases of this engine we ensure new features from the JavaScript ECMA-262 specification are brought to io.js developers in a timely manner, as well as continued performance and stability improvements.

Version 1.3.0 of io.js ships with V8 4.1.0.14, which includes ES6 features well beyond version 3.26.33 that will be shipped with joyent/node@0.12.x.

No more --harmony flag

@@ -121,11 +121,11 @@

How do I find which version of V8 ships with a particular version of io.js?< @@ -136,10 +136,11 @@

How do I find which version of V8 ships with a particular version of io.js?< diff --git a/public/cs/faq.html b/public/cs/faq.html index 012fa4d..6f6ad71 100644 --- a/public/cs/faq.html +++ b/public/cs/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

What is io.js?

io.js is a JavaScript platform built on Chrome's V8 runtime. This project began as a fork of Joyent's Node.js™ and is compatible with the npm ecosystem.

Why? io.js aims to provide faster and predictable release cycles. It currently merges in the latest language, API and performance improvements to V8 while also updating libuv and other base libraries.

@@ -55,11 +55,11 @@

What is open source governance?

@@ -70,10 +70,11 @@

What is open source governance?

diff --git a/public/cs/index.html b/public/cs/index.html index 09bb6a8..5e318eb 100644 --- a/public/cs/index.html +++ b/public/cs/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Bringing ES6 to the Node Community!

io.js is an npm compatible platform originally based on node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/da/es6.html b/public/da/es6.html index 1d2557b..37774a4 100644 --- a/public/da/es6.html +++ b/public/da/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 on io.js

+

ES6 on io.js

io.js is built against modern versions of V8. By keeping up-to-date with the latest releases of this engine we ensure new features from the JavaScript ECMA-262 specification are brought to io.js developers in a timely manner, as well as continued performance and stability improvements.

Version 1.3.0 of io.js ships with V8 4.1.0.14, which includes ES6 features well beyond version 3.26.33 that will be shipped with joyent/node@0.12.x.

No more --harmony flag

@@ -121,11 +121,11 @@

How do I find which version of V8 ships with a particular version of io.js?< @@ -136,10 +136,11 @@

How do I find which version of V8 ships with a particular version of io.js?< diff --git a/public/da/faq.html b/public/da/faq.html index 012fa4d..749ea38 100644 --- a/public/da/faq.html +++ b/public/da/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

What is io.js?

io.js is a JavaScript platform built on Chrome's V8 runtime. This project began as a fork of Joyent's Node.js™ and is compatible with the npm ecosystem.

Why? io.js aims to provide faster and predictable release cycles. It currently merges in the latest language, API and performance improvements to V8 while also updating libuv and other base libraries.

@@ -55,11 +55,11 @@

What is open source governance?

@@ -70,10 +70,11 @@

What is open source governance?

diff --git a/public/da/index.html b/public/da/index.html index 09bb6a8..eb8fe91 100644 --- a/public/da/index.html +++ b/public/da/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Bringing ES6 to the Node Community!

io.js is an npm compatible platform originally based on node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/de/es6.html b/public/de/es6.html index 1d2557b..9e13690 100644 --- a/public/de/es6.html +++ b/public/de/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 on io.js

+

ES6 on io.js

io.js is built against modern versions of V8. By keeping up-to-date with the latest releases of this engine we ensure new features from the JavaScript ECMA-262 specification are brought to io.js developers in a timely manner, as well as continued performance and stability improvements.

Version 1.3.0 of io.js ships with V8 4.1.0.14, which includes ES6 features well beyond version 3.26.33 that will be shipped with joyent/node@0.12.x.

No more --harmony flag

@@ -121,11 +121,11 @@

How do I find which version of V8 ships with a particular version of io.js?< @@ -136,10 +136,11 @@

How do I find which version of V8 ships with a particular version of io.js?< diff --git a/public/de/faq.html b/public/de/faq.html index d5929c1..88930f9 100644 --- a/public/de/faq.html +++ b/public/de/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

Was ist io.js?

io.js ist eine JavaScript-Plattform basierend auf Chromes V8 Laufzeitumgebung. Dieses Projekt begann als Fork von Joyents Node.js™ und ist kompatibel mit dem npm-Ökosystem.

Warum? io.js Ziel sind schnellere und vorhersehbare Releasezyklen. Momentan übernimmt es die neusten Sprach-, API- und Performance-Verbesserungen von V8, ebenso wie für libuv und anderen grundlegende Bibliotheken.

@@ -53,11 +53,11 @@

Was ist Open-Source Governance?

@@ -68,10 +68,11 @@

Was ist Open-Source Governance?

diff --git a/public/de/index.html b/public/de/index.html index 51f70e9..892330c 100644 --- a/public/de/index.html +++ b/public/de/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

ES6 für die Node-Community!

io.js ist eine npm-kompatible Plattform, die ursprünglich auf node.js™ basiert.

io.js

@@ -50,11 +50,11 @@ @@ -65,10 +65,11 @@ diff --git a/public/el/es6.html b/public/el/es6.html index e4829bf..a09181b 100644 --- a/public/el/es6.html +++ b/public/el/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
- +
- FAQ - ES6 - API + FAQ + ES6 + API
-

H ES6 στην io.js

+

H ES6 στην io.js

Η io.js έχει δομηθεί πάνω στις νεότερες εκδόσεις της V8. Με συνεχείς ενημερώσεις σύμφωνα με τις τελευταίες εκδόσεις της V8 εξασφαλίζεται ότι νέες δυνατότητες και χαρακτηριστικά από την JavaScript ECMA-262 specification προσφέρονται στους io.js developers εγκαίρως, καθώς και η συνεχής βελτιώση της απόδοσης και της σταθερότητας της.

Η έκδοση 1.3.0 της io.js έρχεται μαζί με την έκδοση 4.1.0.14 της V8, η οποία περιλαμβάνει χαρακτηριστικά από την ES6, πολύ περισσότερα από την έκδοση 3.26.33 που προσφέρετε από την joyent/node@0.12.x.

Όχι πια --harmony flag

@@ -121,11 +121,11 @@

Πως μπορώ να βρω ποια έκδοση της V8 παρέχετ @@ -136,10 +136,11 @@

Πως μπορώ να βρω ποια έκδοση της V8 παρέχετ diff --git a/public/el/faq.html b/public/el/faq.html index b141706..ac42c02 100644 --- a/public/el/faq.html +++ b/public/el/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
- +
- FAQ - ES6 - API + FAQ + ES6 + API
-

FAQ

+

FAQ

Τι σημαίνει io.js;

io.js είναι μία JavaScript πλατφόρμα, βασισμένη στο V8 runtime του Chrome. Αυτό το πρότζεκτ ξεκίνησε σαν ένα fork του Node.js™ της Joyent, και είναι συμβατό με το οικοσύστημα του npm.

Γιατί;

@@ -54,11 +54,11 @@

Τι σημαίνει "ανοιχτή διακυβέρνηση"; @@ -69,10 +69,11 @@

Τι σημαίνει "ανοιχτή διακυβέρνηση"; diff --git a/public/el/index.html b/public/el/index.html index d3e5233..c6442bb 100644 --- a/public/el/index.html +++ b/public/el/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
- +
- FAQ - ES6 - API + FAQ + ES6 + API
-

JavaScript I/O

+

JavaScript I/O

Φέρνουμε την ES6 στην κοινότητα του Node!

io.js είναι μια πλατφόρμα συμβατή με το npm, βασισμένη στο node.js™.

io.js

@@ -50,11 +50,11 @@ @@ -65,10 +65,11 @@ diff --git a/public/en/es6.html b/public/en/es6.html index b985555..142fec4 100644 --- a/public/en/es6.html +++ b/public/en/es6.html @@ -3,7 +3,7 @@ - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 on io.js

+

ES6 on io.js

io.js is built against modern versions of V8. By keeping up-to-date with the latest releases of this engine we ensure new features from the JavaScript ECMA-262 specification are brought to io.js developers in a timely manner, as well as continued performance and stability improvements.

Version 1.3.0 of io.js ships with V8 4.1.0.14, which includes ES6 features well beyond version 3.28.73 that ship with Node.js™ 0.12.x.

No more --harmony flag

@@ -126,11 +126,11 @@

How do I find which version of V8 ships with a particular version of io.js?< @@ -141,10 +141,11 @@

How do I find which version of V8 ships with a particular version of io.js?< diff --git a/public/en/faq.html b/public/en/faq.html index 95cf2e2..b914875 100644 --- a/public/en/faq.html +++ b/public/en/faq.html @@ -3,7 +3,7 @@ - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

What is io.js?

io.js is a JavaScript platform built on Chrome's V8 runtime. This project began as a fork of Joyent's Node.js™ and is compatible with the npm ecosystem.

Why?

@@ -56,11 +56,11 @@

What is open source governance?

@@ -71,10 +71,11 @@

What is open source governance?

diff --git a/public/en/index.html b/public/en/index.html index 72aa6ec..4d7ab7e 100644 --- a/public/en/index.html +++ b/public/en/index.html @@ -3,7 +3,7 @@ - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Bringing ES6 to the Node Community!

io.js is an npm compatible platform originally based on node.js™.

io.js

@@ -50,11 +50,11 @@ @@ -65,10 +65,11 @@ diff --git a/public/es/es6.html b/public/es/es6.html index 4832427..5b07191 100644 --- a/public/es/es6.html +++ b/public/es/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 en io.js

+

ES6 en io.js

io.js está construido sobre versiones modernas de V8. Manteniéndolo actualizado con las últimas versiones de este motor nos aseguramos que las nuevas funcionalidades de la especificación ECMA-262 de JavaScript estén disponibles para los desarrolladores de io.js de manera oportuna, así como también las mejoras de rendimiento y estabilidad.

La versión 1.1.0 de io.js utiliza V8 4.1.0.14, que incluye las mejoras de ES6 superando claramente la versión 3.26.33 que será incluida con joyent/node@0.12.x.

No más --harmony flag

@@ -118,11 +118,11 @@

¿Cómo determino la versión de V8 que se distribuye con una versión en pa @@ -133,10 +133,11 @@

¿Cómo determino la versión de V8 que se distribuye con una versión en pa diff --git a/public/es/faq.html b/public/es/faq.html index 89f00f4..ba8f6c8 100644 --- a/public/es/faq.html +++ b/public/es/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

Preguntas Frecuentes

+

Preguntas Frecuentes

¿Qué es io.js?

io.js es una plataforma de JavaScript construida sobre el runtime V8 de Chrome. El proyecto inició como un fork de Node.js™ de Joyent y es totalmente compatible con npm.

¿Por qué? io.js es un esfuerzo para proveer ciclos de lanzamiento más rápidos y más predecibles. Actualmente converge con la última versión del lenguaje, mejoras en la API y el rendimiento de V8 mientras que también mantiene actualizadas libuv y otras librerías base.

@@ -53,11 +53,11 @@

¿Qué es gobierno de código abierto?

@@ -68,10 +68,11 @@

¿Qué es gobierno de código abierto?

diff --git a/public/es/index.html b/public/es/index.html index f210dbe..52693c6 100644 --- a/public/es/index.html +++ b/public/es/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

¡Llevando ES6 a la Comunidad de Node!

io.js es una plataforma compatible con npm y basada originalmente en node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/fi/es6.html b/public/fi/es6.html index 84063c9..5789c5c 100644 --- a/public/fi/es6.html +++ b/public/fi/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 ja io.js

+

ES6 ja io.js

io.js nojaa tuoreisiin V8:n versioihin. Pysymällä ajan tasalla viimeisimpien versioiden kanssa varmistetaan sekä uusimpien JavaScript ECMA-262 specification ominaisuuksien, että suorituskykyyn ja vakauteen liittyvien parannusten nopea saapuminen kehittäjien ulottuville.

io.js:n versio 1.3.0 sisältää V8 version 4.1.0.14, mikä ES6:n osalta ylittää tuntuvasti ominaisuuksiltaan version 3.28.72 mikä sisältyy Node.js™ 0.12.x-versioihin.

Ei enää --harmony lippua

@@ -126,11 +126,11 @@

Mistä löydän tiedon siitä mikä versio V8:sta missäkin io.js:n versioss @@ -141,10 +141,11 @@

Mistä löydän tiedon siitä mikä versio V8:sta missäkin io.js:n versioss diff --git a/public/fi/faq.html b/public/fi/faq.html index 511aafa..858280d 100644 --- a/public/fi/faq.html +++ b/public/fi/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

Mikä on io.js?

io.js on JavaScript alusta joka perustuu Chrome's V8 runtime:en. Projekti alkoi haaraumana (fork) Joyentin Node.js™-projektista ja on yhteensopiva npm-ekosysteemin kanssa.

Miksi?

@@ -54,11 +54,11 @@

Mitä on open source hallinto?

@@ -69,10 +69,11 @@

Mitä on open source hallinto?

diff --git a/public/fi/index.html b/public/fi/index.html index 4f3f104..f757791 100644 --- a/public/fi/index.html +++ b/public/fi/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Tuomme ES6:n Node-yhteisölle!

io.js on npm-yhteensopiva alusta joka perustuu node.js™:n.

io.js

@@ -50,11 +50,11 @@ @@ -65,10 +65,11 @@ diff --git a/public/fr/es6.html b/public/fr/es6.html index 2d770ac..d403ede 100644 --- a/public/fr/es6.html +++ b/public/fr/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 et io.js

+

ES6 et io.js

io.js est construit sur des versions modernes de V8. En restant à jour avec les dernières livraisons du moteur, nous nous assurons que les dernières fonctionnalités de la spécification JavaScript ECMA-262 sont mises à disposition des développeurs io.js en continu, ainsi que des améliorations de performance et de stabilité.

La version 1.3.0 d'io.js est livrée avec V8 4.1.0.14 qui inclue des fonctionnalités ES6 qui vont bien au delà de la version 3.28.73 qui sera fournie avec joyent/node@0.12.x.

Disparition de l'option --harmony

@@ -126,11 +126,11 @@

Comment savoir quelle version de V8 est livrée avec une version particuliè @@ -141,10 +141,11 @@

Comment savoir quelle version de V8 est livrée avec une version particuliè diff --git a/public/fr/faq.html b/public/fr/faq.html index 611636f..75c7ac5 100644 --- a/public/fr/faq.html +++ b/public/fr/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

Qu'est-ce que io.js?

io.js est une plateforme JavaScript construite sur le moteur d'exécution de Chrome's, V8. Ce projet a commencé comme un fork de Node.js™ de Joyent et est compatible avec l'écosystème npm.

Pourquoi? L'objectif de io.js est de fournir des cycles de développement plus rapides et prévisibles. Il fusionne actuellement les dernières fonctionnalités du langage, API et améliorations de performance de V8 tout en mettant à jour libuv et d'autres bibliothèques de base.

@@ -54,11 +54,11 @@

Qu'est-ce que la gouvernance open source?

@@ -69,10 +69,11 @@

Qu'est-ce que la gouvernance open source?

diff --git a/public/fr/index.html b/public/fr/index.html index 315cb24..5a15199 100644 --- a/public/fr/index.html +++ b/public/fr/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

ES6 pour la communauté Node!

io.js est une plateforme compatible avec npm et basée sur node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/he/es6.html b/public/he/es6.html index 0ad4ce4..5a045f3 100644 --- a/public/he/es6.html +++ b/public/he/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-
+
# ES6 ב io.js

נבנה לצד הגרסאות העדכניות של מנוע ה V8. שמירה על עדכניות ומודרניות מבטיחים לנו כפלטפורמה לספק את המלוא התכונות החדשות מJavaScript ECMA-262 specification מבעוד מועד. כמו כן, שיפורי ביצועים יציבות וכיוצא בזה.

@@ -127,11 +127,11 @@

איך אני בודק את גרסת מנוע הV8 בגרסת הiojs שאנ @@ -142,10 +142,11 @@

איך אני בודק את גרסת מנוע הV8 בגרסת הiojs שאנ diff --git a/public/he/faq.html b/public/he/faq.html index 8875fac..8dc7608 100644 --- a/public/he/faq.html +++ b/public/he/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-
+

שאלות נפוצות

מה זה io.js?

io.js היא פלטפורמת ג'אווהסקריפט הבנוייה על מנוע V8 של כרום. הפרוייקט התחיל כפיצול מ Node.js™ של חברת Joynet והוא עובד היטב עם מערכת הnpm

@@ -53,11 +53,11 @@

מהו מודל הממשל הפתוח?

@@ -68,10 +68,11 @@

מהו מודל הממשל הפתוח?

diff --git a/public/he/index.html b/public/he/index.html index 9b2a9ee..37588bd 100644 --- a/public/he/index.html +++ b/public/he/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-
+

JavaScript I/O

מביאים את ES6 לקהילת Node

io.js @@ -55,11 +55,11 @@

JavaScript I/O

@@ -70,10 +70,11 @@

JavaScript I/O

diff --git a/public/hi/es6.html b/public/hi/es6.html index 1d2557b..de62c81 100644 --- a/public/hi/es6.html +++ b/public/hi/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 on io.js

+

ES6 on io.js

io.js is built against modern versions of V8. By keeping up-to-date with the latest releases of this engine we ensure new features from the JavaScript ECMA-262 specification are brought to io.js developers in a timely manner, as well as continued performance and stability improvements.

Version 1.3.0 of io.js ships with V8 4.1.0.14, which includes ES6 features well beyond version 3.26.33 that will be shipped with joyent/node@0.12.x.

No more --harmony flag

@@ -121,11 +121,11 @@

How do I find which version of V8 ships with a particular version of io.js?< @@ -136,10 +136,11 @@

How do I find which version of V8 ships with a particular version of io.js?< diff --git a/public/hi/faq.html b/public/hi/faq.html index 012fa4d..7b17c20 100644 --- a/public/hi/faq.html +++ b/public/hi/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

What is io.js?

io.js is a JavaScript platform built on Chrome's V8 runtime. This project began as a fork of Joyent's Node.js™ and is compatible with the npm ecosystem.

Why? io.js aims to provide faster and predictable release cycles. It currently merges in the latest language, API and performance improvements to V8 while also updating libuv and other base libraries.

@@ -55,11 +55,11 @@

What is open source governance?

@@ -70,10 +70,11 @@

What is open source governance?

diff --git a/public/hi/index.html b/public/hi/index.html index 09bb6a8..729bdf6 100644 --- a/public/hi/index.html +++ b/public/hi/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Bringing ES6 to the Node Community!

io.js is an npm compatible platform originally based on node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/hu/es6.html b/public/hu/es6.html index 1d2557b..5a7f85d 100644 --- a/public/hu/es6.html +++ b/public/hu/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 on io.js

+

ES6 on io.js

io.js is built against modern versions of V8. By keeping up-to-date with the latest releases of this engine we ensure new features from the JavaScript ECMA-262 specification are brought to io.js developers in a timely manner, as well as continued performance and stability improvements.

Version 1.3.0 of io.js ships with V8 4.1.0.14, which includes ES6 features well beyond version 3.26.33 that will be shipped with joyent/node@0.12.x.

No more --harmony flag

@@ -121,11 +121,11 @@

How do I find which version of V8 ships with a particular version of io.js?< @@ -136,10 +136,11 @@

How do I find which version of V8 ships with a particular version of io.js?< diff --git a/public/hu/faq.html b/public/hu/faq.html index 012fa4d..755e476 100644 --- a/public/hu/faq.html +++ b/public/hu/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

What is io.js?

io.js is a JavaScript platform built on Chrome's V8 runtime. This project began as a fork of Joyent's Node.js™ and is compatible with the npm ecosystem.

Why? io.js aims to provide faster and predictable release cycles. It currently merges in the latest language, API and performance improvements to V8 while also updating libuv and other base libraries.

@@ -55,11 +55,11 @@

What is open source governance?

@@ -70,10 +70,11 @@

What is open source governance?

diff --git a/public/hu/index.html b/public/hu/index.html index 09bb6a8..6876c8c 100644 --- a/public/hu/index.html +++ b/public/hu/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Bringing ES6 to the Node Community!

io.js is an npm compatible platform originally based on node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/id/es6.html b/public/id/es6.html index 7ff77af..11873f3 100644 --- a/public/id/es6.html +++ b/public/id/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 pada io.js

+

ES6 pada io.js

io.js dikembangkan dengan versi modern dari V8. Dengan menjaga tetap teranyar dengan rilis terbaru dari engine ini kami memastikan fitur terbaru dari JavaScript ECMA-262 spesifikasi tersedia untuk pengembang io.js dengan tepat waktu, serta perbaikan yang berkelanjutan pada kinerja dan stabilitas.

Versi 1.3.0 dari io.js dikeluarkan dengan V8 4.1.0.14, yang meliputi ES6 fitur jauh melampaui versi 3.26.33 yang akan dikirim dengan joyent/node@0.12.x.

Tidak ada lagi --harmony flag

@@ -120,11 +120,11 @@

Bagaimana cara menemukan versi V8 dengan versi tertentu dari io.js?

@@ -135,10 +135,11 @@

Bagaimana cara menemukan versi V8 dengan versi tertentu dari io.js?

diff --git a/public/id/faq.html b/public/id/faq.html index 9bcf189..7a05fab 100644 --- a/public/id/faq.html +++ b/public/id/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

Apa io.js?

io.js adalah platform JavaScript dibangun di atas V8 runtime Chrome. Proyek ini dimulai sebagai sebuah cabang dari Joyent di Node.js ™ dan kompatibel dengan ekosistem NPM.

Mengapa? io.js bertujuan untuk memberikan siklus rilis lebih cepat dan dapat diprediksi. Saat ini menyatu dalam API dan perbaikan kinerja versi terbaru untuk V8 dan juga memperbarui libuv dan library dasar lainnya.

@@ -53,11 +53,11 @@

Apa governance open source?

@@ -68,10 +68,11 @@

Apa governance open source?

diff --git a/public/id/index.html b/public/id/index.html index ef98187..31a73c3 100644 --- a/public/id/index.html +++ b/public/id/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Membawa ES6 ke Komunitas Node!

io.js adalah npm platform yang kompatibel dengan [node.js] (https: //nodejs.org/)™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/it/es6.html b/public/it/es6.html index 8b02546..f2952b4 100644 --- a/public/it/es6.html +++ b/public/it/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 con io.js

+

ES6 con io.js

io.js integra al suo interno una versione moderna del motore V8. Rimanendo aggiornati con le ultime versioni di questo motore, possiamo rendere disponibili le nuove caratteristiche delle specifiche JavaScript ECMA-262 agli sviluppatori io.js in modo rapido, assieme ai continui miglioramenti nella stabilità e nelle prestazioni.

La versione 1.2.0 di io.js viene rilasciata con la V8 4.1.0.14, che include caratteristiche di ES6 più avanzate rispetto alla versione 3.26.33 che sarà rilasciata assieme a joyent/node@0.12.x.

Il flag --harmony non è più necessario

@@ -115,11 +115,11 @@

Come posso trovare quale versione di V8 è distribuita con una particolare v @@ -130,10 +130,11 @@

Come posso trovare quale versione di V8 è distribuita con una particolare v diff --git a/public/it/faq.html b/public/it/faq.html index 129dcb8..c42ae62 100644 --- a/public/it/faq.html +++ b/public/it/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

Cos'è io.js?

io.js è una piattaforma JavaScript costruita sul motore V8 di Chrome. Questo progetto nasce come fork da Node.js™ di Joyent ed è compatibile con l'ecosistema npm.

Perchè?

@@ -56,11 +56,11 @@

Cos'è una governance open source?

@@ -71,10 +71,11 @@

Cos'è una governance open source?

diff --git a/public/it/index.html b/public/it/index.html index ba9b7a1..d3dd115 100644 --- a/public/it/index.html +++ b/public/it/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

ES6 per la Comunità Node!

io.js è una piattaforma compatibile con npm basata originariamente su node.js™.

io.js

@@ -51,11 +51,11 @@ @@ -66,10 +66,11 @@ diff --git a/public/ja/es6.html b/public/ja/es6.html index ec30169..46c50f1 100644 --- a/public/ja/es6.html +++ b/public/ja/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

io.jsにおけるES6

+

io.jsにおけるES6

@@ -202,11 +202,11 @@

io.jsがどのバージョンのV8を使っているか調べるには? @@ -217,10 +217,11 @@

io.jsがどのバージョンのV8を使っているか調べるには? diff --git a/public/ja/faq.html b/public/ja/faq.html index 48b971b..f582f85 100644 --- a/public/ja/faq.html +++ b/public/ja/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

よくある質問

@@ -106,11 +106,11 @@

オープンソースガバナンスとは?

@@ -121,10 +121,11 @@

オープンソースガバナンスとは?

diff --git a/public/ja/index.html b/public/ja/index.html index d23ca37..a852b6b 100644 --- a/public/ja/index.html +++ b/public/ja/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

@@ -65,11 +65,11 @@ @@ -80,10 +80,11 @@ diff --git a/public/ka/es6.html b/public/ka/es6.html index 1d2557b..7c7bd2d 100644 --- a/public/ka/es6.html +++ b/public/ka/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 on io.js

+

ES6 on io.js

io.js is built against modern versions of V8. By keeping up-to-date with the latest releases of this engine we ensure new features from the JavaScript ECMA-262 specification are brought to io.js developers in a timely manner, as well as continued performance and stability improvements.

Version 1.3.0 of io.js ships with V8 4.1.0.14, which includes ES6 features well beyond version 3.26.33 that will be shipped with joyent/node@0.12.x.

No more --harmony flag

@@ -121,11 +121,11 @@

How do I find which version of V8 ships with a particular version of io.js?< @@ -136,10 +136,11 @@

How do I find which version of V8 ships with a particular version of io.js?< diff --git a/public/ka/faq.html b/public/ka/faq.html index 012fa4d..22622c7 100644 --- a/public/ka/faq.html +++ b/public/ka/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

What is io.js?

io.js is a JavaScript platform built on Chrome's V8 runtime. This project began as a fork of Joyent's Node.js™ and is compatible with the npm ecosystem.

Why? io.js aims to provide faster and predictable release cycles. It currently merges in the latest language, API and performance improvements to V8 while also updating libuv and other base libraries.

@@ -55,11 +55,11 @@

What is open source governance?

@@ -70,10 +70,11 @@

What is open source governance?

diff --git a/public/ka/index.html b/public/ka/index.html index 09bb6a8..e3764cd 100644 --- a/public/ka/index.html +++ b/public/ka/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Bringing ES6 to the Node Community!

io.js is an npm compatible platform originally based on node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/ko/es6.html b/public/ko/es6.html index ee1a616..8521d5d 100644 --- a/public/ko/es6.html +++ b/public/ko/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

io.js의 ES6

+

io.js의 ES6

io.js는 V8의 새로운 버전으로 빌드한다. V8 엔진의 최신 버전을 사용함으로써 JavaScript ECMA-262 사양의 신기능을 io.js 개발자가 즉시 이용할 수 있을 뿐만 아니라, 지속적인 성능과 안정성 개선 또한 보장하게 된다.

io.js 1.3.0 버전은 V8 4.1.0.14와 함께 제공되는데, 이는 Node.js™ 0.12.x의 3.28.73 버전보다 더 많은 ES6 기능이 구현되어 있다.

--harmony 플래그는 이제 그만

@@ -126,11 +126,11 @@

특정 io.js 버전이 사용하는 V8의 버전을 확인하려면

@@ -141,10 +141,11 @@

특정 io.js 버전이 사용하는 V8의 버전을 확인하려면

diff --git a/public/ko/faq.html b/public/ko/faq.html index 008a2cf..f32f09c 100644 --- a/public/ko/faq.html +++ b/public/ko/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

io.js란?

io.jsChrome의 V8 런타임 위에서 만들어진 JavaScript 플랫폼이다. Joyent의 Node.js™의 포크로 시작해, npm 환경과 호환하고 있다.

왜?

@@ -54,11 +54,11 @@

오픈 소스 거버넌스란?

@@ -69,10 +69,11 @@

오픈 소스 거버넌스란?

diff --git a/public/ko/index.html b/public/ko/index.html index db4ad0c..f0534e3 100644 --- a/public/ko/index.html +++ b/public/ko/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

ES6를 노드 커뮤니티에!

io.jsnode.js™를 기반으로 만든 npm 호환 플랫폼이다.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/mk/es6.html b/public/mk/es6.html index 1d2557b..380a49a 100644 --- a/public/mk/es6.html +++ b/public/mk/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 on io.js

+

ES6 on io.js

io.js is built against modern versions of V8. By keeping up-to-date with the latest releases of this engine we ensure new features from the JavaScript ECMA-262 specification are brought to io.js developers in a timely manner, as well as continued performance and stability improvements.

Version 1.3.0 of io.js ships with V8 4.1.0.14, which includes ES6 features well beyond version 3.26.33 that will be shipped with joyent/node@0.12.x.

No more --harmony flag

@@ -121,11 +121,11 @@

How do I find which version of V8 ships with a particular version of io.js?< @@ -136,10 +136,11 @@

How do I find which version of V8 ships with a particular version of io.js?< diff --git a/public/mk/faq.html b/public/mk/faq.html index 012fa4d..18f065f 100644 --- a/public/mk/faq.html +++ b/public/mk/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

What is io.js?

io.js is a JavaScript platform built on Chrome's V8 runtime. This project began as a fork of Joyent's Node.js™ and is compatible with the npm ecosystem.

Why? io.js aims to provide faster and predictable release cycles. It currently merges in the latest language, API and performance improvements to V8 while also updating libuv and other base libraries.

@@ -55,11 +55,11 @@

What is open source governance?

@@ -70,10 +70,11 @@

What is open source governance?

diff --git a/public/mk/index.html b/public/mk/index.html index 09bb6a8..ccfb6b7 100644 --- a/public/mk/index.html +++ b/public/mk/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Bringing ES6 to the Node Community!

io.js is an npm compatible platform originally based on node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/nl/es6.html b/public/nl/es6.html index 1d2557b..3b43e24 100644 --- a/public/nl/es6.html +++ b/public/nl/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 on io.js

+

ES6 on io.js

io.js is built against modern versions of V8. By keeping up-to-date with the latest releases of this engine we ensure new features from the JavaScript ECMA-262 specification are brought to io.js developers in a timely manner, as well as continued performance and stability improvements.

Version 1.3.0 of io.js ships with V8 4.1.0.14, which includes ES6 features well beyond version 3.26.33 that will be shipped with joyent/node@0.12.x.

No more --harmony flag

@@ -121,11 +121,11 @@

How do I find which version of V8 ships with a particular version of io.js?< @@ -136,10 +136,11 @@

How do I find which version of V8 ships with a particular version of io.js?< diff --git a/public/nl/faq.html b/public/nl/faq.html index 012fa4d..24d1de1 100644 --- a/public/nl/faq.html +++ b/public/nl/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

What is io.js?

io.js is a JavaScript platform built on Chrome's V8 runtime. This project began as a fork of Joyent's Node.js™ and is compatible with the npm ecosystem.

Why? io.js aims to provide faster and predictable release cycles. It currently merges in the latest language, API and performance improvements to V8 while also updating libuv and other base libraries.

@@ -55,11 +55,11 @@

What is open source governance?

@@ -70,10 +70,11 @@

What is open source governance?

diff --git a/public/nl/index.html b/public/nl/index.html index 09bb6a8..38a4faf 100644 --- a/public/nl/index.html +++ b/public/nl/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Bringing ES6 to the Node Community!

io.js is an npm compatible platform originally based on node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/no/es6.html b/public/no/es6.html index 1d2557b..33e6b9a 100644 --- a/public/no/es6.html +++ b/public/no/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 on io.js

+

ES6 on io.js

io.js is built against modern versions of V8. By keeping up-to-date with the latest releases of this engine we ensure new features from the JavaScript ECMA-262 specification are brought to io.js developers in a timely manner, as well as continued performance and stability improvements.

Version 1.3.0 of io.js ships with V8 4.1.0.14, which includes ES6 features well beyond version 3.26.33 that will be shipped with joyent/node@0.12.x.

No more --harmony flag

@@ -121,11 +121,11 @@

How do I find which version of V8 ships with a particular version of io.js?< @@ -136,10 +136,11 @@

How do I find which version of V8 ships with a particular version of io.js?< diff --git a/public/no/faq.html b/public/no/faq.html index 012fa4d..051a6ed 100644 --- a/public/no/faq.html +++ b/public/no/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

What is io.js?

io.js is a JavaScript platform built on Chrome's V8 runtime. This project began as a fork of Joyent's Node.js™ and is compatible with the npm ecosystem.

Why? io.js aims to provide faster and predictable release cycles. It currently merges in the latest language, API and performance improvements to V8 while also updating libuv and other base libraries.

@@ -55,11 +55,11 @@

What is open source governance?

@@ -70,10 +70,11 @@

What is open source governance?

diff --git a/public/no/index.html b/public/no/index.html index 09bb6a8..48239a2 100644 --- a/public/no/index.html +++ b/public/no/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Bringing ES6 to the Node Community!

io.js is an npm compatible platform originally based on node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/pl/es6.html b/public/pl/es6.html index 1d2557b..553bb3e 100644 --- a/public/pl/es6.html +++ b/public/pl/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 on io.js

+

ES6 on io.js

io.js is built against modern versions of V8. By keeping up-to-date with the latest releases of this engine we ensure new features from the JavaScript ECMA-262 specification are brought to io.js developers in a timely manner, as well as continued performance and stability improvements.

Version 1.3.0 of io.js ships with V8 4.1.0.14, which includes ES6 features well beyond version 3.26.33 that will be shipped with joyent/node@0.12.x.

No more --harmony flag

@@ -121,11 +121,11 @@

How do I find which version of V8 ships with a particular version of io.js?< @@ -136,10 +136,11 @@

How do I find which version of V8 ships with a particular version of io.js?< diff --git a/public/pl/faq.html b/public/pl/faq.html index 012fa4d..67fbac7 100644 --- a/public/pl/faq.html +++ b/public/pl/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

What is io.js?

io.js is a JavaScript platform built on Chrome's V8 runtime. This project began as a fork of Joyent's Node.js™ and is compatible with the npm ecosystem.

Why? io.js aims to provide faster and predictable release cycles. It currently merges in the latest language, API and performance improvements to V8 while also updating libuv and other base libraries.

@@ -55,11 +55,11 @@

What is open source governance?

@@ -70,10 +70,11 @@

What is open source governance?

diff --git a/public/pl/index.html b/public/pl/index.html index 09bb6a8..e673713 100644 --- a/public/pl/index.html +++ b/public/pl/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Bringing ES6 to the Node Community!

io.js is an npm compatible platform originally based on node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/pt_BR/es6.html b/public/pt_BR/es6.html index edd92b5..3e7d673 100644 --- a/public/pt_BR/es6.html +++ b/public/pt_BR/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 no io.js

+

ES6 no io.js

O io.js é construído usando versões modernas do V8. Mantendo-nos atualizados com as últimas versões desta engine, garantimos que novas funcionalidades da especificação JavaScript ECMA-262 são trazidas para desenvolvedores io.js rapidamente, além de manter performance continuada e melhorias de estabilidade.

A versão 1.3.0 do io.js vem com o V8 4.1.0.14, que inclui funcionalidades do ES6 bem além da versão 3.26.33 que vem com o joyent/node@0.12.x.

Não mais flag --harmony

@@ -121,11 +121,11 @@

Como posso saber que versão do V8 está disponível com uma versão especí @@ -136,10 +136,11 @@

Como posso saber que versão do V8 está disponível com uma versão especí diff --git a/public/pt_BR/faq.html b/public/pt_BR/faq.html index 350eea2..c1378f0 100644 --- a/public/pt_BR/faq.html +++ b/public/pt_BR/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

O que é io.js?

io.js é uma plataforma JavaScript construída no Chrome's V8 runtime. Esse projeto começou como um fork do Node.js™ da Joyent e é compátivel com o ecossistema npm.

Por que? O io.js visa fornecer ciclos de release mais rápidos e previsíveis. Atualmente ele traz as últimas melhorias em linguagem, API e desempenho do V8 e ao mesmo tempo atualizando a libuv e outras bibliotecas base.

@@ -53,11 +53,11 @@

O que é governança de código aberto?

@@ -68,10 +68,11 @@

O que é governança de código aberto?

diff --git a/public/pt_BR/index.html b/public/pt_BR/index.html index 9e169e0..48ba9c7 100644 --- a/public/pt_BR/index.html +++ b/public/pt_BR/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Levando o ES6 para a Comunidade Node!

io.js é uma plataforma compatível com o npm, originalmente baseada no node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/pt_PT/es6.html b/public/pt_PT/es6.html index 0bf9675..fb26dab 100644 --- a/public/pt_PT/es6.html +++ b/public/pt_PT/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 no io.js

+

ES6 no io.js

O io.js é compilado com versões modernas do V8. Mantendo-nos atualizados com a última versão deste motor, garantimos que as novas funcionalidades da especificação JavaScript ECMA-262 são disponibilizadas rapidamente aos programadores io.js, bem como as melhorias de performance e estabilidade.

A versão 1.3.0 do io.js vem com o V8 4.1.0.14 que inclui funcionalidades ES6 muito além da versão 3.26.33 presente no joyent/node@0.12.x.

Chega de --harmony flag

@@ -127,11 +127,11 @@

Como descubro a versão do V8 que vem com uma versão específica do io.js?< @@ -142,10 +142,11 @@

Como descubro a versão do V8 que vem com uma versão específica do io.js?< diff --git a/public/pt_PT/faq.html b/public/pt_PT/faq.html index 4483f54..4bfaced 100644 --- a/public/pt_PT/faq.html +++ b/public/pt_PT/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

O que é o io.js?

O io.js é uma plataforma JavaScript construída sob o runtime do Chrome V8. Este projeto começou como um fork do Node.js™ da Joyent e é compatível com o ecossistema do npm.

Porquê? O io.js procura disponibilizar ciclos de release mais rápidos e previsíveis. Atualmente junta as melhorias mais recentes da linguagem, API e performance do V8 e ao mesmo tempo atualiza a libuv e outras bibliotecas base.

@@ -52,11 +52,11 @@

O que é governança de software livre?

@@ -67,10 +67,11 @@

O que é governança de software livre?

diff --git a/public/pt_PT/index.html b/public/pt_PT/index.html index 7f34b13..e343711 100644 --- a/public/pt_PT/index.html +++ b/public/pt_PT/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

A trazer ES6 à comunidade Node!

io.js é uma plataforma compatível com o npm originalmente baseada em node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/ru/es6.html b/public/ru/es6.html index 1d2557b..63918a7 100644 --- a/public/ru/es6.html +++ b/public/ru/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 on io.js

+

ES6 on io.js

io.js is built against modern versions of V8. By keeping up-to-date with the latest releases of this engine we ensure new features from the JavaScript ECMA-262 specification are brought to io.js developers in a timely manner, as well as continued performance and stability improvements.

Version 1.3.0 of io.js ships with V8 4.1.0.14, which includes ES6 features well beyond version 3.26.33 that will be shipped with joyent/node@0.12.x.

No more --harmony flag

@@ -121,11 +121,11 @@

How do I find which version of V8 ships with a particular version of io.js?< @@ -136,10 +136,11 @@

How do I find which version of V8 ships with a particular version of io.js?< diff --git a/public/ru/faq.html b/public/ru/faq.html index 012fa4d..de3f6bb 100644 --- a/public/ru/faq.html +++ b/public/ru/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

What is io.js?

io.js is a JavaScript platform built on Chrome's V8 runtime. This project began as a fork of Joyent's Node.js™ and is compatible with the npm ecosystem.

Why? io.js aims to provide faster and predictable release cycles. It currently merges in the latest language, API and performance improvements to V8 while also updating libuv and other base libraries.

@@ -55,11 +55,11 @@

What is open source governance?

@@ -70,10 +70,11 @@

What is open source governance?

diff --git a/public/ru/index.html b/public/ru/index.html index 09bb6a8..759940b 100644 --- a/public/ru/index.html +++ b/public/ru/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Bringing ES6 to the Node Community!

io.js is an npm compatible platform originally based on node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/sv/es6.html b/public/sv/es6.html index 1d2557b..b890f65 100644 --- a/public/sv/es6.html +++ b/public/sv/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 on io.js

+

ES6 on io.js

io.js is built against modern versions of V8. By keeping up-to-date with the latest releases of this engine we ensure new features from the JavaScript ECMA-262 specification are brought to io.js developers in a timely manner, as well as continued performance and stability improvements.

Version 1.3.0 of io.js ships with V8 4.1.0.14, which includes ES6 features well beyond version 3.26.33 that will be shipped with joyent/node@0.12.x.

No more --harmony flag

@@ -121,11 +121,11 @@

How do I find which version of V8 ships with a particular version of io.js?< @@ -136,10 +136,11 @@

How do I find which version of V8 ships with a particular version of io.js?< diff --git a/public/sv/faq.html b/public/sv/faq.html index 012fa4d..3f361e0 100644 --- a/public/sv/faq.html +++ b/public/sv/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

What is io.js?

io.js is a JavaScript platform built on Chrome's V8 runtime. This project began as a fork of Joyent's Node.js™ and is compatible with the npm ecosystem.

Why? io.js aims to provide faster and predictable release cycles. It currently merges in the latest language, API and performance improvements to V8 while also updating libuv and other base libraries.

@@ -55,11 +55,11 @@

What is open source governance?

@@ -70,10 +70,11 @@

What is open source governance?

diff --git a/public/sv/index.html b/public/sv/index.html index 09bb6a8..5c7c29c 100644 --- a/public/sv/index.html +++ b/public/sv/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Bringing ES6 to the Node Community!

io.js is an npm compatible platform originally based on node.js™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/tr/es6.html b/public/tr/es6.html index f29d4a5..d70fa19 100644 --- a/public/tr/es6.html +++ b/public/tr/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

io.js ile ES6

+

io.js ile ES6

io.js, V8 javascript motorunun en modern sürümüyle derlenmiştir. Bu motoru güncel sürümde tutarak JavaScript ECMA-262 tanımlayıcı dökümanı ile belirtilmiş yeni özelliklere io.js geliştiricilerinin en kısa zamanda ulaşmasını sağlıyoruz, bu arada performans ve kararlığın arttırılmasına devam ediyoruz.

io.js 1.1.0 sürümü V8 4.1.0.14 sürümüyle gelmektedir, ayrıca joyent/node@0.12.x sürümünde bulunan V8 3.26.33 motoruna göre daha gelişmiş ES6 özelliklerine sahiptir.

--harmony bayrağına gerek yok

@@ -120,11 +120,11 @@

io.js'in hangi V8 sürümünü kullandığını nasıl bulabilirim?

@@ -135,10 +135,11 @@

io.js'in hangi V8 sürümünü kullandığını nasıl bulabilirim?

diff --git a/public/tr/faq.html b/public/tr/faq.html index 066ffc9..3e8a436 100644 --- a/public/tr/faq.html +++ b/public/tr/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

SSS

+

SSS

İo.js nedir?

io.js Chrome V8 üzerine inşa edilmiş bir Javascript platformudur. Proje Joyent's Node.js™ klonu ve npm ekosistemiyle uyumlu çalışmaktadır.

##Neden?

@@ -54,11 +54,11 @@

Açık Kaynak Yönetim Biçimi Nedir?

@@ -69,10 +69,11 @@

Açık Kaynak Yönetim Biçimi Nedir?

diff --git a/public/tr/index.html b/public/tr/index.html index 79272a7..a45147e 100644 --- a/public/tr/index.html +++ b/public/tr/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

ES6'ı Node topluluğuna kazandırdık

io.js, node.js'e dayalı ve npm'le uyumlu bir platformdur™.

io.js

@@ -49,11 +49,11 @@ @@ -64,10 +64,11 @@ diff --git a/public/uk/es6.html b/public/uk/es6.html index 5aca487..bc8c9b7 100644 --- a/public/uk/es6.html +++ b/public/uk/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

ES6 в io.js

+

ES6 в io.js

io.js побудований на основі сучасних версій V8. Підтримуючи останні версії V8 в io.js, ми гарантуємо наявність нових можливостей JavaScript ECMA-262 specification, які привносяться до io.js розробників своєчасно, а також підвищують швидкість роботи та стабільність.

Версія io.js 1.3.0 має версію V8 4.1.0.14, яка включає в себе ES6 можливості, котрих немає в V8 3.28.73, яка іде в поставці з Node™@0.12x.

Більше ніяких --harmony параметрів

@@ -127,11 +127,11 @@

Як мені дізнатись, яку версію V8 використо @@ -142,10 +142,11 @@

Як мені дізнатись, яку версію V8 використо diff --git a/public/uk/faq.html b/public/uk/faq.html index fc6d32d..25c220a 100644 --- a/public/uk/faq.html +++ b/public/uk/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

FAQ

+

FAQ

Що таке io.js?

io.js це JavaScript платформа, побудована на основі Chrome's V8 runtime. Цей проект було розпочато, як відгалуження від Joyent's Node.js™, також підтримується сумісність з екосистемою npm.

Чому?

@@ -54,11 +54,11 @@

Що таке open source governance?

@@ -69,10 +69,11 @@

Що таке open source governance?

diff --git a/public/uk/index.html b/public/uk/index.html index 4fe14b8..e96518e 100644 --- a/public/uk/index.html +++ b/public/uk/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

Впровадження ES6 в спільноту Node!

io.js це npm сумісна платформа, що побудована на основі node.js™.

io.js

@@ -50,11 +50,11 @@ @@ -65,10 +65,11 @@ diff --git a/public/zh_TW/es6.html b/public/zh_TW/es6.html index 20e661c..cc07a8e 100644 --- a/public/zh_TW/es6.html +++ b/public/zh_TW/es6.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

io.js 的 ES6

+

io.js 的 ES6

io.js 建構於目前版本的 V8 之上,將會持續更新並引入最新的引擎版本,以確保最新的 JavaScript ECMA-262 specification 特性能以最短的時間內被 io.js 的開發人員所使用,並藉著不斷快速更新此持續改善效能及穩定度。

目前釋出的 io.js v1.3.0 版本已採用 V8 4.1.0.14,其支援的 ES6 特性遠超過 joyent/node@0.12.x 所使用的 V8 3.26.23 。

不再需要 --harmony 參數

@@ -121,11 +121,11 @@

我如何得知 io.js 正在使用的 V8 版本?

@@ -136,10 +136,11 @@

我如何得知 io.js 正在使用的 V8 版本?

diff --git a/public/zh_TW/faq.html b/public/zh_TW/faq.html index 336242e..d3d1951 100644 --- a/public/zh_TW/faq.html +++ b/public/zh_TW/faq.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

常見問題(FAQ)

+

常見問題(FAQ)

什麼是 io.js ?

io.js 是一個以 Chrome's V8 runtime 為基礎的 JavaScript 應用程式開發平台,這個專案一開始是從 Joyent's Node.js™ 分支出來的一個版本,完全與 npm 相容。

為什麼這麼做呢?

@@ -53,11 +53,11 @@

什麼是開放原始碼管理?

@@ -68,10 +68,11 @@

什麼是開放原始碼管理?

diff --git a/public/zh_TW/index.html b/public/zh_TW/index.html index c720da4..6c1381a 100644 --- a/public/zh_TW/index.html +++ b/public/zh_TW/index.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + io.js - JavaScript I/O @@ -24,15 +24,15 @@
-

JavaScript I/O

+

JavaScript I/O

ES6 走入 Node.js 社群!

io.js 是一個與 npm 相容並以 node.js™ 為基礎的應用程式平台。

io.js

@@ -50,11 +50,11 @@ @@ -65,10 +65,11 @@ diff --git a/source/templates/main.html b/source/templates/main.html index e52dcfc..6f11814 100644 --- a/source/templates/main.html +++ b/source/templates/main.html @@ -1,9 +1,9 @@ - + - io.js - JavaScript I/O + {{i18n.browser-title}} @@ -11,7 +11,7 @@ - + @@ -20,29 +20,27 @@ - +
-
- -
+
{{{content}}}
@@ -57,6 +55,7 @@ Commit Sha: Commit Msg: +Hashsum: =========== END BUILD INFORMATION =========== -->