Bug 1365216 - Follow up. r=pbro

MozReview-Commit-ID: 9X9xSaxTQkB

--HG--
extra : rebase_source : 5b213ab74e9c9977f38e0cb9b263625e9f601844
This commit is contained in:
sole 2017-05-17 16:06:07 +01:00
Родитель 0af285b498
Коммит 8efc1bf877
4 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -3,7 +3,7 @@
* [Getting started](getting-started/README.md) * [Getting started](getting-started/README.md)
* [Where is the code?](getting-started/where-is-the-code.md) * [Where is the code?](getting-started/where-is-the-code.md)
* [Servers and actors](getting-started/servers-and-actors.md) * [Architecture overview](getting-started/architecture-overview.md)
* [Set up to build DevTools](getting-started/build.md) * [Set up to build DevTools](getting-started/build.md)
* [Development profiles](getting-started/development-profiles.md) * [Development profiles](getting-started/development-profiles.md)
* [Bugs and issue trackers](bugs-issues.md) * [Bugs and issue trackers](bugs-issues.md)

Просмотреть файл

@ -1,4 +1,4 @@
# Servers and actors # Architecture overview
Broadly speaking, the tools are divided in two parts: the server and the client. A **server** is anything that can be debugged: for example, your browser, but it could also be Firefox for Android, running on another device. The **client** is the front-end side of the tools, and it is what developers interact with when using the tools. Broadly speaking, the tools are divided in two parts: the server and the client. A **server** is anything that can be debugged: for example, your browser, but it could also be Firefox for Android, running on another device. The **client** is the front-end side of the tools, and it is what developers interact with when using the tools.

Просмотреть файл

@ -50,7 +50,7 @@ To run the Firefox you just compiled:
./mach run ./mach run
``` ```
This will run using an empty temporary profile which is discarded when you close the browser. We will look more into persistent development profiles later.<!--TODO: add link to that section when it's written--> This will run using an empty temporary profile which is discarded when you close the browser. We will look more into [persistent development profiles later](./development-profiles.md).
### Rebuilding ### Rebuilding

Просмотреть файл

@ -4,7 +4,7 @@ You can have various [Firefox profiles](https://developer.mozilla.org/en-US/Fire
This page will guide you through configuring a new profile to enable development features such as additional logging, dumping of network packets, remote debugging, etc. which will help when working in DevTools. This page will guide you through configuring a new profile to enable development features such as additional logging, dumping of network packets, remote debugging, etc. which will help when working in DevTools.
Many of these changes are achieved by modifying preferences in `about:config`, an special page you can access by entering that in Firefox's URL bar. The first time, it will show you a warning page. Click through and then you can start searching for preferences to modify. Many of these changes are achieved by modifying preferences in `about:config`, a special page you can access by entering that in Firefox's URL bar. The first time, it will show you a warning page. Click through and then you can start searching for preferences to modify.
Here's [a support article](https://support.mozilla.org/t5/Manage-preferences-and-add-ons/Configuration-Editor-for-Firefox/ta-p/35030) if you need help. Here's [a support article](https://support.mozilla.org/t5/Manage-preferences-and-add-ons/Configuration-Editor-for-Firefox/ta-p/35030) if you need help.