[
https://jira.jboss.org/jira/browse/RF-4730?page=com.atlassian.jira.plugin...
]
Nick Belaevski resolved RF-4730.
--------------------------------
Resolution: Won't Fix
Assignee: Tsikhon Kuprevich
That is regex pattern and /* is not the correct one. Use:
<context-param>
<param-name>org.ajax4jsf.xmlparser.NONE</param-name>
<param-value>.*</param-value>
</context-param>
Disable Jtidy filter in Richfaces
---------------------------------
Key: RF-4730
URL:
https://jira.jboss.org/jira/browse/RF-4730
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.2
Reporter: Andrey Koukharenko
Assignee: Tsikhon Kuprevich
<context-param>
<param-name>org.ajax4jsf.xmlparser.ORDER</param-name>
<param-value>NONE</param-value>
</context-param>
//To set all pages to work without any parser
<context-param>
<param-name>org.ajax4jsf.xmlparser.NONE</param-name>
<param-value>/*</param-value>
</context-param>
//Some new configuration to stop parsing(the parameter could changes because it's not
in current release yet)
<context-param>
<param-name>org.ajax4jsf.xmlfilter.forcenotrf</param-name>
<param-value>false</param-value>
</context-param>
<filter>
<display-name>Ajax4jsf Filter</display-name>
<filter-name>ajax4jsf</filter-name>
<filter-class>org.ajax4jsf.Filter</filter-class>
<init-param>
<param-name>enable-cache</param-name>
<param-value>true</param-value>
</init-param>
//also disable parser that are default
<init-param>
<param-name>forceparser</param-name>
<param-value>false</param-value>
</init-param>
</filter>
Doesn't work at all. Jtidy is still running.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira