зеркало из https://github.com/mozilla/gecko-dev.git
Bug 145056 - add new "Tools and Development" section in Mozilla Help. Patch by Daniel Wang (stolenclover@yahoo.com.tw). r=rlk@trfenv.com
This commit is contained in:
Родитель
c000ae86e8
Коммит
e4c9a006db
|
@ -0,0 +1,69 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"[
|
||||
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
||||
%brandDTD;
|
||||
]
|
||||
>
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>&brandShortName; Tools and Development</title>
|
||||
<link rel="stylesheet" type="text/css" href="chrome://help/locale/helpFileLayout.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<h1 id="web_development_tools">Web Development Tools</h1>
|
||||
|
||||
<p>
|
||||
For web developers, &brandShortName; provides several tools
|
||||
to aid in developing and debugging Web applications. Some of these
|
||||
are optional installs. To access these tools, open the
|
||||
Tools menu and choose Web Development.
|
||||
</p>
|
||||
|
||||
<ul class="separate">
|
||||
<li id="js_console">
|
||||
<strong>JavaScript Console</strong>: the console
|
||||
window displays JavaScript warnings, errors, and
|
||||
notices that occur in Web applications as well as
|
||||
the &brandShortName; application itself.
|
||||
</li>
|
||||
|
||||
<li id="inspector">
|
||||
<strong>DOM Inspector</strong>: a tool that can be
|
||||
used to inspect and edit the DOM of any web document or XUL
|
||||
application.
|
||||
|
||||
<p>Online resources:</p>
|
||||
<ul>
|
||||
<li><a href="http://www.brownhen.com/DI.html">
|
||||
Introduction to the DOM Inspector</a> (Ian Oeschger)</li>
|
||||
<li><a href="http://www.mozilla.org/projects/inspector/faq.html">
|
||||
DOM Inspector FAQ</a> (mozilla.org)</li>
|
||||
<li><a href="http://grayrest.com/moz/evangelism/tutorials/dominspectortutorial.shtml">
|
||||
grayrest's Guide to the DOM Inspector</a></li>
|
||||
<li>Creating Applications with Mozilla - Appendix B3:
|
||||
<a href="http://books.mozdev.org/html/mozilla-app-b-sect-3.html">
|
||||
The DOM Inspector</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li id="venkman">
|
||||
<strong>JavaScript Debugger</strong>: also known as <q>Venkman</q>, this utility
|
||||
allows you to debug JavaScript in &brandShortName;. It supports stepping, breakpoints and
|
||||
many other features.
|
||||
|
||||
<p>Online resources:</p>
|
||||
<ul>
|
||||
<li><a href="http://www.svendtofte.com/code/learning_venkman/">
|
||||
Learning the JavaScript debugger Venkman</a> (Svend Tofte)</li>
|
||||
|
||||
<li><a href="http://www.webreference.com/programming/javascript/venkman/">
|
||||
Debugging JavaScript Using Venkman</a> (webreference.com, article series)</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -532,6 +532,11 @@
|
|||
nc:name="Device Manager"
|
||||
nc:link="using_certs_help.html#Device_Manager:aboutIDX"/>
|
||||
</rdf:li>
|
||||
<rdf:li>
|
||||
<rdf:Description ID="DOM_Inspector"
|
||||
nc:name="DOM Inspector"
|
||||
nc:link="developer_tools.xhtml#inspector"/>
|
||||
</rdf:li>
|
||||
<rdf:li>
|
||||
<rdf:Description ID="Download_Manager"
|
||||
nc:name="Download Manager"
|
||||
|
@ -886,6 +891,16 @@
|
|||
<rdf:Description ID="JavaScript"
|
||||
nc:name="JavaScript"
|
||||
nc:link="cs_nav_prefs_advanced.html#JavaScript:preferencesIDX"/>
|
||||
</rdf:li>
|
||||
<rdf:li>
|
||||
<rdf:Description ID="JSConsole"
|
||||
nc:name="JavaScript Console"
|
||||
nc:link="developer_tools.xhtml#js_console"/>
|
||||
</rdf:li>
|
||||
<rdf:li>
|
||||
<rdf:Description ID="Venkman"
|
||||
nc:name="JavaScript Debugger"
|
||||
nc:link="developer_tools.xhtml#venkman"/>
|
||||
</rdf:li></rdf:Seq>
|
||||
</nc:subheadings>
|
||||
</rdf:Description>
|
||||
|
@ -1322,6 +1337,11 @@
|
|||
nc:name="Download Manager"
|
||||
nc:link="nav_help.html#Navigator:Download_ManagerIDX"/>
|
||||
</rdf:li>
|
||||
<rdf:li>
|
||||
<rdf:Description ID="Navigator:full_screen_mode"
|
||||
nc:name="Full screen mode"
|
||||
nc:link="nav_help.html#full_screen_mode"/>
|
||||
</rdf:li>
|
||||
<rdf:li>
|
||||
<rdf:Description ID="Navigator:helper_applications"
|
||||
nc:name="helper applications"
|
||||
|
|
|
@ -1138,6 +1138,26 @@
|
|||
</nc:subheadings>
|
||||
</rdf:Description>
|
||||
|
||||
<!-- MOZILLA TOOLS AND DEVELOPMENT CONTENT STARTS-->
|
||||
|
||||
<rdf:Description about="urn:root">
|
||||
<nc:subheadings>
|
||||
<rdf:Seq>
|
||||
<rdf:li> <rdf:Description ID="tools" nc:name="Tools and Development"
|
||||
nc:link="chrome://help/locale/developer_tools.xhtml"/> </rdf:li>
|
||||
</rdf:Seq>
|
||||
</nc:subheadings>
|
||||
</rdf:Description>
|
||||
|
||||
<rdf:Description about="#tools">
|
||||
<nc:subheadings>
|
||||
<rdf:Seq>
|
||||
<rdf:li><rdf:Description ID="tools-js_console" nc:name="JavaScript Console" nc:link="chrome://help/locale/developer_tools.xhtml#js_console"/> </rdf:li>
|
||||
<rdf:li><rdf:Description ID="tools-inspector" nc:name="DOM Inspector" nc:link="chrome://help/locale/developer_tools.xhtml#inspector"/> </rdf:li>
|
||||
<rdf:li><rdf:Description ID="tools-venkman" nc:name="JavaScript Debugger" nc:link="chrome://help/locale/developer_tools.xhtml#venkman"/> </rdf:li>
|
||||
</rdf:Seq>
|
||||
</nc:subheadings>
|
||||
</rdf:Description>
|
||||
|
||||
<!-- MOZILLA KEYBOARD SHORTCUTS CONTENT STARTS-->
|
||||
<rdf:Description about="#shortcuts">
|
||||
|
|
Загрузка…
Ссылка в новой задаче