Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31101
Modified Files:
serendipity_admin.php serendipity_admin_image_selector.php
serendipity_config.inc.php serendipity_entries.php comment.php
Log Message:
adjusted initial db.sql to match category-patch
added s9y_wrap class for better css-tweaking especially for embedded blogs
Index: serendipity_config.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_config.inc.php,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -d -r1.78 -r1.79
--- serendipity_config.inc.php 11 Jun 2004 21:49:14 -0000 1.78
+++ serendipity_config.inc.php 17 Jun 2004 20:13:48 -0000 1.79
@@ -32,8 +32,6 @@
$serendipity['allowCommentsDefault'] = true;
-
-
/*
* Load main language file
*/
Index: comment.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/comment.php,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- comment.php 9 Jun 2004 11:46:32 -0000 1.35
+++ comment.php 17 Jun 2004 20:13:48 -0000 1.36
@@ -84,7 +84,7 @@
<link rel="stylesheet" type="text/css" href="' . $serendipity['serendipityHTTPPath'] . 'serendipity.css.php?mode=comments" />
<meta http-equiv="Content-Type" content="text/html; charset=' . LANG_CHARSET . '" />
</head>
-<body id="serendipity_comment_page">
+<body class="s9y_wrap" id="serendipity_comment_page">
';
if (isset($_GET['success']) && $_GET['success'] == 'true') {
echo $html_header;
Index: serendipity_entries.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_entries.php,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- serendipity_entries.php 9 Jun 2004 11:50:33 -0000 1.33
+++ serendipity_entries.php 17 Jun 2004 20:13:48 -0000 1.34
@@ -34,7 +34,7 @@
</head>
-<body id="serendipity_admin_entries_page" onload="if (self.Spawnextended) { Spawnextended(); } if (self.Spawnbody) { Spawnbody(); }">
+<body class="s9y_wrap" id="serendipity_admin_entries_page" onload="if (self.Spawnextended) { Spawnextended(); } if (self.Spawnbody) { Spawnbody(); }">
<div id="serendipity_banner">
<h1><?php echo $serendipity['blogTitle'] ; ?></h1>
<h2><?php echo SERENDIPITY_AUTHORING_SUITE . ' ('. sprintf(USER_SELF_INFO, $serendipity['serendipityUser'], $serendipity['serendipityUserlevel']) .')'; ?></h2>
Index: serendipity_admin_image_selector.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_admin_image_selector.php,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- serendipity_admin_image_selector.php 25 May 2004 16:16:14 -0000 1.23
+++ serendipity_admin_image_selector.php 17 Jun 2004 20:13:48 -0000 1.24
@@ -29,7 +29,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo LANG_CHARSET; ?>" />
<link rel="stylesheet" type="text/css" href="<?php echo $serendipity['serendipityHTTPPath']; ?>serendipity.css.php">
</head>
-<body id="serendipity_admin_image_page">
+<body class="s9y_wrap" id="serendipity_admin_image_page">
<?php
switch ($serendipity['GET']['step']) {
Index: serendipity_admin.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_admin.php,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- serendipity_admin.php 13 Jun 2004 21:05:36 -0000 1.38
+++ serendipity_admin.php 17 Jun 2004 20:13:48 -0000 1.39
@@ -28,7 +28,7 @@
?>
</head>
-<body id="serendipity_admin_page" onload="if (self.Spawnnugget) { Spawnnugget(); }">
+<body class="s9y_wrap" id="serendipity_admin_page" onload="if (self.Spawnnugget) { Spawnnugget(); }">
<div id="serendipity_banner">
<?php if ( IS_installed === true ) { ?>
<h1><?php echo (isset($serendipity['blogTitle']) ? $serendipity['blogTitle'] : ''); ?></h1>
|