|
From: William A.C. <wil...@ca...> - 2005-02-13 02:13:12
|
This is going to be a little more complicated than usual because I
already started importing the changes for wp-mysql-1.{3,5}...
I have merged a diff between our copy of 1.2.1 that we imported last
and the tarball version of wp-mysql-1.2.2. I'm going with the tarball
here because the wp-mysql version in CVS with the 1.2.2 tag differs
from the tarball by missing a bug fix:
- <input type="hidden" name="redirect_to" value="<?php echo
$_GET["redirect_to"] ?>" />
+ <input type="hidden" name="redirect_to" value="<?php echo
htmlentities($_GET["redirect_to"], ENT_QUOTES) ?>" />
So right now if you check out the WPPG_1_2_1 branch you'll get the
postgresql port of 1.2.2:
cvs -d :pserver:ano...@cv...:/cvsroot/wordpress-pg
checkout -r WPPG_1_2_1 wordpress
This is not ready for primetime yet. The install, new posts and
comments work okay. But there are some syntax errors from pgsql that
are being ignored (probably unsafely) by the code that need some
investigation. But given a lack of unit tests, it's difficult to ever
be sure. The xmlrpc.php file has made a return as well, but is wholly
untested at this point. The test system involved has: pgsql 8.0.0rc2,
PHP 5.0.1, httpd 1.3.33. Your mileage may vary, but let the list know
if it does.
--
wac |