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

..03-May-2022-

data/H03-May-2022-1312

js/H03-May-2022-

lib/HTML/Parser/H25-Jan-2015-1,950664

scripts/H25-Jan-2015-5226

t/H25-Jan-2015-358242

xt/author/H25-Jan-2015-84

Build.PLH A D25-Jan-20151.2 KiB5846

Changelog.iniH A D25-Jan-20155.7 KiB161149

ChangesH A D25-Jan-20155.7 KiB127115

MANIFESTH A D25-Jan-2015700 3837

META.jsonH A D25-Jan-20151.4 KiB6059

META.ymlH A D25-Jan-2015918 3635

Makefile.PLH A D25-Jan-20151.5 KiB7361

READMEH A D25-Jan-20151.4 KiB5036

README

1README file for HTML::Parser::Simple.
2
3See also: CHANGES and Changelog.ini.
4
5Warning: WinZip 8.1 and 9.0 both contain an 'accidental' bug which stops
6them recognizing POSIX-style directory structures in valid tar files.
7You are better off using a reliable tool such as InfoZip:
8ftp://ftp.info-zip.org/pub/infozip/
9
101 Installing from a Unix-like distro
11------------------------------------
12shell>gunzip HTML-Parser-Simple-2.01.tgz
13shell>tar mxvf HTML-Parser-Simple-2.01.tar
14
15On Unix-like systems, assuming you have installed Module::Build V 0.25+:
16
17shell>perl Build.PL
18shell>./Build
19shell>./Build test
20shell>./Build install
21
22On MS Windows-like systems, assuming you have installed Module::Build V 0.25+:
23
24shell>perl Build.PL
25shell>perl Build
26shell>perl Build test
27shell>perl Build install
28
29Alternately, without Module::Build, you do this:
30
31Note: 'make' on MS Windows-like systems may be called 'nmake' or 'dmake'.
32
33shell>perl Makefile.PL
34shell>make
35shell>make test
36shell>su              (for Unix-like systems)
37shell>make install
38shell>exit            (for Unix-like systems)
39
40On all systems:
41
42Run Simple.pm through your favourite pod2html translator.
43
442 Installing from an ActiveState distro
45---------------------------------------
46shell>unzip HTML-Parser-Simple-2.01.zip
47shell>ppm install --location=. HTML-Parser-Simple
48shell>del HTML-Parser-Simple-2.01.ppd
49shell>del PPM-HTML-Parser-Simple-2.01.tar.gz
50