[freeside-commits] freeside/FS/FS/UI Web.pm,1.15,1.16
Ivan,,,
ivan at wavetail.420.am
Sun May 14 09:47:33 PDT 2006
- Previous message: [freeside-commits] freeside/FS MANIFEST,1.96,1.97
- Next message: [freeside-commits] freeside/FS/FS AccessRight.pm, NONE, 1.1 CGI.pm,
1.30, 1.31 Schema.pm, 1.14, 1.15 access_group.pm, NONE,
1.1 access_groupagent.pm, NONE, 1.1 access_right.pm, NONE,
1.1 access_user.pm, NONE, 1.1 access_user_pref.pm, NONE,
1.1 access_usergroup.pm, NONE, 1.1 agent_type.pm, 1.3,
1.4 cust_bill.pm, 1.145, 1.146 m2m_Common.pm, NONE,
1.1 payby.pm, 1.2, 1.3 svc_domain.pm, 1.45, 1.46
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /home/cvs/cvsroot/freeside/FS/FS/UI
In directory wavetail:/tmp/cvs-serv14201/FS/FS/UI
Modified Files:
Web.pm
Log Message:
first part of ACL and re-skinning work and some other small stuff
Index: Web.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/UI/Web.pm,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- Web.pm 10 Mar 2006 22:28:17 -0000 1.15
+++ Web.pm 14 May 2006 16:47:31 -0000 1.16
@@ -184,6 +184,10 @@
$self->job_status(@args);
+ } else {
+
+ die "unknown sub $sub";
+
}
}
@@ -228,11 +232,19 @@
my $error = $job->insert( '_JOB', encode_base64(nfreeze(\%param)) );
if ( $error ) {
+
+ warn "job not inserted: $error\n"
+ if $DEBUG;
+
$error; #this doesn't seem to be handled well,
# will trigger "illegal jobnum" below?
# (should never be an error inserting the job, though, only thing
# would be Pg f%*kage)
} else {
+
+ warn "job inserted successfully with jobnum ". $job->jobnum. "\n"
+ if $DEBUG;
+
$job->jobnum;
}
@@ -253,7 +265,7 @@
my @return;
if ( $job && $job->status ne 'failed' ) {
@return = ( 'progress', $job->statustext );
- } elsif ( !$job ) { #handle job gone case : job sucessful
+ } elsif ( !$job ) { #handle job gone case : job successful
# so close popup, redirect parent window...
@return = ( 'complete' );
} else {
- Previous message: [freeside-commits] freeside/FS MANIFEST,1.96,1.97
- Next message: [freeside-commits] freeside/FS/FS AccessRight.pm, NONE, 1.1 CGI.pm,
1.30, 1.31 Schema.pm, 1.14, 1.15 access_group.pm, NONE,
1.1 access_groupagent.pm, NONE, 1.1 access_right.pm, NONE,
1.1 access_user.pm, NONE, 1.1 access_user_pref.pm, NONE,
1.1 access_usergroup.pm, NONE, 1.1 agent_type.pm, 1.3,
1.4 cust_bill.pm, 1.145, 1.146 m2m_Common.pm, NONE,
1.1 payby.pm, 1.2, 1.3 svc_domain.pm, 1.45, 1.46
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the freeside-commits
mailing list