version 1.1, 2002/09/23 16:05:42
|
version 1.54, 2002/12/11 16:40:13
|
Line 1
|
Line 1
|
|
<style> |
|
.broken { color: red; } |
|
.fixed { color: green; } |
|
</style> |
|
|
<p><b>Corrections</b> |
<p><b>Corrections</b> |
|
|
<p>This page contains a list of corrections made to the original text of the book. | <p>This page contains a list of corrections to be made in the next printing of |
| the book. If you have suggestions for changes or find errors in the text, |
| feel free open a <a href="bugs.html">bug</a> with a report of the problem, post a message in the User Notes |
| section on the chapter pages, or send a message to the <a |
| href="mailto:reviewers@mozdev.org">reviewers@mozdev.org</a> mailing list. |
| |
| |
| <a name="preface"> |
| <p><b>Preface</b> |
| |
| <ul> |
| |
| <li>On page xiv: '<b class="broken">http://www.oreilly.com/mozilla/</b>' has been changed |
| to '<b class="fixed">http://www.oreilly.com/catalog/mozilla/</b>'<br><br> |
| |
| </ul> |
| |
| |
| <a name="ch1"> |
| <p><b>Chapter 1</b> |
| |
| <ul> |
| |
| <li>On page 7: '<b class="broken">applications web built using XPFE</b>' has been |
| changed to '<b class="fixed">applications built using XPFE</b>'<br><br> |
| |
| </ul> |
| |
| |
| <a name="ch2"> |
| <p><b>Chapter 2</b> |
| |
| <ul> |
| |
| <li>On page 12: '<b class="broken"><window |
| xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
| /></b>' has been changed to '<b class="fixed"><window |
| xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"></b>'<br><br> |
| |
| <li>On page 14: Removed an extra '<b class="broken">></b>' from example code<br><br> |
| |
| <li>On page 17: '<b class="broken">selecting File > Open File > from</b>' has been |
| changed to '<b class="fixed">selecting File > Open File from</b>'<br><br> |
| |
| <li>On page 20: '<b class="broken">CenterWindoOnScreen( ) function</b>' has been changed |
| to '<b class="fixed">CenterWindowOnScreen( ) function</b>'<br><br> |
| |
| </ul> |
| |
| |
| <a name="ch3"> |
| <p><b>Chapter 3</b> |
| |
| <ul> |
| |
| <li>On page 40: '<b class="broken"><toolbarbutton id="printBtn" label="Open" |
| oncommand="doPrint( );" /></b>' has been changed to '<b class="fixed"><toolbarbutton |
| id="printBtn" label="Print" oncommand="doPrint( );" ></b>'<br><br> |
| |
| </ul> |
| |
| <a name="ch5"> |
| <p><b>Chapter 5</b> |
|
|
<ul> |
<ul> |
|
|
<li>In Chapter 10 'www.jslib.mozdev.org' has been changed to 'jslib.mozdev.org' | <li>On page 113: Javascript 1.5 reference link in footnote has been changed from |
| '<b class="broken">http://developer.netscape.com/docs/manuals/js/core/jsref15/contents.html</b>' to |
| '<b class="fixed">http://developer.netscape.com/docs/manuals/index.html?content=javascript.html</b>'<br><br> |
| |
| <li>On page 120: '<b class="broken"></script.</b>' has been changed to '<b class="fixed"></script></b>'<br><br> |
| |
| <li>On page 120: '<b class="broken">dump(l+'\n');</b>' has been changed to '<b class="fixed">dump(len+'\n');</b>'<br><br> |
| |
| <li>On page 137: '<b class="broken">var connection = Components.classes ["@mozilla.org/network/ldap-connection;1";</b>' has been changed to |
| '<b class="fixed">var connection = Components.classes ["@mozilla.org/network/ldap-connection;1"];</b>'<br><br> |
| |
| <li>On page 140: '<b class="broken">js> load(`chrome/jslib/jslib.js');</b>' has been changed to '<b class="fixed">js> |
| load('chrome/jslib/jslib.js');</b>'<br><br> |
|
|
</ul> |
</ul> |
|
|
|
<a name="ch08"> |
|
<p><b>Chapter 8</b> |
|
|
|
<ul> |
|
|
|
<li>On page 211: In 2nd sentence of paragraph '<b class="broken">QueryInterace</b>' has been changed to '<b |
|
class="fixed">QueryInterface</b>'<br><br> |
|
|
|
<li>On page 222: In Example 8-4 '<b class="broken">mName: "a default value"</b>' has been changed to '<b class="fixed">mName: "a default |
|
value",</b>'<br><br> |
|
|
|
<li>On page 222: In Example 8-4 |
|
|
|
<xmp class="broken"> |
|
this.myCID, |
|
"My JS Component", |
|
this.myProgID, fileSpec, |
|
location, true, true, |
|
type); |
|
</xmp> |
|
|
|
has been changed to |
|
|
|
<xmp class="fixed"> |
|
compMgr.registerComponentWithType( |
|
this.myCID, |
|
"My JS Component", |
|
this.myProgID, fileSpec, |
|
location, true, true, |
|
type); |
|
</xmp> |
|
|
|
<li>On page 222: In Example 8-4 one of the duplicate '<b class="broken">dump(" ***** Registering: Simple JS component! ****\n");</b>' lines |
|
has been removed<br><br> |
|
|
|
<li>On page 223: In Example 8-4 one of the duplicate '<b class="broken">if (outer != null)</b>' lines has been removed<br><br> |
|
|
|
<li>On page 239: Example 8-15 has been changed to <br/> |
|
|
|
<xmp class="fixed"> |
|
DEPTH = ../../.. |
|
topsrcdir = ../../.. |
|
srcdir = . |
|
VPATH = . |
|
|
|
include $(DEPTH)/config/autoconf.mk |
|
|
|
MODULE = xpcom |
|
XPIDL_MODULE = simple |
|
LIBRARY_NAME = simple |
|
IS_COMPONENT = 1 |
|
MODULE_NAME = nsSimpleModule |
|
REQUIRES = string \ |
|
xpcom \ |
|
$(NULL) |
|
|
|
|
|
CPPSRCS = \ |
|
nsSimple.cpp \ |
|
nsSimpleModule.cpp \ |
|
$(NULL) |
|
|
|
XPIDLSRCS = nsISimple.idl |
|
|
|
include $(topsrcdir)/config/config.mk |
|
|
|
LIBS += \ |
|
$(XPCOM_LIBS) \ |
|
$(NSPR_LIBS) \ |
|
$(NULL) |
|
|
|
include $(topsrcdir)/config/rules.mk |
|
|
|
EXTRA_DSO_LDOPTS += $(MOZ_COMPONENT_LIBS) |
|
|
|
install:: $(TARGETS) |
|
</xmp> |
|
|
|
</ul> |
|
|
|
|
|
<a name="ch10"> |
|
<p><b>Chapter 10</b> |
|
|
|
<ul> |
|
<li>On page 297: '<b class="broken">http://www.jslib.mozdev.org</b>' has been changed |
|
to '<b class="fixed">http://jslib.mozdev.org</b>'<br><br></li> |
|
</ul> |
|
|
|
|
|
<a name="ch12"> |
|
<p><b>Chapter 12</b> |
|
|
|
<ul> |
|
|
|
<li>On page 336: In Example 12-6 |
|
|
|
<xmp class="broken"> |
|
print ` <checkbox label="%s" />' % form['op1'].value |
|
print ` <checkbox label="%s" />' % form['op2'].value |
|
print ` <checkbox label="%s" />' % form['op3'].value |
|
</xmp> |
|
|
|
has been changed to (note the difference in indentation and in using a single quote versus a backtick) |
|
|
|
<xmp class="fixed> |
|
print ' <checkbox label="%s" />' % form['op1'].value |
|
print ' <checkbox label="%s" />' % form['op2'].value |
|
print ' <checkbox label="%s" />' % form['op3'].value |
|
</xmp> |
|
|
|
<li>On page 339: A new 'Certificate Authorities and Digital |
|
Signatures' section is being written with drafts available on <a |
|
href="http://certs.mozdev.org">http://certs.mozdev.org</a><br><br> |
|
</li> |
|
|
|
</ul> |
|
|
|
|
|
<a name="appa"> |
|
<p><b>Appendix A</b> |
|
|
|
<ul> |
|
|
|
<li>On page 365: '<b class="broken">http://www.mozilla.org/source.tml</b>' has been changed to '<b |
|
class="fixed">http://www.mozilla.org/source.html</b>'<br><br> |
|
|
|
</ul> |
|
|
|
<br><br> |
|
|
|
<!-- ?php require(NOTES); ? --> |
|
<?php $post_to_list=NO; $author='reviewers@mozdev.org'; $target_page='corrections'; require(NOTES); ?> |