mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-04 01:32:14 +00:00
SEC-624: Moved community and samples sections into 'getting started' part
This commit is contained in:
parent
ca40295d7c
commit
0116c13477
@ -1,9 +1,9 @@
|
|||||||
<chapter xmlns="http://docbook.org/ns/docbook" version="5.0"
|
<chapter xmlns="http://docbook.org/ns/docbook" version="5.0"
|
||||||
xml:id="community"
|
xml:id="community"
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink" >
|
xmlns:xlink="http://www.w3.org/1999/xlink" >
|
||||||
|
|
||||||
|
<info>
|
||||||
<info><title>Community Support</title></info>
|
<title>Spring Security Community</title></info>
|
||||||
|
|
||||||
|
|
||||||
<section xml:id="jira">
|
<section xml:id="jira">
|
||||||
@ -18,27 +18,30 @@
|
|||||||
<para>If possible, in your issue report please provide a JUnit test
|
<para>If possible, in your issue report please provide a JUnit test
|
||||||
that demonstrates any incorrect behaviour. Or, better yet, provide a
|
that demonstrates any incorrect behaviour. Or, better yet, provide a
|
||||||
patch that corrects the issue. Similarly, enhancements are welcome to
|
patch that corrects the issue. Similarly, enhancements are welcome to
|
||||||
be logged in the issue tracker, although we only accept commit enhancement requests
|
be logged in the issue tracker, although we only accept enhancement requests
|
||||||
if you include corresponding unit tests. This is necessary to ensure
|
if you include corresponding unit tests. This is necessary to ensure
|
||||||
project test coverage is adequately maintained.</para>
|
project test coverage is adequately maintained.</para>
|
||||||
|
|
||||||
<para>You can access the issue tracker at
|
<para>You can access the issue tracker at
|
||||||
<link xlink:href="http://jira.springframework.org/browse/SEC">http://jira.springframework.org/browse/SEC</link>.</para>
|
<link xlink:href="http://jira.springframework.org/browse/SEC">http://jira.springframework.org/browse/SEC</link>.
|
||||||
|
</para>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="becoming-involved"><info><title>Becoming Involved</title></info>
|
<section xml:id="becoming-involved">
|
||||||
|
<info><title>Becoming Involved</title></info>
|
||||||
|
|
||||||
|
<para>We welcome your involvement in Spring Security project.
|
||||||
<para>We welcome you to become involved in Spring Security project.
|
There are many ways of contributing, including reading the forum
|
||||||
There are many ways of contributing, including reading the mailing
|
and responding to questions from other people, writing new code,
|
||||||
list and responding to questions from other people, writing new code,
|
|
||||||
improving existing code, assisting with documentation, developing
|
improving existing code, assisting with documentation, developing
|
||||||
samples or tutorials, or simply making suggestions.</para>
|
samples or tutorials, or simply making suggestions.</para>
|
||||||
|
<!-- TODO: Not currently there on SSec 2.0
|
||||||
<para>Please read our project policies web page that is available on
|
<para>Please read our project policies web page that is available on
|
||||||
Spring Security home page. This explains the path to become a
|
Spring Security home page. This explains the path to become a
|
||||||
committer, and the administration approaches we use within the
|
committer, and the administration approaches we use within the
|
||||||
project.</para>
|
project.</para>
|
||||||
|
|
||||||
|
-->
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section xml:id="further-info">
|
<section xml:id="further-info">
|
||||||
@ -48,13 +51,9 @@
|
|||||||
Spring Community Forum web site at
|
Spring Community Forum web site at
|
||||||
<uri xlink:href="http://forum.springframework.org">http://forum.springframework.org</uri>
|
<uri xlink:href="http://forum.springframework.org">http://forum.springframework.org</uri>
|
||||||
to discuss Spring Security with other users of the framework.
|
to discuss Spring Security with other users of the framework.
|
||||||
Remember to use the JIRA for bug reports, as explained above.
|
Remember to use JIRA for bug reports, as explained above.
|
||||||
Everyone is also welcome to join the Acegisecurity-developer mailing
|
Everyone is also welcome to join the Acegisecurity-developer mailing
|
||||||
list and participate in design discussions. It's also a good way of
|
list and participate in design discussions. The
|
||||||
finding out what's happening with regard to release timing, and the
|
traffic volume is very light.</para>
|
||||||
traffic volume is quite light. Finally, our project home page (where
|
|
||||||
you can obtain the latest release of the project and convenient links
|
|
||||||
to Subversion, JIRA, mailing lists, forums etc) is at
|
|
||||||
<uri xlink:href="http://static.springframework.org/spring-security/site/">http://static.springframework.org/spring-security/site/</uri>.</para>
|
|
||||||
</section>
|
</section>
|
||||||
</chapter>
|
</chapter>
|
@ -86,17 +86,27 @@
|
|||||||
<partintro>
|
<partintro>
|
||||||
<para>The later parts of this guide provide an in-depth discussion of the
|
<para>The later parts of this guide provide an in-depth discussion of the
|
||||||
framework architecture and implementation classes, an understanding of which is important
|
framework architecture and implementation classes, an understanding of which is important
|
||||||
if you need to do any serious customization. In this part, we take a slightly
|
if you need to do any serious customization. In this part, we'll introduce Spring Security 2.0,
|
||||||
gentler look at how to get started using some of the features of Spring Security 2.0.
|
give a brief overview of the project's history and take a slightly
|
||||||
In particular, we'll look at namespace configuration which provides a much simpler path to securing
|
gentler look at how to get started using the framework.
|
||||||
your application with little or no knowledge of the classes involved, unlike the traditional
|
In particular, we'll look at namespace configuration which provides a much simpler way of securing
|
||||||
Spring bean approach which required you to configure large numbers of beans.
|
your application compared to the traditional Spring bean approach where you had to wire up all the
|
||||||
|
implementation classes individually.
|
||||||
|
</para>
|
||||||
|
<para>
|
||||||
|
We'll also take a look at the sample applications that are available. It's worth trying to run
|
||||||
|
these and experimenting with them a bit even before you read the later sections - you can dip back into them
|
||||||
|
as your understanding of the framework increases.
|
||||||
</para>
|
</para>
|
||||||
</partintro>
|
</partintro>
|
||||||
|
|
||||||
<xi:include href="introduction.xml" />
|
<xi:include href="introduction.xml" />
|
||||||
|
|
||||||
<xi:include href="namespace-config.xml" />
|
<xi:include href="namespace-config.xml" />
|
||||||
|
|
||||||
|
<xi:include href="samples.xml"/>
|
||||||
|
|
||||||
|
<xi:include href="community.xml"/>
|
||||||
|
|
||||||
</part>
|
</part>
|
||||||
|
|
||||||
@ -187,17 +197,4 @@
|
|||||||
|
|
||||||
</part>
|
</part>
|
||||||
|
|
||||||
<part xml:id="resources">
|
|
||||||
<title>Other Resources</title>
|
|
||||||
|
|
||||||
<partintro>
|
|
||||||
<para>In addition to this reference guide, a number of other resources
|
|
||||||
exist to help you learn how to use Spring Security.</para>
|
|
||||||
</partintro>
|
|
||||||
|
|
||||||
<xi:include href="samples.xml"/>
|
|
||||||
|
|
||||||
<xi:include href="community.xml"/>
|
|
||||||
|
|
||||||
</part>
|
|
||||||
</book>
|
</book>
|
Loading…
x
Reference in New Issue
Block a user