From c4d2f59eec649ecc37fa321d5504ea827a3a9380 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Wed, 27 Jan 2010 01:37:45 +0000 Subject: [PATCH] SEC-1381: Update source repo information in docs to point to git rather than subversion. --- docs/manual/src/docbook/introduction.xml | 8 ++++---- docs/manual/src/docbook/samples.xml | 11 +++++------ 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/docs/manual/src/docbook/introduction.xml b/docs/manual/src/docbook/introduction.xml index cc9b272fab..b023538c69 100644 --- a/docs/manual/src/docbook/introduction.xml +++ b/docs/manual/src/docbook/introduction.xml @@ -278,16 +278,16 @@
Checking out the Source Since Spring Security is an Open Source project, we'd strongly encourage you to - check out the source code using subversion. This will give you full access to all - the sample applications and you can build the most up to date version of the project + check out the source code using git. This will give you full access to all the + sample applications and you can build the most up to date version of the project easily. Having the source for a project is also a huge help in debugging. Exception stack traces are no longer obscure black-box issues but you can get straight to the line that's causing the problem and work out what's happening. The source is the ultimate documentation for a project and often the simplest place to find out how something actually works. - To obtain the source for the project trunk, use the following subversion command: + To obtain the source for the project trunk, use the following git command: - svn checkout https://src.springframework.org/svn/spring-security/trunk/ + git clone git://git.springsource.org/spring-security/spring-security.git You can checkout specific versions from https://src.springframework.org/svn/spring-security/tags/. diff --git a/docs/manual/src/docbook/samples.xml b/docs/manual/src/docbook/samples.xml index 3754e7f0fe..de0ce1d326 100644 --- a/docs/manual/src/docbook/samples.xml +++ b/docs/manual/src/docbook/samples.xml @@ -10,18 +10,17 @@ the source as described in the introduction and it's easy to build the project using Maven. There is more information on the project web site at - http://www.springsource.org/security/ if you need it. All paths - referred to in this chapter are relative to the source directory, once you have checked it - out from subversion. + http://www.springsource.org/security/ if you need it. All paths referred to in + this chapter are relative to the project source directory.
Tutorial Sample The tutorial sample is a nice basic example to get you started. It uses simple namespace configuration throughout. The compiled application is included in the distribution zip file, ready to be deployed into your web container (spring-security-samples-tutorial-3.0.x.war). The form-based authentication mechanism is used in combination - with the commonly-used remember-me authentication - provider to automatically remember the login using cookies. + xlink:href="#ns-form-and-basic">form-based authentication mechanism is used + in combination with the commonly-used remember-me + authentication provider to automatically remember the login using cookies. We recommend you start with the tutorial sample, as the XML is minimal and easy to follow. Most importantly, you can easily add this one XML file (and its corresponding web.xml entries) to your existing application. Only when this