Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23835
Modified Files:
serendipity_functions.inc.php NEWS
Log Message:
* Fixed remoterss bug, thanks to Richard Thomas Anders
* Added new CSS class for wrapping whole comment section (with regard to
chregu :)
* Added CSS class into all CSS-templates for Tom. :-)
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -d -r1.125 -r1.126
--- NEWS 15 May 2004 11:00:16 -0000 1.125
+++ NEWS 19 May 2004 09:27:31 -0000 1.126
@@ -3,6 +3,15 @@
Version 0.7 ()
------------------------------------------------------------------------
+ * Bugfix for serendipity_plugin_remoterss: Wrong caching.
+ (Richard Thomas Harrison)
+
+ * Added new CSS class .serendipity_comments for the comments block
+ on full article view (garvinhicking)
+
+ * Added new CSS class .serendipity_admin_filters for the redesigned
+ editing entries interface (tomsommer, garvinhicking)
+
* Plugin API: Introduced function 'is_event_plugin' for easier
integration (Jonathan Arkell)
@@ -10,7 +19,7 @@
Can be used to force entries not being shown by setting the
$eventData['clean_page'] variable to 'true'. (Jonathan Arkell)
- * Don't show "expand"/"toggle all" buttons if there are only one section
+ * Don't show "expand"/"toggle all" buttons if there is only one section
availiable (tomsommer)
* Redesigned admin interface for editing entries: Adjust items per
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.268
retrieving revision 1.269
diff -u -d -r1.268 -r1.269
--- serendipity_functions.inc.php 15 May 2004 11:00:17 -0000 1.268
+++ serendipity_functions.inc.php 19 May 2004 09:27:30 -0000 1.269
@@ -927,10 +927,10 @@
function serendipity_printEntries($entries, $extended = 0, $preview = false) {
global $serendipity;
- serendipity_plugin_api::hook_event('entry_display', $entries);
-
- if (isset($entries['clean_page']) && $entries['clean_page'] === true) {
- return; // no display of this item
+ serendipity_plugin_api::hook_event('entry_display', $entries);
+
+ if (isset($entries['clean_page']) && $entries['clean_page'] === true) {
+ return; // no display of this item
}
/* pre-walk the array to collect them keyed by date */
@@ -1027,9 +1027,9 @@
<?php
if (isset($serendipity['GET']['id'])) {
?>
+ <span class="serendipity_comments">
<link rel="pingback" href="<?php echo $serendipity['baseURL']; ?>comment.php?type=pingback&entry_id=<?php echo $entry['id']; ?>" />
<br />
-
<div class="serendipity_commentsTitle"><?php echo COMMENTS; ?></div>
<?php
if (preg_match('@/unsubscribe/(.*)/([0-9]+)@', $_SERVER['REQUEST_URI'], $res)) {
@@ -1078,6 +1078,9 @@
<div style="color: #FF0000" align="center"><?php echo COMMENTS_CLOSED; ?></div>
<?php
}
+?>
+ </span>
+<?php
}
?>
</div>
|