Errata

XML Publishing with AxKit

Errata for XML Publishing with AxKit

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Printed Page 44
last paragraph(code sample) leads to next page

- "]]>" is needless.
- "<emphasis ..>" is a format directive, not for to be printted(page 45).

Anonymous   
Printed Page 51
last paragraph(code sample)

"<![CDATA[" and "]]>" is needless

Anonymous   
Printed Page 145
Example 7-13, common_html.xsl

The first Line
<![CDATA[
should not be there.

Anonymous   
Printed Page 158
First line

get_strref should be get_dom

Anonymous   
Printed Page 182
TT example in middle of page

The output of XML.XPath cannot be placed directly into a HTML/XML document since all
entities contained within it will have been converted to their charecter forms.
Consider what would happen if the product was described 'red & shiny'.

So things like this:

[% item.findvalue('description') %]

Should probably be

[% item.findvalue('description') | html %]

The same is probably true with the DBI example on the previous page.

Anonymous