aboutsummaryrefslogtreecommitdiff
path: root/files/th/archive
diff options
context:
space:
mode:
Diffstat (limited to 'files/th/archive')
-rw-r--r--files/th/archive/add-ons/deploying_a_plugin_as_an_extension/index.html82
-rw-r--r--files/th/archive/add-ons/index.html11
-rw-r--r--files/th/archive/apps/design/index.html34
-rw-r--r--files/th/archive/apps/design/ui_layout_basics/index.html29
-rw-r--r--files/th/archive/apps/design/ui_layout_basics/responsive_design_versus_adaptive_design/index.html10
-rw-r--r--files/th/archive/apps/index.html14
-rw-r--r--files/th/archive/b2g_os/index.html81
-rw-r--r--files/th/archive/b2g_os/phone_guide/flame/index.html67
-rw-r--r--files/th/archive/b2g_os/phone_guide/index.html82
-rw-r--r--files/th/archive/b2g_os/quickstart/app_tools/index.html16
-rw-r--r--files/th/archive/b2g_os/quickstart/index.html51
-rw-r--r--files/th/archive/b2g_os/simulator/index.html58
-rw-r--r--files/th/archive/b2g_os/using_the_app_manager/index.html277
-rw-r--r--files/th/archive/index.html20
-rw-r--r--files/th/archive/meta_docs/index.html12
-rw-r--r--files/th/archive/meta_docs/writing_content/index.html56
-rw-r--r--files/th/archive/mozilla/index.html223
-rw-r--r--files/th/archive/mozilla/xul/attribute/image.onload/index.html15
-rw-r--r--files/th/archive/mozilla/xul/attribute/index.html311
-rw-r--r--files/th/archive/mozilla/xul/index.html82
-rw-r--r--files/th/archive/mozilla/xul/ภาพ,อิมเมจ/index.html151
21 files changed, 0 insertions, 1682 deletions
diff --git a/files/th/archive/add-ons/deploying_a_plugin_as_an_extension/index.html b/files/th/archive/add-ons/deploying_a_plugin_as_an_extension/index.html
deleted file mode 100644
index 99cb34be71..0000000000
--- a/files/th/archive/add-ons/deploying_a_plugin_as_an_extension/index.html
+++ /dev/null
@@ -1,82 +0,0 @@
----
-title: Deploying a Plugin as an Extension
-slug: Archive/Add-ons/Deploying_a_Plugin_as_an_Extension
-tags:
- - Plugins
- - add-on
-translation_of: Archive/Add-ons/Deploying_a_Plugin_as_an_Extension
----
-<p>One of the new features available in Firefox 1.5 is the ability to place browser plugins in a Firefox extension. This feature is particularly useful for vendors who wish to deploy the plugin even if Firefox is not currently installed, or who want to use the automatic extension update mechanism to update their plugin to a newer version.</p>
-
-<p>Historically, most people have chosen to use an install.js script to install a plugin. When this method is used, you can choose to either place the plugin into the plugins directory, or, on Windows, place it into your own directory and modify the Windows registry to let Firefox know where to find the plugin. The downside to this method is that once the plugin is installed, it might be difficult for users to upgrade, uninstall, or disable the plugin.</p>
-
-<p>With Firefox 1.5, you can use the built-in extension mechanism to make a plugin available to your users. This allows the plugin to be treated like other Firefox extensions; it can be upgraded, disabled, or uninstalled using the Firefox user interface.</p>
-
-<p>In this article, we will create an extension for the Rhapsody Player Engine. Normally, this plugin is installed in a local directory, and a registry item is used to let Firefox know about the plugin.</p>
-
-<p>First, let's take a look at the structure of the XPI file used for a browser plugin.</p>
-
-<pre class="eval">RhapsodyPlayerEngine_Inst_Win.xpi
- install.rdf
- plugins/
- license.rtf
- nprhapengine.dll
-</pre>
-
-<p>The important file here is the <code>install.rdf file</code>. This contains information about our extension; all extensions have one. Here's what a basic <code>install.rdf file</code> looks like:</p>
-
-<pre class="eval">&lt;RDF xmlns="<span class="nowiki">http://www.w3.org/1999/02/22-rdf-syntax-ns#</span>"
- xmlns:em="<span class="nowiki">http://www.mozilla.org/2004/em-rdf#</span>"&gt;
- &lt;Description about="<span class="nowiki">urn:mozilla:install-manifest</span>"&gt;
- &lt;em:id&gt;<span class="nowiki">RhapsodyPlayerEngine@rhapsody.com</span>&lt;/em:id&gt;
- &lt;em:name&gt;Rhapsody Player Engine&lt;/em:name&gt;
- &lt;em:version&gt;1.0.0.487&lt;/em:version&gt;
-
- &lt;em:targetApplication&gt;
- &lt;Description&gt;
- &lt;em:id&gt;{ec8030f7-c20a-464f-9b0e-13a3a9e97384}&lt;/em:id&gt;
- &lt;em:minVersion&gt;1.5&lt;/em:minVersion&gt;
- &lt;em:maxVersion&gt;1.5.0.*&lt;/em:maxVersion&gt;
- &lt;/Description&gt;
- &lt;/em:targetApplication&gt;
-
- &lt;/Description&gt;
-&lt;/RDF&gt;
-</pre>
-
-<p>You can get more detailed information about this file at <a href="/en/Install_Manifests" title="en/Install_Manifests">install.rdf</a>.</p>
-
-<p>We'll cover the basics.</p>
-
-<p>The <code>id</code> specifies a unique ID that uniquely identifes this extension of the form. If you have written extensions for Firefox in the past, you'll notice that we no longer require the use of GUIDs as extension IDs.</p>
-
-<p>The <code>name</code> specifies the name of the extension that appears in the extension manager.</p>
-
-<p>The <code>version</code> is used for version checking when we are updating extensions.</p>
-
-<p>The <code>targetApplication</code> section specifies that platform we want to work on (that ID is for Firefox). It also specifies what versions of Firefox we want to work with.</p>
-
-<p>Now that we have an <code>install.rdf file</code>, we can actually package the XPI. Simply use the ZIP utility to create the XPI file. Make sure you keep the directory structure!</p>
-
-<p>Now we can open the XPI in Firefox and it will get installed. You'll have to restart Firefox so the plugin will be available.</p>
-
-<p>After restarting Firefox, the extension manager will include an entry for the Rhapsody Player Engine. Because it is an extension, we can disable/enable it, as well as uninstall it.</p>
-
-<p>You'll notice that one thing we did not do is provide a mechanism for updating the plugin, as discussed at the beginning of this article. Let's cover that now.</p>
-
-<p>One of the additional things that can be placed in the install.rdf is called an <code>updateURL</code>. For example:</p>
-
-<pre class="eval">&lt;em:updateURL&gt;&lt;<span class="nowiki">http://www.rhapsody.com/update.rdf</span>&gt;&lt;/em:updateURL&gt;
-</pre>
-
-<p>This URL specifies <a href="/en/Extension_Versioning%2c_Update_and_Compatibility#Update_RDF_Format" title="en/Extension_Versioning%2c_Update_and_Compatibility#Update_RDF_Format">an RDF file that can be used</a> to tell Firefox that there are updates available for your extension. This RDF file can be updated to indicate that an update to our extension/plugin is available.</p>
-
-<p>Finally, if you want to package plugins for multiple platforms into a single extension, you can do that as well. There are two ways to do this.</p>
-
-<p>First, you can simply put all the files in the plugins directory. Firefox will load the correct plugins based on the platform, simply because the plugins for other platforms won't load.</p>
-
-<p>If your plugin is for Windows, don't forget add to version resources to your plugin's DLL. Also, supply MIMEType and FileExtents, without these your plugin won't work.</p>
-
-<p>Michael Kaply<br>
- Firefox Advocate<br>
- <a class="link-mailto" href="mailto:mkaply@us.ibm.com" rel="freelink">mkaply@us.ibm.com</a></p>
diff --git a/files/th/archive/add-ons/index.html b/files/th/archive/add-ons/index.html
deleted file mode 100644
index 9c0f942944..0000000000
--- a/files/th/archive/add-ons/index.html
+++ /dev/null
@@ -1,11 +0,0 @@
----
-title: Add-ons
-slug: Archive/Add-ons
-tags:
- - NeedsTranslation
- - TopicStub
-translation_of: Archive/Add-ons
----
-<p>Archived add-ons documentation.</p>
-
-<p>{{SubpagesWithSummaries}}</p>
diff --git a/files/th/archive/apps/design/index.html b/files/th/archive/apps/design/index.html
deleted file mode 100644
index 6177bbf1c3..0000000000
--- a/files/th/archive/apps/design/index.html
+++ /dev/null
@@ -1,34 +0,0 @@
----
-title: Designing Open Web Apps
-slug: Archive/Apps/Design
-tags:
- - Apps
- - CSS
- - Design
- - Examples
- - Guide
- - Layout
- - Mobile
- - NeedsTranslation
- - Styleguides
- - TopicStub
- - UX
- - Usability
- - Web Development
- - patterns
-translation_of: Archive/Apps/Design
----
-<div class="summary">
-<p>In this section, we'll introduce design and UX principles to incorporate into your Open Web Apps. In an effort to help you kickstart your project, we have included links to relevant examples and style guides.</p>
-</div>
-
-<h2 id="General_Web_app_design">General Web app design</h2>
-
-<p>The items under this section apply generally to Web app design.</p>
-
-<dl>
- <dt><a href="/en-US/Apps/Design/Planning">Planning</a></dt>
- <dd>The articles in this section provide information on planning a successful Web app, including high level planning ideas and general design principles.</dd>
- <dt><a href="/en-US/Apps/Design/UI_layout_basics">UI layout basics</a></dt>
- <dd>These articles provide guides and theory behind implementing effective layouts for Open Web Apps, including responsive design, flexible boxes, etc.</dd>
-</dl>
diff --git a/files/th/archive/apps/design/ui_layout_basics/index.html b/files/th/archive/apps/design/ui_layout_basics/index.html
deleted file mode 100644
index e9b9d4c5a4..0000000000
--- a/files/th/archive/apps/design/ui_layout_basics/index.html
+++ /dev/null
@@ -1,29 +0,0 @@
----
-title: UI layout basics
-slug: Archive/Apps/Design/UI_layout_basics
-tags:
- - Design
- - Layouts
- - NeedsTranslation
- - TopicStub
- - UI
-translation_of: Archive/Apps/Design/UI_layout_basics
----
-<div class="summary">
-<p>Guides and theory behind implementing effective layouts for Open Web Apps.</p>
-</div>
-
-<dl>
- <dt><a href="/en-US/Apps/Design/UI_layout_basics/responsive_design_building_blocks">The building blocks of responsive design</a></dt>
- <dd>Learn the basics of responsive design, an essential topic for modern app layout.</dd>
- <dt><a href="/en-US/Apps/Design/UI_layout_basics/Responsive_design_versus_adaptive_design">Responsive design versus adaptive design</a></dt>
- <dd>Demystifying the terms "responsive" and "adaptive", and how they relate.</dd>
- <dt><a href="/en-US/Apps/Design/UI_layout_basics/Mobile_First">Mobile first</a></dt>
- <dd>Often when creating responsive application layouts, it makes sense to create the mobile layout as the default, and build wider layouts on top.</dd>
- <dt><a href="/en-US/Apps/Design/UI_layout_basics/Graphics_for_responsive_sites">Graphics for responsive sites</a></dt>
- <dd>Ideas to keep in mind when designing graphics for responsive sites and applications.</dd>
- <dt><a href="/en-US/Apps/Design/UI_layout_basics/Responsive_Navigation_Patterns">Responsive navigation patterns</a></dt>
- <dd>How do you make a UI that looks and works as great on a smartphone as it does on the desktop? Learn how to design UIs that change to fit your user's screen.</dd>
- <dt><a href="/en-US/Web/Guide/CSS/Flexible_boxes">Flexible boxes</a></dt>
- <dd>Flexbox is a very useful CSS feature for flexible, responsive layouts.</dd>
-</dl>
diff --git a/files/th/archive/apps/design/ui_layout_basics/responsive_design_versus_adaptive_design/index.html b/files/th/archive/apps/design/ui_layout_basics/responsive_design_versus_adaptive_design/index.html
deleted file mode 100644
index 46955e9f20..0000000000
--- a/files/th/archive/apps/design/ui_layout_basics/responsive_design_versus_adaptive_design/index.html
+++ /dev/null
@@ -1,10 +0,0 @@
----
-title: Responsive design versus adaptive design
-slug: Archive/Apps/Design/UI_layout_basics/Responsive_design_versus_adaptive_design
-translation_of: Archive/Apps/Design/UI_layout_basics/Responsive_design_versus_adaptive_design
----
-<p><font><font>ทั้งความพยายามในการออกแบบที่ตอบสนองและปรับตัวได้เพื่อเพิ่มประสิทธิภาพประสบการณ์ผู้ใช้ในอุปกรณ์ต่าง ๆ ปรับขนาดวิวพอร์ตที่แตกต่างกันความละเอียดบริบทการใช้งานกลไกการควบคุมและอื่น ๆ</font></font></p>
-
-<p><font><font>การออกแบบที่ตอบสนองต่อการทำงานบนหลักการของความยืดหยุ่น - เว็บไซต์ของเหลวเดียวที่สามารถดูดีบนอุปกรณ์ใด ๆ </font><font>เว็บไซต์ตอบสนองใช้การสืบค้นสื่อกริดที่ยืดหยุ่นและรูปภาพตอบสนองเพื่อสร้างประสบการณ์ผู้ใช้ที่ยืดหยุ่นและเปลี่ยนแปลงตามปัจจัยหลายประการ</font></font></p>
-
-<p><font><font>การออกแบบที่ปรับเปลี่ยนได้นั้นมีความหมายเหมือนกับนิยามของการปรับปรุงแบบก้าวหน้า </font><font>แทนที่จะเป็นการออกแบบที่ยืดหยุ่นเพียงแบบเดียวการออกแบบแบบปรับได้จะตรวจจับอุปกรณ์และคุณสมบัติอื่น ๆ จากนั้นให้คุณสมบัติและรูปแบบที่เหมาะสมโดยยึดตามขนาดชุดวิวพอร์ตที่กำหนดไว้ล่วงหน้าและคุณสมบัติอื่น ๆ</font></font></p>
diff --git a/files/th/archive/apps/index.html b/files/th/archive/apps/index.html
deleted file mode 100644
index dca7e09fea..0000000000
--- a/files/th/archive/apps/index.html
+++ /dev/null
@@ -1,14 +0,0 @@
----
-title: Apps
-slug: Archive/Apps
-tags:
- - Apps
- - Firefox OS
- - NeedsTranslation
- - TopicStub
- - Web
-translation_of: Archive/Apps
----
-<p class="summary">This page includes archived content for Apps, including obsolete web app content, Firefox OS app-related content, and so forth.</p>
-
-<dl><dt class="landingPageList"><a href="/en-US/docs/Archive/Apps/Advanced_topics">Advanced topics</a></dt><dd class="landingPageList">These articles provide extra information on more advanced Open Web Apps topics. Topics such as app architecture documentation to help with the design and implementation of open web apps and other documentation for creating a store for selling and distributing open web apps.</dd><dt class="landingPageList"><a href="/en-US/docs/Archive/Apps/Reference">App Development API Reference</a></dt><dd class="landingPageList">Technical review completed. Editorial review completed.</dd><dt class="landingPageList"><a href="/en-US/docs/Archive/Apps/Design">Designing Open Web Apps</a></dt><dd class="landingPageList">The items under this section apply generally to Web app design.</dd><dt class="landingPageList"><a href="/en-US/docs/Archive/Apps/Graphics_and_UX">Graphics and UX</a></dt><dd class="landingPageList">When creating Open Web Apps, you need to give a lot of consideration to the look and feel, user experience and workflow of your applications. In previous parts of this material we looked at application planning and flexible layouts for applications, and in this section we will go further, looking at both general patterns and design techniques that work for Open Web Apps, and specific techniques and assets that will help you put together great-looking Firefox OS apps that match the experience of the device's default applications.</dd><dt class="landingPageList"><a href="/en-US/docs/Archive/Apps/Architecture">Open web app architecture</a></dt><dd class="landingPageList">Apps can be installed from the server that hosts them ("self-hosting") or from a store. Mozilla launched the Firefox Marketplace in a test mode for apps in 2012. Other third-party app stores are also possible using this architecture. Apps can be free or paid. Stores can support validation of purchases to ensure that apps are run only by users who purchased them. The Firefox Marketplace will support this.</dd><dt class="landingPageList"><a href="/en-US/docs/Archive/Apps/Rec_Room_-Animation_and_Graphics">Rec Room - Animation and Graphics</a></dt><dd class="landingPageList">There are various tools found all around the web for creating animations and graphics for your work. In this article, we will go over a few of these options so that you can use to make your project stand out! For example, CSS is one way to apply animations to HTML elements, while Chartist is a great tool for creating graphs and charts.</dd><dt class="landingPageList"><a href="/en-US/docs/Archive/Apps/Tools_and_frameworks">Tools and frameworks</a></dt><dd class="landingPageList"></dd><dt class="landingPageList"><a href="/en-US/docs/Archive/Apps/App_validator">Validating web apps with the App Validator</a></dt><dd class="landingPageList">Some checks that the validator performs include:</dd></dl>
diff --git a/files/th/archive/b2g_os/index.html b/files/th/archive/b2g_os/index.html
deleted file mode 100644
index ed3ae4c41f..0000000000
--- a/files/th/archive/b2g_os/index.html
+++ /dev/null
@@ -1,81 +0,0 @@
----
-title: B2G OS
-slug: Archive/B2G_OS
-translation_of: Archive/B2G_OS
----
-<p><strong>FireFox OS</strong> คือ <span class="short_text" id="result_box" lang="th"><span class="hps">โอเพนซอร์ส</span></span> ด้วยเหตุนี้จึงฟรีจาก<span class="short_text" id="result_box" lang="th"><span class="hps">เทคโนโลยีที่เป็นกรรมสิทธิ์</span></span>, ในขณะที่ยังคงเปิดช่องทางสำหรับเหล่า นักพัฒนาแอพลิเคชั่นเพื่อสร้างสรรค์ผลิตภัณท์ที่ดีเยี่ยม นอกจากนี้ ยังคงยืดหยุ่นและมีประสิทธิภาพมากพอที่จะทำให้ผู้ใช้ปลายทางมีความสุข</p>
-
-<p>Firefox OS ยังคงอยู่ภายใต้การพัฒนาอย่างหนัก; พวกเรายังคงทำงานอย่างไม่หยุดหย่อน บนเส้นทางที่จะทำให้ง่ายขึ้นสำหรับคุณในการใช้งานและแฮกระบบ Gaia (การตั้งค่าพื้นฐานของแอพ) ซึ่งจะเป็นการสร้างสไตล์ในแบบคุณ. อย่างไรก็ตาม, คุณจำเป็นต้องมีความรู้เกี่ยวกับระบบ เพื่อที่จะสร้างสรรค์ เช่น  การสร้าง Firefox OS stack ทั้งหมด, หรือ การแฟลชระบบเพื่อเปลี่ยนมาเป็น FireFox OS   ลิ้งค์นำทางด้านล่างนี้จะแนะแนวทางและเจตจำนง สำหรับนักพัฒนาเว็บ ที่มีความสนใจ ในการทำงานและการแก้ไขเปลี่ยนแปลง Gaia  หรือ กำลังพัฒนาแอพที่จะใช้งานบนอุปกรณ์ FireFox OS อยู่</p>
-
-<table class="topicpage-table">
- <tbody>
- <tr>
- <td>
- <h2 class="Documentation" id="Documentation" name="Documentation">เอกสารเกี่ยวกับ FireFox OS</h2>
-
- <dl>
- <dt><a href="/en-US/docs/Mozilla/Firefox_OS/Introduction" title="en-US/docs/Mozilla/Firefox_OS/Introduction">เริ่มแรกสำหรับ FireFox OS</a></dt>
- <dd>แนะนำข้อมูลเกี่ยว Firefox OS และการทำงานของมัน</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox_OS/Tips_and_tricks" title="/en-US/docs/Mozilla/Firefox_OS/Tips_and_tricks"> ทริป และ ทริค FireFox OS</a></dt>
- <dd>บทความสั้นๆบางบทความ เกี่ยวกับทริปและทริคที่มีประโยชน์ เพื่อที่จะรู้ FireFox OS ในขณะกำลังเจาะระบบ</dd>
- <dt></dt>
- <dt><a href="/en-US/docs/Mozilla/Firefox_OS/Apps" title="/en-US/docs/Mozilla/Firefox_OS/Apps">การเขียนแอพสำหรับ Firefox OS</a></dt>
- <dd>ข้อมูลเกี่ยวกับสร้างแอพบน Firefox OS</dd>
- <dt><a href="https://marketplace.firefox.com/developers/" title="https://marketplace.firefox.com/developers/">จุดศูนย์กลางของนักพัฒนา</a></dt>
- <dd>เครื่องมือต่าง ๆ,การฝึกซ้อม,และ บริการ สำหรับนักพัฒนาแอพบน Firefox OS</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox_OS/UX" title="/en-US/docs/">ประสบการณ์ ผู้ใช้งาน</a></dt>
- <dd>แนะแนวรูปแบบและการทำงานที่ผู้ใช้ต้องการ—รวมถึง รูปแบบโค้ดและ<span class="short_text" id="result_box" lang="th"><span class="alt-edited hps"> เทมเพลต</span></span> —เพื่อช่วยคุณสร้างแอพ FireFox OS ที่ดึงดูดใจ, และไม่เปลี่ยนแปลง</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox_OS/Platform" title="/en-US/docs/Mozilla/Firefox_OS/Platform">แพลตฟอร์มของ FireFox OS</a></dt>
- <dd>เอกสารเกี่ยวกับ แพลตฟอร์มของ FireFox OS รวมถึง Gonk, Gaia และสิ่งอื่นๆที่เกี่ยวข้อง ซึ่งรวมไปถึง เอกสารข้อมูลเกี่ยวกับการสร้าง และการติดตั้ง แพลตฟอร์มบนอุปกรณ์ และการสร้างการจำลองและเลียนแบบด้วย</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox_OS/Security" title="/en-US/docs/Mozilla/Firefox_OS/Security">ความปลอดภัย</a></dt>
- <dd>เอกสารเกี่ยวกับความปลอดภัยบน FireFox OS; ซึ่งรวมไปถึงหัวข้อเกี่ยวกับ อุปกณ์ความปลอดภัยจากมุมมองของคนอื่นๆ : มุมองของนักพัฒนาแอพ, ผู้ประกอบอุปกรณ์, และอื่นๆ</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox_OS/Performance" title="/en-US/docs/Mozilla/Firefox_OS/Performance">การทำงาน</a></dt>
- <dd>บทความเกี่ยวกับ การเพิ่มประสิทธภาพสูงสุดบน แอพลิเคชั่นของ FireFox OS</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox_OS/Troubleshooting" title="/en-US/docs/Mozilla/Firefox_OS/Troubleshooting"><span class="short_text" id="result_box" lang="th"><span class="hps">การแก้ไขปัญหา</span></span></a></dt>
- <dd>แนะแนวทางการตัดสินใจ แก้ไขปัญหาทั่วๆไปบน FireFox OS</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox_OS/Debugging" title="en-US/docs/Mozilla/Firefox_OS/Debugging"><span class="short_text" id="result_box" lang="th"><span class="hps">การแก้จุดบกพร่อง</span><span>บน</span> <span class="hps">Firefox</span> <span class="hps">OS</span></span></a></dt>
- <dd>แนะแนวทางการแก้ไข จุดบกพร่องจากทั้งสองชนิดระหว่าง บนโทรศัพท์มือถือ และตัวระบบ FireFox OS เอง</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox_OS/Developer_phone_guide" title="/en-US/docs/Mozilla/Firefox_OS/Boot to Gecko developer phone guide">แนะแนวทาง นักพัฒนาโทรศัพท์มือถือ FireFox OS</a></dt>
- <dd>แนะแนวทางสำหรับนักพัฒนาโทรศัพท์มือถือ ที่ทางโมซิลล่าได้เอื้ออำนวยให้สำหรับนักพัฒนาบางราย นี่ยังรวมถึงแนะแนว สำหรับคนที่ได้ถูกติดตั้ง FireFox OS บนโทรศัพท์ของคุณแล้ว</dd>
- </dl>
-
- <p><span class="alllinks"><a href="/en-US/docs/tag/B2G" title="/en-US/docs/tag/B2G">ดูทั้งหมด...</a></span></p>
- </td>
- <td>
- <h2 class="Community" id="Community" name="Community">รับความช่วยเหลือจากชุมชน</h2>
-
- <p>ถ้าคุณกำลังทำงานกับ Firefox OS หรือ กำลังพัฒนาแอพอยู่ คุณคงชอบที่จะใช้งานบนอุปกรณ์ Firefox OS นี่คือแหล่งข้อมูลที่จะช่วยคุณได้</p>
-
- <ul>
- <li>ถามคำถามของคุณบน  ช่องโมซิลล่า IRC  Boot to Gecko: <a class="link-irc" href="irc://irc.mozilla.org/b2g" title="irc://irc.mozilla.org/b2g">#b2g</a></li>
- </ul>
-
- <p><span class="alllinks"><a class="external external-icon" href="http://www.catb.org/%7Eesr/faqs/smart-questions.html" title="http://www.catb.org/~esr/faqs/smart-questions.html"><em>อย่าลืมสำหรับ มรรยาทของชุมชน</em>...</a></span></p>
-
-
- <div class="almost_half_cell" id="gt-res-content">
- <div dir="ltr" style="zoom: 1;">
- <h2 class="Tools" id="หัวข้อที่เกี่ยวข้อง">หัวข้อที่เกี่ยวข้อง</h2>
- </div>
- </div>
-
-
- <ul>
- <li><a href="/en-US/docs/Mobile" title="en-US/docs/Mobile">โทรศัพท์</a></li>
- <li><a href="/en-US/docs/HTML" title="en-US/docs/HTML">HTML</a></li>
- <li><a href="/en-US/docs/CSS" title="en-US/docs/CSS">CSS</a></li>
- <li><a href="/en-US/docs/JavaScript" title="en-US/docs/JavaScript">JavaScript</a></li>
- </ul>
-
- <h2 class="Tools" id="Resources">Resources</h2>
-
- <ul>
- <li><a class="link-https" href="https://wiki.mozilla.org/B2G/FAQ" title="B2G/FAQ">Mozilla wiki FAQ</a></li>
- <li><a class="link-https" href="https://wiki.mozilla.org/B2G/Schedule_Roadmap" title="https://wiki.mozilla.org/B2G/Schedule_Roadmap">Roadmap</a></li>
- <li><a href="/en-US/docs/Mozilla/Firefox_OS/Feature_support_chart" title="/en-US/docs/Mozilla/Firefox_OS/Feature_support_chart">Feature support chart</a></li>
- <li><a href="/en-US/docs/Mozilla/Firefox_OS/Geeksphone_FAQ" title="/en-US/docs/Mozilla/Firefox_OS/Geeksphone_FAQ">Geeksphone FAQ</a></li>
- </ul>
- </td>
- </tr>
- </tbody>
-</table>
diff --git a/files/th/archive/b2g_os/phone_guide/flame/index.html b/files/th/archive/b2g_os/phone_guide/flame/index.html
deleted file mode 100644
index 8a97dae559..0000000000
--- a/files/th/archive/b2g_os/phone_guide/flame/index.html
+++ /dev/null
@@ -1,67 +0,0 @@
----
-title: Flame
-slug: Archive/B2G_OS/Phone_guide/Flame
-translation_of: Archive/B2G_OS/Phone_guide/Flame
----
-<p><img alt="A picture of the Flame device, showing the Firefox OS homescreen containing several app icons." src="https://mdn.mozillademos.org/files/8373/flame-dev-hud.png" style="float: left; margin-bottom: 20px; margin-right: 50px; width: 25%;"></p>
-
-<p> </p>
-
-<p><span class="seoSummary">Flame device is the official reference device for developing, testing, and debugging Firefox OS and open web apps. This guide provides basic information about its hardware specifications as well as practical documentation specific to experimenting with, developing for, and testing of software compatible with this phone.</span></p>
-
-<p>The Flame hardware offers a representative set of specs — including FWVGA display and dual-core processor — to help developers build great content and experiences. A stable hardware platform is also good for testers, making it easier to test and address specific software issues without having to worry about device model-specific bugs, etc.</p>
-
-<p>If you have your phone in hand and want to start playing with it, developing and distributing apps, or contributing to the Firefox platform, the following links will also get you where you need to go:</p>
-
-<ul>
- <li><a href="/en-US/Firefox_OS">Firefox OS zone</a>: For creating your own Firefox OS builds and contributing to the B2G and Gaia projects.</li>
- <li><a href="/en-US/Apps">App Center zone</a>: For building open web apps compatible with Firefox OS.</li>
- <li><a href="/en-US/Marketplace">Marketplace zone</a>: For information on publishing and distributing apps.</li>
- <li><a href="https://marketplace.firefox.com/">Firefox Marketplace</a>: The best place to find and publish new Firefox OS apps.</li>
-</ul>
-
-<p>If you’d like to find out more about updating the operating system, recovering it, pushing apps to it, or phone specs, you’ll find the information you need at the following two articles :</p>
-
-<ul>
- <li><a href="/en-US/Firefox_OS/Developer_phone_guide/Flame/Initial_setup">Initial setup</a>: Essential steps to follow for setting up your computer to work with your Flame.</li>
- <li><a href="/en-US/Firefox_OS/Developer_phone_guide/Flame/Updating_your_Flame">Updating your Flame</a>: How to update or upgrade Firefox OS on your Flame, push apps to it, and troubleshoot and test it.</li>
-</ul>
-
-<h2 id="Get_a_device">Get a device</h2>
-
-<p>Flame sales have come to an end. There are still opportunities left for Mozilla contributors to get free Flames, including the upcoming Foxtrot program. If you have questions about getting a device for development or testing, please reach out to Asa Dotzler on the <a href="irc://irc.mozilla.org/fxos">#fxos</a> channel on IRC.</p>
-
-<h2 id="Device_specifications">Device specifications</h2>
-
-<p>You can find more of the device specifications listed on our <a href="/en-US/Firefox_OS/Phone_guide/Phone_specs">Phone and device specs page</a>.</p>
-
-<h3 id="Network"><strong>Network</strong></h3>
-
-<ul>
- <li>GSM 850/900/1800/1900MHz</li>
- <li>UMTS 850/900/1900/2100MHz</li>
- <li>Wifi 802.11b/g/n</li>
- <li>Bluetooth 3.0</li>
-</ul>
-
-<h3 id="Hardware">Hardware</h3>
-
-<ul>
- <li>Dual-SIM</li>
- <li>NFC</li>
- <li>Accelerometer</li>
- <li>FM radio</li>
- <li>Proximity Sensor</li>
- <li>GPS W / A-GPS support</li>
- <li>Ambient Light Sensor</li>
-</ul>
-
-<h2 id="See_also">See also</h2>
-
-<ul>
- <li><a href="/en-US/Firefox_OS/Developer_phone_guide/Flame/Initial_setup">Initial setup</a>: Essential steps to follow for setting up your computer to work with your Flame.</li>
- <li><a href="/en-US/Firefox_OS/Developer_phone_guide/Flame/Updating_your_Flame">Updating your Flame</a>: How to update or upgrade Firefox OS on your Flame, push apps to it, and troubleshoot and test it.</li>
- <li><a href="https://hacks.mozilla.org/2014/08/videos-getting-started-with-your-flame-device/">Getting started with your Flame</a>: How-to videos by Chris Heilmann.</li>
- <li><a href="http://mozilla.github.io/flame-on/">Flame On</a>: Great starting page for all Flame owners created at Mozilla Festival 2014.</li>
- <li><a href="https://blog.mozilla.org/press/2014/02/developer-momentum-2/">Original announcement</a>: Press Announcement, February 23, 2014.</li>
-</ul>
diff --git a/files/th/archive/b2g_os/phone_guide/index.html b/files/th/archive/b2g_os/phone_guide/index.html
deleted file mode 100644
index 1268868928..0000000000
--- a/files/th/archive/b2g_os/phone_guide/index.html
+++ /dev/null
@@ -1,82 +0,0 @@
----
-title: Firefox OS phone guide
-slug: Archive/B2G_OS/Phone_guide
-tags:
- - B2G
- - Firefox OS
- - Landing
- - NeedsTranslation
- - Phones
- - TopicStub
-translation_of: Archive/B2G_OS/Phone_guide
----
-<div class="summary">
-<p><span class="seoSummary">This section contains developer information relevant to specific phones that run Firefox OS — both developer and consumer devices.</span> We have general information available on <a href="/en-US/Firefox_OS/Building_and_installing_Firefox_OS" title="Building and installing Firefox OS">Building and installing Firefox OS</a> and <a href="/en-US/Firefox_OS/Developing_Firefox_OS" title="/en-US/docs/Mozilla/Firefox_OS/Hacking_Firefox_OS">Hacking Firefox OS</a>, so please go there for information about building and installing the platform from scratch. Developers with specific phones in their possession may however find the following articles useful.</p>
-</div>
-
-<h2 id="Developer_phone_information">Developer phone information</h2>
-
-<p>The phones listed here are specifically geared towards developers wanting to experiment with Firefox OS, including developing apps and contributing to the operating system itself. As such, they typically have unlocked SIMs, system files, etc.</p>
-
-<dl>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/Flame">Flame</a></dt>
- <dd>The Flame device is the official reference device for developing, testing, and debugging Firefox OS and open web apps, produced in partnership with T<sup>2</sup>Mobile.</dd>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/Geeksphone">Geeksphone</a></dt>
- <dd>In this article we cover some basic tips on how to keep your Geeksphone up-to-date and how to tweak the system Gaia applications.</dd>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/ZTE_OPEN">ZTE OPEN</a></dt>
- <dd>This article contains information on the ZTE OPEN Firefox OS device.</dd>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/ZTE_OPEN_C">ZTE OPEN C</a></dt>
- <dd>The ZTE Open C is an updated ZTE-produced Firefox OS device, with higher end hardware and newer software.</dd>
-</dl>
-
-<h2 id="Consumer_phone_information">Consumer phone information</h2>
-
-<p>The phones listed here are consumer models, so not ideal for developers wanting to hack on devices. However, might be still useful for developers looking for more technical information on these consumer models. For a more complete list of devices, see our <a href="https://www.mozilla.org/en-US/firefox/os/devices/">Find Firefox OS near you</a> page.</p>
-
-<dl>
- <dt><a href="https://developer.mozilla.org/en-US/Firefox_OS/Phone_guide/Alcatel_One_Touch_Fire">Alcatel One Touch Fire</a></dt>
- <dd>Based on Firefox OS 1.3 and available in more than 5 countries.</dd>
- <dt><a href="/en-US/docs/Mozilla/Firefox_OS/Phone_guide/Alcatel_One_Touch_Pixi_3_%283.5%29">Alcatel One Touch Pixi 3 (3.5)</a></dt>
- <dd><span>High-end consumer smartphone, powered by Firefox OS 2.0, with a 2 megapixel camera.</span></dd>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/Alcatel_Onetouch_Fire_C_4020D">Alcatel Onetouch Fire 2C 4020D</a></dt>
- <dd>Based on Tarako Firefox OS (1.3T) and released in India.</dd>
- <dt><a href="https://developer.mozilla.org/en-US/Firefox_OS/Phone_guide/Alcatel_One_Touch_Fire_C">Alcatel Onetouch Fire C</a></dt>
- <dd>Based on Tarako Firefox OS (1.3T) and released in India.</dd>
- <dt><a href="https://developer.mozilla.org/en-US/Firefox_OS/Phone_guide/Alcatel_One_Touch_Fire_E">Alcatel Onetouch Fire E</a></dt>
- <dd>Available in 5 countries.</dd>
- <dt><a href="https://developer.mozilla.org/en-US/Firefox_OS/Phone_guide/Cherry_Mobile_Ace">Cherry Mobile Ace</a></dt>
- <dd>Based on Firefox OS 1.3T and available in the Philippines.</dd>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/Fx0">Fx0</a></dt>
- <dd>First Firefox OS phone released in Japan, by KDDI.</dd>
- <dt><a href="https://developer.mozilla.org/en-US/Firefox_OS/Phone_guide/Huawei_Y300_II">Huawei Y300 II</a></dt>
- <dd>Based on Firefox OS 1.1 and available in the Philippines and Mexico.</dd>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/Intex_Cloud_FX">Intex Cloud FX</a></dt>
- <dd>First Firefox OS Tarako phone released in India and based on Firefox OS 1.3T.</dd>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/LG_fireweb">LG Fireweb</a></dt>
- <dd>Based on Firefox OS 1.1 and available in Uruguay and Brasil.</dd>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/Spice_Fire_One_MI_FX1">Spice Firefox MI FX1</a></dt>
- <dd>Based on Tarako Firefox OS (1.3T) and released in India.</dd>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/Spice_Fire_One_MI_FX2">Spice Firefox MI FX2</a></dt>
- <dd><span>High-end consumer 3G smartphone powered by FirefoxOS 1.4 with a 2 megapixel camera, released in India.</span></dd>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/Symphony_GoFox_F15">Symphony GoFox F15</a></dt>
- <dd>First Firefox OS Device to come with 3G video calling capability, launched in Bangladesh.</dd>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/Zen_U105_Fire">Zen U105 Fire</a></dt>
- <dd>Based on Firefox OS Tarako, available in India.</dd>
- <dt style="font-size: 13.63636302948px; line-height: 19.0909080505371px;"><a href="https://developer.mozilla.org/en-US/Firefox_OS/Phone_guide/ZTE_Open_II">ZTE Open II</a></dt>
- <dd style="font-size: 13.63636302948px; line-height: 19.0909080505371px;"><span style="font-size: 13.63636302948px; line-height: 19.0909080505371px;">Has a</span><span style="font-size: 13.63636302948px; line-height: 19.0909080505371px;">1.2 GHz dual core </span><span style="font-size: 13.63636302948px; line-height: 19.0909080505371px;">processor and a </span><span style="font-size: 13.63636302948px; line-height: 19.0909080505371px;">2.0 MP </span><span style="font-size: 13.63636302948px; line-height: 19.0909080505371px;">Rear Camera</span>, available in 7 countries.</dd>
- <dt style="font-size: 13.63636302948px; line-height: 19.0909080505371px;"><a href="/en-US/docs/Mozilla/Firefox_OS/Phone_guide/Orange_Klif">Orange Klif</a></dt>
- <dd style="font-size: 13.63636302948px; line-height: 19.0909080505371px;"><span>The Orange Klif is a 3G Smartphone, powered by Firefox OS 2.0, with a 2 megapixel camera. It is available in a number of African countries.</span></dd>
-</dl>
-
-<h2 id="General_Firefox_OS_information">General Firefox OS information</h2>
-
-<dl>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/Phone_specs">Firefox OS phone data</a></dt>
- <dd>In this article we list the various available Firefox OS phones along with information such as their code names, availability, and specific hardware features.</dd>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/Firefox_OS_device_features">General device features</a></dt>
- <dd>This page lists typical Firefox OS hardware features and minimum hardware requirements.</dd>
- <dt><a href="/en-US/Firefox_OS/Troubleshooting">Troubleshooting</a></dt>
- <dd>This article provides tips for resolving common problems you may have while using Firefox OS.</dd>
- <dt><a href="/en-US/Firefox_OS/Phone_guide/Best_practices_open_reference_devices">Best practices for open reference devices</a></dt>
- <dd>A set of best practices that we believe should come highly recommended for any widely available open reference devices. All of the recent Firefox OS reference devices have followed these practices.</dd>
-</dl>
diff --git a/files/th/archive/b2g_os/quickstart/app_tools/index.html b/files/th/archive/b2g_os/quickstart/app_tools/index.html
deleted file mode 100644
index af0a106940..0000000000
--- a/files/th/archive/b2g_os/quickstart/app_tools/index.html
+++ /dev/null
@@ -1,16 +0,0 @@
----
-title: App tools
-slug: Archive/B2G_OS/Quickstart/App_tools
-translation_of: Archive/B2G_OS/Quickstart/App_tools
----
-<div class="summary">
- <p>What do you use to build Open Web Apps? The answer is "anything you would normally use to build for the web." The following is a list of tools and resources to help you get started making Open Web Apps. They can be easily integrated into your existing web development workflow, if you have one, or you can build a new workflow around them.</p>
-</div>
-<h2 id="App_Validator">App Validator</h2>
-<p>Is your app ready for the Firefox Marketplace? The <a href="https://marketplace.firefox.com/developers/validator">App validator</a> will check your manifest and show you any errors it may have, or warnings you should consider.</p>
-<h2 id="Firefox_OS_Simulator">Firefox OS Simulator</h2>
-<p>Installing and using the <a href="https://marketplace.firefox.com/developers/docs/firefox_os_simulator">Firefox OS Simulator</a> is the easiest way to get up and running with your app. After installed the simulator is accessible via the Tools -&gt; Web Developer -&gt; Firefox OS Simulator menu. The simulator launches with a JavaScript console so that you may debug your application from within the simulator!</p>
-<h2 id="App_Manager">App Manager</h2>
-<p>The new kid on the block with regards to testing tools is called the <a href="/en-US/docs/Mozilla/Firefox_OS/Using_the_App_Manager">App Manager</a>. This tool allows you to connect desktop Firefox to a compatible device via USB (or a Firefox OS simulator), push apps straight to the device, validate apps, and debug them as they run on the device.</p>
-<h2 id="Firefox_Developer_Tools">Firefox Developer Tools</h2>
-<p>Firefox now ships with a default set of developer tools built from the ground up to ensure a great development experience that is both snappy and efficient. To find out more about how these tools work, and see a detailed list of what else Mozilla has to offer, head on over to our <a href="/en-US/docs/Tools">Tools zone</a>.</p>
diff --git a/files/th/archive/b2g_os/quickstart/index.html b/files/th/archive/b2g_os/quickstart/index.html
deleted file mode 100644
index a5bb4fa406..0000000000
--- a/files/th/archive/b2g_os/quickstart/index.html
+++ /dev/null
@@ -1,51 +0,0 @@
----
-title: Build
-slug: Archive/B2G_OS/Quickstart
-tags:
- - Apps
- - NeedsTranslation
- - Quickstart
- - TopicStub
-translation_of: Archive/B2G_OS/Quickstart
----
-<div class="summary">
- <p><span class="seoSummary">Quickstart information on coding open web apps.</span></p>
-</div>
-<dl>
- <dt>
- <a href="/en-US/docs/Web/Apps/Quickstart/Build/Intro_to_open_web_apps">Introduction to open web apps</a></dt>
- <dd>
- What are open web apps? How they differ from regular web pages? Why is this significant? This article aims to answer these questions and more.</dd>
- <dt>
- <a href="/en-US/docs/Web/Apps/Quickstart/Build/Your_first_app">Your first app</a></dt>
- <dd>
- This article takes you through the basic steps and additional knowledge on top of regular web development required to create installable open web apps.</dd>
- <dt>
- <a href="/en-US/docs/Web/Apps/Quickstart/Build/Intro_to_Firefox_OS">Introduction to Firefox OS</a></dt>
- <dd>
- An introduction to Firefox OS, Mozilla's new open web app-based mobile platform.</dd>
- <dt>
- <a href="/en-US/docs/Web/Apps/Quickstart/Build/Intro_to_manifests">Introduction to manifests</a></dt>
- <dd>
- An FAQ designed to answer any questions you may have about manifests, hosting apps, origins, and other such topics.</dd>
- <dt>
- <a href="/en-US/docs/Web/Apps/Quickstart/Build/For_Web_developers">App development for web developers</a></dt>
- <dd>
- If you're a web developer, how do open web apps differ from what you're used to? This article explains all.</dd>
- <dt>
- <a href="/en-US/docs/Web/Apps/Quickstart/Build/For_mobile_developers">App development for mobile developers</a></dt>
- <dd>
- If you're a native mobile application developer, what advantages can open web apps bring to you, and how do they differ from what you are used to? Here are some ideas.</dd>
- <dt>
- <a href="/en-US/docs/Web/Apps/Quickstart/Build/Developing_app_functionality">Developing app functionality</a></dt>
- <dd>
- This page talks about the kinds of different functionality that you might want to build into your apps, with links to further information.</dd>
- <dt>
- <a href="/en-US/docs/Web/Apps/Quickstart/Build/Payments">Payments</a></dt>
- <dd>
- How do you build functionality to make people pay for installing your open web apps? Here is the lowdown.</dd>
- <dt>
- <a href="/en-US/docs/Web/Apps/Quickstart/Build/App_tools">App tools</a></dt>
- <dd>
- Last for this section, we provide some links to more information on the tools available to help you develop great open web apps.</dd>
-</dl>
diff --git a/files/th/archive/b2g_os/simulator/index.html b/files/th/archive/b2g_os/simulator/index.html
deleted file mode 100644
index 164bf61eb2..0000000000
--- a/files/th/archive/b2g_os/simulator/index.html
+++ /dev/null
@@ -1,58 +0,0 @@
----
-title: Firefox OS Simulator
-slug: Archive/B2G_OS/Simulator
-translation_of: Archive/B2G_OS/Simulator
----
-<div class="note">
- <p>This page describes the Firefox OS Simulator for developers targeting Firefox OS 1.2 or later. If you're developing apps for Firefox OS 1.1, then you should check out the documentation for the <a href="/en-US/docs/Tools/Firefox_OS_1.1_Simulator">Firefox OS 1.1 Simulator</a> instead.</p>
-</div>
-<p><span style="line-height: 1.5;">The Firefox OS Simulator is <span style="line-height: 1.5;">a version of the higher layers of Firefox OS</span> that simulates a Firefox OS device, but runs on the desktop</span><span style="line-height: 1.5;">. This means that in many cases, you don't need a real device to test and debug your app. </span><span style="line-height: 1.5;">It runs in a window the same size as a Firefox OS device, includes the Firefox OS user interface and built-in apps, and simulates many of the Firefox OS device APIs.</span></p>
-<p><span style="line-height: 1.5;">The Simulator is packaged and distributed as a Firefox add-on. Once you've downloaded it and installed it in Firefox, you can run it, push apps to it, and attach the developer tools to it,</span><span style="line-height: 1.5;"> using the </span><a href="/docs/Tools/WebIDE"><span style="line-height: 1.5;">WebIDE</span></a><span style="line-height: 1.5;">.</span></p>
-<h2 id="Installation"><span style="line-height: 1.5;">Installation</span></h2>
-<p><span style="line-height: 1.5;">To install the simulator, use <a href="/docs/Tools/WebIDE#Adding_a_Simulator">WebIDE's Manage Simulators pane</a> (available as part of Firefox 33 and onwards). Multiple versions are available, and you are advised to install them all, for maximum flexibility.</span></p>
-<p>To start the Simulator, you choose it from WebIDE's runtime list. For more details, see the <a href="/docs/Tools/WebIDE#Selecting_a_runtime" style="font-size: 14px; font-weight: normal; line-height: 1.5;">instructions in the WebIDE documentation</a>. Once the Simulator's running, you can push apps to it and debug them using the WebIDE, just as you can with a real device.</p>
-<p>If you are using the <a href="/Firefox_OS/Using_the_App_Manager">App Manager</a> (an older tool available prior to the WebIDE), you can install a simulator via the following button:</p>
-<p><a href="https://ftp.mozilla.org/pub/mozilla.org/labs/fxos-simulator/" style="margin-bottom: 20px; padding: 10px; color: white; text-align: center; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; display: inline-block; background-color: rgb(129, 188, 46); white-space: nowrap; text-shadow: rgba(0, 0, 0, 0.247059) 0px 1px 0px; box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 0px 0px, rgba(0, 0, 0, 0.298039) 0px -1px 0px 0px inset;">Install Simulator</a></p>
-<h2 id="The_Simulator_UI" style="line-height: 30px;">The Simulator UI</h2>
-<p><span style="line-height: 22.00800132751465px;">The Simulator appears as a separate window, sized so the simulated screen area is 320x480 pixels. </span><span style="line-height: 22.00800132751465px;">To simulate touch events you can click the mouse button and drag while holding the button down. So by clicking and dragging right-to-left from the Home Screen, you'll see the built-in apps, as well as any apps you have added:</span></p>
-<p><img alt="" src="https://mdn.mozillademos.org/files/7173/simulator-1.2.png" style="width: 810px; height: 623px; display: block; margin: 0px auto;"></p>
-<p>The Simulator has two buttons in a toolbar at the bottom:</p>
-<ul>
- <li>the button on the left takes you to the Home screen, or switches the Simulator off if you hold it down</li>
- <li>the button on the right switches the Simulator between portrait and landscape orientation. This will generate the <a href="https://developer.mozilla.org/en-US/docs/WebAPI/Managing_screen_orientation#Listening_orientation_change" title="/en-US/docs/WebAPI/Detecting_device_orientation">orientationchange</a> event.</li>
-</ul>
-<h2 id="Limitations_of_the_Simulator">Limitations of the Simulator</h2>
-<p>Note that the Firefox OS Simulator isn't a perfect simulation.</p>
-<h3 id="Hardware_limitations">Hardware limitations</h3>
-<p>Apart from screen size, the Simulator does not simulate the hardware limitations of a Firefox OS device such as available memory or CPU speed.</p>
-<h3 id="Audiovideo_codecs">Audio/video codecs</h3>
-<p>The following codecs depend on hardware-accelerated decoding and are therefore not yet supported:</p>
-<ul>
- <li>MP3</li>
- <li>AAC</li>
- <li>H.264 (MP4)</li>
- <li>WebM</li>
-</ul>
-<p>This means it isn't possible to use the Simulator to test video playback in apps and on websites like Youtube that rely on these codecs.</p>
-<h3 id="Unsupported_APIs"><a name="Unsupported-APIs">Unsupported APIs</a></h3>
-<p>Certain APIs that work on the device won't work on the Simulator, generally because the supporting hardware is not available on the desktop. We've implemented simulations for some APIs such as geolocation, and expect to add more in future releases. However, at the moment the following APIs are not supported. Using them might throw errors or just return incorrect results:</p>
-<ul>
- <li><a href="/en-US/WebAPI/WebTelephony" title="/en-US/WebAPI/WebTelephony">Telephony</a></li>
- <li><a href="/en-US/docs/WebAPI/WebSMS" title="/en-US/docs/WebAPI/WebSMS">WebSMS</a></li>
- <li><a href="/en-US/docs/WebAPI/WebBluetooth" title="/en-US/docs/WebAPI/WebBluetooth">WebBluetooth</a></li>
- <li><a href="/en-US/docs/WebAPI/Using_Light_Events" title="/en-US/docs/WebAPI/Using_Light_Events">Ambient Light</a></li>
- <li><a href="/en-US/docs/WebAPI/Proximity" title="/en-US/docs/WebAPI/Proximity">Proximity</a></li>
- <li><a href="/en-US/docs/WebAPI/Network_Information" title="/en-US/docs/WebAPI/Network_Information">Network Information</a></li>
- <li><a href="/en-US/docs/Online_and_offline_events" title="/en-US/docs/Online_and_offline_events">navigator.onLine and offline events</a></li>
- <li><a href="/en-US/docs/WebAPI/Vibration" title="/en-US/docs/WebAPI/Vibration">Vibration</a></li>
-</ul>
-<h2 id="Getting_help"><a name="Simulator-help"></a>Getting help</h2>
-<p><span style="line-height: 1.5;">If you have a question, try asking us on the </span><a href="https://lists.mozilla.org/listinfo/dev-developer-tools" style="line-height: 1.5;">dev-developer-tools mailing list</a><span style="line-height: 1.5;"> or on </span><a href="irc://irc.mozilla.org/#devtools" style="line-height: 1.5;">#devtools on irc.mozilla.org</a><span style="line-height: 1.5;">.</span></p>
-<h3 id="How_to_enable_verbose_logging"><a name="Simulator-verbose-logging"></a>How to enable verbose logging</h3>
-<p>You can see messages logged from your app in the <a href="/en-US/docs/Tools/Web_Console">Web Console</a>, which you can attach to your app using the <a href="/docs/Tools/WebIDE/Troubleshooting">WebIDE</a>. If you want to catch early messages happening during app startup, before the console gets connected and working, you can enable verbose logging in the Simulator.</p>
-<p>Visit about:config and <strong>create</strong> a new preference. The preference name is different for each version of the Simulator:</p>
-<ul>
- <li>extensions.fxos_1_3_simulator@mozilla.org.sdk.console.logLevel for Firefox OS 1.3</li>
- <li>extensions.fxos_1_2_simulator@mozilla.org.sdk.console.logLevel for Firefox OS 1.2</li>
-</ul>
-<p>Set it to the string value "all", and disable, then reenable, the add-on in the Add-on Manager. Now extra messages about the Simulator's operation will appear in the <a href="/en-US/docs/Tools/Browser_Console">Browser Console</a>.</p>
diff --git a/files/th/archive/b2g_os/using_the_app_manager/index.html b/files/th/archive/b2g_os/using_the_app_manager/index.html
deleted file mode 100644
index b9c7b30dfa..0000000000
--- a/files/th/archive/b2g_os/using_the_app_manager/index.html
+++ /dev/null
@@ -1,277 +0,0 @@
----
-title: Using the App Manager
-slug: Archive/B2G_OS/Using_the_App_Manager
-translation_of: Archive/B2G_OS/Using_the_App_Manager
----
-<div class="summary">
-<p>The App Manager is a tool available in Firefox for Desktop which provides a number of useful tools to help you test, deploy and debug HTML5 web apps on Firefox OS phones and the Firefox OS Simulator, directly from your browser.</p>
-
-<p>The App Manager is for developers targeting Firefox OS 1.2 or later. If you're developing apps for Firefox OS 1.1, then you should check out the documentation for the <a href="/en-US/docs/Tools/Firefox_OS_1.1_Simulator">Firefox OS 1.1 Simulator</a> instead.</p>
-
-<p>The App Manager is being replaced by the <a href="/en-US/docs/Tools/WebIDE">WebIDE</a>, which is new in Firefox 33. The WebIDE provides all the features of the App Manager, but also provides an editing environment for you to create and develop Firefox OS apps.</p>
-</div>
-
-<p style="text-align: center;">{{EmbedYouTube("z1Bxg1UJVf0")}}</p>
-
-<p>The App Manager is composed of:</p>
-
-<ul>
- <li>An <a href="#Apps_panel"><em>Apps panel</em></a>, which manages local apps (app source code located on your computer) and apps hosted externally, allowing you to package and install them on your device or simulator, and debug them using Toolboxes</li>
- <li>A <a href="#Device_panel"><em>Device panel</em></a>, which displays information about the connected device including Firefox OS version installed, permissions required for using device APIs on the device, and apps installed</li>
- <li><a href="/en-US/docs/Tools_Toolbox"><em>Toolboxes</em></a>, which are are sets of developer tools (web console, inspector, debugger, etc.) that can be connected to a running app via the Apps panel to perform debugging operations</li>
-</ul>
-
-<h2 id="Quick_setup"><a name="Configuring_device">Quick setup</a></h2>
-
-<p>This section is designed to get you up and running as soon as possible; if you need some more detail please skip forward to the {{ anch("Device and system configuration") }} section and start reading from there.  Also see the {{ anch("Troubleshooting") }} section for help if you are having trouble.</p>
-
-<ol>
- <li>Make sure you have Firefox Desktop 26+ installed</li>
- <li>Open the App Manager (in the URL bar, type <code>about:app-manager</code>)</li>
- <li>If you don't have a real device:
- <ol>
- <li><a href="https://ftp.mozilla.org/pub/mozilla.org/labs/fxos-simulator/">Install the Firefox OS Simulator</a></li>
- <li>In App Manager's bottom toolbar, click on <em>Start Simulator</em>, then click on the name of the installed simulator, which should appear there.</li>
- </ol>
- </li>
- <li>If you have a real device:
- <ol>
- <li>Make sure your device is running Firefox OS 1.2+</li>
- <li>On Windows, make sure to install the drivers provided by your phone manufacturer</li>
- <li>In the Settings of your device, disable Screen Lock (<code>Settings &gt; Phone lock &gt; <code>Lock Screen</code></code>) and enable Remote Debugging (<code>Settings &gt; Device information &gt; More information &gt; Developer</code>)</li>
- <li><a href="https://ftp.mozilla.org/pub/mozilla.org/labs/fxos-simulator/">Install the ADB Helper</a> add-on in Firefox Desktop</li>
- <li>Connect your device to your machine via a USB cable</li>
- <li>You should see the name of your device in the App Manager's bottom bar. Click on it.</li>
- </ol>
- </li>
- <li>The bottom bar should show "Connected to: xxx"</li>
- <li>Click on the <em>Apps</em> panel and add an app (packaged or hosted)</li>
- <li>The <em>Refresh</em> button validates your app and installs it on the Simulator/Device</li>
- <li>The <em>Debug</em> button connects the developer tools to the running app</li>
- <li><strong>See the {{ anch("Troubleshooting") }} section for help if you are having trouble</strong></li>
-</ol>
-
-<h2 id="Device_and_system_configuration">Device and system configuration</h2>
-
-<p>The first thing you'll need to do when using the App Manager is make sure your system and phone are set up correctly. This section will run through all the steps required.</p>
-
-<h3 id="Firefox_OS_1.2_required">Firefox OS 1.2+ required</h3>
-
-<p>Make sure your device is running Firefox OS 1.2/Boot2Gecko 1.2 or higher. To check which version of Firefox OS the device is runing, go to <code>Settings &gt; Device Information &gt; Software</code>.</p>
-
-<p>If you don't have a high enough version installed, depending on what phone you have you will need to either install an available nightly build of Firefox 1.2+, or configure and build it yourself from source.</p>
-
-<p>Builds available:</p>
-
-<ul>
- <li><a href="http://downloads.geeksphone.com/">Geeksphone Keon/Peak builds</a> (to find out more about using these, read <a href="/en-US/docs/Mozilla/Firefox_OS/Developer_phone_guide/Updating_and_Tweaking_Geeksphone">Updating and Tweaking your Firefox OS Developer Preview phone/Geeksphone</a>)</li>
- <li>More to follow</li>
-</ul>
-
-<div class="note">
-<p><strong>Note</strong>: To build your own Firefox OS 1.2+ distribution, follow the instructions located at <a href="/en-US/docs/Mozilla/Firefox_OS/Building_and_installing_Firefox_OS">Building and installing Firefox OS</a>, starting with <a href="/en-US/docs/Mozilla/Firefox_OS/Firefox_OS_build_prerequisites">Firefox OS build prerequisites</a>.</p>
-</div>
-
-<h3 id="Remote_debugging">Remote debugging</h3>
-
-<p>Next, you need to enable remote debugging in Firefox OS. To do so, go to <code>Settings &gt; Device information &gt; More information &gt; Developer</code> and check the Remote Debugging checkbox.</p>
-
-<h3 id="Adb_Helper_Add-on" name="Adb_Helper_Add-on">ADB or ADB helper</h3>
-
-<p>The process uses the Android Debug Bridge (ADB) to handle the device-computer connection and communication. There are two options for running ADB:</p>
-
-<ul>
- <li>
- <p>Let Firefox handle ADB (recommended). <a href="https://ftp.mozilla.org/pub/mozilla.org/labs/fxos-simulator/">Install the ADB Helper add-on</a>, which makes the process easier. With this installed, there's no need to install the ADB, and no need to type the <code>adb forward</code> command: everything is handled by the add-on.</p>
- <a href="https://ftp.mozilla.org/pub/mozilla.org/labs/fxos-simulator/" style="margin-bottom: 20px; padding: 10px; text-align: center; border-radius: 4px; display: inline-block; background-color: #81BC2E; white-space: nowrap; color: white; text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25); box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.2), 0px -1px 0px 0px rgba(0, 0, 0, 0.3) inset;" title="https://addons.mozilla.org">Download ADB Helper Add-on</a></li>
- <li>Use ADB manually. You need to have it installed on your computer: download and install <code>adb</code> as explained in <a href="/en-US/Firefox_OS/Debugging/Installing_ADB">Installing ADB</a>. You'll need to enable port forwarding by entering the following command into your terminal:
- <pre>adb forward tcp:6000 localfilesystem:/data/local/debugger-socket</pre>
- Note that you'll need to do this every time the phone is restarted or unplugged then re-plugged.</li>
-</ul>
-
-<div class="note">
-<p><strong>Note</strong>: There's no need to run this command if you installed the ADB Helper Add-on.</p>
-</div>
-
-<h2 id="Connecting_your_device_to_the_App_Manager">Connecting your device to the App Manager</h2>
-
-<p>With all your configuration done, it's now time to plug your device into your computer and start the App Manager:</p>
-
-<ol>
- <li>Plug the device into your computer via USB.</li>
- <li>Disable Screen lock on your device by going to <code>Settings &gt; Screen Lock</code> and unchecking the <code>Lock Screen</code> checkbox. This is a good idea because when the screen gets locked, the phone connection gets lost, meaning it is no longer available for debugging.</li>
- <li>Start the App Manager — In Firefox Desktop select the <code>Tools &gt; Web Developer &gt; App Manager</code> menu option, or type <code>about:app-manager</code> in the URL bar.</li>
- <li>At the bottom of the App Manager tab, you will see a connection status bar (see screenshot below). You should be able to connect your device by clicking the "Connect to localhost:6000" button.</li>
- <li>If this works successfully, a prompt should appear on your device: "An incoming request to permit remote debugging connection was detected. Allow connection?". Tap the OK button (You may also have to press the power button on the phone so you can see the prompt.) The connection status bar should update to say "Connected to B2G", with a Disconnect button available to press if you want to cancel the connection.</li>
-</ol>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/6263/connection-status.png" style="display: block; height: 30px; margin: 0px auto; width: 600px;"></p>
-
-<div class="note">
-<p><strong>Note</strong>: The other controls in the connection status bar allow you to connect a simulator to the App Manager, which we cover in the next section, below, and change the port that the connection happens on. If you change the port, you'll also need to enable port forwarding for this port as well, as instructed in the {{anch("Enable port forwarding")}} section, above.</p>
-</div>
-
-<h2 id="Using_a_Firefox_OS_Simulator_Add-on"><a name="Simulator">Using a Firefox OS Simulator Add-on</a></h2>
-
-<p>If you haven't got a real device available to use with App Manager, you can still try it out using a <a href="/en-US/docs/Tools/Firefox_OS_Simulator">Firefox OS Simulator</a> Add-on. To start off, install the simulator with the following button (multiple versions are available; you are advised to install them all, for maximum flexibility):</p>
-
-<p><a class="download-button external ignore-external" href="https://ftp.mozilla.org/pub/mozilla.org/labs/fxos-simulator/" rel="noopener">Install Simulator</a></p>
-
-
-<p>Once you've installed the simulator(s), you need to go to about:app-manager to see the connection status bar at the bottom of the App Manager tab, and click the "Start simulator" button. At least three buttons will appear:</p>
-
-<ul>
- <li>"Firefox OS 1.3", "Firefox OS 1.2" ... etc. (or something similar): the left-most buttons contain the names of the simulator versions you have installed. Click one to start a connection to a simulator.</li>
- <li>"Add": the middle button navigates to the simulator install links in this article, so you can add more Simulators (Firefox OS 1.3, Firefox OS 1.4, etc.)</li>
- <li>"Cancel": the right hand button cancels the connection.</li>
-</ul>
-
-<div class="note">
-<p><strong>Note</strong>: The Firefox OS 1.5 Simulator has been removed, as 1.5 was changed to 2.0. If you have the Firefox OS 1.5 Simulator installed, it won't automatically update to 2.0, so you should uninstall 1.5 and install 2.0 instead. The Firefox OS 2.0 simulator will then automatically update.</p>
-</div>
-
-<div class="note">
-<p><strong>Note</strong>: The Firefox OS 1.2 Simulator has been removed, as no phones are likely to be released with version 1.2 installed — this version is therefore of limited value, and it makes more sense to spend your time debugging on other versions.</p>
-</div>
-
-<h2 id="Running_custom_builds_in_the_App_Manager">Running custom builds in the App Manager</h2>
-
-<p>Note that you can run custom B2G Desktop and Gaia/Gecko builds in the App Manager via the simulator. Read <a href="/en-US/Firefox_OS/Running_custom_builds_in_the_App_Manager">Running custom Firefox OS/Gaia builds in the App Manager</a> for instructions on how to do this.</p>
-
-<h2 id="Apps_panel_2"><a name="Apps_panel">Apps panel</a></h2>
-
-<p>Now that everything is working, let's review the functionality available inside the App Manager, starting with the Apps panel. From here, you can import an existing app to push onto your device and debug:</p>
-
-<ul>
- <li>To install a local app, click on the plus next to the "Add Packaged App" label and use the resulting file chooser dialog to select the directory your app is contained inside.</li>
- <li>To install an externally hosted app, enter the absolute URL of the app's manifest file into the text field inside the "Add Hosted App" box, then press the plus button.</li>
-</ul>
-
-<p>Information about your app should appear on the right hand side of the window, as seen below:</p>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/6261/apps-panel.png" style="display: block; height: 375px; margin: 0px auto; width: 600px;"></p>
-
-<h3 id="Manifest_editor">Manifest editor</h3>
-
-<p>From Firefox 28 onwards, the Apps Panel includes an editor for the app manifest:</p>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/6613/apps-panel-fx-28.png" style="display: block; margin: 0px auto; width: 600px;"></p>
-
-<h3 id="Debugging">Debugging</h3>
-
-<p>Clicking on <em>"Update"</em> will update (install) the app on the device. Clicking on <em>"debug"</em> will connect a toolbox to the app, allowing you to debug its code directly:</p>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/6265/debug.png" style="display: block; height: 375px; margin: 0px auto; width: 600px;"></p>
-
-<div class="note">
-<p>You'll enjoy playing around with the toolbox — try altering the DOM, CSS etc. and you'll see the updates reflected on the device in realtime. Such updates will be saved on the installed app code; you'll see them next time you open the app on the device.</p>
-</div>
-
-<p>Before Firefox 28, the tools are launched in a separate window. From Firefox 28 onwards, the tools are launched in a separate tab in the App Manager itself, alongside the Apps and Device tabs. The tab is given your app's icon so it's easy to find:</p>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/6615/toolbox-fx-28.png" style="display: block; height: 375px; margin: 0px auto; width: 600px;"></p>
-
-<h3 id="Errors">Errors</h3>
-
-<p>If an app was not added successfully — for example if the URL was incorrect, or you selected a packaged app folder — an entry will be added to the page for this app, but this will include error information.</p>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/6259/apps-error.png" style="display: block; height: 375px; margin: 0px auto; width: 600px;"></p>
-
-<p>You can also delete an app from this view, by hovering over the App name/description on the left of the window, and pressing the "X" button that appears in each case. This however doesn't remove the app from the device. To do that you need to manually remove the app using the device itself.</p>
-
-<h2 id="Device_panel_2"><a name="Device_panel">Device panel</a></h2>
-
-<p>The <em>Device</em> tab displays information about the connected device. From the <em>"</em>Installed Apps<em>"</em> window, apps on the device can be started and debugged.</p>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/6267/device-tab.png" style="display: block; height: 375px; margin: 0px auto; width: 600px;"></p>
-
-<div class="note">
-<p>Note: Certified Apps are not listed by default. <a href="#Debugging_Certified_Apps">See how to debug certified apps</a>.</p>
-</div>
-
-<p><a name="permissions"></a>The "Permissions" window shows the required priviledges for different <a href="/en-US/docs/WebAPI">Web APIs</a> on the current device:</p>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/6269/permissions.png" style="display: block; height: 375px; margin: 0px auto; width: 600px;"></p>
-
-<p>Finally, you can take a screenshot of the current device display by clicking the "Screenshot" button. The screenshot appears in a new tab on Firefox, and from there you can save or discard it as you wish.</p>
-
-<h2 id="Debugging_Certified_Apps_2"><a name="Debugging_Certified_Apps">Debugging Certified Apps</a></h2>
-
-<p>Currently only devices running a development build of Firefox OS 1.2+ are capable of debugging certified apps. If you have a development build, you can enable certified app debugging by changing the pref <code>devtools.debugger.forbid-certified-apps</code> to <code>false</code> in your profile. To do this, follow the steps below:</p>
-
-<ol>
- <li>
- <p>On your computer, enter the following command in Terminal/console to enter your device's filesystem via the shell:</p>
-
- <pre class="brush: bash">adb shell</pre>
-
- <p>Your prompt should change to <code>root@android</code>.</p>
- </li>
- <li>
- <p>Next, stop B2G running using the following command:</p>
-
- <pre class="brush: bash">stop b2g</pre>
- </li>
- <li>
- <p>Navigate to the following directory:</p>
-
- <pre>cd /data/b2g/mozilla/*.default/</pre>
- </li>
- <li>
- <p>Here, update the prefs.js file with the following line:</p>
-
- <pre class="brush: js">echo 'user_pref("devtools.debugger.forbid-certified-apps", false);' &gt;&gt; prefs.js</pre>
- </li>
- <li>
- <p>After you've finished editing and saving the file, start B2G again using the following command:</p>
-
- <pre class="brush: bash">start b2g</pre>
- </li>
- <li>
- <p>Exit the android filesystem using the <code>exit</code> command; this will return you to your normal terminal prompt.</p>
- </li>
- <li>
- <p>Next, reconnect to the App Manager and you should see certified apps appear for debugging.</p>
- </li>
-</ol>
-
-<div class="note">
-<p>Note: If you want to add this preference to your Gaia build you can run <code>make DEVICE_DEBUG=1 reset-gaia</code>.</p>
-</div>
-
-<h2 id="Troubleshooting_2"><a name="Troubleshooting">Troubleshooting</a></h2>
-
-<p id="My_device_is_not_recognized">If the device is not recognized:</p>
-
-<ul>
- <li>If clicking the button corresponding to your Firefox OS phone doesn't do anything, make sure you haven't connected an Android phone at the same time as the Firefox OS phone to your computer.</li>
- <li>Read the <a href="#Configuring_device">Device and system configuration</a> section thoroughly, and make sure all the steps are followed:</li>
- <li>Is your device running at least Firefox OS 1.2?</li>
- <li>Don't see all the apps? Do you need to enable <a href="#Debugging_Certified_Apps">Certified Apps debugging</a>?</li>
- <li>Did you enable "Remote Debugging" in the settings of your phone?</li>
- <li>If you are not using the <a href="#Adb_Helper_Add-on">ADB Helper add-on</a>:
- <ul>
- <li>Did you successfully run the <code>adb forward</code> command?</li>
- </ul>
- </li>
- <li>If you are using the <a href="#Adb_Helper_Add-on">ADB Helper add-on</a> and your device is not listed in the bottom toolbar:
- <ul>
- <li>If you use Linux, <a href="http://developer.android.com/tools/device.html#setting-up">make sure to setup udev correctly</a></li>
- <li>If you use Windows, <a href="http://developer.android.com/tools/device.html#setting-up">make sure to install the appropriate drivers</a></li>
- <li>You can also enable verbose logging to gather diagnostics:
- <ul>
- <li>Use about:config to set the pref "<span class="message"><span class="content"><span class="email">extensions.adbhelper@mozilla.org.sdk</span>.console.logLevel"</span></span> to the string value "all"</li>
- <li>Disable and re-enable the ADB Helper add-on from the add-ons manager, or restart Firefox</li>
- <li>Open the App Manager again</li>
- <li>In the <a href="/docs/Tools/Browser_Console">Browser Console</a>, you should now see additional output lines that mention "adbhelper"</li>
- <li>If you see them but aren't sure what they mean, stop by the <a href="https://wiki.mozilla.org/DevTools/GetInvolved#Communication">#devtools room on IRC</a> or <a href="https://bugzilla.mozilla.org/enter_bug.cgi?alias=&amp;assigned_to=nobody%40mozilla.org&amp;attach_text=&amp;blocked=&amp;bug_file_loc=http%3A%2F%2F&amp;bug_ignored=0&amp;bug_severity=normal&amp;bug_status=NEW&amp;cf_blocking_b2g=---&amp;cf_crash_signature=&amp;cf_status_b2g18=---&amp;cf_status_b2g_1_1_hd=---&amp;cf_status_b2g_1_2=---&amp;cf_status_firefox24=---&amp;cf_status_firefox25=---&amp;cf_status_firefox26=---&amp;cf_status_firefox27=---&amp;cf_status_firefox_esr17=---&amp;cf_status_firefox_esr24=---&amp;cf_tracking_b2g18=---&amp;cf_tracking_firefox24=---&amp;cf_tracking_firefox25=---&amp;cf_tracking_firefox26=---&amp;cf_tracking_firefox27=---&amp;cf_tracking_firefox_esr17=---&amp;cf_tracking_firefox_esr24=---&amp;cf_tracking_firefox_relnote=---&amp;cf_tracking_relnote_b2g=---&amp;comment=&amp;component=Developer%20Tools%3A%20App%20Manager&amp;contenttypeentry=&amp;contenttypemethod=autodetect&amp;contenttypeselection=text%2Fplain&amp;data=&amp;defined_groups=1&amp;dependson=&amp;description=&amp;flag_type-203=X&amp;flag_type-37=X&amp;flag_type-41=X&amp;flag_type-5=X&amp;flag_type-607=X&amp;flag_type-720=X&amp;flag_type-721=X&amp;flag_type-737=X&amp;flag_type-748=X&amp;flag_type-781=X&amp;flag_type-787=X&amp;flag_type-791=X&amp;flag_type-799=X&amp;flag_type-800=X&amp;flag_type-802=X&amp;flag_type-803=X&amp;flag_type-809=X&amp;flag_type-825=X&amp;form_name=enter_bug&amp;keywords=&amp;maketemplate=Remember%20values%20as%20bookmarkable%20template&amp;op_sys=All&amp;priority=--&amp;product=Firefox&amp;qa_contact=developer.tools%40firefox.bugs&amp;rep_platform=x86&amp;requestee_type-203=&amp;requestee_type-41=&amp;requestee_type-5=&amp;requestee_type-607=&amp;requestee_type-748=&amp;requestee_type-781=&amp;requestee_type-787=&amp;requestee_type-791=&amp;requestee_type-800=&amp;short_desc=&amp;status_whiteboard=&amp;target_milestone=---&amp;version=Trunk">file a bug</a> with the log output</li>
- </ul>
- </li>
- </ul>
- </li>
- <li>See <strong>"???????"</strong> instead of the device name on Linux? You have permissions issues. <a href="http://developer.android.com/tools/device.html#setting-up">Make sure to setup udev correctly</a>.</li>
- <li>Is your phone screen unlocked?</li>
- <li>If the command "adb devices" shows no entries even though the phone is connected and unlocked, you may have to <a href="http://blog.fh-kaernten.at/wehr/?p=1182">edit adb_usb.ini</a>.</li>
-</ul>
-
-<p>Can't connect your device to the App Manager or start the simulator? <a href="https://wiki.mozilla.org/DevTools/GetInvolved#Communication">Let us know</a> or <a href="https://bugzilla.mozilla.org/enter_bug.cgi?alias=&amp;assigned_to=nobody%40mozilla.org&amp;attach_text=&amp;blocked=&amp;bug_file_loc=http%3A%2F%2F&amp;bug_ignored=0&amp;bug_severity=normal&amp;bug_status=NEW&amp;cf_blocking_b2g=---&amp;cf_crash_signature=&amp;cf_status_b2g18=---&amp;cf_status_b2g_1_1_hd=---&amp;cf_status_b2g_1_2=---&amp;cf_status_firefox24=---&amp;cf_status_firefox25=---&amp;cf_status_firefox26=---&amp;cf_status_firefox27=---&amp;cf_status_firefox_esr17=---&amp;cf_status_firefox_esr24=---&amp;cf_tracking_b2g18=---&amp;cf_tracking_firefox24=---&amp;cf_tracking_firefox25=---&amp;cf_tracking_firefox26=---&amp;cf_tracking_firefox27=---&amp;cf_tracking_firefox_esr17=---&amp;cf_tracking_firefox_esr24=---&amp;cf_tracking_firefox_relnote=---&amp;cf_tracking_relnote_b2g=---&amp;comment=&amp;component=Developer%20Tools%3A%20App%20Manager&amp;contenttypeentry=&amp;contenttypemethod=autodetect&amp;contenttypeselection=text%2Fplain&amp;data=&amp;defined_groups=1&amp;dependson=&amp;description=&amp;flag_type-203=X&amp;flag_type-37=X&amp;flag_type-41=X&amp;flag_type-5=X&amp;flag_type-607=X&amp;flag_type-720=X&amp;flag_type-721=X&amp;flag_type-737=X&amp;flag_type-748=X&amp;flag_type-781=X&amp;flag_type-787=X&amp;flag_type-791=X&amp;flag_type-799=X&amp;flag_type-800=X&amp;flag_type-802=X&amp;flag_type-803=X&amp;flag_type-809=X&amp;flag_type-825=X&amp;form_name=enter_bug&amp;keywords=&amp;maketemplate=Remember%20values%20as%20bookmarkable%20template&amp;op_sys=All&amp;priority=--&amp;product=Firefox&amp;qa_contact=developer.tools%40firefox.bugs&amp;rep_platform=x86&amp;requestee_type-203=&amp;requestee_type-41=&amp;requestee_type-5=&amp;requestee_type-607=&amp;requestee_type-748=&amp;requestee_type-781=&amp;requestee_type-787=&amp;requestee_type-791=&amp;requestee_type-800=&amp;short_desc=&amp;status_whiteboard=&amp;target_milestone=---&amp;version=Trunk">file a bug</a>.</p>
diff --git a/files/th/archive/index.html b/files/th/archive/index.html
deleted file mode 100644
index b7a3cfe8de..0000000000
--- a/files/th/archive/index.html
+++ /dev/null
@@ -1,20 +0,0 @@
----
-title: Archive of obsolete content
-slug: Archive
-translation_of: Archive
----
-<p>(th translation)</p>
-
-<p>Here at MDN, we try to avoid outright deleting content that might be useful to people targeting legacy platforms, operating systems, and browsers. Perhaps your target audience is people that are using older hardware, for example, and can't upgrade to the latest and greatest browsers. Or for "reasons," your company is required to use very old software and you need to build Web content that runs on that software. Or perhaps you're just curious about the history of an obsolete feature or API, and how it worked.</p>
-
-<p>There are many reasons older documentation can be useful. So, we've established this area into which we can archive older documentation. Material in this Archived content zone should <strong>not</strong> be used for building new Web sites or apps for modern browsers. It's here for historical reference only.</p>
-
-<div class="note">
-<p><strong>Note to writers:</strong> We need to try to keep the subpages here organized instead of all dumped into one large folder. Try to create subtrees for categories of material. Also, only move pages here that are <strong>extremely</strong> obsolete. If anyone might realistically need the information in a living product, it may not be appropriate to move it here. In general, it may be best to discuss it in the <a href="https://chat.mozilla.org/#/room/#mdn:mozilla.org">MDN Web Docs chat room</a> before moving content here.</p>
-</div>
-
-<p>{{SubpagesWithSummaries}}</p>
-
-<h2 id="Subnav">Subnav</h2>
-
-<p>{{ListSubpages("/en-US/docs/Archive", 2, 0, 1)}}</p>
diff --git a/files/th/archive/meta_docs/index.html b/files/th/archive/meta_docs/index.html
deleted file mode 100644
index 52de2c8447..0000000000
--- a/files/th/archive/meta_docs/index.html
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: MDN "meta-documentation" archive
-slug: Archive/Meta_docs
-tags:
- - Archive
- - MDN
- - NeedsTranslation
- - TopicStub
-translation_of: Archive/Meta_docs
----
-<p>Here you'll find archived "meta-documentation"; that is, documentation about how to write documentation on MDN. The articles here are obsolete and should no longer be referenced; we are retaining them here for reference while we migrate some content to new places, but very little of this is useful.</p>
-<p>{{LandingPageListSubpages}}</p>
diff --git a/files/th/archive/meta_docs/writing_content/index.html b/files/th/archive/meta_docs/writing_content/index.html
deleted file mode 100644
index 50a6418805..0000000000
--- a/files/th/archive/meta_docs/writing_content/index.html
+++ /dev/null
@@ -1,56 +0,0 @@
----
-title: Writing content
-slug: Archive/Meta_docs/Writing_content
-translation_of: Archive/Meta_docs/Writing_content
----
-<p>There are always things that can be added or updated on MDN. Whether it's all-new documentation for a sparkling new API or a revision to an older API that's changed subtly, you'll find lots of opportunities to help.</p>
-
-<h2 id="Editing_an_existing_page">Editing an existing page</h2>
-
-<p>If you've found a page you'd like to revise, simply click the "edit" button at its top right corner. This will open the WYSIWYG editor for working on the page's contents. See the <a href="/en-US/docs/Project:MDN/Contributing/Editor_guide">MDN editor guide</a> for details on how to work with the editor, as well as how to work with the macro system we use to help automate the construction and formatting of content.</p>
-
-<p>There are lots of reasons you might edit an existing page:</p>
-
-<ul>
- <li>You've spotted an error or typo.</li>
- <li>You want to reword something to be easier to understand.</li>
- <li>The layout or formatting of the page is messy.</li>
- <li>The API being documented has changed and the documentation needs updating to match the changes.</li>
- <li>You'd like to add information about a behavior difference between multiple browsers for an API.</li>
- <li>You want to add or improve a code sample. See {{anch("Add a code sample")}} below for details.</li>
- <li>The article is a stub, or is simply missing important details.</li>
-</ul>
-
-<h2 id="Adding_a_new_page">Adding a new page</h2>
-
-<p>This is the big one! Adding a new page to MDN makes the Web love you and want to hug you. There are several obvious reasons to create a new page, including to document an API that's not yet documented or to add a new tutorial or guide on a topic.</p>
-
-<p>There are some ways to go about creating a new page on MDN, once you've <a href="/en-US/docs/Project:MDN/Contributing/Getting_started#Logging_into_MDN">logged in</a>:</p>
-
-<dl>
- <dt>Click a "missing page" link</dt>
- <dd>As you browse MDN, you'll occasionally find links to pages that don't exist yet. Often, as we create articles, we include links to pages that need to be created, even if they haven't been made yet. This helps us keep track of things that need to eventually be done, although sometimes it takes some time to get back to them. You should feel free to do so! Just click these links and you'll be taken straight into the editor for the new page.</dd>
- <dt>Create a subpage</dt>
- <dd>Near the top-right corner of each article is a <strong>"Advanced"</strong> drop-down menu. In that menu is a <strong>"New sub-page"</strong> option. Clicking that option opens the page editor for a new page whose parent page in the site hierarchy is the page on which you chose <strong>"New sub-page"</strong>. Simply fill out the title and slug and start writing the article's content.</dd>
- <dt>Create a clone</dt>
- <dd>You can also clone an existing page using the <strong>"Clone this page"</strong> option in the "This page" drop-down menu. Clicking this option makes a copy of the current page, whose parent page is the same as the current page, and opens the editor on that page, where you can set the page's title and slug, as well as edit the content of the page. This is typically a good way to add a new page to an existing reference area of the site, for example, because it gets you a sample layout for the content.</dd>
- <dt>Create a link to a page that doesn't exist, then click it</dt>
- <dd>This is a bit of a hybrid method. Since every page ought to be linked to from somewhere, you could start by creating a link to the new article by adding it to an existing page, then, after saving that page, you can click the link you just inserted to open an editor for the new article.</dd>
-</dl>
-
-<div class="note">
-<p><strong>Note:</strong> If you're not logged in, you will get a 404 error when trying to visit an article that doesn't exist, instead of being offered an editor for a new page.</p>
-</div>
-
-<h2 id="Finding_information">Finding information</h2>
-
-<p>There's a lot of information out there, and it can be tricky to hunt down the exact help you need. Here are some tips to get you started.</p>
-
-<dl>
- <dt><a href="https://wiki.mozilla.org/Modules">Module owner lists</a></dt>
- <dd>Mozilla projects work on a "module owner" basis; each major component has an owner or owners who are responsible for what goes on there. These owners are often your best source of information — or at least a great way to find the right person to talk to.</dd>
- <dt><a href="http://mxr.mozilla.org/">Mozilla source cross-reference</a></dt>
- <dd>MXR, the Mozilla cross-reference, lets you access all the source code for the Mozilla project (with the exception of some things, like much of Firefox OS, which is located on GitHub). The code and its comments are often a great resource for information.</dd>
- <dt><a href="http://wiki.mozilla.org/">Mozilla wiki</a></dt>
- <dd>The Mozilla wiki — often referred to as "wikimo" — is a repository of process and design notes, drafts, plans, and preliminary specifications. Despite being often a cluttered mess, it's a treasure trove of invaluable information.</dd>
-</dl>
diff --git a/files/th/archive/mozilla/index.html b/files/th/archive/mozilla/index.html
deleted file mode 100644
index 34a4090d47..0000000000
--- a/files/th/archive/mozilla/index.html
+++ /dev/null
@@ -1,223 +0,0 @@
----
-title: Archived Mozilla and build documentation
-slug: Archive/Mozilla
-translation_of: Archive/Mozilla
----
-<p><strong>Translation in progress</strong></p>
-
-<p>These articles are archived, obsolete documents about Mozilla, Gecko, and the process of building Mozilla projects.</p>
-
-
-
-<dl>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/ActiveX_Control_for_Hosting_Netscape_Plug-ins_in_IE">ActiveX Control for Hosting Netscape Plug-ins in IE</a></dt>
- <dd class="landingPageList">Microsoft has removed support for Netscape plug-ins from IE 5.5 SP 2 and beyond. If you are a plug-in author, you may find this project saves you a lot of work!</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/ant_script_to_assemble_an_extension">ant script to assemble an extension</a></dt>
- <dd class="landingPageList">This ant script helps to <a href="en/Extension_Packaging">package an extension</a></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/SpiderMonkey">Archived SpiderMonkey docs</a></dt>
- <dd class="landingPageList">This section contains old SpiderMonkey documentation.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Autodial_for_Windows_NT">Autodial for Windows NT</a></dt>
- <dd class="landingPageList">This document is intended to explain how the autodial helper feature implemented for <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=93002" title="FIXED: [distribution]Conn: Auto-dial for NT-based Windows">bug 93002</a> works and why it works that way.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Automated_testing_tips_and_tricks">Automated testing tips and tricks</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Automatic_Mozilla_Configurator">Automatic Mozilla Configurator</a></dt>
- <dd class="landingPageList"><a href="/en-US/docs/ankh8">Ankh8</a></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Automatically_Handle_Failed_Asserts_in_Debug_Builds">Automatically Handle Failed Asserts in Debug Builds</a></dt>
- <dd class="landingPageList">As of 2004-12-8, it is now possible to automatically handle failed asserts in debug builds of Mozilla for Windows.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/BlackConnect">BlackConnect</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Blackwood">Blackwood</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Bonsai">Bonsai</a></dt>
- <dd class="landingPageList">It is a tool that lets you perform queries on the contents of a CVS archive; you can: get a list of checkins, see what checkins have been made by a given person, or on a given CVS branch, or in a particular time period. It also includes tools for looking at checkin logs (and comments); doing diffs between various versions of a file; and finding out which person is responsible for changing a particular line of code ("cvsblame").</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Bookmark_keywords">Bookmark Keywords</a></dt>
- <dd class="landingPageList">Practically every Web surfer has bookmarks, of course, and power surfers usually have hundreds stuffed into folders within folders. In addition to being handy pointers to useful resources, bookmarks in Mozilla can be used to make the address bar itself a power tool. Searches, lookups, package tracking, and even word definitions can all be retrieved from user-customized bookmarks.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Building_TransforMiiX_standalone">Building TransforMiiX standalone</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/callCalendarView">calICalendarView</a></dt>
- <dd class="landingPageList">An object implementing <code>calICalendarView</code> is generally intended to serve as a way of manipulating a set of DOM nodes corresonding to a visual representation of <a href="en/CalIEvent">calIEvent</a> and <a href="en/CalITodo">calITodo</a> objects. Because of this close association between methods and attributes on the one hand, and content on the other, <code>calICalendarView</code> implementations are particularly well suited to XBL. There is, however, no practical obstacle to the interface being implemented by any javascript object associated with a group of DOM nodes, even non-anonymous XUL nodes.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/callCalendarViewController">calICalendarViewController</a></dt>
- <dd class="landingPageList">A <code>calICalendarViewController</code> provides a way for a <a href="en/CalICalendarView">calICalendarView</a> to create, modify, and delete items. Implementing a <code>calICalendarViewController</code> allows for these actions to be performed in a manner consistent with the rest of the application in which the <a href="en/CalICalendarView">calICalendarView</a> is included.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/callFileType">calIFileType</a></dt>
- <dd class="landingPageList">The <code>calIFileType</code> interface provides information about a specific file type.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Chromeless">Chromeless</a></dt>
- <dd class="landingPageList">[This project may not be active — check Github <a href="https://github.com/mozilla/chromeless" title="https://github.com/mozilla/chromeless">https://github.com/mozilla/chromeless</a>]</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Creating_a_Firefox_sidebar_extension">Creating a Firefox sidebar extension</a></dt>
- <dd class="landingPageList">This article describes how to create a registered sidebar for Firefox 2 or greater. See the references section for information on creating extension in earlier browsers.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Creating_a_hybrid_CD">Creating a hybrid CD</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Creating_a_microsummary">Creating a Microsummary</a></dt>
- <dd class="landingPageList">A microsummary generator is a set of instructions for creating a microsummary from the content of a page. Web pages can reference generators via <code>&lt;link rel="microsummary"&gt;</code> elements in their <code>&lt;head&gt;</code> elements. Generators can also be independently downloaded and installed by users if they include a list of pages to which they apply.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Creating_a_Mozilla_extension">Creating a Mozilla Extension</a></dt>
- <dd class="landingPageList">A Mozilla extension is an installable enhancement to the Mozilla browser that provides additional functionality (for example <a class="external" href="http://linky.mozdev.org/">Linky</a>, which adds an item to the context menu for opening multiple links in a document or selection). This tutorial walks you through the process of building a Mozilla extension that adds an icon to Mozilla's status bar showing the current status of the Mozilla source code (i.e. whether or not the latest version of the code is compiling successfully and passing tests). The extension will access <a class="external" href="http://tinderbox.mozilla.org/">Tinderbox</a>, mozilla.org's webtool for tracking source code status, to get the status of the code.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Creating_a_sking_for_Firefox_Getting_Started">Creating a Skin for Firefox/Getting Started</a></dt>
- <dd class="landingPageList">Download the latest version of Firefox and install it. Be sure to install the DOM Inspector extension as well.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Creating_a_skin_for_Mozilla">Creating a Skin for Mozilla</a></dt>
- <dd class="landingPageList">In order to create a skin for mozilla, you will need to know three things. How to edit images, extract zip files, and how to modify CSS. Mozilla uses standard gif, png, and jpeg images for the buttons and CSS to style everything else in the interface.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Creating_a_Skin_for_SeaMonkey_2.x">Creating a Skin for SeaMonkey 2.x</a></dt>
- <dd class="landingPageList">You're going to make a theme for SeaMonkey 2, but don't know how? I hope this manual will help you.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Creating_regular_expressions_for_a_microsummary_generator">Creating regular expressions for a microsummary generator</a></dt>
- <dd class="landingPageList">A regular expression is a special kind of string (i.e. a sequence of characters) that matches patterns of characters in other strings. Microsummary generators use them to identify the pages that the generators know how to summarize by matching patterns in those pages' URLs.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Dehydra">Dehydra</a></dt>
- <dd class="landingPageList">The development focus switched to <a href="https://wiki.mozilla.org/DXR">DXR</a> (where the "D" comes from "Dehydra"), which is based on clang instead of gcc. Try DXR instead, or else try the gcc python plugin: <a href="https://fedorahosted.org/gcc-python-plugin/" title="https://fedorahosted.org/gcc-python-plugin/">https://fedorahosted.org/gcc-python-plugin/</a>.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Developing_New_Mozilla_Features">Developing New Mozilla Features</a></dt>
- <dd class="landingPageList">Tips For Contributing New Features To Mozilla.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Devmo_launch_roadmap">Devmo 1.0 Launch Roadmap</a></dt>
- <dd class="landingPageList">Comments, ideas, questions and other discussion should be added on the <a href="en/Devmo_talk/1.0_Launch_Roadmap">Devmo talk:1.0 Launch Roadmap</a> page. Further details on smaller tasks being done are available at <a>User:Dria:TODO</a> page. See also <a>Current Events</a>.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Download_Manager_improvements_in_Firefox_3">Download Manager improvements in Firefox 3</a></dt>
- <dd class="landingPageList">Firefox 3 offers improvements to the Download Manager that allow multiple progress listeners, use of the <a href="/en-US/docs/Storage">Storage</a> API for data management, download resuming, and more. In addition, you can augment or replace the Download Manager's user interface by implementing the new <code><a href="/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIDownloadManagerUI" title="">nsIDownloadManagerUI</a></code> interface.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Download_Manager_preferences">Download Manager preferences</a></dt>
- <dd class="landingPageList">There are several preferences used by the Download Manager. This article provides a list of them.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Drag_and_drop">Drag and Drop</a></dt>
- <dd class="landingPageList">This section describes how to implement objects that can be dragged around and dropped onto other objects.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/DTrace">DTrace</a></dt>
- <dd class="landingPageList"> <strong>DTrace</strong> is Sun Microsystem's dynamic tracing framework that allows developers to instrument a program with probes that have little to no effect on performance when not in use and very little when active. Probe data can be collected with scripts written in <a class="external" href="http://docs.sun.com/app/docs/doc/817-6223">D</a> (no, not <a href="https://en.wikipedia.org/wiki/D_(programming_language)" title="that one">that one</a>). Mozilla DTrace support has <a class="external" href="http://www.opensolaris.org/os/project/mozilla-dtrace/">been added</a> by the Sun DTrace team and can be used on Solaris 10 and Mac OS X 10.5.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Embedding_FAQ">Embedding FAQ</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Embedding_Mozilla_in_a_Java_Application_using_JavaXPCOM">Embedding Mozilla in a Java Application using JavaXPCOM</a></dt>
- <dd class="landingPageList"><a href="/en/XULRunner" title="en/XULRunner">XULRunner</a> ships with the <a href="/en/JavaXPCOM" title="en/JavaXPCOM">JavaXPCOM</a> component, which allows Java code to interact with XPCOM objects. As you will see in this article, working with XPCOM objects in Java is not that much different than doing so in C++.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Error_console">Error Console</a></dt>
- <dd class="landingPageList">The Error Console is a tool available in most Mozilla-based applications that is used for reporting errors in the application chrome and in web pages user opens. It reports <a href="/en-US/docs/JavaScript" title="JavaScript">JavaScript</a>-related errors and warnings, <a href="/en-US/docs/CSS" title="CSS">CSS</a> errors and arbitrary messages from chrome code. In Firefox, the Error Console can be opened from the tools menu or by Ctrl-Shift-J.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Exception_logging_in_JavaScript">Exception logging in JavaScript</a></dt>
- <dd class="landingPageList">Technical review completed.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Project:Existing_Content">Existing Content</a></dt>
- <dd class="landingPageList">This is a list of existing mozilla.org documentation. It needs to be <a class="external" href="http://mail.mozilla.org/pipermail/devmo-general/2005-July/000214.html">checked, prioritized, and migrated</a>.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Extension_Frequently_Asked_Questions">Extension Frequently Asked Questions</a></dt>
- <dd class="landingPageList">This is quick set of answers to the most common issues with <a class="internal" href="/en/Extensions" title="en/Extensions">extension</a> development. They are currently written with mostly Firefox in mind, but most if not all should easily translate to SeaMonkey, Thunderbird or any of the other applications. For Thunderbird, you may also find the extension <a class="internal" href="/en/Extensions/Thunderbird/HowTos" title="en/Extensions/Thunderbird/HowTos">HowTo</a> or <a class="internal" href="/en/Extensions/Thunderbird/FAQ" title="en/Extensions/Thunderbird/FAQ">FAQ</a> pages helpful.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Fighting_Junk_Mail_with_Netscape_7.1">Fighting Junk Mail with Netscape 7.1</a></dt>
- <dd class="landingPageList"><span class="comment">Summary: Is your mail account drowning in a flood of spam? Netscape 7.1 includes built-in junk mail filtering that you can train to meet your specific needs. Eric Meyer share his experiences with making the junk mail controls more effective, and looks at other preferences you might want to set to keep your account safe.</span></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Firefox_Sync">Firefox Sync</a></dt>
- <dd class="landingPageList">Sync refers to a family of related components and services which provide synchronization of data between Mozilla application instances. These components and services include:</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Force_RTL">Force RTL</a></dt>
- <dd class="landingPageList">(This is a temporary placeholder/stub for the Force RTL page)</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Gecko_Coding_Help_Wanted">Gecko Coding Help Wanted</a></dt>
- <dd class="landingPageList">Take a look through <a href="http://lxr.mozilla.org/">LXR</a>, and you'll realize that Mozilla's source code is a big place.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/GRE">GRE</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Project:Hacking_wiki">Hacking wiki</a></dt>
- <dd class="landingPageList">To be able to hack the MDC wiki software, you'll need a local webserver install, which <a class="external" href="http://meta.wikimedia.org/wiki/Help:Introduction#System_Requirements">can run MediaWiki</a>.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Help_viewer">Help Viewer</a></dt>
- <dd class="landingPageList">Help Viewer: Allows information to be shown to the user inside Mozilla.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Helper_Apps">Helper Apps (and a bit of Save As)</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Hidden_prefs">Hidden prefs</a></dt>
- <dd class="landingPageList"><span style="background: lemonchiffon; border: 1px solid navajowhite; display: block; margin-bottom: 1em; overflow: hidden; text-align: center;"><strong style="border-bottom: 1px solid navajowhite; color: coral; display: block; font-weight: 700;">This page has been flagged by editors or users as needing technical review.</strong> Until it is fully reviewed, it may contain inaccurate or incorrect information. </span></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Nanojit_merging">How to Write and Land Nanojit Patches</a></dt>
- <dd class="landingPageList">Adobe and Mozilla share a copy of Nanojit. This means that landing nanojit patches is a bit complicated, but experience has taught us that this is <strong>much</strong> better than having separate versions of nanojit.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/HTTP_Class_Overview">HTTP Class Overview</a></dt>
- <dd class="landingPageList">This document provides an overview of the classes used by the Mozilla <a href="/en/HTTP" title="en/HTTP">HTTP</a> implementation. It's meant as a guide to developers wishing to understand or extend the Mozilla HTTP implementation.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Introducing_the_Audio_API_Extension">Introducing the Audio API extension</a></dt>
- <dd class="landingPageList">The Audio Data API extension extends the HTML5 specification of the <a href="/en-US/docs/Web/HTML/Element/audio" title="The HTML &lt;audio> element is used to represent sound content in documents. Added as part of HTML5, it may contain several audio sources, represented using the src attribute or the &lt;source> element; the browser will choose the most suitable one. Fallback content for browser not supporting the &lt;audio> element can be added too."><code>&lt;audio&gt;</code></a> and <a href="/en-US/docs/Web/HTML/Element/video" title="The HTML &lt;video> element is used to embed video content in an HTML or XHTML document."><code>&lt;video&gt;</code></a> media elements by exposing audio metadata and raw audio data. This enables users to visualize audio data, to process this audio data and to create new audio data.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Java_in_Firefox_Extensions">Java in Firefox Extensions</a></dt>
- <dd class="landingPageList">If you are in need of calling Java code from within a Firefox <a href="/en/Extensions" title="en/Extensions">extension</a>, you can make use of <a class="external" href="http://en.wikipedia.org/wiki/LiveConnect">LiveConnect</a>. LiveConnect gives your extension's JavaScript code (linked from or contained in XUL code) access to 2 objects: <code>java</code> and <code>Packages</code> (note that per <a class="external" href="http://forums.java.net/jive/thread.jspa?threadID=45933&amp;tstart=0">this thread</a>, although the <a class="link-https" href="https://jdk6.dev.java.net/plugin2/liveconnect/">new documentation</a> for the LiveConnect reimplementation states that these <a class="link-https" href="https://jdk6.dev.java.net/plugin2/liveconnect/#DEPRECATED_FUNCTIONALITY">globals will be deprecated</a> (in the context of applets), "Firefox and the Java Plug-In will continue to support the global java/Packages keywords, in particular in the context of Firefox extensions."). These 2 objects let you make use of the standard JDK classes, e.g.,</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/JavaScript_crypto">JavaScript crypto</a></dt>
- <dd class="landingPageList">Mozilla defines a special JavaScript object to allow web pages access to certain cryptographic-related services. These services are a balance between the functionality web pages need and the requirement to protect users from malicious web sites. Most of these services are available via the DOM <a href="/en-US/docs/Web/API/Window" title="The window object represents a window containing a DOM document; the document property points to the DOM document loaded in that window."><code>window</code></a> object as <a href="/en-US/docs/Web/API/Window/crypto" title="The Window.crypto read-only property returns the Crypto object associated to the global object. This object allows web pages access to certain cryptographic related services."><code>window.crypto</code></a>.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Jetpack">Jetpack</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Litmus_tests">Litmus tests</a></dt>
- <dd class="landingPageList">Litmus tests are (non-automated) tests that are documented in the litmus database. See <a class="external" href="http://litmus.mozilla.org" rel="freelink">http://litmus.mozilla.org</a>.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Makefile.mozextension.2">Makefile.mozextension.2</a></dt>
- <dd class="landingPageList">This Makefile is a modification of the <code>Makefile.mozextention</code>, found in <a class="external" href="http://kb.mozillazine.org/Makefile_for_packaging_an_extension">Makefile for packaging an extension - MozillaZine Knowledge Base</a> (2005).</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Microsummary_topics">Microsummary topics</a></dt>
- <dd class="landingPageList">To programmatically install a microsummary generator -- for example, in an extension that helps users create custom generators for their favorite sites -- obtain a reference to the <a class="external" href="http://lxr.mozilla.org/mozilla/source/browser/components/microsummaries/public/nsIMicrosummaryService.idl#178"><code>nsIMicrosummaryService</code></a> interface implemented by the <a class="external" href="http://lxr.mozilla.org/mozilla/source/browser/components/microsummaries/src/nsMicrosummaryService.js.in"><code>nsIMicrosummaryService</code></a> component, then call its <code><a class="external" href="http://lxr.mozilla.org/mozilla/source/browser/components/microsummaries/public/nsIMicrosummaryService.idl#191">installGenerator()</a></code> method, passing it an XML document containing the generator.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Migrate_apps_from_Internet_Explorer_to_Mozilla">Migrate apps from Internet Explorer to Mozilla</a></dt>
- <dd class="landingPageList">When Netscape started the Mozilla browser, it made the conscious decision to support W3C standards. As a result, Mozilla is not fully backwards-compatible with Netscape Navigator 4.x and Microsoft Internet Explorer legacy code; for example, Mozilla does not support <code>&lt;layer&gt;</code> as I will discuss later. Browsers, like Internet Explorer 4, that were built before the conception of W3C standards inherited many quirks. In this article, I will describe Mozilla's quirks mode, which provides strong backwards HTML compatibility with Internet Explorer and other legacy browsers.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Monitoring_downloads">Monitoring downloads</a></dt>
- <dd class="landingPageList">Firefox 3 makes it easier than ever to monitor the status of downloads. Although it was possible to do so in previous versions of Firefox, it was previously only possible for one observer to do so at a time. Firefox 3 introduces new API that allows any number of listeners to observe downloads.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Mozilla_Application_Framework">Mozilla Application Framework</a></dt>
- <dd class="landingPageList"><em>The Mozilla Application Framework: for powerful, easy to develop cross-platform applications</em></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Mozilla_crypto_FAQ">Mozilla Crypto FAQ</a></dt>
- <dd class="landingPageList">In this document I try to answer some frequently asked questions about the Mozilla web browser and mail/news client and its support for SSL, S/MIME, and related features based on cryptographic technology. Note that this document is for your information only and is not intended as legal advice. If you wish to develop and distribute cryptographic software, particularly for commercial sale or distribution, then you should consult an attorney with expertise in the particular laws and regulations that apply in your jurisdiction.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Modules_and_Module_ownership">Mozilla Modules and Module Ownership</a></dt>
- <dd class="landingPageList">REDIRECT <a class="redirect" href="http://www.mozilla.org/hacking/module-ownership.html">http://www.mozilla.org/hacking/module-ownership.html</a></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/mozprocess">Mozprocess</a></dt>
- <dd class="landingPageList"><a class="link-https" href="https://github.com/mozilla/mozbase/tree/master/mozprocess">mozprocess</a> provides python process management via an operating system and platform transparent interface to Mozilla platforms of interest. Mozprocess aims to provide the ability to robustly terminate a process (by timeout or otherwise), along with any child processes, on Windows, OS X, and Linux. Mozprocess utilizes and extends <code>subprocess.Popen</code> to these ends.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Nanojit">Nanojit</a></dt>
- <dd class="landingPageList">Nanojit is a small, cross-platform C++ library that emits machine code. Both the Tamarin JIT and the SpiderMonkey JIT (a.k.a. TraceMonkey) use Nanojit as their back end.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Project:New_Skin_Notes">New Skin Notes</a></dt>
- <dd class="landingPageList">Devmo has a new skin that is ready for testing. If you go to your <a>user preferences</a>, you can change the skin to "Devmo". This is currently just a preview, but we would appreciate help with testing.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Persona">Persona</a></dt>
- <dd class="landingPageList"><a href="https://login.persona.org/">Mozilla Persona</a> is a cross-browser login system for the Web, that's easy to use and easy to deploy. It works on <a href="/en-US/docs/persona/Browser_compatibility">all major browsers</a>, and you can <a href="/en-US/docs/Persona/Quick_Setup">get started today</a>.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Plug-n-Hack">Plug-n-Hack</a></dt>
- <dd class="landingPageList"><strong>Plug-n-Hack</strong> (PnH) is a proposed standard from the Mozilla security team for defining how security tools can interact with browsers in a more useful and usable way.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Plugin_architecture">Plugin Architecture</a></dt>
- <dd class="landingPageList">This page contains some notes on how plugins work internally in Gecko. It is mainly of interest to Gecko developers.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Porting_NSPR_to_Unix_Platforms">Porting NSPR to Unix Platforms</a></dt>
- <dd class="landingPageList">Last modified 16 July 1998</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Project:DevEdge">Priority Content</a></dt>
- <dd class="landingPageList"><strong>Update:</strong> I've removed documents from this list that have been migrated into the wiki. The list of completed documents is available through the <a href="en/DevEdge">DevEdge</a> page.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Prism">Prism</a></dt>
- <dd class="landingPageList">Prism is a simple XULRunner-based browser that hosts web applications without the normal web browser user interface. Prism is based on a concept called Site-Specific Browsers (SSB). An SSB is designed to work exclusively with a single web application. It doesn’t have the menus, toolbars and other accoutrements of a traditional web browser. An SSB also offers tighter integration with the operating system and desktop than a typical web application running through a web browser. Applications running in an SSB are therefore able to benefit from many of the advantages of the desktop and of the web at the same time.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Proxy_UI">Proxy UI</a></dt>
- <dd class="landingPageList">(Recently Added - some support for reading OS and account settings.)</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Remote_XUL">Remote XUL</a></dt>
- <dd class="landingPageList">How to use XUL delivered from a webserver, not as part of chrome.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Space_Manager_Detailed_Design">Space Manager Detailed Design</a></dt>
- <dd class="landingPageList">The Space Manager and related classes and structures are an important of the Gecko Layout system, specifically Block Layout. See the High Level Design document for an overview of the Space Manager, and as an introduction to the classes, structures and algorithms container in this, the Detailed Design Document.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Space_Manager_High_Level_Design">Space Manager High Level Design</a></dt>
- <dd class="landingPageList">The Space Manager and associated classes and structures are used by Block and Line layout to manage rectangular regions that are occupied and available, for correct handling of floated elements and the elements that flow around them. When elements are floated to the left or right in a layout, they take up space and influence where other elements can be placed. The Space Manager is responsible for keeping track of where space is taken up and where it is available. This information is used by block layout to correctly compute where other floated elements should be placed, and how much space is available to normal in-flow elements that flow around the floated bits.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Standalone_XPCOM">Standalone XPCOM</a></dt>
- <dd class="landingPageList"><strong>Standalone XPCOM</strong> is a tree configuration that builds a minimal set of libraries (shared mostly) that can be used to get all features of XPCOM. The contents of this standalone XPCOM in general are:</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Stress_testing">Stress testing</a></dt>
- <dd class="landingPageList">Consume.exe from the <a class="external" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9d467a69-57ff-4ae7-96ee-b18c4790cffd&amp;displaylang=en">Windows Server 2003 Resource Kit Tools</a> can consume various resources: physical memory, CPU time, page file, disk space and even the kernel pool. Although for Win2003, it should install into WinXP fine (Win2000 compatibility is unknown). The only downside is you can't specify how much of the resource to use, only which one to consume. Also be warned: always remember the -time option, or you may be hitting that physical reset button sooner than you would have liked!</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Bundles">Structure of an installable bundle</a></dt>
- <dd class="landingPageList"><a href="/en/XUL_Application_Packaging" title="en/XUL_Application_Packaging">XULRunner applications</a>, <a href="/en/Extensions" title="en/Extensions">extensions</a>, and <a href="/en/Themes" title="en/Themes">themes</a> all share a common directory structure, and in some cases the same bundle can be used as a standalone XULRunner application as well as an installable application extension.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Supporting_private_browsing_mode">Supporting private browsing mode</a></dt>
- <dd class="landingPageList">Firefox 3.5 introduced private browsing mode, in which potentially private information is not recorded. This includes cookies, history information, download information, and so forth.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/SXSW_2007_presentations">SXSW 2007 presentations</a></dt>
- <dd class="landingPageList">Presentations about the Mozilla project given at the SXSW 2007 event in Austin, Texas.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Table_Cellmap">Table Cellmap</a></dt>
- <dd class="landingPageList">The table layout use the cellmap for two purposes:</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Table_Cellmap_-_Border_Collapse">Table Cellmap - Border Collapse</a></dt>
- <dd class="landingPageList">This document describes the additional information that is stored for border collapse tables in the cellmap.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Table_Layout_Regression_Tests">Table Layout Regression Tests</a></dt>
- <dd class="landingPageList">Changes in layout, parser and content code can have unintended side effects, also known as regressions. It is good style to check for these unwanted regressions and fixing them before checkin rather than causing Bugzilla avalanches.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Table_Layout_Strategy">Table Layout Strategy</a></dt>
- <dd class="landingPageList">The table layout algorithm is based on two W3C recommendations: <a class="external" href="http://www.w3.org/TR/html401/struct/tables.html">HTML 4.01 (Chapter 11)</a> and <a class="external" href="http://www.w3.org/TR/CSS21/tables.html">CSS2.1 (Chapter 17)</a>.In CSS2 a distinction between fixed and auto layout of tables has been introduced. The auto-layout mechanism is implemented in <code>BasicTableLayoutStrategy.cpp</code> the fixed-layout in <code>FixedTableLayoutStrategy.cpp</code>. All these files are in the <code>layout/html/table/src</code> subdirectory.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Tamarin">Tamarin</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/The_Download_Manager_schema">The Download Manager schema</a></dt>
- <dd class="landingPageList">The Download Manager uses an SQLite table to keep track of downloads in progress as well as queued and past downloads.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/The_life_of_an_HTML_HTTP_request">The life of an HTML HTTP request</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/The_new_nsString_class_implementation_(1999)">The new nsString class implementation (1999)</a></dt>
- <dd class="landingPageList">This document is intended to briefly describe the new nsString class architecture, and discuss the implications on memory management, optimizations, internationalization and usage patterns.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/TraceVis">TraceVis</a></dt>
- <dd class="landingPageList">TraceVis is a performance visualization system for TraceMonkey. If TraceMonkey is built with TraceVis, and run with TraceVis enabled, then TraceMonkey will output a log of all its activity transitions. The log can be postprocessed into a visualization that can be used to rapidly diagnose many tracing-related performance issues.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Treehydra">Treehydra</a></dt>
- <dd class="landingPageList">Try the gcc python plugin instead: <a href="https://fedorahosted.org/gcc-python-plugin/" title="https://fedorahosted.org/gcc-python-plugin/">https://fedorahosted.org/gcc-python-plugin/</a>.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/URIs_and_URLs">URIs and URLs</a></dt>
- <dd class="landingPageList">Handling network and locally retrievable resources is a central part of Necko. Resources are identified by URI "Uniform Resource Identifier" (Taken from <a class="external" href="http://tools.ietf.org/html/rfc2396" title="http://tools.ietf.org/html/rfc2396">RFC 2396</a>):</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/URIScheme">URIScheme</a></dt>
- <dd class="landingPageList">List of Mozilla supported URI schemes</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Using_addresses_of_stack_variables_with_NSPR_threads_on_win16">Using addresses of stack variables with NSPR threads on win16</a></dt>
- <dd class="landingPageList">This is a cautionary note that may be old information for some of you. However, since it affects the portability of code, it was deemed prudent to include a short memo describing the issue.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Using_Monotone_with_Mozilla_CVS">Using Monotone With Mozilla CVS</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Using_SVK_with_Mozilla_CVS">Using SVK With Mozilla CVS</a></dt>
- <dd class="landingPageList">When working with Mozilla, you tend to accumulate patches which need to be reviewed, super-reviewed, and/or approved before they can be committed to the trunk. When you have only a few uncommitted patches, you can get by using cvs diff, and just editing the output to remove other patches before submitting. However, this approach quickly becomes unscalable, especially when you have different fixes in the same tree. Using a distributed versioning system like SVK takes out much of the hassle of managing your patches.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Venkman">Venkman</a></dt>
- <dd class="landingPageList">Venkman is the code name for Mozilla's JavaScript Debugger. It aims to provide a powerful <a href="/en-US/docs/JavaScript" title="en-US/docs/JavaScript">JavaScript</a> debugging environment for Mozilla based browsers namely Firefox, Netscape 7.x/9.x and SeaMonkey. Note that it is not included in the Gecko-based browsers such as K-Meleon, Galeon and Netscape 8.x. Venkman has been provided as part of the Mozilla install distribution since October 2001, as well as an <a href="/en-US/docs/Extensions" title="en-US/docs/Extensions">extension</a> package in <a href="/en-US/docs/XPI" title="en-US/docs/XPI">XPI</a> format.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Video_presentations">Video presentations</a></dt>
- <dd class="landingPageList">Mozilla is actively working to produce video presentations that can help you learn how the Mozilla codebase works and how to take advantage of its technology in your own applications and extensions. This article is a jumping-off point to help you find those presentations.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/Why_embed_Gecko">Why Embed Gecko</a></dt>
- <dd class="landingPageList"><strong>Gecko - the Smart Embedding Choice</strong></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/xbDesignMode.js">xbDesignMode.js</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/XML_in_Mozilla">XML in Mozilla</a></dt>
- <dd class="landingPageList">Mozilla has a relatively good support for <a href="/en-US/docs/XML" title="XML">XML</a>. Several World Wide Web Consortium (<a href="http://www.w3.org/">W3C</a>) Recommendations and drafts from the XML family of specifications are supported, as well as other related technologies.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/XPInstall">XPInstall</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/XPJS_Components_Proposal">XPJS Components Proposal</a></dt>
- <dd class="landingPageList">Draft 1.0</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/XRE">XRE</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/XTech_2005_Presentations">XTech 2005 Presentations</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/XTech_2006_Presentations">XTech 2006 Presentations</a></dt>
- <dd class="landingPageList"></dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/XUL_Explorer">XUL Explorer</a></dt>
- <dd class="landingPageList">XUL Explorer is a <a href="/en/XULRunner" title="en/XULRunner">XULRunner</a> application that provides an easy way to experiment with XUL. It’s a simple editor that can preview XUL inline or in a separate popup window. It has a list of code snippets (small fragments of XUL or JavaScript) that can be quickly inserted into the editor. The XUL can be loaded from and saved to files. A XUL validator and the <a href="/en/Error_Console" title="en/Error_Console">Error Console</a> are both available to help debug problems. The help menu provides access to XUL information on MDC. There is even simple “keyword” help lookup for XUL elements.</dd>
- <dt class="landingPageList"><a href="/en-US/docs/Archive/Mozilla/XULRunner">XULRunner</a></dt>
- <dd class="landingPageList"><strong>XULRunner</strong> is a Mozilla runtime package that can be used to bootstrap <a href="/en-US/docs/XUL" title="XUL">XUL</a>+<a href="/en-US/docs/XPCOM" title="XPCOM">XPCOM</a> applications that are as rich as Firefox and Thunderbird. It provides mechanisms for installing, upgrading, and uninstalling these applications.</dd>
-</dl>
diff --git a/files/th/archive/mozilla/xul/attribute/image.onload/index.html b/files/th/archive/mozilla/xul/attribute/image.onload/index.html
deleted file mode 100644
index 0b6e4a80a5..0000000000
--- a/files/th/archive/mozilla/xul/attribute/image.onload/index.html
+++ /dev/null
@@ -1,15 +0,0 @@
----
-title: image.onload
-slug: Archive/Mozilla/XUL/Attribute/image.onload
-tags:
- - รูปภาพ
- - โหลดภาพ
-translation_of: Archive/Mozilla/XUL/Attribute/image.onload
----
-<div class="noinclude"><span class="breadcrumbs xulRefAttr_breadcrumbs">« <a href="/th/docs/XUL/XUL_Reference">XUL Reference home</a></span></div>
-
-<dl>
- <dt><code id="a-image.onload"><a href="https://developer.mozilla.org/th/docs/Mozilla/Tech/XUL/Attribute/image.onload">image.onload</a></code></dt>
- <dd>ประเภท: <em>script code</em></dd>
- <dd>This event handler will be called on the <code><a href="/th/docs/Mozilla/Tech/XUL/image" title="image">image</a></code> element when the image has finished loading. This applies whether the image is applied via the <code id="a-src"><a href="https://developer.mozilla.org/th/docs/Mozilla/Tech/XUL/Attribute/src">src</a></code> attribute or the <code>list-style-image</code> style property. If you change the image, the event will fire again when the new image loads. This event will not bubble up the element tree.</dd>
-</dl>
diff --git a/files/th/archive/mozilla/xul/attribute/index.html b/files/th/archive/mozilla/xul/attribute/index.html
deleted file mode 100644
index d618284df5..0000000000
--- a/files/th/archive/mozilla/xul/attribute/index.html
+++ /dev/null
@@ -1,311 +0,0 @@
----
-title: Attribute (XUL)
-slug: Archive/Mozilla/XUL/Attribute
-tags:
- - NeedsTranslation
- - TopicStub
- - XUL Attributes
- - XUL Reference
-translation_of: Archive/Mozilla/XUL/Attribute
----
-<div><span class="breadcrumbs xulRefAttr_breadcrumbs">« <a href="/th/docs/XUL/XUL_Reference">XUL Reference home</a></span></div>
-
-<ul>
- <li><a href="/en-US/docs/XUL/Attribute/acceltext" title="XUL/Attribute/acceltext">acceltext</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/accessible" title="XUL/Attribute/accessible">accessible</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/accesskey" title="XUL/Attribute/accesskey">accesskey</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/activetitlebarcolor" title="XUL/Attribute/activetitlebarcolor">activetitlebarcolor</a> </li>
- <li><a href="/en-US/docs/XUL/Attribute/afterselected" title="XUL/Attribute/afterselected">afterselected</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/align" title="XUL/Attribute/align">align</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/allowevents" title="XUL/Attribute/allowevents">allowevents</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/allownegativeassertions" title="XUL/Attribute/allownegativeassertions">allownegativeassertions</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/alternatingbackground" title="XUL/Attribute/alternatingbackground">alternatingbackground</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/alwaysopenpopup" title="XUL/Attribute/alwaysopenpopup">alwaysopenpopup</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/attribute" title="XUL/Attribute/attribute">attribute</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/autoCheck" title="XUL/Attribute/autoCheck">autoCheck</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/autocompleteenabled" title="XUL/Attribute/autocompleteenabled">autocompleteenabled</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/autocompletepopup" title="XUL/Attribute/autocompletepopup">autocompletepopup</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/autocompletesearch" title="XUL/Attribute/autocompletesearch">autocompletesearch</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/autocompletesearchparam" title="XUL/Attribute/autocompletesearchparam">autocompletesearchparam</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/autoFill" title="XUL/Attribute/autoFill">autoFill</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/autoFillAfterMatch" title="XUL/Attribute/autoFillAfterMatch">autoFillAfterMatch</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/autoscroll" title="XUL/Attribute/autoscroll">autoscroll</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/beforeselected" title="XUL/Attribute/beforeselected">beforeselected</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonaccesskeyaccept" title="XUL/Attribute/buttonaccesskeyaccept">buttonaccesskeyaccept</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonaccesskeycancel" title="XUL/Attribute/buttonaccesskeycancel">buttonaccesskeycancel</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonaccesskeydisclosure" title="XUL/Attribute/buttonaccesskeydisclosure">buttonaccesskeydisclosure</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonaccesskeyextra1" title="XUL/Attribute/buttonaccesskeyextra1">buttonaccesskeyextra1</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonaccesskeyextra2" title="XUL/Attribute/buttonaccesskeyextra2">buttonaccesskeyextra2</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonaccesskeyhelp" title="XUL/Attribute/buttonaccesskeyhelp">buttonaccesskeyhelp</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonalign" title="XUL/Attribute/buttonalign">buttonalign</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttondir" title="XUL/Attribute/buttondir">buttondir</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttondisabledaccept" title="XUL/Attribute/buttondisabledaccept">buttondisabledaccept</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonlabelaccept" title="XUL/Attribute/buttonlabelaccept">buttonlabelaccept</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonlabelcancel" title="XUL/Attribute/buttonlabelcancel">buttonlabelcancel</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonlabeldisclosure" title="XUL/Attribute/buttonlabeldisclosure">buttonlabeldisclosure</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonlabelextra1" title="XUL/Attribute/buttonlabelextra1">buttonlabelextra1</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonlabelextra2" title="XUL/Attribute/buttonlabelextra2">buttonlabelextra2</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonlabelhelp" title="XUL/Attribute/buttonlabelhelp">buttonlabelhelp</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonorient" title="XUL/Attribute/buttonorient">buttonorient</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttonpack" title="XUL/Attribute/buttonpack">buttonpack</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/buttons" title="XUL/Attribute/buttons">buttons</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/checked" title="XUL/Attribute/checked">checked</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/checkState" title="XUL/Attribute/checkState">checkState</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/clicktoscroll" title="XUL/Attribute/checkState">clicktoscroll</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/class" title="XUL/Attribute/class">class</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/closebutton" title="XUL/Attribute/closebutton">closebutton</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/Closemenu" title="XUL/Attribute/closemenu">closemenu</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/coalesceduplicatearcs" title="XUL/Attribute/coalesceduplicatearcs">coalesceduplicatearcs</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/collapse" title="XUL/Attribute/collapse">collapse</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/collapsed" title="XUL/Attribute/collapsed">collapsed</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/color" title="XUL/Attribute/color">color</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/cols" title="XUL/Attribute/cols">cols</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/command" title="XUL/Attribute/command">command</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/commandupdater" title="XUL/Attribute/commandupdater">commandupdater</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/completedefaultindex" title="XUL/Attribute/completedefaultindex">completedefaultindex</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/container" title="XUL/Attribute/container">container</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/containment" title="XUL/Attribute/containment">containment</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/contentcontextmenu" title="XUL/Attribute/contentcontextmenu">contentcontextmenu</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/contenttooltip" title="XUL/Attribute/contenttooltip">contenttooltip</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/context" title="XUL/Attribute/context">context</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/contextmenu" title="XUL/Attribute/contextmenu">contextmenu</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/control" title="XUL/Attribute/control">control</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/crop" title="XUL/Attribute/crop">crop</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/curpos" title="XUL/Attribute/curpos">curpos</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/current" title="XUL/Attribute/current">current</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/currentset" title="XUL/Attribute/currentset">currentset</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/customindex" title="XUL/Attribute/customindex">customindex</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/customizable" title="XUL/Attribute/customizable">customizable</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/cycler" title="XUL/Attribute/cycler">cycler</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/datasources" title="XUL/Attribute/datasources">datasources</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/decimalplaces" title="XUL/Attribute/decimalplaces">decimalplaces</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/default" title="XUL/Attribute/default">default</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/defaultButton" title="XUL/Attribute/defaultButton">defaultButton</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/defaultset" title="XUL/Attribute/defaultset">defaultset</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/description" title="XUL/Attribute/description">description</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/dir" title="XUL/Attribute/dir">dir</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/disableAutocomplete" title="XUL/Attribute/disableAutocomplete">disableAutocomplete</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/disableautoselect" title="XUL/Attribute/disableautoselect">disableautoselect</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/disableclose" title="XUL/Attribute/disableclose">disableclose</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/disabled" title="XUL/Attribute/disabled">disabled</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/disablehistory" title="XUL/Attribute/disablehistory">disablehistory</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/disableKeyNavigation" title="XUL/Attribute/disableKeyNavigation">disableKeyNavigation</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/disablesecurity" title="XUL/Attribute/disablesecurity">disablesecurity</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/dlgtype" title="XUL/Attribute/dlgtype">dlgtype</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/dragging" title="XUL/Attribute/dragging">dragging</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/editable" title="XUL/Attribute/editable">editable</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/editortype" title="XUL/Attribute/editortype">editortype</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/element" title="XUL/Attribute/element">element</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/empty" title="XUL/Attribute/empty">empty</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/emptytext" title="XUL/Attribute/emptytext">emptytext</a> <span class="inlineIndicator deprecated deprecatedInline" title="(Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1)">Deprecated since Gecko 2</span></li>
- <li><a href="/en-US/docs/XUL/Attribute/enableColumnDrag" title="XUL/Attribute/enableColumnDrag">enableColumnDrag</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/enablehistory" title="XUL/Attribute/enablehistory">enablehistory</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/equalsize" title="XUL/Attribute/equalsize">equalsize</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/eventnode" title="XUL/Attribute/eventnode">eventnode</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/events" title="XUL/Attribute/events">events</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/expr" title="XUL/Attribute/expr">expr</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/firstdayofweek" title="XUL/Attribute/firstdayofweek">firstdayofweek</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/firstpage" title="XUL/Attribute/firstpage">firstpage</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/first-tab" title="XUL/Attribute/first-tab">first-tab</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/fixed" title="XUL/Attribute/fixed">fixed</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/flags" title="XUL/Attribute/flags">flags</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/flex" title="XUL/Attribute/flex">flex</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/focused" title="XUL/Attribute/focused">focused</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/forceComplete" title="XUL/Attribute/forceComplete">forceComplete</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/grippyhidden" title="XUL/Attribute/grippyhidden">grippyhidden</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/grippytooltiptext" title="XUL/Attribute/grippytooltiptext">grippytooltiptext</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/group" title="XUL/Attribute/group">group</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/handleCtrlTab" title="XUL/Attribute/handleCtrlTab">handleCtrlTab</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/height" title="XUL/Attribute/height">height</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/helpURI" title="XUL/Attribute/helpURI">helpURI</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/hidden" title="XUL/Attribute/hidden">hidden</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/hidechrome" title="XUL/Attribute/hidechrome">hidechrome</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/hidecolumnpicker" title="XUL/Attribute/hidecolumnpicker">hidecolumnpicker</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/hideheader" title="XUL/Attribute/hideheader">hideheader</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/hideseconds" title="XUL/Attribute/hideseconds">hideseconds</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/hidespinbuttons" title="XUL/Attribute/hidespinbuttons">hidespinbuttons</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/Highlightnonmatches" title="XUL/Attribute/highlightnonmatches">highlightnonmatches</a> </li>
- <li><a href="/en-US/docs/XUL/Attribute/homepage" title="XUL/Attribute/homepage">homepage</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/href" title="XUL/Attribute/href">href</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/icon" title="XUL/Attribute/icon">icon</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/id" title="XUL/Attribute/id">id</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ignoreBlurWhileSearching" title="XUL/Attribute/ignoreBlurWhileSearching">ignoreBlurWhileSearching</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ignorecase" title="XUL/Attribute/ignorecase">ignorecase</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ignoreincolumnpicker" title="XUL/Attribute/ignoreincolumnpicker">ignoreincolumnpicker</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ignorekeys" title="XUL/Attribute/ignorekeys">ignorekeys</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/image" title="XUL/Attribute/image">image</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/inactivetitlebarcolor" title="XUL/Attribute/inactivetitlebarcolor">inactivetitlebarcolor</a> </li>
- <li><a href="/en-US/docs/XUL/Attribute/increment" title="XUL/Attribute/increment">increment</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/index" title="XUL/Attribute/index">index</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/inputtooltiptext" title="XUL/Attribute/inputtooltiptext">inputtooltiptext</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/insertafter" title="XUL/Attribute/insertafter">insertafter</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/insertbefore" title="XUL/Attribute/insertbefore">insertbefore</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/instantApply" title="XUL/Attribute/instantApply">instantApply</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/inverted" title="XUL/Attribute/inverted">inverted</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/iscontainer" title="XUL/Attribute/iscontainer">iscontainer</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/isempty" title="XUL/Attribute/isempty">isempty</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/key" title="XUL/Attribute/key">key</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/keycode" title="XUL/Attribute/keycode">keycode</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/keytext" title="XUL/Attribute/keytext">keytext</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/label" title="XUL/Attribute/label">label</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/lastpage" title="XUL/Attribute/lastpage">lastpage</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/lastSelected" title="XUL/Attribute/lastSelected">lastSelected</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/last-tab" title="XUL/Attribute/last-tab">last-tab</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/left" title="XUL/Attribute/left">left</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/linkedpanel" title="XUL/Attribute/linkedpanel">linkedpanel</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/max" title="XUL/Attribute/max">max</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/maxheight" title="XUL/Attribute/maxheight">maxheight</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/maxlength" title="XUL/Attribute/maxlength">maxlength</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/maxpos" title="XUL/Attribute/maxpos">maxpos</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/maxrows" title="XUL/Attribute/maxrows">maxrows</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/maxwidth" title="XUL/Attribute/maxwidth">maxwidth</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/member" title="XUL/Attribute/member">member</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/menu" title="XUL/Attribute/menu">menu</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/menuactive" title="XUL/Attribute/menuactive">menuactive</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/min" title="XUL/Attribute/min">min</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/minheight" title="XUL/Attribute/minheight">minheight</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/minResultsForPopup" title="XUL/Attribute/minResultsForPopup">minResultsForPopup</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/minwidth" title="XUL/Attribute/minwidth">minwidth</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/mode" title="XUL/Attribute/mode">mode</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/modifiers" title="XUL/Attribute/modifiers">modifiers</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/mousethrough" title="XUL/Attribute/mousethrough">mousethrough</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/Movetoclick" title="XUL/Attribute/movetoclick">movetoclick</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/multiline" title="XUL/Attribute/multiline">multiline</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/multiple" title="XUL/Attribute/multiple">multiple</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/name" title="XUL/Attribute/name">name</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/negate" title="XUL/Attribute/negate">negate</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/newlines" title="XUL/Attribute/newlines">newlines</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/next" title="XUL/Attribute/next">next</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/noautofocus" title="XUL/Attribute/noautofocus">noautofocus</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/noautohide" title="XUL/Attribute/noautohide">noautohide</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/noinitialfocus" title="XUL/Attribute/noinitialfocus">noinitialfocus</a> </li>
- <li><a href="/en-US/docs/XUL/Attribute/nomatch" title="XUL/Attribute/nomatch">nomatch</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/Norestorefocus" title="XUL/Attribute/norestorefocus">norestorefocus</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/object" title="XUL/Attribute/object">object</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/observes" title="XUL/Attribute/observes">observes</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onbeforeaccept" title="XUL/Attribute/onbeforeaccept">onbeforeaccept</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onbookmarkgroup" title="XUL/Attribute/onbookmarkgroup">onbookmarkgroup</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onchange" title="XUL/Attribute/onchange">onchange</a></li>
- <li><a class="internal" href="/en-US/docs/XUL/Attribute/onclick" title="XUL/Attribute/Onclick">onclick</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onclosetab" title="XUL/Attribute/onclosetab">onclosetab</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/oncommand" title="XUL/Attribute/oncommand">oncommand</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/oncommandupdate" title="XUL/Attribute/oncommandupdate">oncommandupdate</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ondialogaccept" title="XUL/Attribute/ondialogaccept">ondialogaccept</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ondialogcancel" title="XUL/Attribute/ondialogcancel">ondialogcancel</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ondialogdisclosure" title="XUL/Attribute/ondialogdisclosure">ondialogclosure</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ondialogextra1" title="XUL/Attribute/ondialogextra1">ondialogextra1</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ondialogextra2" title="XUL/Attribute/ondialogextra2">ondialogextra2</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ondialoghelp" title="XUL/Attribute/ondialoghelp">ondialoghelp</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onerror" title="XUL/Attribute/onerror">onerror</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onerrorcommand" title="XUL/Attribute/onerrorcommand">onerrorcommand</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onextra1" title="XUL/Attribute/onextra1">onextra1</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onextra2" title="XUL/Attribute/onextra2">onextra2</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/oninput" title="XUL/Attribute/oninput">oninput</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onload" title="XUL/Attribute/onload">onload</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onnewtab" title="XUL/Attribute/onnewtab">onnewtab</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onpageadvanced" title="XUL/Attribute/onpageadvanced">onpageadvanced</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onpagehide" title="XUL/Attribute/onpagehide">onpagehide</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onpagerewound" title="XUL/Attribute/onpagerewound">onpagerewound</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onpageshow" title="XUL/Attribute/onpageshow">onpageshow</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onpaneload" title="XUL/Attribute/onpaneload">onpaneload</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onpopuphidden" title="XUL/Attribute/onpopuphidden">onpopuphidden</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onpopuphiding" title="XUL/Attribute/onpopuphiding">onpopuphiding</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onpopupshowing" title="XUL/Attribute/onpopupshowing">onpopupshowing</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onpopupshown" title="XUL/Attribute/onpopupshown">onpopupshown</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onsearchcomplete" title="XUL/Attribute/onsearchcomplete">onsearchcomplete</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onselect" title="XUL/Attribute/onselect">onselect</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ontextcommand" title="XUL/Attribute/ontextcommand">ontextcommand</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ontextentered" title="XUL/Attribute/ontextentered">ontextentered</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ontextrevert" title="XUL/Attribute/ontextrevert">ontextrevert</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ontextreverted" title="XUL/Attribute/ontextreverted">ontextreverted</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onunload" title="XUL/Attribute/onunload">onunload</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onwizardback" title="XUL/Attribute/onwizardback">onwizardback</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onwizardcancel" title="XUL/Attribute/onwizardcancel">onwizardcancel</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onwizardfinish" title="XUL/Attribute/onwizardfinish">onwizardfinish</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/onwizardnext" title="XUL/Attribute/onwizardnext">onwizardnext</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/open" title="XUL/Attribute/open">open</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ordinal" title="XUL/Attribute/ordinal">ordinal</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/orient" title="XUL/Attribute/orient">orient</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/pack" title="XUL/Attribute/pack">pack</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/pageid" title="XUL/Attribute/pageid">pageid</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/pageincrement" title="XUL/Attribute/pageincrement">pageincrement</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/pagestep" title="XUL/Attribute/pagestep">pagestep</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/parent" title="XUL/Attribute/parent">parent</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/parsetype" title="XUL/Attribute/parsetype">parsetype</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/persist" title="XUL/Attribute/persist">persist</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/persistence" title="XUL/Attribute/persistence">persistence</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/phase" title="XUL/Attribute/phase">phase</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/pickertooltiptext" title="XUL/Attribute/pickertooltiptext">pickertooltiptext</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/placeholder" title="XUL/Attribute/placeholder">placeholder</a> </li>
- <li><a href="/en-US/docs/XUL/Attribute/popup" title="XUL/Attribute/popup">popup</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/position" title="XUL/Attribute/position">position</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/predicate" title="XUL/Attribute/predicate">predicate</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/preference" title="XUL/Attribute/preference">preference</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/preference-editable" title="XUL/Attribute/preference-editable">preference-editable</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/primary" title="XUL/Attribute/primary">primary</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/priority" title="XUL/Attribute/priority">priority</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/properties" title="XUL/Attribute/properties">properties</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/querytype" title="XUL/Attribute/querytype">querytype</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/readonly" title="XUL/Attribute/readonly">readonly</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/ref" title="XUL/Attribute/ref">ref</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/rel" title="XUL/Attribute/rel">rel</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/remote" title="/en-US/docs/XUL/Attribute/remote">remote</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/removeelement" title="XUL/Attribute/removeelement">removeelement</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/resizeafter" title="XUL/Attribute/resizeafter">resizeafter</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/resizebefore" title="XUL/Attribute/resizebefore">resizebefore</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/rows" title="XUL/Attribute/rows">rows</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/screenX" title="XUL/Attribute/screenX">screenX</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/screenY" title="XUL/Attribute/screenY">screenY</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/Searchbutton" title="XUL/Attribute/searchbutton">searchbutton</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/searchSessions" title="XUL/Attribute/searchSessions">searchSessions</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/searchlabel" title="XUL/Attribute/searchlabel">searchlabel</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/selected" title="XUL/Attribute/selected">selected</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/selectedIndex" title="XUL/Attribute/selectedIndex">selectedIndex</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/seltype" title="XUL/Attribute/seltype">seltype</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/setfocus" title="XUL/Attribute/setfocus">setfocus</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/showcaret" title="XUL/Attribute/showcaret">showcaret</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/showCommentColumn" title="XUL/Attribute/showCommentColumn">showCommentColumn</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/showpopup" title="XUL/Attribute/showpopup">showpopup</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/size" title="XUL/Attribute/size">size</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/sizemode" title="XUL/Attribute/sizemode">sizemode</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/sizetopopup" title="XUL/Attribute/sizetopopup">sizetopopup</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/smoothscroll" title="XUL/Attribute/smoothscroll">smoothscroll</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/sort" title="XUL/Attribute/sort">sort</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/sortActive" title="XUL/Attribute/sortActive">sortActive</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/sortDirection" title="XUL/Attribute/sortDirection">sortDirection</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/sortResource" title="XUL/Attribute/sortResource">sortResource</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/sortResource2" title="XUL/Attribute/sortResource2">sortResource2</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/spellcheck" title="XUL/Attribute/spellcheck">spellcheck</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/src" title="XUL/Attribute/src">src</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/state" title="XUL/Attribute/state">state</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/statedatasource" title="XUL/Attribute/statedatasource">statedatasource</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/statusbar" title="XUL/Attribute/statusbar">statusbar</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/statustext" title="XUL/Attribute/statustext">statustext</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/style" title="XUL/Attribute/style">style</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/subject" title="XUL/Attribute/subject">subject</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/substate" title="XUL/Attribute/substate">substate</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/suppressonselect" title="XUL/Attribute/suppressonselect">suppressonselect</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/tabindex" title="XUL/Attribute/tabindex">tabindex</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/tabScrolling" title="XUL/Attribute/tabScrolling">tabScrolling</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/targets" title="XUL/Attribute/targets">targets</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/template" title="XUL/Attribute/template">template</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/timeout" title="XUL/Attribute/timeout">timeout</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/title" title="XUL/Attribute/title">title</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/toolbarname" title="XUL/Attribute/toolbarname">toolbarname</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/tooltip" title="XUL/Attribute/tooltip">tooltip</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/tooltiptext" title="XUL/Attribute/tooltiptext">tooltiptext</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/tooltiptextnew" title="XUL/Attribute/tooltiptextnew">tooltiptextnew</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/top" title="XUL/Attribute/top">top</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/type" title="XUL/Attribute/type">type</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/uri" title="XUL/Attribute/uri">uri</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/userAction" title="XUL/Attribute/userAction">userAction</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/validate" title="XUL/Attribute/validate">validate</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/value" title="XUL/Attribute/value">value</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/var" title="XUL/Attribute/var">var</a></li>
- <li><a href="/en-US/docs/Mozilla/Tech/XUL/Attribute/visuallyselected">visuallyselected</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/wait-cursor" title="XUL/Attribute/wait-cursor">wait-cursor</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/width" title="XUL/Attribute/width">width</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/windowtype" title="XUL/Attribute/windowtype">windowtype</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/wrap" title="XUL/Attribute/wrap">wrap</a></li>
- <li><a href="/en-US/docs/XUL/Attribute/wraparound" title="XUL/Attribute/wraparound">wraparound</a></li>
-</ul>
diff --git a/files/th/archive/mozilla/xul/index.html b/files/th/archive/mozilla/xul/index.html
deleted file mode 100644
index 5696c6d96b..0000000000
--- a/files/th/archive/mozilla/xul/index.html
+++ /dev/null
@@ -1,82 +0,0 @@
----
-title: XUL
-slug: Archive/Mozilla/XUL
-tags:
- - Landing
- - Mozilla
- - NeedsTranslation
- - TopicStub
- - XUL
-translation_of: Archive/Mozilla/XUL
----
-<div>{{FirefoxSidebar}}</div>
-
-<div class="callout-box"><strong><a href="/en-US/docs/Mozilla/Tech/XUL/Tutorial">XUL Tutorial</a></strong><br>
-A guided tutorial that will help you get started with XUL, originally from XULPlanet.</div>
-
-<p><span class="seoSummary"><strong>XUL</strong> (XML User Interface Language) is Mozilla's <a href="/en-US/docs/XML_introduction">XML</a>-based language for building user interfaces of applications like Firefox.</span> The term XUL is sometimes used to refer to the whole <a href="/en-US/docs/Mozilla/The_Mozilla_platform">Mozilla platform</a> (e.g. XUL applications are applications using XUL and other components of the platform).</p>
-
-<p><a href="/en-US/docs/Mozilla/Tech/XUL/XUL_controls">XUL Controls</a> lists some of the common controls provided by XUL.</p>
-
-<div class="topicpage-table">
-<div class="section">
-<h2 class="Documentation" id="Documentation">Documentation</h2>
-
-<dl>
- <dt><strong><a href="/en-US/docs/Mozilla/Tech/XUL/Tutorial">XUL Tutorial</a></strong></dt>
- <dd>A guided tutorial that will help you get started with XUL, originally from XULPlanet.</dd>
- <dt><a href="/en-US/docs/Mozilla/Tech/XUL/XUL_Reference">XUL Reference</a></dt>
- <dd>XUL elements, attributes, properties, methods, and event handlers.</dd>
- <dt><a href="/en-US/docs/Mozilla/Tech/XUL/XUL_controls">XUL Controls</a></dt>
- <dd>A quick list of all of the available XUL controls.</dd>
- <dt><a href="/en-US/docs/Mozilla/Tech/XUL/The_Joy_of_XUL">The Joy of XUL</a></dt>
- <dd>Describes the key features and components of XUL.</dd>
- <dt><a href="/en-US/docs/Mozilla/Tech/XUL/PopupGuide">Menus and Popups Guide</a></dt>
- <dd>A guide on using menus and popup panels.</dd>
- <dt><a href="/en-US/docs/Mozilla/Tech/XUL/Template_Guide">Template Guide</a></dt>
- <dd>A detailed guide on XUL templates, which is a means of generating content from a datasource.</dd>
- <dt><a href="/en-US/docs/Web/API/HTML_Drag_and_Drop_API">Drag and Drop</a></dt>
- <dd>How to perform drag and drop operations.</dd>
-</dl>
-
-<dl>
- <dt>XUL Periodic Table</dt>
- <dd>This collection of XUL demos used to be available as a web page, but can no longer be viewed in Firefox since support for <a href="/en-US/docs/Mozilla/Tech/XUL/Using_Remote_XUL">Remote XUL</a> was disabled. There is a XULRunner application containing the XUL Periodic Table which can be opened with Gecko based browsers. <a href="https://github.com/matthewkastor/XULRunner-Examples">You can get it here</a>. See: <a href="/en-US/docs/Archive/Mozilla/XULRunner/Tips#Using_Firefox_3_to_run_XULRunner_applications">Using Firefox 3 to run XULRunner applications</a> for instructions on running XULRunner apps in Firefox.</dd>
- <dt>Changes to XUL</dt>
- <dd>New XUL features and changes to existing features are included in the <a href="/en-US/docs/Mozilla/Firefox/Releases">Firefox developer release notes</a>.</dd>
-</dl>
-
-<p><span class="alllinks"><a href="/en-US/docs/tag/XUL">View All...</a></span></p>
-</div>
-
-<div class="section">
-<h2 class="Community" id="Community">Community</h2>
-
-<ul>
- <li>View Mozilla forums...{{ DiscussionList("dev-tech-xul", "mozilla.dev.tech.xul") }}</li>
- <li><a class="link-irc" href="irc://irc.mozilla.org/xul">#xul on irc.mozilla.org</a></li>
-</ul>
-
-<h2 class="Tools" id="Tools">Tools</h2>
-
-<ul>
- <li><a class="external" href="https://github.com/KM-200/xul/tree/master/docs">XUL online live editor</a> (copy &amp; paste snippets from here and run them)</li>
- <li><a href="/en-US/docs/Archive/Mozilla/XUL_Explorer">XUL Explorer</a> (a lightweight XUL IDE)</li>
- <li><a class="external" href="https://github.com/matthewkastor/XULExplorer">XULExplorer</a> (Patched version of XUL explorer)</li>
- <li><a class="external" href="http://ted.mielczarek.org/code/mozilla/extensiondev/">Extension developer's extension</a> (featuring a Live XUL Editor)</li>
- <li><a class="external" href="http://forum.addonsmirror.net/index.php?showtopic=751">XULRef sidebar</a></li>
- <li><a class="external" href="http://www.getfirebug.com/">Firebug</a></li>
- <li><a href="/en-US/docs/Tools/Add-ons/DOM_Inspector">DOM Inspector</a></li>
- <li><a class="external" href="http://www.spket.com/">Spket IDE</a>, IDE for XUL/XBL</li>
- <li><a class="external" href="http://www.amplesdk.com">Ample SDK</a>, (Cross-browser XUL renderer in JavaScript/HTML)</li>
-</ul>
-
-<p><span class="alllinks"><a href="/en-US/docs/tag/Tools">View All...</a></span></p>
-
-<h2 class="Related_Topics" id="Related_Topics">Related Topics</h2>
-
-<ul>
- <li><a href="/en-US/docs/Web/JavaScript">JavaScript</a>, <a href="/en-US/docs/Mozilla/Tech/XBL">XBL</a> {{Deprecated_Inline}}, <a href="/en-US/docs/Web/CSS">CSS</a>, <a href="/en-US/docs/Web/RDF">RDF</a>, <a href="/en-US/docs/Mozilla/Add-ons">Extensions</a>, <a href="/en-US/docs/Archive/Mozilla/XULRunner">XULRunner</a></li>
-</ul>
-</div>
-</div>
diff --git a/files/th/archive/mozilla/xul/ภาพ,อิมเมจ/index.html b/files/th/archive/mozilla/xul/ภาพ,อิมเมจ/index.html
deleted file mode 100644
index e8d9a97827..0000000000
--- a/files/th/archive/mozilla/xul/ภาพ,อิมเมจ/index.html
+++ /dev/null
@@ -1,151 +0,0 @@
----
-title: รูปภาพ
-slug: 'Archive/Mozilla/XUL/ภาพ,อิมเมจ'
-translation_of: Archive/Mozilla/XUL/image
----
-<div class="noinclude"><span class="breadcrumbs XULRef_breadcrumbs">
- « <a href="/th/docs/XUL_Reference">XUL Reference home</a> [
- <a href="#Examples">Examples</a> |
- <a href="#Attributes">Attributes</a> |
- <a href="#Properties">Properties</a> |
- <a href="#Methods">Methods</a> |
- <a href="#Related">Related</a> ]
-</span></div>
-
-<h3 id="ภาพรวม">ภาพรวม</h3>
-
-<p>An element that displays an image, much like the HTML <a href="/En/HTML/Element/Img" title="https://developer.mozilla.org/en/HTML/element/img"><code>img</code></a> element. The <code id="a-src"><a href="https://developer.mozilla.org/th/docs/Mozilla/Tech/XUL/Attribute/src">src</a></code> attribute can be used to specify the URL of the image.</p>
-
-<p>ข้อมูลเพิ่มเติมได้ที่  <a href="/en/XUL_Tutorial/Adding_Labels_and_Images" title="en/XUL_Tutorial/Adding_Labels_and_Images">XUL tutorial</a>.</p>
-
-<div class="noinclude">
-<div class="note">
-<p><strong>บันทึก:</strong> Prior to <span title="(Firefox 8.0 / Thunderbird 8.0 / SeaMonkey 2.5)">Gecko 8.0</span>, images did not shrink down with the same ratio in both directions when specifying maximum sizes using <code>maxheight</code> or <code>maxwidth</code>. The new behavior aligns more with the HTML <a href="/th/docs/Web/HTML/Element/img" title="The documentation about this has not yet been written; please consider contributing!"><code>&lt;img&gt;</code></a> element and shrinks both the width and height down proportionally.</p>
-</div>
-</div>
-
-<dl>
- <dt>Attributes</dt>
- <dd><a href="#a-onerror">onerror</a>, <a href="#a-image.onload">onload</a>, <a href="#a-src">src</a>, <a href="#a-validate">validate</a></dd>
-</dl>
-
-<dl>
- <dt>Properties</dt>
- <dd><a href="#p-accessibleType">accessibleType</a>, <a href="#p-src">src</a></dd>
-</dl>
-
-<dl>
- <dt>Style classes</dt>
- <dd><a href="#s-alert-icon">alert-icon</a>, <a href="#s-error-icon">error-icon</a>, <a href="#s-message-icon">message-icon</a>, <a href="#s-question-icon">question-icon</a></dd>
-</dl>
-
-<h3 id="ตัวอย่าง">ตัวอย่าง</h3>
-
-<div class="float-right"><img alt="Image:Firefoxlogo2.png" class="internal" src="/@api/deki/files/220/=Firefoxlogo2.png"></div>
-
-<pre class="eval">&lt;image src='Firefoxlogo.png' width='135' height='130'/&gt;
-</pre>
-
-<h3 id="Attributes">Attributes</h3>
-
-<p> </p><div id="a-onerror">
-
-
-<dl>
- <dt><code id="a-onerror"><a href="https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XUL/Attribute/onerror">onerror</a></code></dt>
- <dd>Type: <em>script code</em></dd>
- <dd>This event is sent to an <code><a href="/en-US/docs/Mozilla/Tech/XUL/image" title="image">image</a></code> element when an error occurs loading the image.</dd>
-</dl>
-</div> <div id="a-image.onload">
-
-
-<dl>
- <dt><code id="a-image.onload"><a href="https://developer.mozilla.org/th/docs/Mozilla/Tech/XUL/Attribute/image.onload">image.onload</a></code></dt>
- <dd>ประเภท: <em>script code</em></dd>
- <dd>This event handler will be called on the <code><a href="/th/docs/Mozilla/Tech/XUL/image" title="image">image</a></code> element when the image has finished loading. This applies whether the image is applied via the <code id="a-src"><a href="https://developer.mozilla.org/th/docs/Mozilla/Tech/XUL/Attribute/src">src</a></code> attribute or the <code>list-style-image</code> style property. If you change the image, the event will fire again when the new image loads. This event will not bubble up the element tree.</dd>
-</dl>
-</div> <div id="a-src">
-
-<dl>
- <dt>
- <code id="a-src"><a href="https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XUL/Attribute/src">src</a></code></dt>
- <dd>
- Type: <em>URI</em></dd>
- <dd>
- The URI of the content to appear in the element.</dd>
-</dl>
-
-
-</div> <div id="a-validate">
-
-
-<dl>
- <dt><code id="a-validate"><a href="https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XUL/Attribute/validate">validate</a></code></dt>
- <dd>Type: <em>one of the values below</em></dd>
- <dd>This attribute indicates whether to load the image from the cache or not. This would be useful if the images are stored remotely or you plan on swapping the image frequently. The following values are accepted, or leave out the attribute entirely for default handling:</dd>
- <dd>
- <dl>
- <dt><code>always</code></dt>
- <dd>The image is always checked to see whether it should be reloaded.</dd>
- <dt><code>never</code></dt>
- <dd>The image will be loaded from the cache if possible.</dd>
- </dl>
- </dd>
-</dl>
-</div>
-
-<h3 id="Properties">Properties</h3>
-
-<div id="p-accessibleType">
-<dl>
- <dt>
- <code><span><a href="https://developer.mozilla.org/en-US/docs/XUL/Property/accessibleType">accessibleType</a></span></code></dt>
- <dd>
- Type: <em>integer</em></dd>
- <dd>
- A value indicating the type of accessibility object for the element.</dd>
-</dl>
-</div> <div id="p-src">
-
-<dl>
- <dt><code><span><a href="https://developer.mozilla.org/en-US/docs/XUL/Property/src">src</a></span></code></dt>
- <dd>Type: <em>URL</em></dd>
- <dd>Gets and sets the value of the <code id="a-src"><a href="https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XUL/Attribute/src">src</a></code> attribute.</dd>
-</dl></div> <table style="border: 1px solid rgb(204, 204, 204); margin: 0px 0px 10px 10px; padding: 0px 10px; background: rgb(238, 238, 238) none repeat scroll 0% 50%;"> <tbody> <tr> <td> <p><strong>Inherited Properties</strong><br> <small> <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/align">align</a></span></code>, , <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/allowEvents">allowEvents</a></span></code>, , <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/boxObject">boxObject</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/builder">builder</a></span></code>, , , , <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/className">className</a></span></code>, , , , , <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/collapsed">collapsed</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/contextMenu">contextMenu</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/controllers">controllers</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/database">database</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/datasources">datasources</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/dir">dir</a></span></code>, , , <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/flex">flex</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/height">height</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/hidden">hidden</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/id">id</a></span></code>, , , <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/left">left</a></span></code>, , <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/maxHeight">maxHeight</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/maxWidth">maxWidth</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/menu">menu</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/minHeight">minHeight</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/minWidth">minWidth</a></span></code>, , , , , , , <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/observes">observes</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/ordinal">ordinal</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/orient">orient</a></span></code>, , <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/pack">pack</a></span></code>, , <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/persist">persist</a></span></code>, , , , <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/ref">ref</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/resource">resource</a></span></code>, , , , , <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/statusText">statusText</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/style">style</a></span></code>, ,, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/tooltip">tooltip</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/tooltipText">tooltipText</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/top">top</a></span></code>, <code><span><a href="https://developer.mozilla.org/th/docs/XUL/Property/width">width</a></span></code></small></p> </td> </tr> </tbody>
-</table>
-
-<h3 id="Methods">Methods</h3>
-
-<table style="border: 1px solid rgb(204, 204, 204); margin: 0px 0px 10px 10px; padding: 0px 10px; background: rgb(238, 238, 238) none repeat scroll 0% 50%;"> <tbody> <tr> <td> <p><strong>Inherited Methods</strong><br> <small><code><a href="https://developer.mozilla.org/th/docs/DOM/element.addEventListener">addEventListener()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.appendChild">appendChild()</a></code>, <span id="m-blur"><code><a href="https://developer.mozilla.org/th/docs/Mozilla/Tech/XUL/Method/blur">blur</a></code></span>, <span id="m-click"><code><a href="https://developer.mozilla.org/th/docs/Mozilla/Tech/XUL/Method/click">click</a></code></span>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.cloneNode">cloneNode()</a></code>, <a class="internal" href="/En/DOM/Node.compareDocumentPosition" title="En/DOM/Node.compareDocumentPosition">compareDocumentPosition</a>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.dispatchEvent">dispatchEvent()</a></code>, <span id="m-doCommand"><code><a href="https://developer.mozilla.org/th/docs/Mozilla/Tech/XUL/Method/doCommand">doCommand</a></code></span>, <span id="m-focus"><code><a href="https://developer.mozilla.org/th/docs/Mozilla/Tech/XUL/Method/focus">focus</a></code></span>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.getAttribute">getAttribute()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.getAttributeNode">getAttributeNode()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.getAttributeNodeNS">getAttributeNodeNS()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.getAttributeNS">getAttributeNS()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.getBoundingClientRect">getBoundingClientRect()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.getClientRects">getClientRects()</a></code>, <span id="m-getElementsByAttribute"><code><a href="https://developer.mozilla.org/th/docs/Mozilla/Tech/XUL/Method/getElementsByAttribute">getElementsByAttribute</a></code></span>, <span id="m-getElementsByAttributeNS"><code><a href="https://developer.mozilla.org/th/docs/Mozilla/Tech/XUL/Method/getElementsByAttributeNS">getElementsByAttributeNS</a></code></span>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.getElementsByClassName">getElementsByClassName()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.getElementsByTagName">getElementsByTagName()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.getElementsByTagNameNS">getElementsByTagNameNS()</a></code>, <a class="internal" href="/En/DOM/Node.getFeature" title="En/DOM/Node.getFeature">getFeature</a>, <a class="internal" href="/En/DOM/Node.getUserData" title="En/DOM/Node.getUserData">getUserData</a>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.hasAttribute">hasAttribute()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.hasAttributeNS">hasAttributeNS()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.hasAttributes">hasAttributes()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.hasChildNodes">hasChildNodes()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.insertBefore">insertBefore()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.isDefaultNamespace">isDefaultNamespace()</a></code>, <a class="internal" href="/En/DOM/Node.isEqualNode" title="En/DOM/Node.isEqualNode">isEqualNode</a>, <a class="internal" href="/En/DOM/Node.isSameNode" title="En/DOM/Node.isSameNode">isSameNode</a>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.isSupported">isSupported()</a></code>, <a class="internal" href="/En/DOM/Node.lookupNamespaceURI" title="En/DOM/Node.lookupNamespaceURI">lookupNamespaceURI</a>, <a class="internal" href="/En/DOM/Node.lookupPrefix" title="En/DOM/Node.lookupPrefix">lookupPrefix</a>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.normalize">normalize()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.querySelector">querySelector()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.querySelectorAll">querySelectorAll()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.removeAttribute">removeAttribute()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.removeAttributeNode">removeAttributeNode()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.removeAttributeNS">removeAttributeNS()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.removeChild">removeChild()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.removeEventListener">removeEventListener()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.replaceChild">replaceChild()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.setAttribute">setAttribute()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.setAttributeNode">setAttributeNode()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.setAttributeNodeNS">setAttributeNodeNS()</a></code>, <code><a href="https://developer.mozilla.org/th/docs/DOM/element.setAttributeNS">setAttributeNS()</a></code>, <a class="internal" href="/En/DOM/Node.setUserData" title="En/DOM/Node.setUserData">setUserData</a></small></p> </td> </tr> </tbody>
-</table>
-
-<h3 id="Style_classes">Style classes</h3>
-
-<dl>
- <dt>
- <code><a href="https://developer.mozilla.org/en-US/docs/XUL/Style/alert-icon">alert-icon</a></code></dt>
- <dd>
- Class that adds an alert icon. This typically looks like an exclamation mark. This and the other icon classes may be used by <code><a href="/en-US/docs/Mozilla/Tech/XUL/image" title="image">image</a></code> elements or other elements which can have an image.</dd>
-</dl> <dl>
- <dt><code><a href="https://developer.mozilla.org/en-US/docs/XUL/Style/error-icon">error-icon</a></code></dt>
- <dd>Class that adds an error icon. This will typically be a red "X" icon.</dd>
-</dl> <dl>
- <dt><code><a href="https://developer.mozilla.org/en-US/docs/XUL/Style/message-icon">message-icon</a></code></dt>
- <dd>Class that adds a message box icon.</dd>
-</dl> <dl>
- <dt><code><a href="https://developer.mozilla.org/en-US/docs/XUL/Style/question-icon">question-icon</a></code></dt>
- <dd>Class that adds a question icon, which usually looks like a question mark.</dd>
-</dl>
-
-<h3 id="เนื้อหาที่เกี่ยวข้อง">เนื้อหาที่เกี่ยวข้อง</h3>
-
-<p>See also the <code id="a-image"><a href="https://developer.mozilla.org/th/docs/Mozilla/Tech/XUL/Attribute/image">image</a></code> and <code id="a-icon"><a href="https://developer.mozilla.org/th/docs/Mozilla/Tech/XUL/Attribute/icon">icon</a></code> attributes.</p>
-
-<h3 id="Interfaces">Interfaces</h3>
-
-<ul>
- <li><code><a href="/th/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIAccessibleProvider" title="">nsIAccessibleProvider</a></code></li>
- <li><code><a href="/th/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIDOMXULImageElement" title="">nsIDOMXULImageElement</a></code></li>
-</ul>
-
-<div class="noinclude"> </div>