|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public |
|
3 - License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
|
5 <!DOCTYPE html [ |
|
6 <!ENTITY % appMgrDTD SYSTEM "chrome://browser/locale/devtools/app-manager.dtd" > |
|
7 %appMgrDTD; |
|
8 ]> |
|
9 |
|
10 <html xmlns="http://www.w3.org/1999/xhtml"> |
|
11 |
|
12 <head> |
|
13 <meta charset="utf8"/> |
|
14 <base href="chrome://browser/content/devtools/app-manager/"></base> |
|
15 <title>&help.title;</title> |
|
16 <link rel="stylesheet" href="chrome://browser/skin/devtools/app-manager/help.css" type="text/css"/> |
|
17 </head> |
|
18 |
|
19 <body> |
|
20 |
|
21 <h1>&help.title;</h1> |
|
22 |
|
23 <p>&help.intro;</p> |
|
24 |
|
25 <p>&help.usefullLinks;</p> |
|
26 <ul> |
|
27 <li><a target="mdn" href="https://developer.mozilla.org/docs/Mozilla/Firefox_OS/Using_the_App_Manager">&help.appMgrDoc;</a></li> |
|
28 <li><a target="mdn" href="https://developer.mozilla.org/docs/Mozilla/Firefox_OS/Using_the_App_Manager#Configuring_device">&help.configuringDevice;</a></li> |
|
29 <li><a target="mdn" href="https://developer.mozilla.org/docs/Mozilla/Firefox_OS/Using_the_App_Manager#Troubleshooting">&help.troubleShooting;</a></li> |
|
30 <li><a target="mdn" href="https://developer.mozilla.org/docs/Mozilla/Firefox_OS/Using_the_App_Manager#Simulator">&help.simulatorAddon;</a></li> |
|
31 <li><a target="mdn" href="https://developer.mozilla.org/docs/Mozilla/Firefox_OS/Using_the_App_Manager#Adb_Helper_Add-on">&help.adbHelperAddon;</a></li> |
|
32 </ul> |
|
33 |
|
34 <button id="close-button" onclick="closeHelp()">&help.close;</button> |
|
35 |
|
36 </body> |
|
37 |
|
38 <script type="application/javascript;version=1.8"> |
|
39 function closeHelp() { |
|
40 window.parent.postMessage(JSON.stringify({name:"closeHelp"}), "*"); |
|
41 } |
|
42 </script> |
|
43 </html> |
|
44 |