Blame SOURCES/mod_perl-2.0.10-Convert-documentation-to-UTF-8.patch

973ec2
From 93ab44e687bd81a37e6e1fd285e0d47162e76c2d Mon Sep 17 00:00:00 2001
973ec2
From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com>
973ec2
Date: Tue, 22 Nov 2016 16:42:26 +0100
973ec2
Subject: [PATCH] Convert documentation to UTF-8
973ec2
MIME-Version: 1.0
973ec2
Content-Type: text/plain; charset=UTF-8
973ec2
Content-Transfer-Encoding: 8bit
973ec2
973ec2
Signed-off-by: Petr Písař <ppisar@redhat.com>
973ec2
---
973ec2
 Changes                       | 6 +++---
973ec2
 SVN-MOVE                      | 2 +-
973ec2
 docs/devel/core/explained.pod | 4 +++-
973ec2
 docs/devel/debug/c.pod        | 4 +++-
973ec2
 docs/user/Changes.pod         | 4 +++-
973ec2
 5 files changed, 13 insertions(+), 7 deletions(-)
973ec2
973ec2
diff --git a/Changes b/Changes
973ec2
index 789c55b..145ed2f 100644
973ec2
--- a/Changes
973ec2
+++ b/Changes
973ec2
@@ -701,7 +701,7 @@ improve the diagnostics when detecting mp2 < 1.999022, tell the user
973ec2
 which files and/or dirs need to be removed [Stas]
973ec2
 
973ec2
 restore the DESTDIR support partially nuked by the apache2 rename
973ec2
-branch [Torsten Förtsch <torsten.foertsch gmx.net>]
973ec2
+branch [Torsten Förtsch <torsten.foertsch gmx.net>]
973ec2
 
973ec2
 add APR::Status to provide functions corresponding to the
973ec2
 APR_STATUS_IS_* macros of apr_errno.h, especially those composites
973ec2
@@ -1113,7 +1113,7 @@ Fix Modperl::Util::unload_package() [Gozer]
973ec2
   - Leave entries from other packages alone
973ec2
 
973ec2
 $filter->remove now works with native (non-modperl) filters + test
973ec2
-[Torsten Förtsch <torsten.foertsch gmx.net>]
973ec2
+[Torsten Förtsch <torsten.foertsch gmx.net>]
973ec2
 
973ec2
 
973ec2
 
973ec2
@@ -2135,7 +2135,7 @@ Make sure that the static mod_perl library is built after the dynamic
973ec2
 
973ec2
 Apache::Status now generates HTML 4.01 Strict (and in many cases, also
973ec2
 ISO-HTML) compliant output. Also add a simple CSS to make the reports
973ec2
-look nicer. [Ville Skyttä <ville.skytta@iki.fi>]
973ec2
+look nicer. [Ville Skyttä <ville.skytta@iki.fi>]
973ec2
 
973ec2
 APR::Pool::DESTROY implemented and tweaked to only
973ec2
 destroy pools created via APR::Pool->new() [Geoffrey Young]
973ec2
diff --git a/SVN-MOVE b/SVN-MOVE
973ec2
index e98bfc1..6bc42ac 100644
973ec2
--- a/SVN-MOVE
973ec2
+++ b/SVN-MOVE
973ec2
@@ -1,7 +1,7 @@
973ec2
 This file tracks the things that need to be done to accomplish the
973ec2
 move of modperl projects to SVN:
973ec2
 
973ec2
-* missing commit template files (à là CVS)
973ec2
+* missing commit template files (à là CVS)
973ec2
   PR:
973ec2
   Obtained from:
973ec2
   Submitted by:
973ec2
diff --git a/docs/devel/core/explained.pod b/docs/devel/core/explained.pod
973ec2
index 40f79a2..1298793 100644
973ec2
--- a/docs/devel/core/explained.pod
973ec2
+++ b/docs/devel/core/explained.pod
973ec2
@@ -1,3 +1,5 @@
973ec2
+=encoding utf8
973ec2
+
973ec2
 =head1 NAME
973ec2
 
973ec2
 mod_perl 2.0 Source Code Explained
973ec2
@@ -704,7 +706,7 @@ arguments passed on the Perl side and put the results back onto the
973ec2
 stack.  Therefore the first thing we do is to initialize a few special
973ec2
 variables using the C<dXSARGS> macro defined in I<XSUB.h>, which in
973ec2
 fact calls a bunch of other macros. These variables help to manipulate
973ec2
-the stack. C<dSP> is one of these macros and it declares and initial­
973ec2
+the stack. C<dSP> is one of these macros and it declares and initial­
973ec2
 izes a local copy of the Perl stack pointer C<sp> which . This local
973ec2
 copy should always be accessed as C<SP>.
973ec2
 
973ec2
diff --git a/docs/devel/debug/c.pod b/docs/devel/debug/c.pod
973ec2
index 64a607c..10bff1c 100644
973ec2
--- a/docs/devel/debug/c.pod
973ec2
+++ b/docs/devel/debug/c.pod
973ec2
@@ -1,3 +1,5 @@
973ec2
+=encoding utf8
973ec2
+
973ec2
 =head1 NAME
973ec2
 
973ec2
 Debugging mod_perl C Internals
973ec2
@@ -724,7 +726,7 @@ and now we call C<curinfo> again:
973ec2
   gdb) curinfo
973ec2
   14:/home/httpd/cgi-bin/core_dump.pl
973ec2
 
973ec2
-Et voilà, we can see that the segfault was triggered on line 14 of
973ec2
+Et voilà, we can see that the segfault was triggered on line 14 of
973ec2
 F<core_dump.pl>, which has the line:
973ec2
 
973ec2
   Debug::DumpCore::segv();
973ec2
diff --git a/docs/user/Changes.pod b/docs/user/Changes.pod
973ec2
index f9ecb76..3582676 100644
973ec2
--- a/docs/user/Changes.pod
973ec2
+++ b/docs/user/Changes.pod
973ec2
@@ -1,3 +1,5 @@
973ec2
+=encoding utf8
973ec2
+
973ec2
 =head1 NAME
973ec2
 
973ec2
 CHANGES
973ec2
@@ -19,7 +21,7 @@ A new troubleshooting section on how to resolve can't locate file foo,
973ec2
 when there is a system limit on the maximum open files. By Ken Simpson
973ec2
 E<lt>ksimpsonE<lt>atE<gt>larch.mailchannels.comE<gt>.
973ec2
 
973ec2
-A few corrections in the config chapter by Jean-Sébastien Guay
973ec2
+A few corrections in the config chapter by Jean-Sébastien Guay
973ec2
 E<lt>jean_seb E<lt>atE<gt> videotron.caE<gt>.
973ec2
 
973ec2
 A new troubleshooting section on how to resolve "undefined symbol"
973ec2
-- 
973ec2
2.7.4
973ec2