browser/devtools/app-manager/content/help.xhtml

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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 ]>
    10 <html xmlns="http://www.w3.org/1999/xhtml">
    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>
    19   <body>
    21     <h1>&help.title;</h1>
    23     <p>&help.intro;</p>
    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>
    34     <button id="close-button" onclick="closeHelp()">&help.close;</button>
    36   </body>
    38   <script type="application/javascript;version=1.8">
    39     function closeHelp() {
    40       window.parent.postMessage(JSON.stringify({name:"closeHelp"}), "*");
    41     }
    42   </script>
    43 </html>

mercurial