| Tripletail documentation | Contained in the Tripletail distribution. |
Tripletail::Filter::HeaderOnly - ヘッダのみ出力
$TL->setContentFilter('Tripletail::Filter::HeaderOnly');
以下の処理を行う。
Copyright 2006 YMIRLINK Inc.
This framework is free software; you can redistribute it and/or modify it under the same terms as Perl itself
このフレームワークはフリーソフトウェアです。あなたは Perl と同じライセンスの 元で再配布及び変更を行うことが出来ます。
Address bug reports and comments to: tl@tripletail.jp
HP : http://tripletail.jp/
| Tripletail documentation | Contained in the Tripletail distribution. |
# ----------------------------------------------------------------------------- # Tripletail::Filter::HeaderOnly - ãããã®ã¿åºå # ----------------------------------------------------------------------------- package Tripletail::Filter::HeaderOnly; use strict; use warnings; use Tripletail; require Tripletail::Filter; our @ISA = qw(Tripletail::Filter); # ãªãã·ã§ã³ä¸è¦§: 1; sub _new { my $class = shift; my $this = $class->SUPER::_new(@_); $this; } sub print { my $this = shift; ''; } sub flush { my $this = shift; my $data = $this->_flush_header; $data; } sub reset { my $this = shift; $this->SUPER::reset; $this; } __END__