Unix and Linux Discussions Tagged with tags |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
16 |
13,572 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
54,644 |
Windows & DOS: Issues & Discussions |
|
|
|
9 |
11,434 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
7,184 |
Programming |
|
|
|
3 |
29,461 |
What is on Your Mind? |
|
|
|
0 |
24,755 |
What is on Your Mind? |
|
|
|
0 |
3,289 |
Web Development |
|
|
|
3 |
3,966 |
Shell Programming and Scripting |
|
|
|
4 |
2,353 |
What is on Your Mind? |
|
|
|
3 |
1,878 |
Shell Programming and Scripting |
|
|
|
1 |
307,708 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
16,247 |
AIX |
|
|
|
35 |
14,961 |
UNIX for Dummies Questions & Answers |
|
|
|
23 |
39,779 |
Shell Programming and Scripting |
|
|
|
2 |
4,724 |
Shell Programming and Scripting |
|
|
|
2 |
3,479 |
Shell Programming and Scripting |
|
|
|
2 |
3,039 |
Shell Programming and Scripting |
|
|
|
3 |
11,452 |
Solaris |
|
|
|
2 |
40,757 |
Shell Programming and Scripting |
|
|
|
9 |
10,223 |
Shell Programming and Scripting |
|
|
|
1 |
2,498 |
Shell Programming and Scripting |
|
|
|
5 |
6,897 |
Shell Programming and Scripting |
|
|
|
0 |
1,262 |
Software Releases - RSS News |
|
|
|
5 |
4,414 |
Shell Programming and Scripting |
|
|
|
4 |
29,121 |
Shell Programming and Scripting |
|
|
|
3 |
6,623 |
Shell Programming and Scripting |
|
|
|
8 |
16,423 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
12,400 |
Shell Programming and Scripting |
|
|
|
0 |
1,409 |
UNIX and Linux RSS News |
|
|
|
8 |
16,221 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
18,903 |
What is on Your Mind? |
|
|
|
2 |
5,548 |
UNIX for Advanced & Expert Users |
|
|
|
5 |
18,858 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
9,321 |
UNIX for Advanced & Expert Users |
|
|
|
10 |
80,260 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
7,303 |
Programming |
|
|
|
2 |
3,485 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
4,695 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
4,068 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
3,961 |
UNIX for Dummies Questions & Answers |
HTTP::Proxy::BodyFilter::tags(3pm) User Contributed Perl Documentation HTTP::Proxy::BodyFilter::tags(3pm)
NAME
HTTP::Proxy::BodyFilter::tags - A filter that outputs only complete tags
SYNOPSIS
use HTTP::Proxy::BodyFilter::tags;
use MyFilter; # this filter only works on complete tags
my $filter = MyFilter->new();
# note that both filters will be run on the same messages
# (those with a MIME type of text/html)
$proxy->push_filter(
mime => 'text/*',
response => HTTP::Proxy::BodyFilter::tags->new
);
$proxy->push_filter( mime => 'text/html', response => $filter );
DESCRIPTION
The HTTP::Proxy::BodyFilter::tags filter makes sure that the next filter in the filter chain will only receive complete tags.
METHOD
This class defines two methods, that are called automatically:
filter()
Buffer incomplete tags to ensure that subsequent filters will only receive complete HTML tags.
will_modify()
This method returns a false value, thus indicating to the system that it will not modify data passing through.
SEE ALSO
HTTP::Proxy, HTTP::Proxy::BodyFilter.
AUTHOR
Philippe "BooK" Bruhat, <book@cpan.org>.
COPYRIGHT
Copyright 2003-2006, Philippe Bruhat.
LICENSE
This module is free software; you can redistribute it or modify it under the same terms as Perl itself.
perl v5.12.4 2011-07-03 HTTP::Proxy::BodyFilter::tags(3pm)