Finally, as promised, here is OpenGuides 0.55. It's tested and works beautifully.
You can get it from CPAN, or Debian packages in the usual place[0]
493207910567eafa4cc69604470d0e92 OpenGuides-0.55.tar.gz
Again, a reminder: back up your databases before upgrading. Also, you should ensure that the database users specified in your wiki.conf can ALTER, INDEX, CREATE and DROP, as this is required as part of the upgrade process.
Cheers,
Dominic.
[0] http://www.larted.org.uk/~dom/debian/openguides/
On Wed, 14 Jun 2006, Dominic Hargreaves wrote:
Finally, as promised, here is OpenGuides 0.55. It's tested and works beautifully.
Whoops. It doesn't quite, in my overhaul of the feeds, I somehow managed to let this howler past, in OpenGuides/Feed.pm:
my %known_types = ( 'rss' => &atom_maker, 'atom' => &rss_maker, );
Anyone spot the inversion?
So, you'll want to apply the following patch:
--- Feed.pm (revision 793) +++ Feed.pm (working copy) @@ -95,8 +95,8 @@ my ($self,$feed_type) = @_;
my %known_types = ( - 'rss' => &atom_maker, - 'atom' => &rss_maker, + 'atom' => &atom_maker, + 'rss' => &rss_maker, );
croak "No feed type specified" unless $feed_type;
/me -> make sure the OpenGuides feed tests actually check what feed they get back, and not just the contents of them
Nick
On Wed, Jun 14, 2006 at 06:36:29PM +0100, Nick Burch wrote:
So, you'll want to apply the following patch:
I'll release 0.56 with this tomorrow.
Dominic.
On Wed, Jun 14, 2006 at 07:06:42PM +0100, Dominic Hargreaves wrote:
On Wed, Jun 14, 2006 at 06:36:29PM +0100, Nick Burch wrote:
So, you'll want to apply the following patch:
I'll release 0.56 with this tomorrow.
Okay, you can have it now...
http://www.larted.org.uk/~dom/computing/code/openguides/OpenGuides-0.56.tar.... http://www.larted.org.uk/~dom/debian/openguides/
Cheers,
Dominic.
openguides-dev@lists.openguides.org