Package inexp.mathml

Source Code of inexp.mathml.MathMLLoadApp

package inexp.mathml;

import org.itsnat.core.http.ItsNatHttpServlet;
import org.itsnat.core.tmpl.ItsNatDocumentTemplate;

/**
*
* @author jmarranz
*/
public class MathMLLoadApp
{
    public static void init(ItsNatHttpServlet itsNatServlet,String pathPrefix)
    {
        pathPrefix = pathPrefix + "mathml/pages/";

        // http://webkit.org/demos/mathml/MathMLDemo.xhtml
        ItsNatDocumentTemplate docTemplate;
        docTemplate = itsNatServlet.registerItsNatDocumentTemplate("mathml","text/html", pathPrefix + "mathml.xhtml");
        docTemplate.setEventsEnabled(false);
    }
}
TOP

Related Classes of inexp.mathml.MathMLLoadApp

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.