Typos
authorChocobozzz <florian.bigard@gmail.com>
Fri, 22 Jul 2016 09:53:55 +0000 (11:53 +0200)
committerChocobozzz <florian.bigard@gmail.com>
Fri, 22 Jul 2016 09:53:55 +0000 (11:53 +0200)
.github/CONTRIBUTING.md
ARCHITECTURE.md
README.md
support/doc/server/code.md

index c7779000d4404991e7e8b3fbbc88be7d920c0fb2..78a914abcc01c1356eb9da49fd173faeb0ee59ee 100644 (file)
@@ -5,7 +5,7 @@ Interesting in contributing? Awesome :)
 **Quick Links:**
 
   * [Give your feedback](#give-your-feedback)
-  * [Develop on the Server side}(#develop-on-the-server-side)
+  * [Develop on the Server side](#develop-on-the-server-side)
   * [Develop on the Client side](#develop-on-the-client-side)
   * [Write documentation](#write-documentation)
 
index 65dd5b49d9553df21d1b33001def700905382526..1454f94271110d53fdda090f74b77633f3e65edc 100644 (file)
@@ -42,9 +42,9 @@
   * All the requests are retried if they failed
   * The requests are made at regular intervals to all pods of the network with a limit of parallel requests: if there are 1000 pods in the networks, the server won't make more than 10 requests in parallel
   * If there are no informations to send (no video addition/removal), no requests are made
-  * The requests are grouped: for example if the interval is 1 hour and an user upload 2 videos there will be only 1 request that contains the 2 videos informations
-  * The requests in the group are ordered: if an user add a video and remove it, we need to transmit these informations to the other pods in the same order
-  * The requests are grouped with a limit: if an user uploads 100 videos at a time, the information could be propagated in a few hours to do not make too big requests
+  * The requests are grouped: for example if the interval is 1 hour and a user$ upload 2 videos there will be only 1 request that contains the 2 videos informations
+  * The requests in the group are ordered: if a user add a video and remove it, we need to transmit these informations to the other pods in the same order
+  * The requests are grouped with a limit: if a user uploads 100 videos at a time, the information could be propagated in a few hours to do not make too big requests
   * If a grouped request fails the score is decreased by x points
   * If a grouped request is a success the score is increased by x points
   * The maximum of points would be defined
@@ -56,8 +56,8 @@
   * A pod has different user accounts that can upload videos
   * All pods have an index of all videos of the network (name, origin pod url, small description, uploader username, magnet Uri, thumbnail name, created date and the thumbnail file). For example, a test with 1000000 videos with alphanum characters and the following lengths: name = 50, author = 50, url = 25, description = 250, magnerUri = 200, thumbnail name = 50 has a mongodb size of ~ 4GB. To this, we add 1 000 000 thumbnails of 5-15 KB so 15GB maximum
   * After having uploaded a video, the server seeds it, adds the meta data in its database and makes a secure request to all of its friends
-  * If an user wants to watch a video, he asks its pod the magnetUri and the frontend adds the torrent (with WebTorrent), creates the HTML5 video tag and streams the file into it
-  * An user watching a video seeds it too (bittorent) so another user who is watching the same video can get the data from the origin server and the user 1 (etc)
+  * If a user wants to watch a video, he asks its pod the magnetUri and the frontend adds the torrent (with WebTorrent), creates the HTML5 video tag and streams the file into it
+  * A user watching a video seeds it too (bittorent) so another user who is watching the same video can get the data from the origin server and the user 1 (etc)
 
 ## Ideas
 
index c5911bc6d5f8dd06903fe6c2e917c5267423032f..1a3470711be0f82feeca1548fbd036eecce22383 100644 (file)
--- a/README.md
+++ b/README.md
@@ -189,7 +189,7 @@ See [ARCHITECTURE.md](https://github.com/Chocobozzz/PeerTube/blob/master/ARCHITE
     * Each server of a network has a list of all other servers of this network
     * When a new installed server wants to join a network, it just has to get the servers list through a server that is already in the network and tell "Hi I'm new in the network, communicate with me and share me your servers list please". Then the server will "make friend" with each server of this list
     * Each server has its own users who query it (search videos, where the torrent URI of this specific video is...)
-    * If an user upload a video, the server seeds it and sends the video informations (name, short description, torrent URI...) to each server of the network
+    * If a user upload a video, the server seeds it and sends the video informations (name, short description, torrent URI...) to each server of the network
     * Each server has a RSA key to encrypt and sign communications with other servers
   * A server is a tracker responsible for all the videos uploaded in it
   * Even if nobody watches a video, it is seeded by the server where the video was uploaded
index d49d120e928f951d3aa9afe68817fcb1c5fab318..351461242a80cb14ad7bff92cbf6de858e10ba37 100644 (file)
@@ -49,7 +49,7 @@ The `NODE_ENV=test` is set to speed up communications between pods (see [constan
 
 `npm run help` give you all available commands.
 
-If you want to test the decentralization feature, you can easily run 3 pods by runnin `npm run play`. The pods password are `test1`, `test2` and `test3`.
+If you want to test the decentralization feature, you can easily run 3 pods by running `npm run play`. The pods password are `test1`, `test2` and `test3`.
 
 
 ## Architecture
@@ -64,9 +64,9 @@ The seperate Electron process has the goal to seed videos through WebRTC because
 
 ![Architecture scheme](https://github.com/Chocobozzz/PeerTube/blob/master/support/doc/server/upload-video.png)
 
-When an user upload a video, the rest API asks the Electron process to seed it (communicate with IPC) and then adds it to its Mongo database.
+When a user upload a video, the rest API asks the Electron process to seed it (communicate with IPC) and then adds it to its Mongo database.
 
-If an user wants to watch the video, the tracker will indicate all other users that are watching the video + the Electron process.
+If a user wants to watch the video, the tracker will indicate all other users that are watching the video + the Electron process.
 
 ## Newcomers