You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by ta...@apache.org on 2017/07/10 03:24:39 UTC

[1/6] incubator-weex git commit: Closes #81: invalid.

Repository: incubator-weex
Updated Branches:
  refs/heads/dev a4931a68a -> 179437521


Closes #81: invalid.


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/efc74a49
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/efc74a49
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/efc74a49

Branch: refs/heads/dev
Commit: efc74a49713c844da88ed9e06f35b222b05d17b4
Parents: 25d52bd
Author: MrRaindrop <te...@gmail.com>
Authored: Mon Jul 3 11:47:25 2017 +0800
Committer: MrRaindrop <te...@gmail.com>
Committed: Mon Jul 3 11:47:25 2017 +0800

----------------------------------------------------------------------

----------------------------------------------------------------------



[6/6] incubator-weex git commit: Merge branch 'master' of https://github.com/dennythecoder/incubator-weex into dev

Posted by ta...@apache.org.
Merge branch 'master' of https://github.com/dennythecoder/incubator-weex into dev


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/17943752
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/17943752
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/17943752

Branch: refs/heads/dev
Commit: 179437521b97d2a2a703edb8910763f3d302e15f
Parents: a4931a6 5fcb08d
Author: tancy <ro...@gmail.com>
Authored: Mon Jul 10 11:24:48 2017 +0800
Committer: tancy <ro...@gmail.com>
Committed: Mon Jul 10 11:24:48 2017 +0800

----------------------------------------------------------------------
 doc/source/guide/set-up-env.md | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)
----------------------------------------------------------------------



[4/6] incubator-weex git commit: Updated grammar in set-up-env.md

Posted by ta...@apache.org.
Updated grammar in set-up-env.md

Updated grammar in set-up-env.md

Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/87dac9fe
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/87dac9fe
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/87dac9fe

Branch: refs/heads/dev
Commit: 87dac9fed6dd3f8b90904d7fed0a4bb75865a9f7
Parents: 6d395f5
Author: Denny <de...@gmail.com>
Authored: Fri Jul 7 20:34:03 2017 -0500
Committer: GitHub <no...@github.com>
Committed: Fri Jul 7 20:34:03 2017 -0500

----------------------------------------------------------------------
 doc/source/guide/set-up-env.md | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/87dac9fe/doc/source/guide/set-up-env.md
----------------------------------------------------------------------
diff --git a/doc/source/guide/set-up-env.md b/doc/source/guide/set-up-env.md
index 702c347..6aac518 100644
--- a/doc/source/guide/set-up-env.md
+++ b/doc/source/guide/set-up-env.md
@@ -8,11 +8,11 @@ has_chapter_content: true
 
 # Set up development environment 
 
-Use dotWe is a good choice, But if you want to develop locally on your own machine, you will set up your development environment.
+Using [dotWe](http://dotwe.org/vue) is a good choice, but if you want to develop locally on your own machine, you will need to set up your development environment.
 
-You will need Node.js and the [Weex CLi](https://github.com/weexteam/weex-toolkit).
+You will need Node.js and the [Weex CLI](https://github.com/weexteam/weex-toolkit).
 
-You can installing Node using [nvm](https://github.com/creationix/nvm) (Simple bash script to manage multiple active node.js versions). Run the following commands in a Terminal after installing nvm:
+You can install Node using [nvm](https://github.com/creationix/nvm) (Simple bash script to manage multiple active node.js versions). Run the following commands in a Terminal after installing nvm:
 
 ```bash
 $ nvm install 6.10.0
@@ -41,13 +41,13 @@ Then you can use the weex command to verify that the installation is successful:
 
 ### Generate a new Weex project
 
-You can use CLi to generate a Weex project called "awesome-project". Run the following command in a Terminal:
+You can use CLI to generate a Weex project called "awesome-project". Run the following command in a Terminal:
 
 ```bash
 $ weex init awesome-project
 ```
 
-Then we enter the awesome-project folder, the CLi has been for us to generate a standard project structure.
+Then enter the awesome-project folder, the CLI has been for us to generate a standard project structure.
 
 ### Usage
 
@@ -57,7 +57,7 @@ We enter the awesome-project folder and install dependencies with the following
 npm install
 ```
 
-Then we run `npm run dev` and `npm run serve` to start watch mode and static server.
+Then run `npm run dev` and `npm run serve` to start watch mode and static server.
 
 Finally, we can see the Weex page in `http://localhost:8080/index.html`.
 
@@ -66,8 +66,8 @@ You can modify this page in `src/foo.vue`. The code is shown below:
 ```html
 <template>
   <div class="wrapper">
-    <text class="weex">Hello Weex !</text>
-    <text class="vue">Hello Vue !</text>
+    <text class="weex">Hello Weex!</text>
+    <text class="vue">Hello Vue!</text>
   </div>
 </template>
 
@@ -90,4 +90,4 @@ You can modify this page in `src/foo.vue`. The code is shown below:
 </style>
 ```
 
-If you're curious to learn more about technical details, continue on to the next. And don't forget to write code at [dotWe](https://dotwe.org) and preview at anytime.
+If you're curious to learn more about technical details, continue on to the next section. And don't forget to write code at [dotWe](https://dotwe.org) and preview at anytime.


[3/6] incubator-weex git commit: Closes #169: invalid.

Posted by ta...@apache.org.
Closes #169: invalid.


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/6d395f5d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/6d395f5d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/6d395f5d

Branch: refs/heads/dev
Commit: 6d395f5d5df06fe6971c22cf070d72411e11bb5a
Parents: 5f96a2c
Author: MrRaindrop <te...@gmail.com>
Authored: Mon Jul 3 11:53:02 2017 +0800
Committer: MrRaindrop <te...@gmail.com>
Committed: Mon Jul 3 11:53:02 2017 +0800

----------------------------------------------------------------------

----------------------------------------------------------------------



[5/6] incubator-weex git commit: Update set-up-env.md

Posted by ta...@apache.org.
Update set-up-env.md

Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/5fcb08da
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/5fcb08da
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/5fcb08da

Branch: refs/heads/dev
Commit: 5fcb08dae572405c147d0268780f0ae9e1ad9c9e
Parents: 87dac9f
Author: Denny <de...@gmail.com>
Authored: Fri Jul 7 20:41:54 2017 -0500
Committer: GitHub <no...@github.com>
Committed: Fri Jul 7 20:41:54 2017 -0500

----------------------------------------------------------------------
 doc/source/guide/set-up-env.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/5fcb08da/doc/source/guide/set-up-env.md
----------------------------------------------------------------------
diff --git a/doc/source/guide/set-up-env.md b/doc/source/guide/set-up-env.md
index 6aac518..f8ac41a 100644
--- a/doc/source/guide/set-up-env.md
+++ b/doc/source/guide/set-up-env.md
@@ -19,7 +19,7 @@ $ nvm install 6.10.0
 $ nvm use 6.10.0
 ```
 
-Node.js comes with npm, which lets you install the Weex Cli.
+Node.js comes with npm, which lets you install the Weex CLI.
 
 Run the following command in a Terminal:
 
@@ -35,13 +35,13 @@ weex-previewer : v1.3.4
 **NOTE: ** If you get an error like "permission error", try installing with `sudo`.
 
 
-Then you can use the weex command to verify that the installation is successful:
+Then you can use the Weex command to verify that the installation is successful:
 
 ![](https://img.alicdn.com/tfs/TB1NBhdQXXXXXXzXFXXXXXXXXXX-712-343.png)
 
 ### Generate a new Weex project
 
-You can use CLI to generate a Weex project called "awesome-project". Run the following command in a Terminal:
+You can use the CLI to generate a Weex project called "awesome-project". Run the following command in a Terminal:
 
 ```bash
 $ weex init awesome-project


[2/6] incubator-weex git commit: Closes #10: invalid.

Posted by ta...@apache.org.
Closes #10: invalid.


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/5f96a2ce
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/5f96a2ce
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/5f96a2ce

Branch: refs/heads/dev
Commit: 5f96a2ceb656aaa2df1690af9d325922fee3d851
Parents: efc74a4
Author: MrRaindrop <te...@gmail.com>
Authored: Mon Jul 3 11:49:36 2017 +0800
Committer: MrRaindrop <te...@gmail.com>
Committed: Mon Jul 3 11:49:36 2017 +0800

----------------------------------------------------------------------

----------------------------------------------------------------------