1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/app-manager/content/help.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,44 @@ 1.4 +<?xml version="1.0" encoding="UTF-8"?> 1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.6 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.8 +<!DOCTYPE html [ 1.9 + <!ENTITY % appMgrDTD SYSTEM "chrome://browser/locale/devtools/app-manager.dtd" > 1.10 + %appMgrDTD; 1.11 +]> 1.12 + 1.13 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.14 + 1.15 + <head> 1.16 + <meta charset="utf8"/> 1.17 + <base href="chrome://browser/content/devtools/app-manager/"></base> 1.18 + <title>&help.title;</title> 1.19 + <link rel="stylesheet" href="chrome://browser/skin/devtools/app-manager/help.css" type="text/css"/> 1.20 + </head> 1.21 + 1.22 + <body> 1.23 + 1.24 + <h1>&help.title;</h1> 1.25 + 1.26 + <p>&help.intro;</p> 1.27 + 1.28 + <p>&help.usefullLinks;</p> 1.29 + <ul> 1.30 + <li><a target="mdn" href="https://developer.mozilla.org/docs/Mozilla/Firefox_OS/Using_the_App_Manager">&help.appMgrDoc;</a></li> 1.31 + <li><a target="mdn" href="https://developer.mozilla.org/docs/Mozilla/Firefox_OS/Using_the_App_Manager#Configuring_device">&help.configuringDevice;</a></li> 1.32 + <li><a target="mdn" href="https://developer.mozilla.org/docs/Mozilla/Firefox_OS/Using_the_App_Manager#Troubleshooting">&help.troubleShooting;</a></li> 1.33 + <li><a target="mdn" href="https://developer.mozilla.org/docs/Mozilla/Firefox_OS/Using_the_App_Manager#Simulator">&help.simulatorAddon;</a></li> 1.34 + <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> 1.35 + </ul> 1.36 + 1.37 + <button id="close-button" onclick="closeHelp()">&help.close;</button> 1.38 + 1.39 + </body> 1.40 + 1.41 + <script type="application/javascript;version=1.8"> 1.42 + function closeHelp() { 1.43 + window.parent.postMessage(JSON.stringify({name:"closeHelp"}), "*"); 1.44 + } 1.45 + </script> 1.46 +</html> 1.47 +