Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10533
Modified Files:
serendipity_entries.php serendipity_functions.inc.php
Log Message:
better formatting for trackback verbose output
flushing weblogping event
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.299
retrieving revision 1.300
diff -u -d -r1.299 -r1.300
--- serendipity_functions.inc.php 21 Jun 2004 14:55:32 -0000 1.299
+++ serendipity_functions.inc.php 21 Jun 2004 15:17:09 -0000 1.300
@@ -2016,13 +2016,13 @@
function serendipity_trackback_autodiscover($res, $loc, $url, $author, $title, $text)
{
if (!preg_match('@trackback:ping(\s*rdf:resource)?\s*=\s*"(http:[^"]+)"@i', $res, $matches)) {
- echo TRACKBACK_NOT_FOUND;
+ echo TRACKBACK_NOT_FOUND . '<br />';
return;
}
if (preg_match('@dc:identifier\s*=\s*"(http:[^"]+)"@i', $res, $test)) {
if ($loc != $test[1]) {
- echo TRACKBACK_URI_MISMATCH;
+ echo TRACKBACK_URI_MISMATCH . '<br />';
return;
}
}
@@ -2047,6 +2047,7 @@
}
function serendipity_reference_autodiscover($loc, $url, $author, $title, $text) {
+ echo '<br />';
printf(TRACKBACK_CHECKING, $loc);
echo '<br />';
flush();
Index: serendipity_entries.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_entries.php,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- serendipity_entries.php 17 Jun 2004 20:13:48 -0000 1.34
+++ serendipity_entries.php 21 Jun 2004 15:17:09 -0000 1.35
@@ -49,7 +49,7 @@
?>
<td id="serendipityLeftSideBar">
<div class="serendipitySideBarItem">
- <div class="serendipitySideBarTitle"><?php echo ENTRIES; ?></div>
+ <div class="serendipitySideBarTitle"><?php echo ucfirst(ENTRIES); ?>:</div>
<div class="serendipitySideBarContent">
• <a href="?serendipity[adminModule]=entries&serendipity[adminAction]=new"><?php echo NEW_ENTRY; ?></a><br />
• <a href="?serendipity[adminModule]=entries&serendipity[adminAction]=editSelect"><?php echo EDIT_ENTRIES; ?></a><br />
|