• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/BZ/H19-Sep-2011-2,0551,254

t/H19-Sep-2011-847750

ChangesH A D22-Aug-2011489 2012

LICENSEH A D15-Aug-200920.1 KiB384309

MANIFESTH A D15-Aug-2009598 3028

MANIFEST.SKIPH A D23-Jun-2009104 108

META.ymlH A D19-Sep-2011627 2524

Makefile.PLH A D03-Feb-20102 KiB6252

READMEH A D24-Jun-20091.1 KiB4928

README

1BZ-Client version 1.0
2=====================
3
4This module provides a client for the so-called Bugzilla Webservices
5API. (Which is, in fact, an XML-RPC API.)
6
7See
8
9  http://www.bugzilla.org/docs/tip/en/html/api/Bugzilla/WebService.html
10
11for details on the server side API.
12
13
14INSTALLATION
15
16To install this module type the following:
17
18   perl Makefile.PL
19   make
20   make test
21   make install
22
23If you'd like to run the integration tests (requires a running Bugzilla
24server), do the following instead:
25
26   perl Makefile.PL --testUrl=<url> --testUser=<user> --testPassword=<pwd>
27
28replacing <url>, <user>, and <pwd> with your servers URL and your user
29name and password on this server.
30
31DEPENDENCIES
32
33This module requires these other modules and libraries:
34
35  XML::Writer
36  LWP
37
38COPYRIGHT AND LICENCE
39
40Put the correct copyright and licence information here.
41
42Copyright (C) 2009 by Jochen Wiedmann
43
44This library is free software; you can redistribute it and/or modify
45it under the same terms as Perl itself, either Perl version 5.10.0 or,
46at your option, any later version of Perl 5 you may have available.
47
48
49