You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ko...@apache.org on 2022/11/18 13:43:08 UTC

svn commit: r1905381 [2/7] - in /subversion/branches/pristines-on-demand-on-mwf: ./ build/ac-macros/ build/generator/ build/win32/ contrib/client-side/emacs/ contrib/hook-scripts/ contrib/server-side/ doc/ doc/user/ notes/ notes/api-errata/1.7/ notes/c...

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/bindings/swig/ruby/test/test_wc.rb
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/bindings/swig/ruby/test/test_wc.rb?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/bindings/swig/ruby/test/test_wc.rb (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/bindings/swig/ruby/test/test_wc.rb Fri Nov 18 13:43:05 2022
@@ -342,11 +342,11 @@ class SvnWcTest < Test::Unit::TestCase
 
   def test_adm_ensure
     adm_dir = Dir.glob(File.join(@wc_path, "{.,_}svn")).first
-    assert(File.exists?(adm_dir))
+    assert(File.exist?(adm_dir))
     FileUtils.rm_rf(adm_dir)
-    assert(!File.exists?(adm_dir))
+    assert(!File.exist?(adm_dir))
     Svn::Wc.ensure_adm(@wc_path, @fs.uuid, @repos_uri, @repos_uri, 0)
-    assert(File.exists?(adm_dir))
+    assert(File.exist?(adm_dir))
   end
 
   def test_merge
@@ -474,19 +474,19 @@ EOE
       ctx.add(path)
       ctx.ci(@wc_path).revision
 
-      assert(File.exists?(path))
+      assert(File.exist?(path))
       Svn::Wc::AdmAccess.open(nil, @wc_path, true, 5) do |access|
         access.delete(path)
       end
-      assert(!File.exists?(path))
+      assert(!File.exist?(path))
 
       ctx.revert(path)
 
-      assert(File.exists?(path))
+      assert(File.exist?(path))
       Svn::Wc::AdmAccess.open(nil, @wc_path, true, 5) do |access|
         access.delete(path, nil, nil, true)
       end
-      assert(File.exists?(path))
+      assert(File.exist?(path))
     end
   end
 
@@ -808,9 +808,9 @@ EOE
         ctx.add(path2)
         rev2 = ctx.commit(@wc_path).revision
 
-        assert(File.exists?(path2))
+        assert(File.exist?(path2))
         assert_equal(0, ctx.up(@wc_path, 0))
-        assert(!File.exists?(path2))
+        assert(!File.exist?(path2))
         Svn::Wc::AdmAccess.open(nil, @wc_path) do |access|
           editor = access.update_editor('', 0)
           assert_equal(0, editor.target_revision)
@@ -848,9 +848,9 @@ EOE
         ctx.add(path2)
         rev2 = ctx.commit(@wc_path).revision
 
-        assert(File.exists?(path2))
+        assert(File.exist?(path2))
         assert_equal(0, ctx.up(@wc_path, 0))
-        assert(!File.exists?(path2))
+        assert(!File.exist?(path2))
         notification_count = 0
         Svn::Wc::AdmAccess.open(nil, @wc_path) do |access|
           notify_func = Proc.new {|n| notification_count += 1}
@@ -946,9 +946,9 @@ EOE
         ctx.add(dir2_path)
         rev2 = ctx.commit(@wc_path).revision
 
-        assert(File.exists?(path1))
+        assert(File.exist?(path1))
         assert_equal(rev2, ctx.switch(@wc_path, dir2_uri))
-        assert(File.exists?(File.join(@wc_path, file2)))
+        assert(File.exist?(File.join(@wc_path, file2)))
         Svn::Wc::AdmAccess.open_anchor(@wc_path) do |access, dir_access, target|
           editor = dir_access.switch_editor('', dir1_uri, rev2)
           assert_equal(rev2, editor.target_revision)

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/bindings/swig/ruby/test/windows_util.rb
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/bindings/swig/ruby/test/windows_util.rb?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/bindings/swig/ruby/test/windows_util.rb (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/bindings/swig/ruby/test/windows_util.rb Fri Nov 18 13:43:05 2022
@@ -115,7 +115,7 @@ exit 1
           lines = []
           gen_make_opts = File.join(@@top_dir, "gen-make.opts")
           lines =
-            File.read(gen_make_opts).lines.to_a if File.exists?(gen_make_opts)
+            File.read(gen_make_opts).lines.to_a if File.exist?(gen_make_opts)
           config = Hash.new do |hash, key|
             if /^--with-(.*)$/ =~ key
               hash[key] = File.join(@@top_dir, $1)

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/include/private/svn_doxygen.h
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/include/private/svn_doxygen.h?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/include/private/svn_doxygen.h (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/include/private/svn_doxygen.h Fri Nov 18 13:43:05 2022
@@ -26,7 +26,7 @@
  * libraries.  It is intended mainly for programmers, both those working
  * on Subversion itself, as well as developers of 3rd-party applications
  * intending to use these APIs.  For more information about using Subversion,
- * see the Subversion Book at http://svnbook.red-bean.com/.
+ * see the Subversion Book at https://svnbook.red-bean.com/.
  *
  * To learn more about Subversion, please visit https://subversion.apache.org/.
  */

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/include/svn_client.h
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/include/svn_client.h?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/include/svn_client.h (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/include/svn_client.h Fri Nov 18 13:43:05 2022
@@ -326,7 +326,7 @@ svn_client_get_ssl_client_cert_pw_prompt
  * for local paths.
  *
  * For deeper insight, please see the
- * <a href="http://svnbook.red-bean.com/nightly/en/svn.advanced.pegrevs.html">
+ * <a href="https://svnbook.red-bean.com/nightly/en/svn.advanced.pegrevs.html">
  * Peg and Operative Revisions</a> section of the Subversion Book.
  */
 

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/include/svn_io.h
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/include/svn_io.h?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/include/svn_io.h (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/include/svn_io.h Fri Nov 18 13:43:05 2022
@@ -1018,7 +1018,7 @@ svn_stream_empty(apr_pool_t *pool);
 /** Return a stream allocated in @a pool which forwards all requests
  * to @a stream.  Destruction is explicitly excluded from forwarding.
  *
- * @see http://subversion.apache.org/docs/community-guide/conventions.html#destruction-of-stacked-resources
+ * @see https://subversion.apache.org/docs/community-guide/conventions.html#destruction-of-stacked-resources
  *
  * @since New in 1.4.
  */

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_client/commit_util.c
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_client/commit_util.c?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_client/commit_util.c (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_client/commit_util.c Fri Nov 18 13:43:05 2022
@@ -366,7 +366,7 @@ bail_on_tree_conflicted_ancestor(svn_wc_
    If CANCEL_FUNC is non-null, call it with CANCEL_BATON to see
    if the user has cancelled the operation.
 
-   Any items added to COMMITTABLES are allocated from the COMITTABLES
+   Any items added to COMMITTABLES are allocated from the COMMITTABLES
    hash pool, not POOL.  SCRATCH_POOL is used for temporary allocations. */
 
 struct harvest_baton

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_fs_fs/fs_fs.c
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_fs_fs/fs_fs.c?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_fs_fs/fs_fs.c (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_fs_fs/fs_fs.c Fri Nov 18 13:43:05 2022
@@ -444,7 +444,7 @@ check_format(int format)
     return svn_error_createf(SVN_ERR_FS_UNSUPPORTED_FORMAT, NULL,
                              _("Found format '%d', only created by "
                                "unreleased dev builds; see "
-                               "http://subversion.apache.org"
+                               "https://subversion.apache.org"
                                "/docs/release-notes/1.7#revprop-packing"),
                              format);
 

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_repos/authz.c
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_repos/authz.c?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_repos/authz.c (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_repos/authz.c Fri Nov 18 13:43:05 2022
@@ -136,7 +136,7 @@ static svn_atomic_t authz_pool_initializ
  *
  * HTTPD may run pre/post config hooks multiple times and clear
  * its global configuration pool which our authz pools depend on.
- * This happens in a non-threaded context during HTTPD's intialization
+ * This happens in a non-threaded context during HTTPD's initialization
  * and HTTPD's main loop, so it is safe to reset static variables here.
  * (And any applications which cleared this pool while SVN threads
  * were running would crash no matter what.)

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_repos/repos.c
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_repos/repos.c?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_repos/repos.c (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_repos/repos.c Fri Nov 18 13:43:05 2022
@@ -817,7 +817,7 @@ create_conf(svn_repos_t *repos, apr_pool
 "### access through http: and/or file: URLs, then this file is"              NL
 "### irrelevant.)"                                                           NL
 ""                                                                           NL
-"### Visit http://subversion.apache.org/ for more information."              NL
+"### Visit https://subversion.apache.org/ for more information."             NL
 ""                                                                           NL
 "[general]"                                                                  NL
 "### The anon-access and auth-access options control access to the"          NL
@@ -1077,7 +1077,7 @@ create_repos_structure(svn_repos_t *repo
       "requirements of your site."                                           NL
       ""                                                                     NL;
     const char * const readme_footer =
-      "Visit http://subversion.apache.org/ for more information."            NL;
+      "Visit https://subversion.apache.org/ for more information."           NL;
     apr_file_t *f;
     apr_size_t written;
 

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/config_file.c
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/config_file.c?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/config_file.c (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/config_file.c Fri Nov 18 13:43:05 2022
@@ -1236,7 +1236,7 @@ svn_config_ensure(const char *config_dir
         "### It does not remove or invalidate existing stored credentials."  NL
         "### To do that, see the 'svn auth --remove' command, or remove the" NL
         "### cache files by hand as described in the Subversion book at"     NL
-        "### http://svnbook.red-bean.com/nightly/en/svn.serverconfig.netmodel.html#svn.tour.initial.authn-cache-purge"
+        "### https://svnbook.red-bean.com/nightly/en/svn.serverconfig.netmodel.html#svn.tour.initial.authn-cache-purge"
                                                                              NL
         "###"                                                                NL
         "### HTTP timeouts, if given, are specified in seconds.  A timeout"  NL

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/gpg_agent.c
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/gpg_agent.c?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/gpg_agent.c (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/gpg_agent.c Fri Nov 18 13:43:05 2022
@@ -224,7 +224,7 @@ bye_gpg_agent(int sd)
 {
   /* don't bother to check the result of the write, it either worked or it
    * didn't, but either way we're closing. */
-  write(sd, "BYE\n", 4);
+  (void)write(sd, "BYE\n", 4);
   close(sd);
 }
 

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/sysinfo.c
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/sysinfo.c?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/sysinfo.c (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/sysinfo.c Fri Nov 18 13:43:05 2022
@@ -1375,7 +1375,9 @@ static const char *
 release_name_from_version(int major, int minor, const char* product_name)
 {
   /* We can only do this if we know the official product name. */
-  if (0 == strcmp(product_name, "Mac OS X"))
+  if (0 == strcmp(product_name, "Mac OS X")
+      || 0 == strcmp(product_name, "OS X")
+      || 0 == strcmp(product_name, "macOS"))
     {
       /* See https://en.wikipedia.org/wiki/MacOS_version_history#Releases */
       switch(major)
@@ -1403,10 +1405,11 @@ release_name_from_version(int major, int
           break;
 
         case 11:
-          switch(minor)
-            {
-            case  0: return "Big Sur";
-            }
+          return "Big Sur";
+          break;
+
+        case 12:
+          return "Monterey";
           break;
         }
     }

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/version.c
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/version.c?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/version.c (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_subr/version.c Fri Nov 18 13:43:05 2022
@@ -147,7 +147,7 @@ svn_version_extended(svn_boolean_t verbo
              "This software consists of contributions made by many people;\n"
              "see the NOTICE file for more information.\n"
              "Subversion is open source software, see "
-             "http://subversion.apache.org/\n"));
+             "https://subversion.apache.org/\n"));
 
   if (verbose)
     {

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_wc/deprecated.c
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_wc/deprecated.c?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_wc/deprecated.c (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_wc/deprecated.c Fri Nov 18 13:43:05 2022
@@ -2815,6 +2815,7 @@ svn_wc__status2_from_3(svn_wc_status2_t
     }
 
   (*status)->entry = entry;
+  (*status)->locked = old_status->locked;
   (*status)->copied = old_status->copied;
   (*status)->repos_lock = svn_lock_dup(old_status->repos_lock, result_pool);
 
@@ -2935,7 +2936,7 @@ struct status4_wrapper_baton
   svn_wc_context_t *wc_ctx;
 };
 
-/* */
+/* Implements svn_wc_status_func4_t */
 static svn_error_t *
 status4_wrapper_func(void *baton,
                      const char *local_abspath,

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_wc/wc_db_wcroot.c
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_wc/wc_db_wcroot.c?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_wc/wc_db_wcroot.c (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/libsvn_wc/wc_db_wcroot.c Fri Nov 18 13:43:05 2022
@@ -331,7 +331,7 @@ svn_wc__db_pdh_create_wcroot(svn_wc__db_
         _("This client is too old to work with the working copy at\n"
           "'%s' (format %d).\n"
           "You need to get a newer Subversion client. For more details, see\n"
-          "  http://subversion.apache.org/faq.html#working-copy-format-change\n"
+          "  https://subversion.apache.org/faq.html#working-copy-format-change\n"
           ),
         svn_dirent_local_style(wcroot_abspath, scratch_pool),
         format);

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/mod_dav_svn/repos.c
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/mod_dav_svn/repos.c?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/mod_dav_svn/repos.c (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/mod_dav_svn/repos.c Fri Nov 18 13:43:05 2022
@@ -3487,7 +3487,7 @@ emit_collection_head(const dav_resource
       SVN_ERR(dav_svn__brigade_puts(bb, output, xml_index_dtd));
       SVN_ERR(dav_svn__brigade_puts(bb, output,
                          "<svn version=\"" SVN_VERSION "\"\n"
-                         "     href=\"http://subversion.apache.org/\">\n"));
+                         "     href=\"https://subversion.apache.org/\">\n"));
       SVN_ERR(dav_svn__brigade_puts(bb, output, "  <index"));
 
       if (name)
@@ -3644,7 +3644,7 @@ emit_collection_tail(const dav_resource
           */
           SVN_ERR(dav_svn__brigade_puts(bb, output,
                    " </ul>\n <hr noshade><em>Powered by "
-                   "<a href=\"http://subversion.apache.org/\">"
+                   "<a href=\"https://subversion.apache.org/\">"
                    "Apache Subversion"
                    "</a> version " SVN_VERSION "."
                    "</em>\n</body></html>"));
@@ -3690,7 +3690,7 @@ deliver(const dav_resource *resource, ap
       int i;
 
       /* <svn version="1.3.0 (dev-build)"
-              href="http://subversion.apache.org">
+              href="https://subversion.apache.org">
            <index name="[info->repos->repo_name]"
                   path="[info->repos_path]"
                   rev="[info->root.rev]">

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/po/de.po
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/po/de.po?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/po/de.po [UTF-8] (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/po/de.po [UTF-8] Fri Nov 18 13:43:05 2022
@@ -5793,8 +5793,8 @@ msgstr "Nicht unterstützte Dateisystem-
 
 #: ../libsvn_fs_fs/fs_fs.c:444
 #, c-format
-msgid "Found format '%d', only created by unreleased dev builds; see http://subversion.apache.org/docs/release-notes/1.7#revprop-packing"
-msgstr "Format »%d« gefunden, das nur durch nicht veröffentlichte Entwicklungsversionen erstellt wurde; siehe http://subversion.apache.org/docs/release-notes/1.7#revprop-packing"
+msgid "Found format '%d', only created by unreleased dev builds; see https://subversion.apache.org/docs/release-notes/1.7#revprop-packing"
+msgstr "Format »%d« gefunden, das nur durch nicht veröffentlichte Entwicklungsversionen erstellt wurde; siehe https://subversion.apache.org/docs/release-notes/1.7#revprop-packing"
 
 #: ../libsvn_fs_fs/fs_fs.c:455
 #, c-format
@@ -10043,12 +10043,12 @@ msgid ""
 "Copyright (C) 2018 The Apache Software Foundation.\n"
 "This software consists of contributions made by many people;\n"
 "see the NOTICE file for more information.\n"
-"Subversion is open source software, see http://subversion.apache.org/\n"
+"Subversion is open source software, see https://subversion.apache.org/\n"
 msgstr ""
 "Copyright (C) 2015 The Apache Software Foundation.\n"
 "Diese Software besteht aus Beiträgen vieler Personen;\n"
 "siehe Datei NOTICE für weitere Informationen.\n"
-"Subversion ist Open Source Software, siehe http://subversion.apache.org/\n"
+"Subversion ist Open Source Software, siehe https://subversion.apache.org/\n"
 
 #: ../libsvn_subr/version.c:224 ../libsvn_subr/version.c:235
 #: ../libsvn_subr/version.c:241 ../libsvn_subr/version.c:258
@@ -11324,12 +11324,12 @@ msgid ""
 "This client is too old to work with the working copy at\n"
 "'%s' (format %d).\n"
 "You need to get a newer Subversion client. For more details, see\n"
-"  http://subversion.apache.org/faq.html#working-copy-format-change\n"
+"  https://subversion.apache.org/faq.html#working-copy-format-change\n"
 msgstr ""
 "Dieser Client ist zu alt, um mit dieser Arbeitskopie umzugehen:\n"
 "»%s« (Format %d).\n"
 "Sie benötigen einen neueren Subversion-Client. Für mehr Details, siehe\n"
-"  http://subversion.apache.org/faq.html#working-copy-format-change\n"
+"  https://subversion.apache.org/faq.html#working-copy-format-change\n"
 
 #: ../libsvn_wc/wc_db_wcroot.c:349
 msgid "Cleanup with an older 1.7 client before upgrading with this client"
@@ -12215,10 +12215,10 @@ msgstr ""
 #: ../svn/help-cmd.c:67 ../svnbench/help-cmd.c:62
 msgid ""
 "Subversion is a tool for version control.\n"
-"For additional information, see http://subversion.apache.org/\n"
+"For additional information, see https://subversion.apache.org/\n"
 msgstr ""
 "Subversion ist ein Programm zur Versionskontrolle.\n"
-"Für weitere Informationen, siehe: http://subversion.apache.org/\n"
+"Für weitere Informationen, siehe: https://subversion.apache.org/\n"
 
 #: ../svn/help-cmd.c:71 ../svnbench/help-cmd.c:66 ../svnrdump/svnrdump.c:616
 #: ../svnsync/svnsync.c:1938

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/po/es.po
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/po/es.po?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/po/es.po [UTF-8] (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/po/es.po [UTF-8] Fri Nov 18 13:43:05 2022
@@ -5781,7 +5781,7 @@ msgid ""
 "Copyright (C) 2010 The Apache Software Foundation.\n"
 "This software consists of contributions made by many people;\n"
 "see the NOTICE file for more information.\n"
-"Subversion is open source software, see http://subversion.apache.org/\n"
+"Subversion is open source software, see https://subversion.apache.org/\n"
 "\n"
 msgstr ""
 
@@ -7062,10 +7062,10 @@ msgid ""
 "This client is too old to work with the working copy at\n"
 "'%s' (format %d).\n"
 "You need to get a newer Subversion client. For more details, see\n"
-"  http://subversion.apache.org/faq.html#working-copy-format-change\n"
+"  https://subversion.apache.org/faq.html#working-copy-format-change\n"
 msgstr ""
 "Este cliente es demasiado viejo para funcionar con la copia de trabajo '%s'.  Necesita conseguir uno nuevo o bajar la versión de esta copia de trabajo.\n"
-"Vea http://subversion.apache.org/faq.html#working-copy-format-change\n"
+"Vea https://subversion.apache.org/faq.html#working-copy-format-change\n"
 "para más detalles."
 
 #: ../libsvn_wc/wc_db_pdh.c:265
@@ -7440,7 +7440,7 @@ msgstr ""
 #, fuzzy
 msgid ""
 "Subversion is a tool for version control.\n"
-"For additional information, see http://subversion.apache.org/\n"
+"For additional information, see https://subversion.apache.org/\n"
 msgstr ""
 "Subversion es una herramienta para control de versiones.\n"
 "Para información adicional, vea http://subversion.tigris.org/\n"

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/po/fr.po
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/po/fr.po?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/po/fr.po [UTF-8] (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/po/fr.po [UTF-8] Fri Nov 18 13:43:05 2022
@@ -3222,8 +3222,8 @@ msgstr "'%s' contient une option invalid
 
 #: ../libsvn_fs_fs/fs_fs.c:1071
 #, c-format
-msgid "Found format '%d', only created by unreleased dev builds; see http://subversion.apache.org/docs/release-notes/1.7#revprop-packing"
-msgstr "Format '%d' uniquement créé par des versions non officielles ; Voir http://subversion.apache.org/docs/release-notes/1.7#revprop-packing"
+msgid "Found format '%d', only created by unreleased dev builds; see https://subversion.apache.org/docs/release-notes/1.7#revprop-packing"
+msgstr "Format '%d' uniquement créé par des versions non officielles ; Voir https://subversion.apache.org/docs/release-notes/1.7#revprop-packing"
 
 #: ../libsvn_fs_fs/fs_fs.c:1082
 #, c-format
@@ -5894,13 +5894,13 @@ msgid ""
 "Copyright (C) 2012 The Apache Software Foundation.\n"
 "This software consists of contributions made by many people; see the NOTICE\n"
 "file for more information.\n"
-"Subversion is open source software, see http://subversion.apache.org/\n"
+"Subversion is open source software, see https://subversion.apache.org/\n"
 "\n"
 msgstr ""
 "Copyright (C) 2012 The Apache Software Foundation.\n"
 "Ce logiciel est la somme des contributions de nombreuses personnes ;\n"
 "voir le fichier NOTICE pour plus d'information.\n"
-"Subversion est un logiciel libre, voir http://subversion.apache.org/\n"
+"Subversion est un logiciel libre, voir https://subversion.apache.org/\n"
 "\n"
 
 #: ../libsvn_subr/path.c:1090
@@ -7293,11 +7293,11 @@ msgid ""
 "This client is too old to work with the working copy at\n"
 "'%s' (format %d).\n"
 "You need to get a newer Subversion client. For more details, see\n"
-"  http://subversion.apache.org/faq.html#working-copy-format-change\n"
+"  https://subversion.apache.org/faq.html#working-copy-format-change\n"
 msgstr ""
 "Ce client est trop vieux pour la copie de travail '%s' (format %d).\n"
 "Vous avez besoin d'une nouvelle version du client Subversion. Voir pour\n"
-"les détails : http://subversion.apache.org/faq.html#working-copy-format-change\n"
+"les détails : https://subversion.apache.org/faq.html#working-copy-format-change\n"
 
 #: ../libsvn_wc/wc_db_wcroot.c:288
 msgid "Cleanup with an older 1.7 client before upgrading with this client"
@@ -7757,10 +7757,10 @@ msgstr ""
 #: ../svn/help-cmd.c:63
 msgid ""
 "Subversion is a tool for version control.\n"
-"For additional information, see http://subversion.apache.org/\n"
+"For additional information, see https://subversion.apache.org/\n"
 msgstr ""
 "Subversion est un outil pour gérer des versions.\n"
-"Pour plus d'informations, voir http://subversion.apache.org/\n"
+"Pour plus d'informations, voir https://subversion.apache.org/\n"
 
 #: ../svn/help-cmd.c:70 ../svnrdump/svnrdump.c:503 ../svnsync/main.c:1854
 msgid ""

Modified: subversion/branches/pristines-on-demand-on-mwf/subversion/po/it.po
URL: http://svn.apache.org/viewvc/subversion/branches/pristines-on-demand-on-mwf/subversion/po/it.po?rev=1905381&r1=1905380&r2=1905381&view=diff
==============================================================================
--- subversion/branches/pristines-on-demand-on-mwf/subversion/po/it.po (original)
+++ subversion/branches/pristines-on-demand-on-mwf/subversion/po/it.po Fri Nov 18 13:43:05 2022
@@ -6107,7 +6107,7 @@ msgid ""
 "Copyright (C) 2010 The Apache Software Foundation.\n"
 "This software consists of contributions made by many people;\n"
 "see the NOTICE file for more information.\n"
-"Subversion is open source software, see http://subversion.apache.org/\n"
+"Subversion is open source software, see https://subversion.apache.org/\n"
 "\n"
 msgstr ""
 
@@ -7452,7 +7452,7 @@ msgid ""
 "This client is too old to work with the working copy at\n"
 "'%s' (format %d).\n"
 "You need to get a newer Subversion client. For more details, see\n"
-"  http://subversion.apache.org/faq.html#working-copy-format-change\n"
+"  https://subversion.apache.org/faq.html#working-copy-format-change\n"
 msgstr ""
 
 #: ../libsvn_wc/wc_db_pdh.c:265
@@ -7822,7 +7822,7 @@ msgstr ""
 #, fuzzy
 msgid ""
 "Subversion is a tool for version control.\n"
-"For additional information, see http://subversion.apache.org/\n"
+"For additional information, see https://subversion.apache.org/\n"
 msgstr ""
 "Subversion è un programma di controllo di versione.\n"
 "Per ulteriori informazioni, vedi http://subversion.tigris.org/\n"