diff options
Diffstat (limited to 'files/ru/mozilla/firefox')
-rw-r--r-- | files/ru/mozilla/firefox/releases/1.5/using_firefox_1.5_caching/index.html | 12 | ||||
-rw-r--r-- | files/ru/mozilla/firefox/releases/3/index.html | 22 |
2 files changed, 17 insertions, 17 deletions
diff --git a/files/ru/mozilla/firefox/releases/1.5/using_firefox_1.5_caching/index.html b/files/ru/mozilla/firefox/releases/1.5/using_firefox_1.5_caching/index.html index dfef65535b..ce1909c286 100644 --- a/files/ru/mozilla/firefox/releases/1.5/using_firefox_1.5_caching/index.html +++ b/files/ru/mozilla/firefox/releases/1.5/using_firefox_1.5_caching/index.html @@ -6,7 +6,7 @@ original_slug: Using_Firefox_1.5_caching --- <div>{{FirefoxSidebar}}</div><p> </p> -<h3 id="Introduction" name="Introduction">Введение</h3> +<h3 id="Introduction">Введение</h3> <p><a href="/en/Firefox_1.5_for_developers" title="en/Firefox_1.5_for_developers">Firefox 1.5</a> использует кеширование целых Web-страниц, включая их JavaScript-состояния, в рамках сессии браузера. Переходы по посещённым страницам вперёд-назад не требуют загрузки страниц, а JavaScript-состояния сохраняются. Эта функция, обозначаемая иногда как <strong>bfcache</strong> (Back-Forward Cache), делает навигацию по страницам очень быстрой. Такое кешированное состояние сохраняется, пока пользователь не закроет браузер.</p> @@ -37,7 +37,7 @@ original_slug: Using_Firefox_1.5_caching <p>Это позволяют сделать два новых события браузера.</p> -<h3 id="New_browser_events" name="New_browser_events">Новые события браузера</h3> +<h3 id="New_browser_events">Новые события браузера</h3> <p>Если вы используете эти новые события, ваши страницы продолжат правильно отображаться в других браузерах (мы протестировали старые версии Firefox, Internet Explorer, Opera и Safari), а при загрузке в Firefox 1.5 добавится новая функциональность кеширования.</p> @@ -59,7 +59,7 @@ original_slug: Using_Firefox_1.5_caching <p>Если у вас есть поведение, запускаемое, когда пользователь уходит со страницы, но вы хотите воспользоваться новой функциональностью кеширования, и поэтому не хотите использовать обработчик unload, используйте новое событие <code>pagehide</code>.</p> -<h4 id="pageshow_event" name="pageshow_event">Событие pageshow</h4> +<h4 id="pageshow_event">Событие pageshow</h4> <p>Это событие работает так же, как событие <code>load</code>, но срабатывает каждый раз при загрузке страницы (в то время как событие <code>load</code> в Firefox 1.5 не срабатывает, когда страница загружается из кеша). При первой загрузке страницы событие <code>pageshow</code> срабатывает сразу после события <code>load</code>. Событие <code>pageshow</code> использует булевское свойство <code>persisted</code>, которое выставляется в <code>false</code> при начальной загрузке. Оно выставляется в <code>true</code>, если это не начальная загрузка (то есть когда страница уже кеширована).</p> @@ -67,7 +67,7 @@ original_slug: Using_Firefox_1.5_caching <p>Вызывая JavaScript-функции в обработчике события <code>pageshow</code>, вы можете обеспечить их вызов при загрузке страницы в браузерах, отличных от Firefox 1.5, вызывая этот обработчик в обработчике события <code>load</code>, как показано в примере ниже.</p> -<h4 id="pagehide_event" name="pagehide_event">Событие pagehide</h4> +<h4 id="pagehide_event">Событие pagehide</h4> <p>Если вы хотите определить поведение, которое происходит, когда пользователь уходит со страницы, но не хотите использовать событие <code>unload</code> (что воспрепятствовало бы кешированию страницы), вы можете использовать новое событие <code>pagehide</code>. Как и <code>pageshow</code>, событие <code>pagehide</code> использует булевское свойство <code>persisted</code>. Оно выставляется в <code>false</code>, если страница не кеширована в браузере, а в <code>true</code>,— если кеширована. Когда это свойство выставлено в <code>false</code>, обработчик <code>unload</code>, если он есть, вызывается сразу после события <code>pagehide</code>.</p> @@ -79,7 +79,7 @@ original_slug: Using_Firefox_1.5_caching <li>Для навигации, происходящей внутри отдельного фрейма, события срабатывают только в затронутом фрейме.</li> </ul> -<h4 id="pagehide_event" name="pagehide_event">Кеширование страницы несмотря на обработчики <code>unload</code> и <code>beforeunload</code></h4> +<h4 id="pagehide_event">Кеширование страницы несмотря на обработчики <code>unload</code> и <code>beforeunload</code></h4> <p>Если вы хотите использовать события <code>unload</code> или <code>beforeunload</code>, сохранив кеширование страницы, вы можете просто удалить эти события в обработчике события и восстановить их в обработчике <code>pageshow</code>, если возвращаетесь на эту страницу:</p> @@ -202,7 +202,7 @@ function loadOnlyFirst() { <body onload="onLoad();"> </pre> -<h3 id="Developing_Firefox_extensions" name="Developing_Firefox_extensions">Developing Firefox extensions</h3> +<h3 id="Developing_Firefox_extensions">Developing Firefox extensions</h3> <p>Firefox 1.5 <a href="/en/Building_an_Extension" title="en/Building_an_Extension">extensions</a> need to allow for this caching functionality. If you are developing a Firefox extension that you want to be compatible with both 1.5 and earlier versions, make sure that it listens for the <code>load</code> event for triggers that can be cached and listens for the <code>pageshow</code> event for triggers that shouldn’t be cached.</p> diff --git a/files/ru/mozilla/firefox/releases/3/index.html b/files/ru/mozilla/firefox/releases/3/index.html index 12001257d1..fb17e41bba 100644 --- a/files/ru/mozilla/firefox/releases/3/index.html +++ b/files/ru/mozilla/firefox/releases/3/index.html @@ -5,8 +5,8 @@ translation_of: Mozilla/Firefox/Releases/3 original_slug: Firefox_3_for_developers --- <div>{{FirefoxSidebar}}</div><p>Если вы разработчик и хотите познакомится со всеми возможностями Firefox 3 вы пришли по адресу. В этой статье представлен список новых статей, в которых рассказывается о новых возможностях Firefox 3. В статьях не будут представлены сведения о незначительных изменениях, однако они помогут вам познакомится с существенными обновлениями.</p> -<h3 id="Новые_возможности_для_разработчиков_в_Firefox_3" name="Новые_возможности_для_разработчиков_в_Firefox_3">Новые возможности для разработчиков в Firefox 3</h3> -<h4 id="Для_веб-мастеров_и_разработчиков_приложений" name="Для_веб-мастеров_и_разработчиков_приложений">Для веб-мастеров и разработчиков приложений</h4> +<h3 id="Новые_возможности_для_разработчиков_в_Firefox_3">Новые возможности для разработчиков в Firefox 3</h3> +<h4 id="Для_веб-мастеров_и_разработчиков_приложений">Для веб-мастеров и разработчиков приложений</h4> <dl> <dt> <a href="/ru/%D0%9E%D0%B1%D0%BD%D0%BE%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B5_%D0%B2%D0%B5%D0%B1-%D0%BF%D1%80%D0%B8%D0%BB%D0%BE%D0%B6%D0%B5%D0%BD%D0%B8%D0%B9_%D0%B4%D0%BB%D1%8F_Firefox_3" title="ru/Обновление_веб-приложений_для_Firefox_3">Обновление веб-приложений для Firefox 3</a></dt> @@ -97,8 +97,8 @@ original_slug: Firefox_3_for_developers <dd> Firefox 3 supports the animated PNG (APNG) image format.</dd> </dl> -<h4 id="For_XUL_and_extension_developers" name="For_XUL_and_extension_developers">For XUL and extension developers</h4> -<h5 id="Notable_changes_and_improvements" name="Notable_changes_and_improvements">Notable changes and improvements</h5> +<h4 id="For_XUL_and_extension_developers">For XUL and extension developers</h4> +<h5 id="Notable_changes_and_improvements">Notable changes and improvements</h5> <dl> <dt> <a href="/en/Updating_extensions_for_Firefox_3" title="en/Updating_extensions_for_Firefox_3">Updating extensions for Firefox 3</a></dt> @@ -165,7 +165,7 @@ original_slug: Firefox_3_for_developers <dd> Notes and information of use to people who want to create themes for Firefox 3.</dd> </dl> -<h5 id="New_components_and_functionality" name="New_components_and_functionality">New components and functionality</h5> +<h5 id="New_components_and_functionality">New components and functionality</h5> <dl> <dt> <a href="/en/FUEL" title="en/FUEL">FUEL Library</a></dt> @@ -238,15 +238,15 @@ original_slug: Firefox_3_for_developers <dd> A new component of the plugin system is now available to measure how long it takes plugins (e.g., Macromedia Flash) to execute their calls.</dd> </dl> -<h5 id="Fixed_bugs" name="Fixed_bugs">Fixed bugs</h5> +<h5 id="Fixed_bugs">Fixed bugs</h5> <dl> <dt> <a href="/en/Notable_bugs_fixed_in_Firefox_3" title="en/Notable_bugs_fixed_in_Firefox_3">Notable bugs fixed in Firefox 3</a></dt> <dd> This article provides information about bugs that have been fixed in Firefox 3.</dd> </dl> -<h3 id="New_features_for_end_users" name="New_features_for_end_users">New features for end users</h3> -<h4 id="User_experience" name="User_experience">User experience</h4> +<h3 id="New_features_for_end_users">New features for end users</h3> +<h4 id="User_experience">User experience</h4> <ul> <li><strong>Easier password management.</strong> An information bar at the top of the browser window now appears to allow you to save passwords after a successful login.</li> <li><strong>Simplified add-on installation.</strong> You can now install extensions from third-party download sites in fewer clicks, thanks to the removal of the add-on download site whitelist.</li> @@ -273,7 +273,7 @@ original_slug: Firefox_3_for_developers <li><strong>Color management support.</strong> By setting the <code>gfx.color_management.enabled</code> preference in <code>{{ mediawiki.external('about:config') }}</code>, you can ask Firefox to use the color profiles embedded in images to adjust the colors to match your computer's display.</li> <li><strong>Offline support.</strong> Web applications can take advantage of new features to support being used even when you don't have an Internet connection.</li> </ul> -<h4 id="Security_and_privacy" name="Security_and_privacy">Security and privacy</h4> +<h4 id="Security_and_privacy">Security and privacy</h4> <ul> <li><strong>One-click site information.</strong> Want to know more about the site you're visiting? Click the site's icon in the location bar to see who owns it. Identify information is prominently displayed and easier than ever to understand.</li> <li><strong>Malware protection.</strong> Firefox 3 warns you if you arrive at a web site that is known to install viruses, spyware, trojans, or other dangerous software (known as malware). You can see what the warning looks like by <a class="link-https" href="https://www.mozilla.com/firefox/its-an-attack.html">clicking here</a>.</li> @@ -284,13 +284,13 @@ original_slug: Firefox_3_for_developers <li><strong>Anti-virus integration.</strong> Firefox 3 now informs anti-virus software when executable files are downloaded.</li> <li><strong>Windows Vista parental controls support.</strong> Firefox 3 supports the Vista system-wide parental control setting for disabling file downloads.</li> </ul> -<h4 id="Performance" name="Performance">Performance</h4> +<h4 id="Performance">Performance</h4> <ul> <li><strong>Reliability.</strong> Firefox 3 now stores bookmarks, history, cookies, and preferences in a transactionally secure database format. This means your data is protected against loss even if your system crashes.</li> <li><strong>Speed.</strong> Firefox 3 has gotten a performance boost by completely replacing the part of the software that handles drawing to your screen, as well as to how page layout work is handled.</li> <li><strong>Memory use reduced.</strong> Firefox 3 is more memory efficient than ever, with over 300 memory "leak" bugs fixed and new features to help automatically locate and dispose of leaked memory blocks.</li> </ul> -<h3 id="See_also" name="See_also">See also</h3> +<h3 id="See_also">See also</h3> <ul> <li><a href="/en/Updating_extensions_for_Firefox_3" title="en/Updating_extensions_for_Firefox_3">Updating extensions for Firefox 3</a></li> <li><a href="/en/Updating_web_applications_for_Firefox_3" title="en/Updating_web_applications_for_Firefox_3">Updating web applications for Firefox 3</a></li> |