[hmath-commits] org.hmath.server main.jsp,1.3,1.4
Status: Pre-Alpha
Brought to you by:
jsurfer
|
From: Klaus H. <js...@us...> - 2004-03-20 14:45:52
|
Update of /cvsroot/hmath/org.hmath.server In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18425 Modified Files: main.jsp Log Message: misc changes Index: main.jsp =================================================================== RCS file: /cvsroot/hmath/org.hmath.server/main.jsp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** main.jsp 20 Mar 2004 10:16:02 -0000 1.3 --- main.jsp 20 Mar 2004 14:35:54 -0000 1.4 *************** *** 1,3 **** ! <%@ taglib uri="http://hartmath.org/hartmath" prefix="hm" %><hm:header /> <%-- ** Main layout template. --- 1,4 ---- ! <%@ taglib uri="http://hartmath.org/hartmath" prefix="hm" %><hm:header /><hm:browser type="xml"><?xml version='1.0' encoding='iso-8859-1'?></hm:browser><hm:browser type="css"><?xml version='1.0' encoding='iso-8859-1'?></hm:browser> ! <%-- ** Main layout template. *************** *** 13,16 **** --- 14,70 ---- <%@ taglib uri="http://snipsnap.com/snipsnap" prefix="s" %> + <hm:browser type="xml"> + <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN" + "http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd" [ + <!ENTITY mathml "http://www.w3.org/1998/Math/MathML"> + ]> + <html xmlns:m="http://www.w3.org/1998/Math/MathML" xmlns="http://www.w3.org/1999/xhtml" xml:lang="<c:out value='${app.configuration.locale}'/>"> + </hm:browser> + <hm:browser type="css"> + <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<c:out value='${app.configuration.locale}'/>"> + </hm:browser> + <hm:browser type="mathplayer"> + <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + <html xmlns:m="http://www.w3.org/1999/xhtml" lang="<c:out value='${app.configuration.locale}'/>" xml:lang="<c:out value='${app.configuration.locale}'/>"> + </hm:browser> + <hm:browser type="others"> + <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + <html xmlns:m="http://www.w3.org/1999/xhtml" lang="<c:out value='${app.configuration.locale}'/>" xml:lang="<c:out value='${app.configuration.locale}'/>"> + </hm:browser> + <head> + <!-- base of this document to make all links relative --> + <base href="<c:out value='${app.configuration.url}/'/>"/> + <!-- content type and generator --> + <meta http-equiv="Content-Type" content="text/html; charset=<c:out value='${app.configuration.encoding}'/>"/> + <meta http-equiv="Generator" content="SnipSnap/<c:out value="${app.configuration.version}"/>"/> + <!-- dublin core classification and geographic location information --> + <s:dublinCore snip="${snip}"/> + <s:geoUrl/> + <!-- aggregrator related info --> + <link rel="EditURI" type="application/rsd+xml" title="RSD" href="<c:out value='${app.configuration.url}/exec/rsd'/>"/> + <link rel="alternate" type="application/rss+xml" title="RSS" href="<c:out value='${app.configuration.url}/exec/rss'/>"/> + <link rel="index" href="<c:out value='${app.configuration.url}/space/snipsnap-index'/>"/> + <!-- icons and stylesheet --> + <link rel="shortcut icon" href="<c:out value='${app.configuration.url}/favicon.ico'/>"/> + <link rel="icon" href="<c:out value='${app.configuration.url}/favicon.ico'/>"/> + <link rel="STYLESHEET" type="text/css" href="<c:out value='${app.configuration.url}/theme/default.css'/>" /> + <link rel="STYLESHEET" type="text/css" href="<c:out value='${app.configuration.url}/theme/print.css'/>" media="print" /> + <hm:browser type="css"> + <link rel="STYLESHEET" type="text/css" href="static/math.css" /> + </hm:browser> + <!-- title of this document --> + <title><c:out value="${app.configuration.name}" default="SnipSnap"/> :: <c:out value="${snip.name}"/></title> + <hm:browser type="mathplayer"> + <object id="showEqn" classid="clsid:32F66A20-7614-11D4-BD11-00104BD3F987"> + <!--comment required to prevent this becoming an empty tag--> + </object> + <?import NAMESPACE="M" IMPLEMENTATION="#showEqn"?> + </hm:browser> + </head> + <body> <div id="page-logo"> |