Catalyst::Controller::Mobile::JP - decode/encode with Encode::JP::Mobile


Catalyst-Controller-Mobile-JP documentation  | view source Contained in the Catalyst-Controller-Mobile-JP distribution.

Index


NAME

Top

Catalyst::Controller::Mobile::JP - decode/encode with Encode::JP::Mobile

SYNOPSIS

Top

  package MyApp;
  use Catalyst qw/ MobileAgent /;

  ...

  package MyApp::Controller::Root;
  use strict;
  use base 'Catalyst::Controller::Mobile::JP';

  __PACKAGE__->config->{namespace} = '';

  sub foo :Local {
      my ($self, $c) = @_;

      $c->res->body(
          $c->req->param('text') . "\x{E72A}"
      );
  }

DESCRIPTION

Top

Catalyst::Controller::Mobile::JP works as a base controller that automatically decode()/encode() with the recommended encoding lead from values of UserAgent.

You can use unicode in your app that includes cross-carrier pictograms.

このモジュールは Catalyst::Controller で、SYNOPSIS にあるように使います。 begin$c->req->params の Encode::decode()、end$c->res->body の Encode::encode() を行ないます。

エンコーディングは UserAgent の値を元に Encode::JP::Mobile から おすすめのものが利用されます(HTTP::MobileAgent::Plugin::Charset)ので、 アプリケーション内部では特に意識せずキャリアをまたいだ絵文字を含む文字情報を Unicode として扱うことができます。

ACCESSOR

Top

encoding

利用されるエンコーディングの Encode::Encoding オブジェクトが 入っています。

  $self->encoding->name;      # x-sjis-docomo
  $self->encoding->mime_name; # Shift_JIS

USE WITH CUSTOM end() METHOD

Top

コントローラーで beginend を実装する場合は、以下のように next::method でこのモジュールのメソッドを呼んでください。

  sub render :ActionClass('RenderView') {

  }

  sub end :Private {
      my ($self, $c) = @_;

      $c->stash->{encoding} = $self->encoding;
      $c->forward('render');

      $self->next::method($c);
  }

AUTHOR

Top

Naoki Tomita <tomita@cpan.org>

DEVELOPMENT

Top

http://coderepos.org/share/browser/lang/perl/Catalyst-Controller-Mobile-JP (repository)

#mobilejp on irc.freenode.net (I've joined as "tomi-ru")

LICENSE

Top

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Top

Encode::JP::Mobile, HTTP::MobileAgent::Plugin::Charset, Catalyst::View::MobileJpFilter


Catalyst-Controller-Mobile-JP documentation  | view source Contained in the Catalyst-Controller-Mobile-JP distribution.