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

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