You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(23) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(107) |
Feb
(48) |
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2003 |
Jan
|
Feb
|
Mar
|
Apr
(8) |
May
|
Jun
(29) |
Jul
(14) |
Aug
(9) |
Sep
(34) |
Oct
(14) |
Nov
(6) |
Dec
(18) |
2004 |
Jan
|
Feb
(4) |
Mar
(12) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
(43) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(10) |
2007 |
Jan
(1) |
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Scott M. <sm...@us...> - 2002-02-15 20:06:15
|
Update of /cvsroot/tavi/tavi In directory usw-pr-cvs1:/tmp/cvs-serv13714 Modified Files: Tag: release-v0_21-bugfix-branch ChangeLog.txt Log Message: Fixup configure.pl Index: ChangeLog.txt =================================================================== RCS file: /cvsroot/tavi/tavi/ChangeLog.txt,v retrieving revision 1.5.2.7 retrieving revision 1.5.2.8 diff -u -d -r1.5.2.7 -r1.5.2.8 --- ChangeLog.txt 15 Feb 2002 19:30:37 -0000 1.5.2.7 +++ ChangeLog.txt 15 Feb 2002 20:06:09 -0000 1.5.2.8 @@ -11,6 +11,8 @@ * Allow URLs to end in an underscore (_). * Relaxed rules for characters permitted in free-link page names. * Relaxed rules for characters allowed in page anchors. + * Fixed problems in configure.pl related to quotes in strings and files + in DOS format. 2002-02-14 Scott Moonen <sm...@an...> |
From: Scott M. <sm...@us...> - 2002-02-15 19:30:41
|
Update of /cvsroot/tavi/tavi/parse In directory usw-pr-cvs1:/tmp/cvs-serv3825/parse Modified Files: Tag: release-v0_21-bugfix-branch macros.php transforms.php Log Message: Relax rules for characters allowed in anchors. Index: macros.php =================================================================== RCS file: /cvsroot/tavi/tavi/parse/macros.php,v retrieving revision 1.9.2.1 retrieving revision 1.9.2.2 diff -u -d -r1.9.2.1 -r1.9.2.2 --- macros.php 14 Feb 2002 20:11:24 -0000 1.9.2.1 +++ macros.php 15 Feb 2002 19:30:37 -0000 1.9.2.2 @@ -236,7 +236,7 @@ // This macro inserts an HTML anchor into the text. function view_macro_anchor($args) { - preg_match('/([-A-Za-z0-9]*)/', $args, $result); + preg_match('/^([A-Za-z][-A-Za-z0-9_:.]*)$/', $args, $result); if($result[1] != '') { return html_anchor($result[1]); } Index: transforms.php =================================================================== RCS file: /cvsroot/tavi/tavi/parse/transforms.php,v retrieving revision 1.24.2.4 retrieving revision 1.24.2.5 diff -u -d -r1.24.2.4 -r1.24.2.5 --- transforms.php 15 Feb 2002 19:14:15 -0000 1.24.2.4 +++ transforms.php 15 Feb 2002 19:30:37 -0000 1.24.2.5 @@ -59,7 +59,7 @@ if($validate) { $ptn = "/(^|[^A-Za-z])($LinkPtn)(())(\"\")?/e"; } else - { $ptn = "/(^|[^A-Za-z])(!?$LinkPtn)((\#[-A-Za-z0-9]+)?)(\"\")?/e"; } + { $ptn = "/(^|[^A-Za-z])(!?$LinkPtn)((\#[A-Za-z]([-A-Za-z0-9_:.]*[-A-Za-z0-9_])?)?)(\"\")?/e"; } return preg_replace($ptn, "q1('\\1').wikiname_token(q1('\\2'),'\\4')", @@ -85,7 +85,7 @@ } else { - $ptn = "/\\(\\(([-A-Za-z0-9 _+\\/.,;:!?'\"&\xc0-\xff]+)(\|[-A-Za-z0-9 _+\\/.,;:!?'\"&\xc0-\xff]+)?(\#[-A-Za-z0-9]+)?()\\)\\)/e"; + $ptn = "/\\(\\(([-A-Za-z0-9 _+\\/.,;:!?'\"&\xc0-\xff]+)(\|[-A-Za-z0-9 _+\\/.,;:!?'\"&\xc0-\xff]+)?(\#[A-Za-z][-A-Za-z0-9_:.]*)?()\\)\\)/e"; } return preg_replace($ptn, |
From: Scott M. <sm...@us...> - 2002-02-15 19:30:41
|
Update of /cvsroot/tavi/tavi In directory usw-pr-cvs1:/tmp/cvs-serv3825 Modified Files: Tag: release-v0_21-bugfix-branch ChangeLog.txt Log Message: Relax rules for characters allowed in anchors. Index: ChangeLog.txt =================================================================== RCS file: /cvsroot/tavi/tavi/ChangeLog.txt,v retrieving revision 1.5.2.6 retrieving revision 1.5.2.7 diff -u -d -r1.5.2.6 -r1.5.2.7 --- ChangeLog.txt 15 Feb 2002 18:39:21 -0000 1.5.2.6 +++ ChangeLog.txt 15 Feb 2002 19:30:37 -0000 1.5.2.7 @@ -9,6 +9,8 @@ variable error_reporting is cranked up to 8. All of the immediately evident at-fault code has been fixed. * Allow URLs to end in an underscore (_). + * Relaxed rules for characters permitted in free-link page names. + * Relaxed rules for characters allowed in page anchors. 2002-02-14 Scott Moonen <sm...@an...> |
From: Scott M. <sm...@us...> - 2002-02-15 19:14:19
|
Update of /cvsroot/tavi/tavi/parse In directory usw-pr-cvs1:/tmp/cvs-serv32525/parse Modified Files: Tag: release-v0_21-bugfix-branch transforms.php Log Message: Relax rules for free link page names Index: transforms.php =================================================================== RCS file: /cvsroot/tavi/tavi/parse/transforms.php,v retrieving revision 1.24.2.3 retrieving revision 1.24.2.4 diff -u -d -r1.24.2.3 -r1.24.2.4 --- transforms.php 15 Feb 2002 16:41:03 -0000 1.24.2.3 +++ transforms.php 15 Feb 2002 19:14:15 -0000 1.24.2.4 @@ -81,11 +81,11 @@ if($validate) { - $ptn = "/\\(\\(([-A-Za-z0-9 _+\\/.,']+)()()\\)\\)/e"; + $ptn = "/\\(\\(([-A-Za-z0-9 _+\\/.,;:!?'\"&\xc0-\xff]+)()()\\)\\)/e"; } else { - $ptn = "/\\(\\(([-A-Za-z0-9 _+\\/.,']+)(\|[-A-Za-z0-9 _+\\/.,']+)?(\#[-A-Za-z0-9]+)?()\\)\\)/e"; + $ptn = "/\\(\\(([-A-Za-z0-9 _+\\/.,;:!?'\"&\xc0-\xff]+)(\|[-A-Za-z0-9 _+\\/.,;:!?'\"&\xc0-\xff]+)?(\#[-A-Za-z0-9]+)?()\\)\\)/e"; } return preg_replace($ptn, |
From: Scott M. <sm...@us...> - 2002-02-15 18:39:24
|
Update of /cvsroot/tavi/tavi/lib In directory usw-pr-cvs1:/tmp/cvs-serv23562/lib Modified Files: Tag: release-v0_21-bugfix-branch defaults.php Log Message: Allow URLs to end in an underscore (_). Index: defaults.php =================================================================== RCS file: /cvsroot/tavi/tavi/lib/defaults.php,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -u -d -r1.4 -r1.4.2.1 --- defaults.php 10 Jan 2002 17:56:19 -0000 1.4 +++ defaults.php 15 Feb 2002 18:39:21 -0000 1.4.2.1 @@ -27,7 +27,7 @@ // Note that changing this requires a change to parse/transforms.php so // that parse_hyperlinkxxx know how many parentheses are included in $UrlPtn. $UrlPtn = "(http:|mailto:|https:|ftp:|gopher:|news:)" . - "([^ \\/\"\']*\\/)*[^ \\t\\n\\/\"\']*[A-Za-z0-9\\/?=&~]"; + "([^ \\/\"\']*\\/)*[^ \\t\\n\\/\"\']*[A-Za-z0-9\\/?=&~_]"; // $InterWikiPtn establishes the format for InterWiki links in this wiki. // Note that changing this requires a change to parse/transforms.php so |
From: Scott M. <sm...@us...> - 2002-02-15 18:39:24
|
Update of /cvsroot/tavi/tavi In directory usw-pr-cvs1:/tmp/cvs-serv23562 Modified Files: Tag: release-v0_21-bugfix-branch ChangeLog.txt Log Message: Allow URLs to end in an underscore (_). Index: ChangeLog.txt =================================================================== RCS file: /cvsroot/tavi/tavi/ChangeLog.txt,v retrieving revision 1.5.2.5 retrieving revision 1.5.2.6 diff -u -d -r1.5.2.5 -r1.5.2.6 --- ChangeLog.txt 15 Feb 2002 16:34:29 -0000 1.5.2.5 +++ ChangeLog.txt 15 Feb 2002 18:39:21 -0000 1.5.2.6 @@ -8,6 +8,7 @@ * Modified code so as to avoid generating warnings when PHP config variable error_reporting is cranked up to 8. All of the immediately evident at-fault code has been fixed. + * Allow URLs to end in an underscore (_). 2002-02-14 Scott Moonen <sm...@an...> |
From: Scott M. <sm...@us...> - 2002-02-15 16:41:08
|
Update of /cvsroot/tavi/tavi/parse In directory usw-pr-cvs1:/tmp/cvs-serv24378/parse Modified Files: Tag: release-v0_21-bugfix-branch transforms.php Log Message: Grammar. Index: transforms.php =================================================================== RCS file: /cvsroot/tavi/tavi/parse/transforms.php,v retrieving revision 1.24.2.2 retrieving revision 1.24.2.3 diff -u -d -r1.24.2.2 -r1.24.2.3 --- transforms.php 15 Feb 2002 16:34:29 -0000 1.24.2.2 +++ transforms.php 15 Feb 2002 16:41:03 -0000 1.24.2.3 @@ -382,7 +382,7 @@ if($i >= $last_len) { break; } - // If last line goes further than us, end it's dangling lists. + // If last line goes further than us, end its dangling lists. if($i >= $prefix_len // Current line ended. || $last_prefix[$i] != $result[1][$i]) // Or not, but they differ. { |
Update of /cvsroot/tavi/tavi/template In directory usw-pr-cvs1:/tmp/cvs-serv22395/template Modified Files: Tag: release-v0_21-bugfix-branch admin.php conflict.php diff.php edit.php find.php history.php prefs.php preview.php view.php Log Message: Fix warnings generated when PHP error_reporting set to 8. Index: admin.php =================================================================== RCS file: /cvsroot/tavi/tavi/template/admin.php,v retrieving revision 1.10 retrieving revision 1.10.2.1 diff -u -d -r1.10 -r1.10.2.1 --- admin.php 10 Jan 2002 01:31:04 -0000 1.10 +++ admin.php 15 Feb 2002 16:34:29 -0000 1.10.2.1 @@ -22,6 +22,11 @@ <?php print $args['html']; ?> </div> <?php - template_common_epilogue(array('nosearch' => 1)); + template_common_epilogue(array('twin' => '', + 'edit' => '', + 'editver' => 0, + 'history' => '', + 'timestamp' => '', + 'nosearch' => 1)); } ?> Index: conflict.php =================================================================== RCS file: /cvsroot/tavi/tavi/template/conflict.php,v retrieving revision 1.9 retrieving revision 1.9.2.1 diff -u -d -r1.9 -r1.9.2.1 --- conflict.php 10 Jan 2002 01:31:04 -0000 1.9 +++ conflict.php 15 Feb 2002 16:34:29 -0000 1.9.2.1 @@ -75,6 +75,7 @@ 'edit' => '', 'editver' => 0, 'history' => $args['page'], - 'timestamp' => $args['timestamp'])); + 'timestamp' => $args['timestamp'], + 'nosearch' => 0)); } ?> Index: diff.php =================================================================== RCS file: /cvsroot/tavi/tavi/template/diff.php,v retrieving revision 1.10 retrieving revision 1.10.2.1 diff -u -d -r1.10 -r1.10.2.1 --- diff.php 10 Jan 2002 01:31:04 -0000 1.10 +++ diff.php 15 Feb 2002 16:34:29 -0000 1.10.2.1 @@ -32,6 +32,7 @@ 'edit' => $args['page'], 'editver' => $args['editable'] ? 0 : -1, 'history' => $args['page'], - 'timestamp' => $args['timestamp'])); + 'timestamp' => $args['timestamp'], + 'nosearch' => 0)); } ?> Index: edit.php =================================================================== RCS file: /cvsroot/tavi/tavi/template/edit.php,v retrieving revision 1.9 retrieving revision 1.9.2.1 diff -u -d -r1.9 -r1.9.2.1 --- edit.php 10 Jan 2002 01:31:04 -0000 1.9 +++ edit.php 15 Feb 2002 16:34:29 -0000 1.9.2.1 @@ -60,6 +60,7 @@ 'edit' => '', 'editver' => '', 'history' => $args['page'], - 'timestamp' => $args['timestamp'])); + 'timestamp' => $args['timestamp'], + 'nosearch' => 0)); } ?> Index: find.php =================================================================== RCS file: /cvsroot/tavi/tavi/template/find.php,v retrieving revision 1.10 retrieving revision 1.10.2.1 diff -u -d -r1.10 -r1.10.2.1 --- find.php 10 Jan 2002 01:31:04 -0000 1.10 +++ find.php 15 Feb 2002 16:34:29 -0000 1.10.2.1 @@ -27,6 +27,7 @@ 'edit' => '', 'editver' => 0, 'history' => '', - 'timestamp' => '')); + 'timestamp' => '', + 'nosearch' => 0)); } ?> Index: history.php =================================================================== RCS file: /cvsroot/tavi/tavi/template/history.php,v retrieving revision 1.11 retrieving revision 1.11.2.1 diff -u -d -r1.11 -r1.11.2.1 --- history.php 10 Jan 2002 01:31:04 -0000 1.11 +++ history.php 15 Feb 2002 16:34:29 -0000 1.11.2.1 @@ -49,6 +49,7 @@ 'edit' => '', 'editver' => 0, 'history' => '', - 'timestamp' => '')); + 'timestamp' => '', + 'nosearch' => 0)); } ?> Index: prefs.php =================================================================== RCS file: /cvsroot/tavi/tavi/template/prefs.php,v retrieving revision 1.11 retrieving revision 1.11.2.1 diff -u -d -r1.11 -r1.11.2.1 --- prefs.php 10 Jan 2002 01:31:04 -0000 1.11 +++ prefs.php 15 Feb 2002 16:34:29 -0000 1.11.2.1 @@ -73,6 +73,11 @@ </form> </div> <?php - template_common_epilogue(array('nosearch' => 1)); + template_common_epilogue(array('twin' => '', + 'edit' => '', + 'editver' => 0, + 'history' => '', + 'timestamp' => '', + 'nosearch' => 1)); } ?> Index: preview.php =================================================================== RCS file: /cvsroot/tavi/tavi/template/preview.php,v retrieving revision 1.9 retrieving revision 1.9.2.1 diff -u -d -r1.9 -r1.9.2.1 --- preview.php 10 Jan 2002 01:31:04 -0000 1.9 +++ preview.php 15 Feb 2002 16:34:29 -0000 1.9.2.1 @@ -66,6 +66,7 @@ 'edit' => '', 'editver' => 0, 'history' => $args['page'], - 'timestamp' => $args['timestamp'])); + 'timestamp' => $args['timestamp'], + 'nosearch' => 0)); } ?> Index: view.php =================================================================== RCS file: /cvsroot/tavi/tavi/template/view.php,v retrieving revision 1.9 retrieving revision 1.9.2.1 diff -u -d -r1.9 -r1.9.2.1 --- view.php 10 Jan 2002 01:31:04 -0000 1.9 +++ view.php 15 Feb 2002 16:34:29 -0000 1.9.2.1 @@ -36,6 +36,7 @@ : ($args['archive'] ? $args['version'] : 0), 'history' => $args['page'], - 'timestamp' => $args['timestamp'])); + 'timestamp' => $args['timestamp'], + 'nosearch' => 0)); } ?> |
From: Scott M. <sm...@us...> - 2002-02-15 16:34:33
|
Update of /cvsroot/tavi/tavi/lib In directory usw-pr-cvs1:/tmp/cvs-serv22395/lib Modified Files: Tag: release-v0_21-bugfix-branch main.php Log Message: Fix warnings generated when PHP error_reporting set to 8. Index: main.php =================================================================== RCS file: /cvsroot/tavi/tavi/lib/main.php,v retrieving revision 1.2.2.1 retrieving revision 1.2.2.2 diff -u -d -r1.2.2.1 -r1.2.2.2 --- main.php 14 Feb 2002 20:58:05 -0000 1.2.2.1 +++ main.php 15 Feb 2002 16:34:29 -0000 1.2.2.2 @@ -1,41 +1,67 @@ <?php // $Id$ -// If register_globals is off, we need to harvest the script parameters -// at this point. +// Harvest script parameters and other variables. We do this even if +// register_globals=on; this way, we force the variables to be defined. +// (Which is better form in case the admin has warnings cranked all the +// way up). -if(!ini_get('register_globals')) -{ - $HTTP_REFERER = $HTTP_SERVER_VARS['HTTP_REFERER']; - $QUERY_STRING = $HTTP_SERVER_VARS['QUERY_STRING']; - $REMOTE_ADDR = $HTTP_SERVER_VARS['REMOTE_ADDR']; +$HTTP_REFERER = isset($HTTP_SERVER_VARS['HTTP_REFERER']) + ? $HTTP_SERVER_VARS['HTTP_REFERER'] : ''; +$QUERY_STRING = isset($HTTP_SERVER_VARS['QUERY_STRING']) + ? $HTTP_SERVER_VARS['QUERY_STRING'] : ''; +$REMOTE_ADDR = isset($HTTP_SERVER_VARS['REMOTE_ADDR']) + ? $HTTP_SERVER_VARS['REMOTE_ADDR'] : ''; - $action = $HTTP_GET_VARS['action']; - $page = $HTTP_GET_VARS['page']; - $ver1 = $HTTP_GET_VARS['ver1']; - $ver2 = $HTTP_GET_VARS['ver2']; - $find = $HTTP_GET_VARS['find']; - $version = $HTTP_GET_VARS['version']; - $full = $HTTP_GET_VARS['full']; +$action = isset($HTTP_GET_VARS['action']) + ? $HTTP_GET_VARS['action'] : ''; +$page = isset($HTTP_GET_VARS['page']) + ? $HTTP_GET_VARS['page'] : ''; +$ver1 = isset($HTTP_GET_VARS['ver1']) + ? $HTTP_GET_VARS['ver1'] : ''; +$ver2 = isset($HTTP_GET_VARS['ver2']) + ? $HTTP_GET_VARS['ver2'] : ''; +$find = isset($HTTP_GET_VARS['find']) + ? $HTTP_GET_VARS['find'] : ''; +$version = isset($HTTP_GET_VARS['version']) + ? $HTTP_GET_VARS['version'] : ''; +$full = isset($HTTP_GET_VARS['full']) + ? $HTTP_GET_VARS['full'] : ''; - $Preview = $HTTP_POST_VARS['Preview']; - $Save = $HTTP_POST_VARS['Save']; - $archive = $HTTP_POST_VARS['archive']; - $auth = $HTTP_POST_VARS['auth']; - $categories = $HTTP_POST_VARS['categories']; - $cols = $HTTP_POST_VARS['cols']; - $comment = $HTTP_POST_VARS['comment']; - $days = $HTTP_POST_VARS['days']; - $discard = $HTTP_POST_VARS['discard']; - $document = $HTTP_POST_VARS['document']; - $hist = $HTTP_POST_VARS['hist']; - $min = $HTTP_POST_VARS['min']; - $nextver = $HTTP_POST_VARS['nextver']; - $rows = $HTTP_POST_VARS['rows']; - $tzoff = $HTTP_POST_VARS['tzoff']; - $user = $HTTP_POST_VARS['user']; - $referrer = $HTTP_POST_VARS['referrer']; -} +$Preview = isset($HTTP_POST_VARS['Preview']) + ? $HTTP_POST_VARS['Preview'] : ''; +$Save = isset($HTTP_POST_VARS['Save']) + ? $HTTP_POST_VARS['Save'] : ''; +$archive = isset($HTTP_POST_VARS['archive']) + ? $HTTP_POST_VARS['archive'] : ''; +$auth = isset($HTTP_POST_VARS['auth']) + ? $HTTP_POST_VARS['auth'] : ''; +$categories = isset($HTTP_POST_VARS['categories']) + ? $HTTP_POST_VARS['categories'] : ''; +$cols = isset($HTTP_POST_VARS['cols']) + ? $HTTP_POST_VARS['cols'] : ''; +$comment = isset($HTTP_POST_VARS['comment']) + ? $HTTP_POST_VARS['comment'] : ''; +$days = isset($HTTP_POST_VARS['days']) + ? $HTTP_POST_VARS['days'] : ''; +$discard = isset($HTTP_POST_VARS['discard']) + ? $HTTP_POST_VARS['discard'] : ''; +$document = isset($HTTP_POST_VARS['document']) + ? $HTTP_POST_VARS['document'] : ''; +$hist = isset($HTTP_POST_VARS['hist']) + ? $HTTP_POST_VARS['hist'] : ''; +$min = isset($HTTP_POST_VARS['min']) + ? $HTTP_POST_VARS['min'] : ''; +$nextver = isset($HTTP_POST_VARS['nextver']) + ? $HTTP_POST_VARS['nextver'] : ''; +$rows = isset($HTTP_POST_VARS['rows']) + ? $HTTP_POST_VARS['rows'] : ''; +$tzoff = isset($HTTP_POST_VARS['tzoff']) + ? $HTTP_POST_VARS['tzoff'] : ''; +$user = isset($HTTP_POST_VARS['user']) + ? $HTTP_POST_VARS['user'] : ''; +$referrer = isset($HTTP_POST_VARS['referrer']) + ? $HTTP_POST_VARS['referrer'] : ''; require('lib/init.php'); require('parse/transforms.php'); |
From: Scott M. <sm...@us...> - 2002-02-15 16:34:33
|
Update of /cvsroot/tavi/tavi/parse In directory usw-pr-cvs1:/tmp/cvs-serv22395/parse Modified Files: Tag: release-v0_21-bugfix-branch transforms.php Log Message: Fix warnings generated when PHP error_reporting set to 8. Index: transforms.php =================================================================== RCS file: /cvsroot/tavi/tavi/parse/transforms.php,v retrieving revision 1.24.2.1 retrieving revision 1.24.2.2 diff -u -d -r1.24.2.1 -r1.24.2.2 --- transforms.php 14 Feb 2002 18:17:42 -0000 1.24.2.1 +++ transforms.php 15 Feb 2002 16:34:29 -0000 1.24.2.2 @@ -355,6 +355,11 @@ if($steal == '' && $last_prefix == '' && $result[1] == '') { return $text; } // Common case fast. +// Remember lengths of strings. + + $last_len = strlen($last_prefix); + $prefix_len = strlen($result[1]); + if($steal == '') // Not slurping up line. { $text = $result[4]; @@ -365,19 +370,23 @@ // previous line. for($i = 0; - $i < $MaxNesting && ($last_prefix[$i] != '' || $result[1][$i] != ''); + $i < $MaxNesting && ($i < $last_len || $i < $prefix_len); $i++) { - if($last_prefix[$i] == $result[1][$i]) + // If equal, continue. + if($i < $last_len && $i < $prefix_len // Neither past end. + && $last_prefix[$i] == $result[1][$i]) // Equal content. { continue; } - if($last_prefix[$i] == '') + + // If we've gone deeper than the previous line, we're done. + if($i >= $last_len) { break; } - if($last_prefix[$i] != $result[1][$i]) - { -// Uh-oh. We're different. End any dangling lists from the previous -// line. - for($j = $i; $j < $MaxNesting && $last_prefix[$j] != ''; $j++) + // If last line goes further than us, end it's dangling lists. + if($i >= $prefix_len // Current line ended. + || $last_prefix[$i] != $result[1][$i]) // Or not, but they differ. + { + for($j = $i; $j < $MaxNesting && $j < $last_len; $j++) { $fixup = entity_listitem($last_prefix[$j], 'end') . entity_list($last_prefix[$j], 'end') @@ -390,7 +399,7 @@ // End the preceding line's list item if we're starting another one // at the same level. - if($i > 0 && $result[1][$i] == '') + if($i > 0 && $i >= $prefix_len) { $fixup = $fixup . entity_listitem($last_prefix[$i - 1], 'end'); } // Start fresh new lists for this line as needed. @@ -398,14 +407,14 @@ // instead of what they really may appear as, since their function is // really just to indent. - for(; $i < $MaxNesting - 1 && $result[1][$i + 1] != ''; $i++) + for(; $i < $MaxNesting - 1 && $i + 1 < $prefix_len; $i++) { $result[1][$i] = ':'; // Pretend to be an indent. $fixup = $fixup . entity_list(':', 'start') . entity_listitem(':', 'start'); } - if($result[1][$i] != '') + if($i < $prefix_len) // Start the list itself. { $fixup = $fixup . entity_list($result[1][$i], 'start'); @@ -507,11 +516,19 @@ { global $Entity, $DisplayEngine; - return $DisplayEngine[$Entity[$text][0]]($Entity[$text][1], - $Entity[$text][2], - $Entity[$text][3], - $Entity[$text][4], - $Entity[$text][5]); + if(function_exists('call_user_func_array')) + { + return call_user_func_array($DisplayEngine[$Entity[$text][0]], + array_slice($Entity[$text], 1)); + } + else + { + return $DisplayEngine[$Entity[$text][0]]($Entity[$text][1], + $Entity[$text][2], + $Entity[$text][3], + $Entity[$text][4], + $Entity[$text][5]); + } } function parse_diff_skip($text) @@ -528,8 +545,13 @@ static $in_old = 0; static $in_new = 0; - $this_old = ($text[0] == '<'); - $this_new = ($text[0] == '>'); + if(strlen($text) == 0) + { $this_old = $this_new = 0; } + else + { + $this_old = ($text[0] == '<'); + $this_new = ($text[0] == '>'); + } if($this_old || $this_new) { $text = substr($text, 2); } |
From: Scott M. <sm...@us...> - 2002-02-15 16:34:33
|
Update of /cvsroot/tavi/tavi In directory usw-pr-cvs1:/tmp/cvs-serv22395 Modified Files: Tag: release-v0_21-bugfix-branch ChangeLog.txt Log Message: Fix warnings generated when PHP error_reporting set to 8. Index: ChangeLog.txt =================================================================== RCS file: /cvsroot/tavi/tavi/ChangeLog.txt,v retrieving revision 1.5.2.4 retrieving revision 1.5.2.5 diff -u -d -r1.5.2.4 -r1.5.2.5 --- ChangeLog.txt 14 Feb 2002 20:58:05 -0000 1.5.2.4 +++ ChangeLog.txt 15 Feb 2002 16:34:29 -0000 1.5.2.5 @@ -3,6 +3,12 @@ WikkiTikkiTavi - ChangeLog -------------------------- +2002-02-15 Scott Moonen <sm...@an...> + + * Modified code so as to avoid generating warnings when PHP config + variable error_reporting is cranked up to 8. All of the immediately + evident at-fault code has been fixed. + 2002-02-14 Scott Moonen <sm...@an...> * Work around regex bug in PHP 4.03 that causes freelinks to render |
From: Scott M. <sm...@us...> - 2002-02-14 20:58:13
|
Update of /cvsroot/tavi/tavi In directory usw-pr-cvs1:/tmp/cvs-serv20821 Modified Files: Tag: release-v0_21-bugfix-branch ChangeLog.txt Log Message: Fix bug causing Mozilla to show a blank page when saving preferences. Index: ChangeLog.txt =================================================================== RCS file: /cvsroot/tavi/tavi/ChangeLog.txt,v retrieving revision 1.5.2.3 retrieving revision 1.5.2.4 diff -u -d -r1.5.2.3 -r1.5.2.4 --- ChangeLog.txt 14 Feb 2002 20:11:56 -0000 1.5.2.3 +++ ChangeLog.txt 14 Feb 2002 20:58:05 -0000 1.5.2.4 @@ -11,6 +11,8 @@ would generate bad SQL, thereby aborting the engine. * Fixed a bug in the code that maintains the link database that caused it to double-count some links. + * Fixed bug that caused Mozilla to show a blank page when saving + preferences. 2002-01-14 Scott Moonen <sm...@an...> |
From: Scott M. <sm...@us...> - 2002-02-14 20:58:13
|
Update of /cvsroot/tavi/tavi/lib In directory usw-pr-cvs1:/tmp/cvs-serv20821/lib Modified Files: Tag: release-v0_21-bugfix-branch main.php Log Message: Fix bug causing Mozilla to show a blank page when saving preferences. Index: main.php =================================================================== RCS file: /cvsroot/tavi/tavi/lib/main.php,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -u -d -r1.2 -r1.2.2.1 --- main.php 8 Jan 2002 17:31:01 -0000 1.2 +++ main.php 14 Feb 2002 20:58:05 -0000 1.2.2.1 @@ -34,6 +34,7 @@ $rows = $HTTP_POST_VARS['rows']; $tzoff = $HTTP_POST_VARS['tzoff']; $user = $HTTP_POST_VARS['user']; + $referrer = $HTTP_POST_VARS['referrer']; } require('lib/init.php'); |
From: Scott M. <sm...@us...> - 2002-02-14 20:12:00
|
Update of /cvsroot/tavi/tavi In directory usw-pr-cvs1:/tmp/cvs-serv9026 Modified Files: Tag: release-v0_21-bugfix-branch ChangeLog.txt Log Message: Wording Index: ChangeLog.txt =================================================================== RCS file: /cvsroot/tavi/tavi/ChangeLog.txt,v retrieving revision 1.5.2.2 retrieving revision 1.5.2.3 diff -u -d -r1.5.2.2 -r1.5.2.3 --- ChangeLog.txt 14 Feb 2002 20:11:23 -0000 1.5.2.2 +++ ChangeLog.txt 14 Feb 2002 20:11:56 -0000 1.5.2.3 @@ -9,8 +9,8 @@ improperly. * Fixed numerous bugs wherein pages with a single quote in their names would generate bad SQL, thereby aborting the engine. - * Fixed a bug in the link generation code that caused it to double-count - some links. + * Fixed a bug in the code that maintains the link database that caused + it to double-count some links. 2002-01-14 Scott Moonen <sm...@an...> |
From: Scott M. <sm...@us...> - 2002-02-14 20:11:29
|
Update of /cvsroot/tavi/tavi/action In directory usw-pr-cvs1:/tmp/cvs-serv8730/action Modified Files: Tag: release-v0_21-bugfix-branch save.php Log Message: Fix various bugs due to single quotes in page names. Fix a bug in code that maintains link database; some links were improperly double-counted. Index: save.php =================================================================== RCS file: /cvsroot/tavi/tavi/action/save.php,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -u -d -r1.7 -r1.7.2.1 --- save.php 7 Jan 2002 16:28:32 -0000 1.7 +++ save.php 14 Feb 2002 20:11:23 -0000 1.7.2.1 @@ -41,15 +41,15 @@ // Silently trim string to $MaxPostLen chars. $document = substr($document, 0, $MaxPostLen); - - $document = str_replace("\\", "\\\\", $document); - $document = str_replace("'", "\\'", $document); $document = str_replace("\r", "", $document); + $esc_doc = str_replace("\\", "\\\\", $document); + $esc_doc = str_replace("'", "\\'", $esc_doc); + $comment = str_replace("\\", "\\\\", $comment); $comment = str_replace("'", "\\'", $comment); - $pg->text = $document; + $pg->text = $esc_doc; $pg->hostname = gethostbyaddr($REMOTE_ADDR); $pg->username = $UserName; $pg->comment = $comment; |
From: Scott M. <sm...@us...> - 2002-02-14 20:11:28
|
Update of /cvsroot/tavi/tavi/lib In directory usw-pr-cvs1:/tmp/cvs-serv8730/lib Modified Files: Tag: release-v0_21-bugfix-branch pagestore.php Log Message: Fix various bugs due to single quotes in page names. Fix a bug in code that maintains link database; some links were improperly double-counted. Index: pagestore.php =================================================================== RCS file: /cvsroot/tavi/tavi/lib/pagestore.php,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -u -d -r1.4 -r1.4.2.1 --- pagestore.php 14 Dec 2001 20:48:08 -0000 1.4 +++ pagestore.php 14 Feb 2002 20:11:24 -0000 1.4.2.1 @@ -34,8 +34,9 @@ $list = array(); while(($result = $this->dbh->result($qid))) { + $esc_page = addslashes($result[0]); $q2 = $this->dbh->query("SELECT title FROM $PgTbl " . - "WHERE title='$result[0]' " . + "WHERE title='$esc_page' " . "AND version='$result[1]' " . "AND (body LIKE '%$text%' " . "OR title LIKE '%$text%')"); @@ -52,6 +53,7 @@ { global $PgTbl; + $page = addslashes($page); $qid = $this->dbh->query("SELECT time, author, version, username, " . "comment " . "FROM $PgTbl WHERE title='$page' " . @@ -72,6 +74,7 @@ { global $IwTbl; + $name = addslashes($name); $qid = $this->dbh->query("SELECT url FROM $IwTbl WHERE prefix='$name'"); if(($result = $this->dbh->result($qid))) { return $result[0]; } @@ -83,6 +86,7 @@ { global $LkTbl; + $page = addslashes($page); $this->dbh->query("DELETE FROM $LkTbl WHERE page='$page'"); } @@ -91,6 +95,7 @@ { global $IwTbl; + $page = addslashes($page); $this->dbh->query("DELETE FROM $IwTbl WHERE where_defined='$page'"); } @@ -99,6 +104,7 @@ { global $SwTbl; + $page = addslashes($page); $this->dbh->query("DELETE FROM $SwTbl WHERE where_defined='$page'"); } @@ -112,6 +118,9 @@ global $LkTbl; static $links = array(); + $page = addslashes($page); + $link = addslashes($link); + if(empty($links[$link])) { $this->dbh->query("INSERT INTO $LkTbl VALUES('$page', '$link', 1)"); @@ -133,6 +142,8 @@ $url = str_replace("'", "\\'", $url); $url = str_replace("&", "&", $url); + $where_defined = addslashes($where_defined); + $qid = $this->dbh->query("SELECT where_defined FROM $IwTbl " . "WHERE prefix='$prefix'"); if($this->dbh->result($qid)) @@ -155,6 +166,8 @@ $url = str_replace("'", "\\'", $url); $url = str_replace("&", "&", $url); + $where_defined = addslashes($where_defined); + $qid = $this->dbh->query("SELECT where_defined FROM $SwTbl " . "WHERE prefix='$prefix'"); if($this->dbh->result($qid)) @@ -172,9 +185,10 @@ // Find all twins of a page at sisterwiki sites. function twinpages($page) { - global $RemTbl, $IwTbl; + global $RemTbl; $list = array(); + $page = addslashes($page); $q2 = $this->dbh->query("SELECT site, page FROM $RemTbl " . "WHERE page LIKE '$page'"); while(($twin = $this->dbh->result($q2))) @@ -209,10 +223,11 @@ $list = array(); while(($result = $this->dbh->result($qid))) { + $esc_page = addslashes($result[0]); $q2 = $this->dbh->query("SELECT author, time, username, LENGTH(body), " . "comment, mutable " . "FROM $PgTbl " . - "WHERE title='$result[0]' " . + "WHERE title='$esc_page' " . "AND version='$result[1]'"); $auth_res = $this->dbh->result($q2); @@ -253,9 +268,10 @@ $list = array(); while(($result = $this->dbh->result($qid))) { + $esc_page = addslashes($result[0]); $q2 = $this->dbh->query("SELECT author, time, username, comment " . "FROM $PgTbl " . - "WHERE title='$result[0]' " . + "WHERE title='$esc_page' " . "AND version='$result[1]' " . "AND body=''"); if(($auth_res = $this->dbh->result($q2))) @@ -276,8 +292,9 @@ $list = array(); foreach($names as $page) { + $esc_page = addslashes($page); $qid = $this->dbh->query("SELECT time, author, username, LENGTH(body), " . - "comment FROM $PgTbl WHERE title='$page' " . + "comment FROM $PgTbl WHERE title='$esc_page' " . "ORDER BY version DESC"); if(!($result = $this->dbh->result($qid))) @@ -300,6 +317,7 @@ while(($result = $this->dbh->result($qid))) { + $result[0] = addslashes($result[0]); $this->dbh->query("DELETE FROM $PgTbl WHERE title='$result[0]' AND " . "(version < $result[1] OR body='') AND " . "TO_DAYS(NOW()) - TO_DAYS(supercede) > $ExpireLen"); |
From: Scott M. <sm...@us...> - 2002-02-14 20:11:28
|
Update of /cvsroot/tavi/tavi/parse In directory usw-pr-cvs1:/tmp/cvs-serv8730/parse Modified Files: Tag: release-v0_21-bugfix-branch macros.php save.php Log Message: Fix various bugs due to single quotes in page names. Fix a bug in code that maintains link database; some links were improperly double-counted. Index: macros.php =================================================================== RCS file: /cvsroot/tavi/tavi/parse/macros.php,v retrieving revision 1.9 retrieving revision 1.9.2.1 diff -u -d -r1.9 -r1.9.2.1 --- macros.php 8 Jan 2002 17:31:01 -0000 1.9 +++ macros.php 14 Feb 2002 20:11:24 -0000 1.9.2.1 @@ -131,8 +131,9 @@ foreach($pages as $page) { + $esc_page = addslashes($page[1]); $q2 = $pagestore->dbh->query("SELECT page FROM $LkTbl " . - "WHERE link='$page[1]' AND page!='$page[1]'"); + "WHERE link='$esc_page' AND page!='$esc_page'"); if(!($r2 = $pagestore->dbh->result($q2)) || empty($r2[0])) { if(!$first) // Don't prepend newline to first one. @@ -159,8 +160,9 @@ "GROUP BY link ORDER BY ct DESC, link"); while(($result = $pagestore->dbh->result($q1))) { + $esc_page = addslashes($result[0]); $q2 = $pagestore->dbh->query("SELECT MAX(version) FROM $PgTbl " . - "WHERE title='$result[0]'"); + "WHERE title='$esc_page'"); if(!($r2 = $pagestore->dbh->result($q2)) || empty($r2[0])) { if(!$first) // Don't prepend newline to first one. @@ -212,8 +214,9 @@ "GROUP BY link ORDER BY ct DESC, link"); while(($result = $pagestore->dbh->result($q1))) { + $esc_page = addslashes($result[0]); $q2 = $pagestore->dbh->query("SELECT MAX(version) FROM $PgTbl " . - "WHERE title='$result[0]'"); + "WHERE title='$esc_page'"); if(($r2 = $pagestore->dbh->result($q2)) && !empty($r2[0])) { if(!$first) // Don't prepend newline to first one. Index: save.php =================================================================== RCS file: /cvsroot/tavi/tavi/parse/save.php,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -u -d -r1.4 -r1.4.2.1 --- save.php 3 Jan 2002 16:33:26 -0000 1.4 +++ save.php 14 Feb 2002 20:11:24 -0000 1.4.2.1 @@ -14,17 +14,22 @@ $macros_index = -1; $transclude_index = -1; + $elements_index = -1; for($i = 0; $i < count($ParseEngine); $i++) { if($ParseEngine[$i] == 'parse_macros') { $macros_index = $i; } if($ParseEngine[$i] == 'parse_transclude') { $transclude_index = $i; } + if($ParseEngine[$i] == 'parse_elements') + { $elements_index = $i; } } if($macros_index != -1) { $ParseEngine[$macros_index] = 'parse_noop'; } if($transclude_index != -1) { $ParseEngine[$transclude_index] = 'parse_noop'; } + if($elements_index != -1) + { $ParseEngine[$elements_index] = 'parse_noop'; } if(!$called) { @@ -45,6 +50,8 @@ { $ParseEngine[$macros_index] = 'parse_macros'; } if($transclude_index != -1) { $ParseEngine[$transclude_index] = 'parse_transclude'; } + if($elements_index != -1) + { $ParseEngine[$elements_index] = 'parse_elements'; } return $text; } |
From: Scott M. <sm...@us...> - 2002-02-14 20:11:28
|
Update of /cvsroot/tavi/tavi In directory usw-pr-cvs1:/tmp/cvs-serv8730 Modified Files: Tag: release-v0_21-bugfix-branch ChangeLog.txt Log Message: Fix various bugs due to single quotes in page names. Fix a bug in code that maintains link database; some links were improperly double-counted. Index: ChangeLog.txt =================================================================== RCS file: /cvsroot/tavi/tavi/ChangeLog.txt,v retrieving revision 1.5.2.1 retrieving revision 1.5.2.2 diff -u -d -r1.5.2.1 -r1.5.2.2 --- ChangeLog.txt 14 Feb 2002 18:17:42 -0000 1.5.2.1 +++ ChangeLog.txt 14 Feb 2002 20:11:23 -0000 1.5.2.2 @@ -7,6 +7,10 @@ * Work around regex bug in PHP 4.03 that causes freelinks to render improperly. + * Fixed numerous bugs wherein pages with a single quote in their names + would generate bad SQL, thereby aborting the engine. + * Fixed a bug in the link generation code that caused it to double-count + some links. 2002-01-14 Scott Moonen <sm...@an...> |
From: Scott M. <sm...@us...> - 2002-02-14 18:17:47
|
Update of /cvsroot/tavi/tavi/parse In directory usw-pr-cvs1:/tmp/cvs-serv9088/parse Modified Files: Tag: release-v0_21-bugfix-branch transforms.php Log Message: Work around PHP 4.03 regex bug Index: transforms.php =================================================================== RCS file: /cvsroot/tavi/tavi/parse/transforms.php,v retrieving revision 1.24 retrieving revision 1.24.2.1 diff -u -d -r1.24 -r1.24.2.1 --- transforms.php 14 Jan 2002 18:07:55 -0000 1.24 +++ transforms.php 14 Feb 2002 18:17:42 -0000 1.24.2.1 @@ -81,15 +81,15 @@ if($validate) { - $ptn = "/\\(\\(([-A-Za-z0-9 _+\\/.,']+)(())()\\)\\)/e"; + $ptn = "/\\(\\(([-A-Za-z0-9 _+\\/.,']+)()()\\)\\)/e"; } else { - $ptn = "/\\(\\(([-A-Za-z0-9 _+\\/.,']+)((\|[-A-Za-z0-9 _+\\/.,']+)?)((\#[-A-Za-z0-9]+)?)\\)\\)/e"; + $ptn = "/\\(\\(([-A-Za-z0-9 _+\\/.,']+)(\|[-A-Za-z0-9 _+\\/.,']+)?(\#[-A-Za-z0-9]+)?()\\)\\)/e"; } return preg_replace($ptn, - "freelink_token(q1('\\1'), q1('\\3'), '\\5', '')", + "freelink_token(q1('\\1'), q1('\\2'), '\\3', '')", $text, -1); } |
From: Scott M. <sm...@us...> - 2002-02-14 18:17:46
|
Update of /cvsroot/tavi/tavi In directory usw-pr-cvs1:/tmp/cvs-serv9088 Modified Files: Tag: release-v0_21-bugfix-branch ChangeLog.txt Log Message: Work around PHP 4.03 regex bug Index: ChangeLog.txt =================================================================== RCS file: /cvsroot/tavi/tavi/ChangeLog.txt,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -u -d -r1.5 -r1.5.2.1 --- ChangeLog.txt 14 Jan 2002 18:01:04 -0000 1.5 +++ ChangeLog.txt 14 Feb 2002 18:17:42 -0000 1.5.2.1 @@ -3,6 +3,11 @@ WikkiTikkiTavi - ChangeLog -------------------------- +2002-02-14 Scott Moonen <sm...@an...> + + * Work around regex bug in PHP 4.03 that causes freelinks to render + improperly. + 2002-01-14 Scott Moonen <sm...@an...> * Introduce '!' as a no-link escape. E.g., !SandBox renders |
From: Scott M. <sm...@us...> - 2002-01-16 16:48:38
|
Update of /cvsroot/tavi/tavi In directory usw-pr-cvs1:/tmp/cvs-serv7919 Modified Files: NEWS.txt Log Message: Fix release date. Index: NEWS.txt =================================================================== RCS file: /cvsroot/tavi/tavi/NEWS.txt,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- NEWS.txt 2002/01/14 18:03:37 1.7 +++ NEWS.txt 2002/01/16 16:48:34 1.8 @@ -7,7 +7,7 @@ --------------------- -2002-01-?? Scott Moonen <sm...@an...> +2002-01-16 Scott Moonen <sm...@an...> WikkiTikkiTavi version 0.21 is released. Several bug fixes (including a security fix) and several minor new features, such as HTML anchors; |
From: Scott M. <sm...@us...> - 2002-01-16 16:31:44
|
Update of /cvsroot/tavi/tavi In directory usw-pr-cvs1:/tmp/cvs-serv3209 Modified Files: INSTALL.txt Log Message: Tweak documentation. Index: INSTALL.txt =================================================================== RCS file: /cvsroot/tavi/tavi/INSTALL.txt,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- INSTALL.txt 2002/01/14 21:51:20 1.10 +++ INSTALL.txt 2002/01/16 16:31:40 1.11 @@ -165,6 +165,9 @@ 11. Advertise your wiki. Feel free to put a link to your wiki on http://tavi.sourceforge.net/TaviSites. +12. Read more about using and administering 'Tavi at + http://tavi.sourceforge.net/TaviDocumentation. + Advanced ======== |
From: Scott M. <sm...@us...> - 2002-01-16 16:31:44
|
Update of /cvsroot/tavi/tavi/install In directory usw-pr-cvs1:/tmp/cvs-serv3209/install Modified Files: settings.cnf Log Message: Tweak documentation. Index: settings.cnf =================================================================== RCS file: /cvsroot/tavi/tavi/install/settings.cnf,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- settings.cnf 2002/01/15 15:38:06 1.8 +++ settings.cnf 2002/01/16 16:31:40 1.9 @@ -124,6 +124,12 @@ For example, this might be 'http://example.com/logo.png', or it might be '/images/jpeg/wiki.jpg'. + +If you don't have a logo ready right now, you can use the following logo +for the time being and go back and edit config.php later when you have +your own logo ready: + + http://tavi.sourceforge.net/tavi.png // $WikiLogo determines the location of your wiki logo. ---- string $MetaKeywords '' |
From: Scott M. <sm...@us...> - 2002-01-15 16:45:37
|
Update of /cvsroot/tavi/tavi/template In directory usw-pr-cvs1:/tmp/cvs-serv24629/template Modified Files: rss.php Log Message: Parameterize XML charset. Index: rss.php =================================================================== RCS file: /cvsroot/tavi/tavi/template/rss.php,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- rss.php 2002/01/01 20:13:19 1.2 +++ rss.php 2002/01/15 16:45:33 1.3 @@ -10,10 +10,11 @@ function template_rss($args) { global $ScriptBase, $WikiName, $MetaDescription, $InterWikiPrefix; + global $Charset; header('Content-type: text/plain'); ?> -<?php print '<?xml '; ?>version="1.0" encoding="ISO-8859-1"?> +<?php print '<?xml '; ?>version="1.0" encoding="<?php print $Charset; ?>"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" |
From: Scott M. <sm...@us...> - 2002-01-15 16:22:42
|
Update of /cvsroot/tavi/tavi/template In directory usw-pr-cvs1:/tmp/cvs-serv14949/template Modified Files: common.php Log Message: Oops! Caught a '<?' that should be '<?php'. Index: common.php =================================================================== RCS file: /cvsroot/tavi/tavi/template/common.php,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- common.php 2002/01/08 17:31:01 1.6 +++ common.php 2002/01/15 16:22:39 1.7 @@ -42,7 +42,7 @@ <?php } ?> -<link rel="STYLESHEET" href="<? print $StyleScript; ?>" type="text/css" /> +<link rel="STYLESHEET" href="<?php print $StyleScript; ?>" type="text/css" /> <title><?php print $args['title'] . ' - ' . $WikiName; ?></title> </head> <body> |