Fusco Francesco wrote:
> Hy!
> I've seen that you have started PHPBlosxom. Interesting stuff!
> I like pretty much PyBlosxom , but I cannot use it on the servers of
> university and so a clone written in php language is very useful for me.
>
> I'm here to help you. Tell me what and I'll do for you.
>
> Can I start from syndication or are you working on it?
> What is the status of photogallery plugin?
>
>
> PS = please put in cvs rep the logo image of the project
>
>
Hi!
Syndication is somewhat begun. The plan is to do that with flavours. I
have written a little plugin to strip all tags from the body and title,
since RSS and Atom users might not like that. You could if you wish do
the flavours. The plugin that will do the stripping is not in the cvs,
but it is really simple, so I'll attach the source here.
Please make sure that the feeds validate.
I have not yet begun making a photo gallery for PHPBlosxom. However I do
have a gallery written in PHP which could be used.
My main concern is documentation. I'd really like some comments on that.
In fact this is the first response I have gotten on the project :)
How did you find this project?
The things that are (partially in some cases) completed on my computer.
* MovableType style template. Almost complete.
* Trackback. Begun.
* The category list. I think that it should also list how many entries
are in the selected category.
Things that are needed:
* A calendar plugin.
* A search plugin. Could perhaps be done with google?
* Syndication.
* Better documentation, both for users and developers.
Magnus Nordlander.
ICQ: 4876223
MSN: mag...@te...
AIM: DoktorRotmos
Jabber: drr...@ja...
--------feedescape.module-------------
<?php
global $callback;
$callback['storyTemplate'][] = "feedescape";
function feedescape()
{
global $a, $b;
$b = str_replace('$escapedtitle', strip_tags($a['title']), $b);
$b = str_replace('$escapedbody', substr(strip_tags($a['entry']), 0,
247) . "...", $b);
}
?>
----------------------------------------------------
|