You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlgraphics.apache.org by ss...@apache.org on 2023/03/23 16:19:41 UTC

[xmlgraphics-website] branch master updated: Add git docs

This is an automated email from the ASF dual-hosted git repository.

ssteiner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/xmlgraphics-website.git


The following commit(s) were added to refs/heads/master by this push:
     new f58f95a8 Add git docs
f58f95a8 is described below

commit f58f95a8d1d8095b71ca97bc23eed14e93ce4d0b
Author: Simon Steiner <ss...@apache.org>
AuthorDate: Thu Mar 23 16:19:29 2023 +0000

    Add git docs
---
 content/batik/dev/branches.mdtext |  8 ++++----
 content/batik/download            |  4 ++--
 content/fop/dev/index.mdtext      |  4 ++--
 content/fop/dev/tools.mdtext      | 30 +++++++++++++++---------------
 content/fop/trunk/index.mdtext    |  2 +-
 content/repo.mdtext               | 22 +++++++++++-----------
 6 files changed, 35 insertions(+), 35 deletions(-)

diff --git a/content/batik/dev/branches.mdtext b/content/batik/dev/branches.mdtext
index 595c6614..dcc68456 100644
--- a/content/batik/dev/branches.mdtext
+++ b/content/batik/dev/branches.mdtext
@@ -1,15 +1,15 @@
-Title: Subversion repository branches
+Title: Git repository branches
 
-#Subversion repository branches
+#Git repository branches
 
 
-This page contains information on the current work that is being done in Batik’s Subversion repository. There are currently three main branches in use in the repository:
+This page contains information on the current work that is being done in Batik’s Git repository. There are currently three main branches in use in the repository:
 
 
 
 trunk
 :
-The [trunk](http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk) is the main development branch. All bug fixes and most new non-experimental features are checked in to this branch. While it is the bleeding edge of the available Batik code, it is generally stable enough to use. For more information on SVG 1.2 features that are supported by the trunk, see the [SVG 1.2 support](../dev/svg12.html) page.
+The [trunk](https://github.com/apache/xmlgraphics-batik.git) is the main development branch. All bug fixes and most new non-experimental features are checked in to this branch. While it is the bleeding edge of the available Batik code, it is generally stable enough to use. For more information on SVG 1.2 features that are supported by the trunk, see the [SVG 1.2 support](../dev/svg12.html) page.
 
 
 webapi
diff --git a/content/batik/download b/content/batik/download
index cc5042c7..7e0bc5be 100644
--- a/content/batik/download
+++ b/content/batik/download
@@ -52,9 +52,9 @@ Nightly snapshots of the source tree are available from the [Apache build server
  
 ## Subversion repository
 
-To fetch the latest Subversion repository trunk, just run the following command:
+To fetch the latest Git repository main, just run the following command:
 
-    svn checkout http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk/
+    git clone https://github.com/apache/xmlgraphics-batik.git
 
 You can also browse the Subversion repository using ViewCVS at .
 
diff --git a/content/fop/dev/index.mdtext b/content/fop/dev/index.mdtext
index 8b64e559..188a65b5 100644
--- a/content/fop/dev/index.mdtext
+++ b/content/fop/dev/index.mdtext
@@ -11,9 +11,9 @@ For basic and user information on FOP, please visit the [Apache&trade; FOP homep
 
 ## Development { #lines}
 
-The main development happens on "FOP Trunk".
+The main development happens on "FOP Main".
 
-<note>The SVN repository URL for the trunk is:<br/>`http://svn.apache.org/repos/asf/xmlgraphics/fop/trunk/`</note>
+<note>The Git repository URL for the main is:<br/>`https://github.com/apache/xmlgraphics-fop.git`</note>
 
 ## Getting Involved { #involved}
 
diff --git a/content/fop/dev/tools.mdtext b/content/fop/dev/tools.mdtext
index 9b1d2c4c..5578b0c9 100644
--- a/content/fop/dev/tools.mdtext
+++ b/content/fop/dev/tools.mdtext
@@ -12,7 +12,7 @@ Here is a (probably not comprehensive) list of tools you will need to be a succe
 
 - A java IDE (see [IDE](#ide)).
 
-- A Subversion client (see [Subversion](#svn)).
+- A Git client (see [Git](#git)).
 
 - Maven (see [Building FOP](../trunk/compiling.html)).
 
@@ -24,30 +24,30 @@ Here is a (probably not comprehensive) list of tools you will need to be a succe
 
 See [the Apache Contributors Tech Guide](https://www.apache.org/dev/contributors.html) for useful information and links for Apache developers, including help with tools and procedures.
 
-## Subversion (SVN) { #svn}
+## Git { #git}
 
-### General { #svn_general}
+### General { #git_general}
 
 Visit [Apache XML Graphics Code Repositories](http://xmlgraphics.apache.org/repo.html) for useful information.
 
-You will need a SVN client to be able to gain access to the FOP repository. For general SVN information, visit [Subversion Home](https://subversion.apache.org). A comprehensive list of clients for all operating systems and many IDEs can be found at [the Subversion Links page](https://en.wikipedia.org/wiki/Comparison_of_Subversion_clients). For Microsoft Windows we recommend [TortoiseSVN](https://tortoisesvn.net). The command-line client that comes with Subversion is also very easy to use.
+You will need a Git client to be able to gain access to the FOP repository. For general Git information, visit [Git Home](https://git-scm.com). A comprehensive list of clients for all operating systems and many IDEs can be found at [the Git Links page](https://git-scm.com/downloads/guis). For Microsoft Windows we recommend [TortoiseGit](https://tortoisegit.org). The command-line client that comes with Git is also very easy to use.
 
-### Step-by-step instruction for downloading FOP using the SVN command-line client { #svn_download}
+### Step-by-step instruction for downloading FOP using the Git command-line client { #git_download}
 
 On the command-line (Windows or Unix), simply run:
 
-`svn co http://svn.apache.org/repos/asf/xmlgraphics/fop/trunk/ fop-trunk`
+`git clone https://github.com/apache/xmlgraphics-fop.git`
 
-This will download the FOP trunk into the directory "fop-trunk".
+This will download the FOP trunk into the directory "xmlgraphics-fop".
 
-### Step-by-step instructions for downloading FOP using TortoiseSVN (on Windows) { #tortoisesvn_download}
+### Step-by-step instructions for downloading FOP using TortoiseGit (on Windows) { #tortoisegit_download}
 
 
 - Create a new, empty directory in a place of your choice.
 
-- Right-click the new directory and select "SVN Checkout..." from the context menu.
+- Right-click the new directory and select "Git Clone..." from the context menu.
 
-- Enter `http://svn.apache.org/repos/asf/xmlgraphics/fop/trunk/` as the URL of the repository.
+- Enter `https://github.com/apache/xmlgraphics-fop.git` as the URL of the repository.
 
 - Click "OK" and the download should begin.
 
@@ -62,16 +62,16 @@ This will download the FOP trunk into the directory "fop-trunk".
 
     This will write the patch to the file "mypatch.diff".
 
-- If you are running TortoiseSVN, you can select "Create Patch..." in the TortoiseSVN context menu.
+- If you are running TortoiseGit, you can select "Create Patch..." in the TortoiseGit context menu.
 
-### Documentation { #svn-doc}
+### Documentation { #git-doc}
 
 
-- [online resource] [The Subversion Home Page](https://subversion.apache.org).
+- [online resource] [The Git Home Page](https://git-scm.com).
 
-- [electronic manual] [Version Control with Subversion](http://svnbook.red-bean.com) (official Subversion manual). Note that this manual applies to the command-line version of SVN.
+- [electronic manual] [Version Control with Git](https://git-scm.com/docs/user-manual) (official Git manual). Note that this manual applies to the command-line version of Git.
 
-- [online resource] [Comprehensive list of links to documentation and Subversion clients and plugins.](https://en.wikipedia.org/wiki/Comparison_of_Subversion_clients)
+- [online resource] [Comprehensive list of links to documentation and Git clients and plugins.](https://git-scm.com/downloads/guis)
 
 ## Integrated Development Environments (IDEs) { #ide}
 
diff --git a/content/fop/trunk/index.mdtext b/content/fop/trunk/index.mdtext
index 11b1dec0..0a773b92 100644
--- a/content/fop/trunk/index.mdtext
+++ b/content/fop/trunk/index.mdtext
@@ -5,7 +5,7 @@ Title: Apache(tm) FOP Trunk (Development code)
 
 ## Introduction { #intro}
 
-Apache&trade; **FOP Trunk** is the name for the current development code as found in the [Subversion repository](http://svn.apache.org/repos/asf/xmlgraphics/fop/trunk/). This section of the FOP web site provides the documentation for this version.
+Apache&trade; **FOP Main** is the name for the current development code as found in the [Git repository](https://github.com/apache/xmlgraphics-fop.git). This section of the FOP web site provides the documentation for this version.
 
 The Apache FOP team is proud to present to you this production quality codebase. It has taken over three years to get this far and over two years without a new release from the FOP project. We're still in the process of adding new features. We welcome any feedback you might have and even more, any other form of help to get the project forward.
 
diff --git a/content/repo.mdtext b/content/repo.mdtext
index 2a637b27..71ed52e9 100644
--- a/content/repo.mdtext
+++ b/content/repo.mdtext
@@ -4,42 +4,42 @@ Title: The Apache(tm) XML Graphics Project - Code Repositories
 
 ## Web Access to the Repositories { #web-access}
 
-The Apache&trade; XML Graphics project uses Subversion (SVN) as version control tool.
+The Apache&trade; XML Graphics project uses Git as version control tool.
 
 You can browse the repositories belonging to the XML Graphics project via the web:
 
 
-- Apache&trade; Batik: [http://svn.apache.org/viewvc/xmlgraphics/batik/](http://svn.apache.org/viewvc/xmlgraphics/batik/) (SVN repository)
+- Apache&trade; Batik: [https://github.com/apache/xmlgraphics-batik](https://github.com/apache/xmlgraphics-batik) (Git repository)
 
-- Apache&trade; FOP: [http://svn.apache.org/viewvc/xmlgraphics/fop/](http://svn.apache.org/viewvc/xmlgraphics/fop/) (SVN repository)
+- Apache&trade; FOP: [https://github.com/apache/xmlgraphics-fop](https://github.com/apache/xmlgraphics-fop) (Git repository)
 
-- Apache&trade; XML Graphics Commons: [http://svn.apache.org/viewvc/xmlgraphics/commons/](http://svn.apache.org/viewvc/xmlgraphics/commons/) (SVN repository)
+- Apache&trade; XML Graphics Commons: [https://github.com/apache/xmlgraphics-commons](https://github.com/apache/xmlgraphics-commons) (Git repository)
 
 - Apache&trade; XML Graphics Site: [https://gitbox.apache.org/repos/asf/xmlgraphics-website.git](https://gitbox.apache.org/repos/asf/xmlgraphics-website.git) (Git repository)
 
 ## Access the Source Tree { #Access-the-Source-Tree}
 
-So, you've decided that you need access to the source tree to see the latest and greatest code. There're two different forms of SVN access. The first is `anonymous` and anybody can use it. The second requires that you have a login to the development server. If you don't know what this means, join the mailing list and find out.
+So, you've decided that you need access to the source tree to see the latest and greatest code. There're two different forms of Git access. The first is `anonymous` and anybody can use it. The second requires that you have a login to the development server. If you don't know what this means, join the mailing list and find out.
 
-### Anonymous (read-only) SVN access { #Anonymous-SVN-access}
+### Anonymous (read-only) Git access { #Anonymous-Git-access}
 
-Anyone can checkout source code from our anonymous SVN server. To do so, simply use the following commands (if you are using a GUI SVN client, configure it appropriately):
+Anyone can checkout source code from our anonymous Git server. To do so, simply use the following commands (if you are using a GUI Git client, configure it appropriately):
 
 **Apache Batik**
 
-  - `svn co http://svn.apache.org/repos/asf/xmlgraphics/batik/trunk`
+  - `git clone https://github.com/apache/xmlgraphics-batik.git`
 
 **Apache FOP**
 
-  - `svn co http://svn.apache.org/repos/asf/xmlgraphics/fop/trunk`
+  - `git clone https://github.com/apache/xmlgraphics-fop.git`
 
 **Apache XML Graphics Commons**
 
-  - `svn co http://svn.apache.org/repos/asf/xmlgraphics/commons/trunk`
+  - `git clone https://github.com/apache/xmlgraphics-commons.git`
 
 **Apache XML Graphics website**
 
   - `git clone https://gitbox.apache.org/repos/asf/xmlgraphics-website.git`
 
-You can find additional information for setting up SVN access on the [Version Control FAQ](https://www.apache.org/dev/version-control.html).
+You can find additional information for setting up Git access on the [Version Control FAQ](https://www.apache.org/dev/version-control.html).
 Committers need to replace `http` with `https` and then log in so they can gain write access!
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: commits-help@xmlgraphics.apache.org