Skip Menu |

This queue is for tickets about the Text-MicroTemplate-Extended CPAN distribution.

Report information
The Basics
Id: 51858
Status: resolved
Priority: 0/
Queue: Text-MicroTemplate-Extended

People
Owner: Nobody in particular
Requestors: FWIE [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.06
Fixed in: (no value)



Subject: [Patch] POD nits
The attached patch fixes some POD, which renders wrong, at least at search.cpan.org.
Subject: pod.patch
diff --git a/lib/Text/MicroTemplate/Extended.ja.pod b/lib/Text/MicroTemplate/Extended.ja.pod index d0f95d3..8a97755 100644 --- a/lib/Text/MicroTemplate/Extended.ja.pod +++ b/lib/Text/MicroTemplate/Extended.ja.pod @@ -194,7 +194,7 @@ Text::MicroTemplate::Extended オブジェクトの初期化時に C<template_ar <?= hello() ?> # => 'Hello World!' -この機能は C<$key => $coderef> のような構造のハッシュリファレンスを渡すことを想定していますが、value部分に通常のコードリファレンス以外の変数を渡すとそれを自動的にコードリファレンスでくくって使用します。 +この機能は C<< $key => $coderef >> のような構造のハッシュリファレンスを渡すことを想定していますが、value部分に通常のコードリファレンス以外の変数を渡すとそれを自動的にコードリファレンスでくくって使用します。 上記の C<hello> マクロはこのように書き換えても同じ意味になります。 my $mh = Text::MicroTemplate::Extended->new( @@ -223,7 +223,7 @@ Text::MicroTemplate::Extended オブジェクトの初期化時に C<template_ar $mf->render_file('template_name'); -というコードで C<template_name.mt> を読み込むようにすることができます。また、上記の「テンプレートの継承」でもこのオプションが使用され、C<extension => '.mt'> の場合は C<<? extends 'base' ?>> というコードは C<base.mt> をロードします。 +というコードで C<template_name.mt> を読み込むようにすることができます。また、上記の「テンプレートの継承」でもこのオプションが使用され、C<< extension => '.mt' >> の場合は C<<? extends 'base' ?>> というコードは C<base.mt> をロードします。 このオプションはデフォルトでは C<.mt> に設定されています。 diff --git a/lib/Text/MicroTemplate/Extended.pm b/lib/Text/MicroTemplate/Extended.pm index 8ef2aac..fdf14e0 100644 --- a/lib/Text/MicroTemplate/Extended.pm +++ b/lib/Text/MicroTemplate/Extended.pm @@ -353,7 +353,7 @@ C<template_args> also supports CodeRef as its value life below: ... ); -In template, you can C<<?= $foo ?>> to show C<$foo> value. this value is set by calling C<$self->get_foo> in template process time. +In template, you can C<<?= $foo ?>> to show C<$foo> value. this value is set by calling C<< $self->get_foo >> in template process time. This feature is useful to set variable does not exists when template object is created.
On Mon Nov 23 07:40:57 2009, FWIE wrote: Show quoted text
> The attached patch fixes some POD, which renders wrong, at least at > search.cpan.org.
I fixed this in 0.07. Thank you for your patch!