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

..03-May-2022-

WDDX/H02-Dec-2003-2,4451,552

t/H02-Dec-2003-390254

ChangesH A D02-Dec-20038.4 KiB203159

MANIFESTH A D02-Dec-2003256 2120

META.ymlH A D02-Dec-2003436 1513

Makefile.PLH A D02-Dec-2003298 1614

READMEH A D02-Dec-20032.5 KiB8054

WDDX.pmH A D02-Dec-200333.3 KiB1,166219

README

1WDDX.pm
2$Date: 2003/12/02 03:44:33 $
3by Scott Guelich <scott@scripted.com>
4maintained by Andy Lester <andy@petdance.com>
5
6This module provides a perl interface to WDDX. The latest version of this
7module as well as additional information can be found at
8http://www.scripted.com/wddx/. For more information about WDDX please visit
9http://www.wddx.org/.
10
11This code is copyright 1999 by Scott Guelich. You may use and distribute
12this code according to the same terms that Perl is distributed.
13
14
15INSTALL
16-------
17
18NOTE: These modules require the MIME::Base64 module, available at
19<http://www.cpan.org/modules/by-module/MIME/> and XML::Parser, available
20at <http://www.cpan.org/modules/by-module/XML/>. You can find help for
21installing these modules at http://www.perl.com/CPAN/modules/INSTALL.html.
22
23I have been told that recent distributions of ActiveState Perl include
24both MIME::Base64 and XML::Parser, so Windows users should check before
25downloading and installing them.
26
27To install the WDDX modules, use CPAN.pm. If you can't use CPAN.pm,
28then follow these steps:
29
30 1. Expand the package using one of these commands:
31     tar xvfz WDDX-*.tar.gz              # If your system has GNU tar
32     gzip -cd WDDX-*.tar.gz | tar xvf -  # If your tar is gzip-challenged
33
34 2. Run the following series of commands:
35     cd WDDX-*
36     perl Makefile.PL
37     make
38     make test
39
40 3. You must do this step as superuser:
41     make install
42
43If you do not have superuser priveleges and your sysadmin is too unfriendly
44to install this for you, then you can install this module in another
45location by replacing "perl Makefile.PL" from step 2 with this (replace
46/home/USER/lib with some directory on your system that you can write to):
47
48    perl Makefile.PL LIB=/home/USER/lib
49
50You can then run "make", "make test", and"make install" yourself to have
51the module installed in the specified lib directory. If you do override
52the install directory this way, you will need to add the following line
53to the top of your scripts:
54
55    use lib "/home/USER/lib";
56
57
58Manual Install
59--------------
60
61If your system does not support 'make', then you can manually copy
62WDDX.pm and the WDDX folder to the site_perl folder in your Perl lib
63folder.
64
65
66Usage
67-----
68
69Refer to the POD in WDDX.pm for usage and more information.
70
71
72----------------------------
73
74If you find any problems or have any comments, please contact Andy
75Lester at andy@petdance.com. You can also find all sorts of WDDX help
76and resources at www.wddx.org, especially in the WDDX Forums.
77
78Have fun.
79
80