|
53 | 53 | import org.codehaus.plexus.util.FileUtils;
|
54 | 54 | import org.codehaus.plexus.util.IOUtil;
|
55 | 55 | import org.codehaus.plexus.util.StringUtils;
|
| 56 | +import org.codehaus.plexus.util.xml.pull.EntityReplacementMap; |
56 | 57 | import org.codehaus.plexus.util.xml.pull.MXParser;
|
57 | 58 | import org.codehaus.plexus.util.xml.pull.XmlPullParser;
|
58 | 59 | import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
|
@@ -99,6 +100,18 @@ public abstract class AbstractXmlParser
|
99 | 100 |
|
100 | 101 | private boolean validate = false;
|
101 | 102 |
|
| 103 | + /** |
| 104 | + * If set the parser will be loaded with all single characters |
| 105 | + * from the XHTML specification. |
| 106 | + * The entities used: |
| 107 | + * <ul> |
| 108 | + * <li>http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent</li> |
| 109 | + * <li>http://www.w3.org/TR/xhtml1/DTD/xhtml-special.ent</li> |
| 110 | + * <li>http://www.w3.org/TR/xhtml1/DTD/xhtml-symbol.ent</li> |
| 111 | + * </ul> |
| 112 | + */ |
| 113 | + private boolean addDefaultEntities = true; |
| 114 | + |
102 | 115 | /** {@inheritDoc} */
|
103 | 116 | public void parse( Reader source, Sink sink, String reference )
|
104 | 117 | throws ParseException
|
@@ -128,7 +141,9 @@ public void parse( Reader source, Sink sink, String reference )
|
128 | 141 | // 2 second parsing to process
|
129 | 142 | try
|
130 | 143 | {
|
131 |
| - XmlPullParser parser = new MXParser(); |
| 144 | + XmlPullParser parser = addDefaultEntities |
| 145 | + ? new MXParser( EntityReplacementMap.defaultEntityReplacementMap ) |
| 146 | + : new MXParser(); |
132 | 147 |
|
133 | 148 | parser.setInput( src );
|
134 | 149 |
|
@@ -578,6 +593,23 @@ public void setValidate( boolean validate )
|
578 | 593 | this.validate = validate;
|
579 | 594 | }
|
580 | 595 |
|
| 596 | + /** |
| 597 | + * @since 2.0.0-M4 |
| 598 | + */ |
| 599 | + public boolean getAddDefaultEntities() |
| 600 | + { |
| 601 | + return addDefaultEntities; |
| 602 | + } |
| 603 | + |
| 604 | + /** |
| 605 | + * @since 2.0.0-M4 |
| 606 | + */ |
| 607 | + public void setAddDefaultEntities( boolean addDefaultEntities ) |
| 608 | + { |
| 609 | + this.addDefaultEntities = addDefaultEntities; |
| 610 | + } |
| 611 | + |
| 612 | + |
581 | 613 | // ----------------------------------------------------------------------
|
582 | 614 | // Private methods
|
583 | 615 | // ----------------------------------------------------------------------
|
|
0 commit comments