Update of /cvsroot/stack/stack-1-0/html
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22101/html
Modified Files:
mathml_prehead.html pagehead.php
Log Message:
Lots of small changes - switching simplification off finally. Changes to help MathML, add the multiplication sign option.
Index: pagehead.php
===================================================================
RCS file: /cvsroot/stack/stack-1-0/html/pagehead.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** pagehead.php 11 Oct 2005 09:57:44 -0000 1.14
--- pagehead.php 17 Nov 2005 21:54:19 -0000 1.15
***************
*** 28,32 ****
<tr align="left" valign="top">
<td align="left"><h1>STACK</h1>
! <font size='+2'>S</font><em>ystem for </em><font size='+2'>T</font><em>eaching and </em><font size='+2'>A</font><em>ssessment using a </em><font size='+2'>C</font><em>omputer algebra </em><font size='+2'>K</font><em>ernel</em></em></td>
<td align="right">
<?php
--- 28,32 ----
<tr align="left" valign="top">
<td align="left"><h1>STACK</h1>
! <font size='+2'>S</font><em>ystem for </em><font size='+2'>T</font><em>eaching and </em><font size='+2'>A</font><em>ssessment using a </em><font size='+2'>C</font><em>omputer algebra </em><font size='+2'>K</font><em>ernel</em></td>
<td align="right">
<?php
***************
*** 34,40 ****
if (isset($user['loggedin']) && ($user['loggedin'])) {
$a = $user['username'];
! echo '<p>'.get_string('FE_pagehead_loggedin','stack',$a).'</p>';
} else {
! echo '<p>'.get_string('FE_pagehead_notloggedin','stack','').'</p>';
}
echo "</font>\n";
--- 34,40 ----
if (isset($user['loggedin']) && ($user['loggedin'])) {
$a = $user['username'];
! echo get_string('FE_pagehead_loggedin','stack',$a).'<br />';
} else {
! echo get_string('FE_pagehead_notloggedin','stack','');
}
echo "</font>\n";
Index: mathml_prehead.html
===================================================================
RCS file: /cvsroot/stack/stack-1-0/html/mathml_prehead.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** mathml_prehead.html 4 Apr 2005 17:28:04 -0000 1.2
--- mathml_prehead.html 17 Nov 2005 21:54:19 -0000 1.3
***************
*** 1,4 ****
! <?xml version="1.0" ?>
! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN"
! "http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
--- 1,18 ----
! <?xml-stylesheet type="text/xsl" href="mathml/mathml.xsl"?>
! <!--
! pref:renderer="techexplorer-plugin"
! pref:renderer="techexplorer"
! pref:renderer="mathplayer"
! pref:renderer="css"
! pref:renderer="mathplayer-dl"
! -->
!
<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html" />
+ <title><?php echo $title ?></title>
+ <link rel="shortcut icon" href="pics/logo_sm.gif" />
+ </head>
+ <style type="text/css">
+ @import url(html/stack.css);
+ </style>
|