From: Chris S. <san...@us...> - 2005-06-20 15:43:33
|
Update of /cvsroot/stack/stack-1-0/scripts/CASpool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20897/scripts/CASpool Modified Files: stackCAS.php Log Message: Major changes to the font end. Attempt 1. Index: stackCAS.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/scripts/CASpool/stackCAS.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** stackCAS.php 12 Jun 2005 16:10:00 -0000 1.4 --- stackCAS.php 20 Jun 2005 15:42:54 -0000 1.5 *************** *** 186,190 **** if ($eqpos = strpos($strin,'=',$offset)) { // Check there are ='s do { ! $gb = GrabBetween($strin,'[',']',$eqpos); $val = substr($gb[0], 1, strlen($gb[0])-2); $val = str_replace('"', '', $val); --- 186,190 ---- if ($eqpos = strpos($strin,'=',$offset)) { // Check there are ='s do { ! $gb = stack_util_grabbetween($strin,'[',']',$eqpos); $val = substr($gb[0], 1, strlen($gb[0])-2); $val = str_replace('"', '', $val); *************** *** 230,234 **** do { ! $gb = GrabBetween($uploc,'[',']',$offset); $locals[] = $this->CASParsePreparse($gb[0]); $offset=$gb[2]+1; --- 230,234 ---- do { ! $gb = stack_util_grabbetween($uploc,'[',']',$offset); $locals[] = $this->CASParsePreparse($gb[0]); $offset=$gb[2]+1; *************** *** 355,359 **** if ($eqpos = strpos($strin,'=',$offset)) { // Check there are ='s do { ! $gb = GrabBetween($strin,'[',']',$eqpos); $val = substr($gb[0], 1, strlen($gb[0])-2); $val = str_replace('"', '', $val); --- 355,359 ---- if ($eqpos = strpos($strin,'=',$offset)) { // Check there are ='s do { ! $gb = stack_util_grabbetween($strin,'[',']',$eqpos); $val = substr($gb[0], 1, strlen($gb[0])-2); $val = str_replace('"', '', $val); |