aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc')
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/dev-guide-source/index.md7
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/dev-guide-source/no_h1.md7
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/high-level-modules.md18
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/low-level-modules.md36
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/aardvark-feeder.md12
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/anteater/anteater.md10
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/main.md0
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/not_a_doc.js5
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/third-party-modules.md11
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/static-files/another.html5
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/static-files/base.html161
-rw-r--r--tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/static-files/index.html27
12 files changed, 0 insertions, 299 deletions
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/dev-guide-source/index.md b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/dev-guide-source/index.md
deleted file mode 100644
index 0f03259..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/dev-guide-source/index.md
+++ /dev/null
@@ -1,7 +0,0 @@
-<!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-
-# An Imposing Title #
-
-*Some words!*
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/dev-guide-source/no_h1.md b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/dev-guide-source/no_h1.md
deleted file mode 100644
index 9859f33..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/dev-guide-source/no_h1.md
+++ /dev/null
@@ -1,7 +0,0 @@
-<!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-
-## A heading ##
-
-*Some words!*
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/high-level-modules.md b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/high-level-modules.md
deleted file mode 100644
index 8745e13..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/high-level-modules.md
+++ /dev/null
@@ -1,18 +0,0 @@
-<!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-
-# High-Level APIs #
-
-Modules in this section implement high-level APIs for
-building add-ons:
-
-* creating user interfaces
-* interacting with the web
-* interacting with the browser
-
-Unless the documentation explicitly says otherwise, all these modules are
-"supported": meaning that they are relatively stable, and that we'll avoid
-making incompatible changes to them unless absolutely necessary.
-
-<ul id="module-index"></ul>
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/low-level-modules.md b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/low-level-modules.md
deleted file mode 100644
index bc44007..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/low-level-modules.md
+++ /dev/null
@@ -1,36 +0,0 @@
-<!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-
-# Low-Level APIs #
-
-Modules in this section implement low-level APIs. These
-modules fall roughly into three categories:
-
-* fundamental utilities such as
-[collection](modules/sdk/util/collection.html) and
-[url](modules/sdk/url.html). Many add-ons are likely to
-want to use modules from this category.
-
-* building blocks for higher level modules, such as
-[events](modules/sdk/events/core.html),
-[worker](modules/sdk/content/worker.html), and
-[api-utils](modules/sdk/deprecated/api-utils.html). You're more
-likely to use these if you are building your own modules that
-implement new APIs, thus extending the SDK itself.
-
-* privileged modules that expose powerful low-level capabilities
-such as [window/utils](modules/sdk/window/utils.html) and
-[xhr](modules/sdk/net/xhr.html). You can use these
-modules in your add-on if you need to, but should be aware that
-the cost of privileged access is the need to take more elaborate
-security precautions. In many cases these modules have simpler,
-more restricted analogs among the "High-Level APIs" (for
-example, [windows](modules/sdk/windows.html) or
-[request](modules/sdk/request.html)).
-
-These modules are still in active development, and we expect to
-make incompatible changes to them in future releases.
-
-
-<ul id="module-index"></ul>
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/aardvark-feeder.md b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/aardvark-feeder.md
deleted file mode 100644
index 3845955..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/aardvark-feeder.md
+++ /dev/null
@@ -1,12 +0,0 @@
-<!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-
-The `aardvark-feeder` module simplifies feeding aardvarks.
-
-<api name="feed">
-@function
- Feed the aardvark.
-@param food {string}
- The food. Aardvarks will eat anything.
-</api>
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/anteater/anteater.md b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/anteater/anteater.md
deleted file mode 100644
index c480ce3..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/anteater/anteater.md
+++ /dev/null
@@ -1,10 +0,0 @@
-<!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-
-The `anteater` module should not be used by anyone.
-
-<api name="release">
-@function
- Releases the anteater. Do not call this function.
-</api>
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/main.md b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/main.md
deleted file mode 100644
index e69de29..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/main.md
+++ /dev/null
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/not_a_doc.js b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/not_a_doc.js
deleted file mode 100644
index f4abc3b..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/sdk/not_a_doc.js
+++ /dev/null
@@ -1,5 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-not a doc \ No newline at end of file
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/third-party-modules.md b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/third-party-modules.md
deleted file mode 100644
index 33e957c..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/module-source/third-party-modules.md
+++ /dev/null
@@ -1,11 +0,0 @@
-<!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-
-# Third-party APIs #
-
-This section include modules you've added to the SDK. The tutorial on
-[adding menu items to Firefox](dev-guide/tutorials/adding-menus.html)
-explains how to add third-party modules to your SDK installation.
-
-<ul id="module-index"></ul>
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/static-files/another.html b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/static-files/another.html
deleted file mode 100644
index d40a2e8..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/static-files/another.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-
-another file \ No newline at end of file
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/static-files/base.html b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/static-files/base.html
deleted file mode 100644
index 3dd3df1..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/static-files/base.html
+++ /dev/null
@@ -1,161 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
-"http://www.w3.org/TR/html4/strict.dtd">
-<html lang="en">
-<head>
- <base >
- <meta http-equiv="Content-type" content="text/html; charset=utf-8">
- <script type="text/javascript" src="static-files/syntaxhighlighter/scripts/shCore.js"></script>
- <script type="text/javascript" src="static-files/syntaxhighlighter/scripts/shBrushCss.js"></script>
- <script type="text/javascript" src="static-files/syntaxhighlighter/scripts/shBrushXml.js"></script>
- <script type="text/javascript" src="static-files/syntaxhighlighter/scripts/shBrushJScript.js"></script>
- <link rel="stylesheet" type="text/css" media="all" href="static-files/css/base.css">
- <link rel="stylesheet" type="text/css" media="all" href="static-files/css/header.css">
- <link rel="stylesheet" type="text/css" media="all" href="static-files/css/footer.css">
- <link rel="stylesheet" type="text/css" media="all" href="static-files/css/sdk-docs.css">
- <link rel="stylesheet" type="text/css" media="all" href="static-files/css/api-reference.css">
- <link rel="stylesheet" type="text/css" href="static-files/syntaxhighlighter/styles/shCore.css">
- <link rel="stylesheet" type="text/css" href="static-files/syntaxhighlighter/styles/shThemeDefault.css">
- <!--[if IE]>
- <style type="text/css">
- .package-summary .module,
- .package-entry .module,
- .package-detail .module {
- display: block;
- }
- </style>
- <![endif]-->
-
- <link rel="shortcut icon" type="image/x-icon" href="static-files/media/favicon.png">
- <title></title>
-</head>
-<body>
-
-<header id="global-header">
- <div class="funnel">
- <a id="mozilla-tab" href="http://www.mozilla.org/?ref=logo">Mozilla</a>
- <div class="menu">
- <p>
- <a href="https://builder.addons.mozilla.org/">Add-on Builder</a>
- </p>
- <p>
- <a href="https://addons.mozilla.org/en-US/developers/">Developer Hub</a>
- </p>
- </div>
-</header>
-
-
-<header id="site-header">
- <div class="funnel">
- <h1>
- <a href="dev-guide/welcome.html">Add-on SDK<span></span></a>
- </h1>
- <div id="version"></div>
- </div>
-</header>
-
- <div id="container">
-
- <div id="columns">
-
- <div id="main-content-column" class="column">
- <div id="toc"></div>
- <div id="main-content"></div>
- </div>
-
- <div id="sidebar" class="column">
- <div class="sidebar-section" id="addon-development">
- <h2 class="sidebar-section-header">Developer Guide</h2>
- <ul class="sidebar-section-contents" id="default-section-contents">
-
- <li class="sidebar-subsection">
- <a href="dev-guide/tutorials/installation.html"><h3>Installation</h3></a>
- </li>
- <li class="sidebar-subsection">
- <a href="dev-guide/tutorials/tutorials.html"><h3 class="sidebar-subsection-header">Tutorials</h3></a>
- </li>
-
- <li class="sidebar-subsection">
- <a href="dev-guide/guides/index.html"><h3 class="sidebar-subsection-header">Guides</h3></a>
- </li>
-
- <li class="sidebar-subsection" id="third-party-packages-subsection">
- <a href="dev-guide/third-party-apis.html"><h3 class="sidebar-subsection-header">Third-Party APIs</h3></a>
- <div class="sidebar-subsection-contents">
- <ul id="third-party-package-summaries"></ul>
- </div>
- </li>
-
- <li class="sidebar-subsection">
- <a href="dev-guide/high-level-apis.html"><h3 class="sidebar-subsection-header">High-Level APIs</h3></a>
- <div class="sidebar-subsection-contents">
- <ul id="high-level-module-summaries"></ul>
- </div>
- </li>
-
- <li class="sidebar-subsection">
- <h3 class="sidebar-subsection-header">Tools Reference</h3>
- <div class="sidebar-subsection-contents">
- <a href="dev-guide/console.html">console</a>
- <a href="dev-guide/cfx-tool.html">cfx</a>
- <a href="dev-guide/package-spec.html">package.json</a>
- </div>
- </li>
-
- <li class="sidebar-subsection">
- <a href="dev-guide/low-level-apis.html"><h3 class="sidebar-subsection-header">Low-Level APIs</h3></a>
- <div class="sidebar-subsection-contents">
- <ul id="low-level-module-summaries"></ul>
- </div>
- </li>
-
- </ul>
- </div>
-
- <ul class="sidebar-section" id="appendices">
- <li><a href="https://wiki.mozilla.org/Labs/Jetpack/Release_Notes"><h3>Release Notes</h3></a></li>
- <li><a href="https://wiki.mozilla.org/Labs/Jetpack"><h3>Jetpack Wiki</h3></a></li>
- <li><a href="dev-guide/glossary.html"><h3>Glossary</h3></a></li>
- <li><a href="dev-guide/credits.html"><h3>Credits</h3></a></li>
-
- </ul>
-<!--end of sidebar column-->
- </div>
-<!--end of 'columns'-->
-<div class="clearfooter"></div>
-</div>
-</div>
-
-<div role="contentinfo" id="footer">
- <div class="section">
- <img alt="" src="static-files/media/footer-logo-med.png" class="footerlogo">
- <div id="social-footer">
- <ul>
- <li>get to know <b>add-ons</b></li>
- <li><a href="https://addons.mozilla.org/en-US/firefox/about">About</a></li>
- <li><a href="http://blog.mozilla.com/addons">Blog</a></li>
- <li class="footer-devhub-link"><a href="https://addons.mozilla.org/en-US/developers/">Developer Hub</a></li>
- <li><a href="https://addons.mozilla.org/en-US/firefox/faq">FAQ</a></li>
- <li><a href="https://forums.addons.mozilla.org">Forum</a></li>
- </ul>
- </div>
-
- <div id="copyright">
- <p id="footer-links">
- <a href="http://mozilla.com/privacy-policy.html">Privacy Policy</a> &nbsp;|&nbsp;
- <a href="http://mozilla.com/about/legal.html">Legal Notices</a> &nbsp;|&nbsp;
- <a href="http://mozilla.com/legal/fraud-report/index.html">Report Trademark Abuse</a>
- &nbsp;|&nbsp;<a href="https://addons.mozilla.org/z/en-US/developers/" class="mobile-link">View Mobile Site</a>
- </p>
- <p>
- Except where otherwise <a href="http://mozilla.com/about/legal.html#site">noted</a>, content on this site is licensed under the <br> <a href="http://creativecommons.org/licenses/by-sa/3.0/"> Creative Commons Attribution Share-Alike License v3.0 </a> or any later version.
- </p>
- </div>
- </div>
-</div>
-
-<script type="text/javascript" src="static-files/js/jquery.js"></script>
-<script type="text/javascript" src="static-files/js/main.js"></script>
-
-</body>
-
-</html>
diff --git a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/static-files/index.html b/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/static-files/index.html
deleted file mode 100644
index 1909a18..0000000
--- a/tools/addon-sdk-1.12/python-lib/cuddlefish/tests/static-files/doc/static-files/index.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-
-<html>
-
-<head>
-
- <title></title>
-
-</head>
-
-<body>
-
-<div id="left-column">
-
-<ul><li id="high-level-package-summaries"></li></ul>
-
-<ul><li id="low-level-package-summaries"></li></ul>
-
-</div>
-
-<div id="right-column"></div>
-
-</body>
-
-</html>