From cd8f466757643af0f6f0e0a13e2311fd6c6e774f Mon Sep 17 00:00:00 2001 From: arunp Date: Wed, 30 Oct 2024 16:23:26 +0000 Subject: [PATCH 1/3] Github/Issue/29: Fix Location tag syntax and markdown rendering --- README.md | 6 +++--- lib/HTML/Mason.pm | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 399f2a51..426d7b0b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ version 1.60 PerlModule HTML::Mason::ApacheHandler - + SetHandler perl-script PerlHandler HTML::Mason::ApacheHandler @@ -113,7 +113,7 @@ httpd.conf: PerlModule HTML::Mason::ApacheHandler - + SetHandler perl-script PerlHandler HTML::Mason::ApacheHandler @@ -122,7 +122,7 @@ The PerlModule directive simply ensures that the Mason code is loaded in the parent process before forking, which can save some memory when running mod\_perl. -The section routes all requests to the Mason handler, which +The `` section routes all requests to the Mason handler, which is a simple way to try out Mason. A more refined setup is discussed in the [Controlling Access via Filename Extension](https://metacpan.org/pod/HTML%3A%3AMason%3A%3AAdmin#Controlling-Access-via-Filename-Extension) section of the administrator's manual. diff --git a/lib/HTML/Mason.pm b/lib/HTML/Mason.pm index 6e792a8b..9d59ce0d 100644 --- a/lib/HTML/Mason.pm +++ b/lib/HTML/Mason.pm @@ -26,7 +26,7 @@ __END__ PerlModule HTML::Mason::ApacheHandler - + SetHandler perl-script PerlHandler HTML::Mason::ApacheHandler @@ -130,7 +130,7 @@ httpd.conf: PerlModule HTML::Mason::ApacheHandler - + SetHandler perl-script PerlHandler HTML::Mason::ApacheHandler From 9aaaf5e404f4759858be21cb2d2ce8ddab7f539f Mon Sep 17 00:00:00 2001 From: arunp Date: Mon, 18 Nov 2024 14:48:01 +0000 Subject: [PATCH 2/3] Github/Issue/29: Revert readme changes. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 426d7b0b..399f2a51 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ version 1.60 PerlModule HTML::Mason::ApacheHandler - + SetHandler perl-script PerlHandler HTML::Mason::ApacheHandler @@ -113,7 +113,7 @@ httpd.conf: PerlModule HTML::Mason::ApacheHandler - + SetHandler perl-script PerlHandler HTML::Mason::ApacheHandler @@ -122,7 +122,7 @@ The PerlModule directive simply ensures that the Mason code is loaded in the parent process before forking, which can save some memory when running mod\_perl. -The `` section routes all requests to the Mason handler, which +The section routes all requests to the Mason handler, which is a simple way to try out Mason. A more refined setup is discussed in the [Controlling Access via Filename Extension](https://metacpan.org/pod/HTML%3A%3AMason%3A%3AAdmin#Controlling-Access-via-Filename-Extension) section of the administrator's manual. From 90afd349cdfd744c1c476ed50e57cd27370106b4 Mon Sep 17 00:00:00 2001 From: arunp Date: Mon, 18 Nov 2024 14:50:37 +0000 Subject: [PATCH 3/3] Github/Issue/29: Fix formatting --- lib/HTML/Mason.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/HTML/Mason.pm b/lib/HTML/Mason.pm index 9d59ce0d..d31f4ec3 100644 --- a/lib/HTML/Mason.pm +++ b/lib/HTML/Mason.pm @@ -139,7 +139,7 @@ The PerlModule directive simply ensures that the Mason code is loaded in the parent process before forking, which can save some memory when running mod_perl. -The section routes all requests to the Mason handler, which +The C<< >> section routes all requests to the Mason handler, which is a simple way to try out Mason. A more refined setup is discussed in the L section of the administrator's manual.