aboutsummaryrefslogtreecommitdiff
path: root/files/uk/mozilla/firefox
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 21:46:22 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 21:46:22 -0500
commita065e04d529da1d847b5062a12c46d916408bf32 (patch)
treefe0f8bcec1ff39a3c499a2708222dcf15224ff70 /files/uk/mozilla/firefox
parent218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (diff)
downloadtranslated-content-a065e04d529da1d847b5062a12c46d916408bf32.tar.gz
translated-content-a065e04d529da1d847b5062a12c46d916408bf32.tar.bz2
translated-content-a065e04d529da1d847b5062a12c46d916408bf32.zip
update based on https://github.com/mdn/yari/issues/2028
Diffstat (limited to 'files/uk/mozilla/firefox')
-rw-r--r--files/uk/mozilla/firefox/firefox_esr/index.html10
-rw-r--r--files/uk/mozilla/firefox/multiprocess_firefox/index.html85
-rw-r--r--files/uk/mozilla/firefox/multiprocess_firefox/message_manager/index.html71
3 files changed, 0 insertions, 166 deletions
diff --git a/files/uk/mozilla/firefox/firefox_esr/index.html b/files/uk/mozilla/firefox/firefox_esr/index.html
deleted file mode 100644
index 81ac408b05..0000000000
--- a/files/uk/mozilla/firefox/firefox_esr/index.html
+++ /dev/null
@@ -1,10 +0,0 @@
----
-title: Firefox ESR
-slug: Mozilla/Firefox/Firefox_ESR
-translation_of: Mozilla/Firefox/Firefox_ESR
----
-<div>{{FirefoxSidebar}}</div><p>Firefox з розширеною підтримкою (Extended Support Release - ESR) заснована на офіційній версії Firefox для настільних ПК, для використання організаціями, яким потрібна розширена підтримка для масового розгортання. Unlike other release channels, ESRs are not updated with new features every six weeks.Rather,they are supported for about a year and only updated with major security or stability fixes. The current ESR version is based on Firefox 45 issued on March 8th, 2016. The next ESR version will be released on December 27th, 2016 and will be number 52.</p>
-
-<p>CCK2 це кращий спосіб, щоб налаштувати Firefox. Завантажити <a href="https://mike.kaply.com/cck2/">тут</a>.</p>
-
-<p>We strongly encourage Firefox ESR users to sign up for the <a href="https://www.mozilla.org/uk/firefox/organizations/">Enterprise Working Group (EWG) mailing list</a>.</p>
diff --git a/files/uk/mozilla/firefox/multiprocess_firefox/index.html b/files/uk/mozilla/firefox/multiprocess_firefox/index.html
deleted file mode 100644
index db6e8d0c3e..0000000000
--- a/files/uk/mozilla/firefox/multiprocess_firefox/index.html
+++ /dev/null
@@ -1,85 +0,0 @@
----
-title: Multiprocess Firefox
-slug: Mozilla/Firefox/Multiprocess_Firefox
-tags:
- - Electrolysis
- - Firefox
- - Mozilla
- - Multiprocess
- - NeedsTranslation
- - TopicStub
- - e10s
-translation_of: Mozilla/Firefox/Multiprocess_Firefox
----
-<p>{{FirefoxSidebar}}</p>
-
-<p>In older versions of Firefox for desktop, the entire browser ran within a single operating system process. Specifically, the JavaScript that ran the browser UI (also known as "chrome code") and the JavaScript that ran within web pages (also known as "content" or "web content") were not separated.<br>
- <br>
- Currently, the latest versions of Firefox run the browser UI and the web content in separate processes. In the current iteration of this architecture, all browser tabs run within the same process and the browser UI runs in its own individual process. In future iterations of Firefox, there will be more than one process to exclusively handle web content. The internal name for this project is called Electrolysis, sometimes abbreviated to e10s.</p>
-
-<p>The good news is that normal web pages and their developers are unaffected by this changeover to a multiprocess-based Firefox. Unfortunately, people developing for Firefox or Firefox add-ons will be affected if their code relies on being able to access web content directly since the system for accessing this data is going to change.</p>
-
-<p>Instead of accessing web content directly, chrome code will have to use the <a href="/en-US/docs/Mozilla/Firefox/Multiprocess_Firefox/Message_manager">message manager</a> instead. To help ease this transition we've implemented <a href="/en-US/docs/Mozilla/Firefox/Multiprocess_Firefox/Cross_Process_Object_Wrappers">Cross Process Object Wrappers</a> and some <a href="/en-US/docs/Mozilla/Firefox/Multiprocess_Firefox/Limitations_of_chrome_scripts#Compatibility_shims">compatibility shims for add-on developers</a>. If you are an add-on developer wondering whether or not you are affected by this change, see the <a href="/Mozilla/Add-ons/Working_with_multiprocess_Firefox">guide to working with multiprocess Firefox</a>.</p>
-
-<hr>
-<div class="topicpage-table">
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Mozilla/Firefox/Multiprocess_Firefox/Technical_overview">Technical overview</a></dt>
- <dd>A high-level overview of how multiprocess Firefox is implemented.</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox/Multiprocess_Firefox/Web_content_compatibility">Web content compatibility guide</a></dt>
- <dd>Guidelines and details on potential website compatibility issues that may arise due to the transition. Tip: there aren't very many!</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox/Multiprocess_Firefox/Glossary">Glossary</a></dt>
- <dd>A glossary of terms used in multiprocess Firefox.</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox/Multiprocess_Firefox/Message_Manager">Message manager</a></dt>
- <dd>A complete guide to the objects used to communicate between chrome code and web content.</dd>
- <dt><a href="/en-US/docs/Mozilla/Add-ons/SDK/Guides/Multiprocess_Firefox_and_the_SDK">SDK-based add-ons</a></dt>
- <dd>How to migrate add-ons developed using the Add-on SDK.</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox/Multiprocess_Firefox/Which_URIs_load_where">Which URIs load where</a></dt>
- <dd>A quick guide to which URIs - chrome:, about:, file:, resource: - are loaded into which process.</dd>
-</dl>
-</div>
-
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Mozilla/Firefox/Multiprocess_Firefox/Motivation">Motivation</a></dt>
- <dd>Why we are implementing multiprocess Firefox: performance, security, and stability.</dd>
- <dt><a href="/en-US/docs/Mozilla/Add-ons/Working_with_multiprocess_Firefox">Add-on migration guide</a></dt>
- <dd>If you are an add-on developer, find out if you are affected and how to update your code.</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox/Multiprocess_Firefox/Cross_Process_Object_Wrappers">Cross Process Object Wrappers</a></dt>
- <dd>Cross Process Object Wrappers are a migration aid, giving chrome code synchronous access to web content.</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox/Multiprocess_Firefox/Debugging_frame_scripts">Debugging content processes</a></dt>
- <dd>How to debug code running in the content process, including frame and process scripts.</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox/Multiprocess_Firefox/Tab_selection_in_multiprocess_Firefox">Tab selection in multiprocess Firefox</a></dt>
- <dd>How switching tabs works in multiprocess Firefox.</dd>
-</dl>
-</div>
-</div>
-
-<hr>
-<div class="topicpage-table">
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Mozilla/Firefox/Multiprocess_Firefox/Limitations_of_chrome_scripts">Limitations of chrome scripts</a></dt>
- <dd>Practices that will no longer work in chrome code, and how to update them.</dd>
-</dl>
-</div>
-
-<div class="section">
-<dl>
- <dt><a href="/en-US/docs/Mozilla/Firefox/Multiprocess_Firefox/Limitations_of_frame_scripts">Limitations of frame scripts</a></dt>
- <dd>Practices that will not work inside frame scripts, and what to do instead.</dd>
-</dl>
-</div>
-</div>
-
-<hr>
-<h2 id="Contact_us">Contact us</h2>
-
-<p>Find out more about the project, get involved, or ask us your questions.</p>
-
-<ul>
- <li><strong>Electrolysis project page</strong>: <a href="https://wiki.mozilla.org/Electrolysis">https://wiki.mozilla.org/Electrolysis</a></li>
- <li><strong>IRC</strong>: #e10s on <a href="https://wiki.mozilla.org/IRC">irc.mozilla.org</a></li>
- <li><strong>Mailing list</strong>: <a href="https://groups.google.com/forum/#!forum/mozilla.dev.tech.electrolysis">dev.tech.electrolysis</a></li>
-</ul>
diff --git a/files/uk/mozilla/firefox/multiprocess_firefox/message_manager/index.html b/files/uk/mozilla/firefox/multiprocess_firefox/message_manager/index.html
deleted file mode 100644
index 3ee94a8191..0000000000
--- a/files/uk/mozilla/firefox/multiprocess_firefox/message_manager/index.html
+++ /dev/null
@@ -1,71 +0,0 @@
----
-title: Message manager
-slug: Mozilla/Firefox/Multiprocess_Firefox/Message_Manager
-translation_of: Mozilla/Firefox/Multiprocess_Firefox/Message_Manager
----
-<div>{{FirefoxSidebar}}</div>
-
-<p><span class="tlid-translation translation" lang="uk">n старих версій Firefox для настільних ПК весь браузер працював в рамках однієї операційної системи. Зокрема, JavaScript, який керував користувальницьким інтерфейсом браузера (також відомий як "хромний код"), і JavaScript, який працює на веб-сторінках (також відомий як "вміст" або "веб-контент"), не були розділені.<br>
- <br>
- В даний час останні версії Firefox запускають інтерфейс браузера та веб-вміст в окремих процесах. У поточній ітерації цієї архітектури всі вкладки браузера запускаються в межах одного процесу, а інтерфейс браузера працює у своєму індивідуальному процесі. У майбутніх ітераціях Firefox буде не один процес виключно обробки веб-контенту. Внутрішня назва цього проекту називається Електроліз, іноді скорочується до e10s.<br>
- <br>
- Хороша новина полягає в тому, що звичайні веб-сторінки та їх розробники не впливають на цю перехід на багатопроцесорний Firefox. На жаль, люди, що розробляють додатки для Firefox або Firefox, будуть впливати, якщо їх код покладається на можливість доступу до веб-контенту безпосередньо, оскільки система доступу до цих даних зміниться.<br>
- <br>
- Замість доступу до веб-вмісту безпосередньо, хромований код повинен буде використовувати замість цього менеджер повідомлень. Щоб полегшити цей перехід, ми впровадили перехресні об єкти обгортки та деякі програми сумісності для розробників додатків. Якщо ви розробник додатку, цікавитесь, чи впливає ви на цю зміну чи ні, перегляньте посібник із роботи з багатопроцесорним Firefox.</span></p>
-
-<h2 id="Guides">Guides</h2>
-
-<div class="column-container">
-<div class="column-half">
-<dl>
- <dt><a href="/en-US/Firefox/Multiprocess_Firefox/Message_Manager/Message_manager_overview">Message manager overview</a></dt>
- <dd></dd>
- <dt><a href="/en-US/Firefox/Multiprocess_Firefox/Message_Manager/Frame_script_loading_and_lifetime">Frame script loading and lifetime</a></dt>
- <dd></dd>
- <dt><a href="/en-US/Firefox/Multiprocess_Firefox/Message_Manager/Communicating_with_frame_scripts">Communicating with frame scripts</a></dt>
- <dd></dd>
- <dt><a href="/en-US/Firefox/Multiprocess_Firefox/Message_Manager/Performance">Performance Best Practices</a></dt>
- <dd></dd>
-</dl>
-</div>
-
-<div class="column-half">
-<dl>
- <dt><a href="/en-US/Firefox/Multiprocess_Firefox/Message_Manager/Frame_script_environment">Frame script environment</a></dt>
- <dd></dd>
- <dt><a href="/en-US/Firefox/Multiprocess_Firefox/Message_Manager/_Limitations_of_frame_scripts">Limitations of frame scripts</a></dt>
- <dd></dd>
- <dt><a href="/en-US/Firefox/Multiprocess_Firefox/Message_Manager/Process_scripts">Process scripts</a></dt>
- <dd></dd>
-</dl>
-</div>
-</div>
-
-<hr>
-<h2 id="API_reference">API reference</h2>
-
-<div class="column-container">
-<div class="column-half">
-<dl>
- <dt><a href="/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIFrameScriptLoader">nsIFrameScriptLoader</a></dt>
- <dd></dd>
- <dt><a href="/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIMessageListenerManager">nsIMessageListenerManager</a></dt>
- <dd></dd>
- <dt><a href="/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIMessageBroadcaster">nsIMessageBroadcaster</a></dt>
- <dd></dd>
- <dt><a href="/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIMessageSender">nsIMessageSender</a></dt>
- <dd></dd>
-</dl>
-</div>
-
-<div class="column-half">
-<dl>
- <dt><a href="/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsISyncMessageSender">nsISyncMessageSender</a></dt>
- <dd></dd>
- <dt><a href="/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIContentFrameMessageManager">nsIContentFrameMessageManager</a></dt>
- <dd></dd>
- <dt><a href="/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIProcessScriptLoader">nsIProcessScriptLoader</a></dt>
- <dd></dd>
-</dl>
-</div>
-</div>