cvs: php-gtk-web /include layout.php shared-manual.inc
[email protected] ("Steph Fox") Sun, 09 Jul 2006 18:48:40 -0000
| Newsgroups | php.gtk.webmaster |
|---|---|
| Message-ID | <cvssfox1152470920@cvsserver> |
sfox Sun Jul 9 18:48:40 2006 UTC
Modified files:
/php-gtk-web/include layout.php shared-manual.inc
Log:
I know someone (Christian, was it?) wanted to push us into the 21st century and closer to xhtml, but we actually _need_ to validate against 4.01 while we have that declaration. Otherwise UTF-8 doesn't get set...
http://cvs.php.net/viewvc.cgi/php-gtk-web/include/layout.php?r1=1.56&r2=1.57&diff_format=u
Index: php-gtk-web/include/layout.php
diff -u php-gtk-web/include/layout.php:1.56 php-gtk-web/include/layout.php:1.57
--- php-gtk-web/include/layout.php:1.56 Sun Jul 9 15:19:37 2006
+++ php-gtk-web/include/layout.php Sun Jul 9 18:48:40 2006
@@ -1,5 +1,5 @@
<?php
-/* $Id: layout.php,v 1.56 2006/07/09 15:19:37 sfox Exp $ */
+/* $Id: layout.php,v 1.57 2006/07/09 18:48:40 sfox Exp $ */
# spacer()
# print a IMG tag for a sized spacer GIF
@@ -138,11 +138,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
- <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<title>PHP-GTK<?php if ($title) { echo ' : '.$title; } ?></title>
- <link rel="stylesheet" href="/style.css" />
- <link rel="stylesheet" href="/style-highlight.css" />
- <link rel="shortcut icon" href="/gifs/favicon.ico" />
+ <link rel="stylesheet" href="/style.css">
+ <link rel="stylesheet" href="/style-highlight.css">
+ <link rel="shortcut icon" href="/gifs/favicon.ico">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#000099" alink="#0000FF" vlink="#000099">
http://cvs.php.net/viewvc.cgi/php-gtk-web/include/shared-manual.inc?r1=1.72&r2=1.73&diff_format=u
Index: php-gtk-web/include/shared-manual.inc
diff -u php-gtk-web/include/shared-manual.inc:1.72 php-gtk-web/include/shared-manual.inc:1.73
--- php-gtk-web/include/shared-manual.inc:1.72 Sun Jul 9 08:37:09 2006
+++ php-gtk-web/include/shared-manual.inc Sun Jul 9 18:48:40 2006
@@ -39,8 +39,7 @@
global $SIDEBAR_DATA;
$SIDEBAR_DATA = '<form method="get" action="manual-lookup.php">';
- /* ALTER FOR LOCAL "manual-lookup.php" */
- $SIDEBAR_DATA.= '<table border="0" CELLPADDING="4" CELLSPACING="0" WIDTH="160">';
+ $SIDEBAR_DATA.= '<table border="0" cellpadding="4" cellspacing="0" width="160">';
if(sizeof($TOC) > 1) {
$SIDEBAR_DATA.= '<tr valign="top"><td><small>' .
@@ -180,8 +179,8 @@
if (get_user() && $show_admin) {
$get = (isset($_POST['queue']) || array_key_exists('q', $_GET)) ? '&q': null;
- $get .= isset($_GET['let']) ? "&let={$_GET['let']}" : null;
- $get .= isset($_GET['y']) ? "&y={$_GET['y']}" : null;
+ $get .= isset($_GET['let']) ? "&let={$_GET['let']}" : null;
+ $get .= isset($_GET['y']) ? "&y={$_GET['y']}" : null;
print_link("{$_SERVER['PHP_SELF']}?edit={$row['id']}$get",
make_image('notes-edit.gif', 'edit note'));
@@ -404,7 +403,7 @@
"<td><input type='radio' name='order' value='date'";
if ($order == 'date') $SIDEBAR_DATA .= " checked";
$SIDEBAR_DATA .= " /></td>\n<td> ".
- make_submit('small_submit.gif', 'Order by', 'bottom', "height='11', width='11'").
+ make_submit('small_submit.gif', 'Order by', 'bottom', 'style = "height: 11; width: 11"').
"</td></tr>\n</table>\n</form>\n";
}