~dmarshal/bugzilla/yui3

« back to all changes in this revision

Viewing changes to Bugzilla/WebService/Server/XMLRPC.pm

  • Committer: David Marshall
  • Date: 2012-12-12 00:43:55 UTC
  • mfrom: (8462.1.49 trunk)
  • Revision ID: dmarshal@yahoo-inc.com-20121212004355-4csiyhwzp93blxh9
merge lp:bugzilla through 8511

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
use 5.10.1;
80
80
use strict;
81
81
 
82
 
# We can't use "use base" because XMLRPC::Serializer doesn't return
 
82
# We can't use "use parent" because XMLRPC::Serializer doesn't return
83
83
# a true value.
84
84
use XMLRPC::Lite;
85
85
our @ISA = qw(XMLRPC::Deserializer);
204
204
use strict;
205
205
 
206
206
use Scalar::Util qw(blessed);
207
 
# We can't use "use base" because XMLRPC::Serializer doesn't return
 
207
# We can't use "use parent" because XMLRPC::Serializer doesn't return
208
208
# a true value.
209
209
use XMLRPC::Lite;
210
210
our @ISA = qw(XMLRPC::Serializer);
379
379
=head1 SEE ALSO
380
380
 
381
381
L<Bugzilla::WebService>
 
382
 
 
383
=head1 B<Methods in need of POD>
 
384
 
 
385
=over
 
386
 
 
387
=item make_response
 
388
 
 
389
=item initialize
 
390
 
 
391
=item handle_login
 
392
 
 
393
=back