[richfaces-issues] [JBoss JIRA] Created: (RF-4730) Disable Jtidy filter in Richfaces

Andrey Koukharenko (JIRA) jira-events at lists.jboss.org
Mon Oct 27 03:46:20 EDT 2008


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


<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

        



More information about the richfaces-issues mailing list