Git commit a2924569729802425927e7c78d30898cf47d5a35 by Karl Ove Hufthammer.
Committed on 21/05/2020 at 15:05.
Pushed by huftis into branch 'master'.

Refer to Git instead of SVN in source code download instructions

M  +2    -2    README
M  +4    -4    doc/user/about.docbook
M  +4    -4    www/base/index.php

https://invent.kde.org/sdk/pology/commit/a2924569729802425927e7c78d30898cf47d5a35

diff --git a/README b/README
index 92b2bcee..b4e587e9 100644
--- a/README
+++ b/README
@@ -16,9 +16,9 @@ Obtaining
 ---------
 
 Source releases of Pology can be fetched from http://pology.nedohodnik.net/.
-The latest development code can be obtained from a Subversion repository:
+The latest development code can be obtained from a Git repository:
 
-  $ svn checkout svn://anonsvn.kde.org/home/kde/trunk/l10n-support/pology
+  $ git clone https://invent.kde.org/sdk/pology.git
 
 
 Installing
diff --git a/doc/user/about.docbook b/doc/user/about.docbook
index 3aa63972..ef0ecee8 100644
--- a/doc/user/about.docbook
+++ b/doc/user/about.docbook
@@ -28,16 +28,16 @@
 <para>Naturally, the easiest way is to install Pology packages for your 
operating system distribution, if they exist. Otherwise you must obtain Pology 
as source code, but you will still be able to prepare it for use quite 
simply.</para>
 
 <para>You can either download a release tarball from <emphasis>[[insert link 
here]]</emphasis>, or fetch the latest development version from the version 
control repository. To do the latter, execute<footnote>
-    <para><command>svn</command> is the primary command of <ulink 
url="http://subversion.tigris.org/";>Subversion</ulink> version control system. 
Subversion is almost certainly ready for installation from your operating 
system's package repositories.</para>
+    <para><command>git</command> is the primary command of the <ulink 
url="https://git-scm.com/";>Git</ulink> version control system. Git is almost 
certainly ready for installation from your operating system's package 
repositories.</para>
 </footnote>:
 <programlisting language="bash">
 $ cd <replaceable>PARENTDIR</replaceable>
-$ svn checkout svn://anonsvn.kde.org/home/kde/trunk/l10n-support/pology
+$ git clone https://invent.kde.org/sdk/pology.git
 </programlisting>
-This will create the <filename>pology</filename> subdirectory inside the 
<replaceable>PARENTDIR</replaceable>, and download full Pology source into it. 
When you want to update to the latest version later on, you do not have to 
download everything again; instead you can execute <userinput>svn 
update</userinput> in the directory Pology's root directory:
+This will create the <filename>pology</filename> subdirectory inside the 
<replaceable>PARENTDIR</replaceable>, and download full Pology source into it. 
When you want to update to the latest version later on, you do not have to 
download everything again; instead you can execute <userinput>git 
pull</userinput> in the directory Pology's root directory:
 <programlisting language="bash">
 $ cd <replaceable>POLOGYDIR</replaceable>
-$ svn update
+$ git pull
 </programlisting>
 This will fetch only the modifications since the checkout (or the previous 
update) and apply them to the existing source tree.</para>
 
diff --git a/www/base/index.php b/www/base/index.php
index 7043b49b..fbca8b23 100644
--- a/www/base/index.php
+++ b/www/base/index.php
@@ -39,10 +39,10 @@ t_("<p class='first'>Latest release can be downloaded from 
here:</p>".
    sprintf("%s/%s/%s", $rooturl, $reldir, $relfile), $relfile,
    sprintf("%s/%s/", $rooturl, $reldir), sprintf("%s/", $reldir));
 
-$repourl_dvl = "svn://anonsvn.kde.org/home/kde/trunk/l10n-support/pology";
-$webrepourl_dvl = "http://websvn.kde.org/trunk/l10n-support/pology/";;
-t_("<p>Latest development code can be obtained from a Subversion 
repository:</p>".
-   "<div class='inset'><p><code>svn checkout %s</code></p></div>".
+$repourl_dvl = "https://invent.kde.org/sdk/pology.git";;
+$webrepourl_dvl = "https://invent.kde.org/sdk/pology";;
+t_("<p>Latest development code can be obtained from a Git repository:</p>".
+   "<div class='inset'><p><code>git clone %s</code></p></div>".
    "<p class='cont'>or browsed through a <a href='%s'>web interface</a>.</p>",
    $repourl_dvl, $webrepourl_dvl);
 

Reply via email to