The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Apache2::Translation::Config - export our provider parameters to the WEB

SYNOPSIS

  PerlModule Apache2::Translation::Config
  <Location /-/config>
    SetHandler modperl
    PerlResponseHandler Apache2::Translation::Config
  </Location>

DESCRIPTION

This module implements a simple modperl handler that exports our provider parameters in JSON or YAML to the WEB, e.g.:

  $ curl http://localhost/-/config?yaml
  ---
  TranslationEvalCache: 1000
  TranslationKey: default
  TranslationProvider:
    - File
    - configfile
    - /path/to/config

Since Apache2::Translation version 0.31 JSON is default. Apache2::Translation::Admin can decode both formats provided the YAML and JSON::XS modules are installed.

This format can be used by the WEB interface Apache2::Translation::Admin to connect to the provider.

AUTHOR

Torsten Foertsch, <torsten.foertsch@gmx.net>

COPYRIGHT AND LICENSE

Copyright (C) 2005-2009 by Torsten Foertsch

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