Skip to content

Instantly share code, notes, and snippets.

View perlDreamer's full-sized avatar

Colin Kuskie perlDreamer

View GitHub Profile
Test Summary Report
-------------------
t/Search.t (Wstat: 256 Tests: 10 Failed: 1)
Failed test: 10
Non-zero exit status: 1
diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt
index e212edb..15ba96c 100644
--- a/docs/changelog/7.x.x.txt
+++ b/docs/changelog/7.x.x.txt
@@ -10,6 +10,7 @@
- fixed #11798: Gallery request non existent image
- fixed #11800: Group to view for new events defaults to 'Everyone'
- fixed #11796: Gallery Drag & Drop broken in IE 7
+ - fixed #11795: Wrong display UTF8 chars in Syndicated content
The Cart in WebGUI has typically been an 8 screen process, with the cart itself, going to the Address Book to add a shipping address, adding an Address, telling the Book to use that Address, checking out from the cart, choosing a payment method, potentially adding another address, and then finally checking out and getting the notification. The shipping address was required, even for buying something that didn't require shipping! Perhaps even worse, the Cart required Javascript to work correctly.
In 7.9.4, this was changed. The Cart is now a 2 screen process. In step one, the contents of the cart are displayed and can be changed. At the same time, forms for the billing address are displayed, and, if the cart contents require shipping, a shipping address form is also displayed. There's a toggle that allows the shipping address to use the same billing address. Just below that, shipping and payment methods dropdowns are presented. Once the user has entered credentials and selected valid shipping and paym
diff --git a/docs/gotcha.txt b/docs/gotcha.txt
index a97f33c..ba7de5e 100644
--- a/docs/gotcha.txt
+++ b/docs/gotcha.txt
@@ -51,6 +51,13 @@ save you many hours of grief.
* The Cart will now work without javascript. Javascript is used to make parts of the cart easier,
and to automatically update the user's cart so they don't have to manually update it.
+ * All custom Payment drivers have to be rewritten. Please read the POD for
+ WebGUI::Shop::PayDriver for information about the update. The upgrade script for 7.9.4
# vim:syntax=perl
#-------------------------------------------------------------------
# WebGUI is Copyright 2001-2009 Plain Black Corporation.
#-------------------------------------------------------------------
# Please read the legal notices (docs/legal.txt) and the license
# (docs/license.txt) that came with this distribution before using
# this software.
#------------------------------------------------------------------
# http://www.plainblack.com info@plainblack.com
#------------------------------------------------------------------
WHERE
asset.parentId = ?
AND Post.threadId = Post.assetId
AND assetData.status = "approved"
GROUP BY assetId
HAVING MAX(Post.revisionDate)
ORDER BY Post.revisionDate DESC
LIMIT 1
Aug 15 05:07:04 plainblackcom-156559 sendmail[19346]: o7FA74N7019346: <tavis@thegamecrafter.com>... User unknown
Aug 15 05:07:04 plainblackcom-156559 sendmail[19346]: o7FA74N7019346: from=<info@thegamecrafter.com>, size=0, class=0, nrcpts=0, proto=ESMTP, daemon=MTA, relay=plainblackcom-156559.theplanet.host [127.0.0.1]
diff --git a/t/Asset/Post.t b/t/Asset/Post.t
index 98e7a01..b33219d 100644
--- a/t/Asset/Post.t
+++ b/t/Asset/Post.t
@@ -19,7 +19,8 @@ use strict;
use lib "$FindBin::Bin/../lib";
use WebGUI::Test;
use WebGUI::Session;
-use Test::More tests => 17; # increment this value for each test you create
+use Test::More tests => 18; # increment this value for each test you create
debug1: Host 'iccbba.plainblack.net' is known and matches the RSA host key.
debug1: Found key in /home/colink/.ssh/known_hosts:31
debug1: found matching key w/out port
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
trigger => \&_wrap_set_groupIdEdit,
);
sub _wrap_set_groupIdEdit {
my $self = shift;
$self->_set_groupIdEdit(@_);
return;
}
sub _set_groupIdEdit {
return;
}