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