Update of /cvsroot/php-blog/serendipity/docs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29422/docs
Modified Files:
NEWS
Log Message:
* Move Smarty object instancing to a function call, so that is not
created when not needed (like for CSS)
* make head_title / head_subtitle globally available, so that plugins
can also use it
* Code optimizations: Queries, referenced variables, plugin API
* Improved entryproperties cache
* Improved Plugin API calls to fetch titles of entries
* Improved Plugin aPI calls to set the authorid of a plugin
* Improved some plugins to not create costy introspect() calls, and move
them to the introspect_config_item() part
* Fixed trackexits plugin to not abuse the query() function too often
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/docs/NEWS,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- NEWS 19 Nov 2004 11:05:29 -0000 1.2
+++ NEWS 19 Nov 2004 11:24:35 -0000 1.3
@@ -3,6 +3,19 @@
Version 0.8 ()
------------------------------------------------------------------------
+ * Improved overall performance of Plugin API, code improvements,
+ query optimizing. Added with the entryproperties caching plugin,
+ this boosts performance by about 15-30%. You are also adwised
+ to use opcode-caches, if available [APC, Zend Cache, Turck, ...]
+ (garvinhicking)
+
+ * Entries can be cached by the 'entryproperties' plugins. This
+ caching interacts with other plugins: When cacheable plugins are
+ added, the cache is updated, as well as when an entry is modified.
+ When the plugin is first installed, it creates the cache for the
+ latest 15 entries; you can create a cache of all entries using
+ the admin interface. (garvinhicking)
+
* New CSS classes for distinction of authors within entries/comments:
.serendipity_entry_(author|comment)_USERNAME, applied to each
entry container, where USERNAME is replaced with the name of the
|