garvinhicking [Mon, 24 Oct 2005 17:29:05 +0000 (17:29 +0000)]
Fixes from Boris from the forums:
The first bug is located in include/plugin_internal.inc.php:
in the long switch-statement is a duplicate Entry for show_atom0.3 and none for show_atom1.0 with the result, that there's no Atom 1.0-Option in the configuration.
Second: The function serendipity_makeFilename in include/functions_permalinks.inc.php is not utf-8 ready. I always helped myself converting it manually in 0.8x, but now s9y supports utf-8 this function should do this too. Smile
If not, all those special chars are not converted, but striped from the URLs.
garvinhicking [Mon, 17 Oct 2005 13:04:11 +0000 (13:04 +0000)]
* Fix some dreaded "only variables can be returned by referenced"
PHP 4.4 notices on some minor occasions (garvinhicking)
M trunk/plugins/serendipity_plugin_remoterss/serendipity_plugin_remoterss.php
M trunk/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php
M trunk/include/db/sqlite.inc.php
M trunk/include/db/mysql.inc.php
M trunk/include/db/postgres.inc.php
M trunk/include/db/mysqli.inc.php
M trunk/include/plugin_api.inc.php
M trunk/include/admin/import.inc.php
M trunk/include/functions_permalinks.inc.php
M trunk/include/functions_smarty.inc.php
M trunk/docs/NEWS
garvinhicking [Thu, 13 Oct 2005 10:55:02 +0000 (10:55 +0000)]
* Improve Spamblock plugin to allow configuring author/url filters straight from the "Comments" interface. (garvinhicking)
M trunk/plugins/serendipity_event_spamblock/serendipity_event_spamblock.php
M trunk/plugins/serendipity_event_spamblock/lang_de.inc.php
M trunk/plugins/serendipity_event_spamblock/UTF-8/lang_de.inc.php
M trunk/include/admin/comments.inc.php
M trunk/docs/NEWS
AM trunk/templates/default/admin/img/unconfigure.png
garvinhicking [Tue, 4 Oct 2005 10:11:02 +0000 (10:11 +0000)]
* Some cleanuup of debug code
* Do not put authors plugin as default plugin
* Obsolete function serendipity_fetchAuthors (fetchUsers does the same)
* Document new code in NEWS
* Make title of authors plugin configurable
* German translation
jtate [Sat, 1 Oct 2005 21:12:31 +0000 (21:12 +0000)]
Plugin to show authors in the sidebar. Much like the categories plugin with links to the authors, a form for filtering, and RSS feeds. Multi-User blogs are now much more interesting/useful.
jtate [Sat, 1 Oct 2005 05:48:24 +0000 (05:48 +0000)]
Here is support for filtering RSS feeds via authors much like we have been able to do by category for some time. I will put a plugin for displaying the appropriate links soon, but for now they can be accessed using feeds/authors/%idhimBH%realname%.rss. Apologies if I messed up language files.
Pimp the entryproperties plugin to allow hiding the content of certain RSS entries, so that users will go to the link instead.
I won't propagate this one as I don't like reading such feeds. *g*
Fix the whole UTF-8 Onyx/XML parsing logic to properly work.
PHP5 did not need xml_parser_create() to specify a charset, but PHP4 does.
PHP5 made errors when feeds in UTF-8 were double-recoded because of a xml_parser_set_option() call without specifying the charset in xml_parser_create.
Hope this works. ;)