#!perl # Name: Run HTML::Parser from libwww-perl on the www.perl.com frontpage # Require: 5.002 # Desc: # This test runs the HTML::Parser from libwww-perl on the www.perl.com # frontpage. package MyParser; @ISA=qw(HTML::Parser); sub new { @tags = (); my $class = shift; $class->SUPER::new(@_); } sub start { my($self, $tag, $attr, $attrseq, $origtext) = @_; push(@tags, "<$tag>"); } sub end { my($self, $tag, $origtext) = @_; push(@tags, "$tag>"); } package main; $HTML=<<'EOT'; # Dump of www.perl.com at 1997-01-04
![]() |
![]() |
About www.perl.comCPANThe Perl LanguageGet the latest version of Perl (5.004_04). OverviewPerl NewsWhat is Perl? What's New in Perl5? Perl SoftwareDownload SoftwareDocumentation FAQs Support Training Bug Reports MiscellaneousThe Perl JournalThe Perl Institute Advocacy Security Who's Who?
Perl Reference
![]() |
The Perl Developer UpdateA Decade of PerlPerl is Ten Years OldLarry Wall shares with us some insight into the origins of Perl on the occasion of its birthday, officially December 18th, 1987.Why is December 18th considered Perl's Birthday?That is the day I turned Perl version 0 into Perl version 1, checked it in under RCS, and posted it to Usenet for the first time.Where was its birth place and on what kind of machine?Perl was born in Santa Monica, CA, on a VAX 11/780 running BSD. (Though gestation of Perl 0 was on a VAX 750.) At the time I was working for Burroughs (soon to be Unisys).What were your thoughts when you released it into the world?I thought people would find Perl to be a vast improvement on sed and awk, and, to a lesser extent, the various shells. I didn't hope to replace C, though there were a certain number of programmers who essentially abandoned C as soon as they had Perl.I didn't, of course, anticipate the use of Perl to prototype the Web, but I basically understood that Perl would be successful, because I'd already had experience with rn and patch, and had a pretty good notion that other people would like the same things I like. At what age did you begin to feel that Perl had a life apart from you?42. :-)You mean, as in the phrase "Get a life!"? I dunno. In a sense, it started having a life of its own as soon as I posted it to Usenet. In another sense, it started having its own life when Perl 5 came out with an official extension mechanism. But in yet another sense, Perl only started having its own life a year or so ago when I started letting other people take the lead in maintaining and developing it. These days I'm in a mostly advisory role to Perl development, much like with my teenage daughter. (As in, "No way am I gonna let you go out with that jerk!") Is there a Mother of Perl?I suppose there must be, since my wife's brother Mark Biggar claims to be the maternal uncle of Perl, but my wife Gloria has never insisted on being designated the Mother of Perl. Perhaps it's her Protestant upbringing...Do you have any birthday wishes to offer for Perl? If so, please send them to the editor and I will post them here. Dates Set for 2nd Perl ConferenceSeveral people have asked if O'Reilly has set the place and time for the next Perl Conference. Brian Erwin of O'Reilly was able to confirm that 1998 Perl Conference will once again be held at the Fairmont Hotel in San Jose. The dates are August 17-20. We'll keep you posted as more information becomes available.Note: If you need help selecting the right version of Perl for your computer, see our Latest file. --- December 20, 1997 Previous Updates: The Perl Developer Update will help to keep you informed of news and events happening here at www.perl.com and in the Perl community. It will also carry announcements of commercial products and services. If you have information for a future update, please send it to: Dale Dougherty.
www.perl.com is managed by Songline Studios on behalf of O'Reilly & Associates. www.perl.com is hosted on a Linux box running Apache (for machine specs, click here.) If you have comments or questions relating to the site (ie, not language related questions), please contact Dustin Mollo. |
, i.e. tags are recognized.# are presentend in smaller font than # # Netscape does not parse this comment correctly (it terminates the comment # too early): # # more comment --> # # Netscape does not allow space after the initial "<" in the start tag. # Like this "" # # Netscape ignores '' within the