Tripletail::Filter::HeaderOnly - Tripletail::Filter::HeaderOnly documentation


Tripletail documentation Contained in the Tripletail distribution.

Index


Code Index:

NAME

Top

Tripletail::Filter::HeaderOnly - ヘッダのみ出力

SYNOPSIS

Top

  $TL->setContentFilter('Tripletail::Filter::HeaderOnly');

DESCRIPTION

Top

以下の処理を行う。

METHODS

flush

Tripletail::Filter参照

print

Tripletail::Filter参照

reset

Tripletail::Filter参照

SEE ALSO

Top

Tripletail
Tripletail::Filter

AUTHOR INFORMATION

Top

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__