From 71c9fe53e30f0896ba080dd0c27741169979a554 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Tue, 18 Jun 2019 10:19:53 +0200 Subject: [PATCH] DATAJDBC-336 - URL Cleanup. --- CODE_OF_CONDUCT.adoc | 2 +- README.adoc | 8 ++++---- src/main/asciidoc/glossary.adoc | 4 ++-- src/main/asciidoc/index.adoc | 2 +- src/main/asciidoc/jdbc.adoc | 2 +- src/main/asciidoc/preface.adoc | 2 +- src/main/resources/license.txt | 28 ++++++++++++++-------------- 7 files changed, 24 insertions(+), 24 deletions(-) diff --git a/CODE_OF_CONDUCT.adoc b/CODE_OF_CONDUCT.adoc index f64fb1b7a..e40132ff3 100644 --- a/CODE_OF_CONDUCT.adoc +++ b/CODE_OF_CONDUCT.adoc @@ -24,4 +24,4 @@ Instances of abusive, harassing, or otherwise unacceptable behavior may be repor All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. Maintainers are obligated to maintain confidentiality with regard to the reporter of an incident. -This Code of Conduct is adapted from the http://contributor-covenant.org[Contributor Covenant], version 1.3.0, available at http://contributor-covenant.org/version/1/3/0/[contributor-covenant.org/version/1/3/0/]. \ No newline at end of file +This Code of Conduct is adapted from the https://contributor-covenant.org[Contributor Covenant], version 1.3.0, available at https://contributor-covenant.org/version/1/3/0/[contributor-covenant.org/version/1/3/0/]. diff --git a/README.adoc b/README.adoc index ab752583d..81dd26e4a 100644 --- a/README.adoc +++ b/README.adoc @@ -413,13 +413,13 @@ NOTE: Docker containers can eat up disk space fast! From time to time, run `dock Here are some ways for you to get involved in the community: -* Get involved with the Spring community by helping out on http://stackoverflow.com/questions/tagged/spring-data-jdbc[stackoverflow] by responding to questions and joining the debate. +* Get involved with the Spring community by helping out on https://stackoverflow.com/questions/tagged/spring-data-jdbc[stackoverflow] by responding to questions and joining the debate. * Create https://jira.spring.io/browse/DATAJDBC[JIRA] tickets for bugs and new features and comment and vote on the ones that you are interested in. -* Github is for social coding: if you want to write code, we encourage contributions through pull requests from http://help.github.com/forking/[forks of this repository]. If you want to contribute code this way, please reference a JIRA ticket as well, covering the specific issue you are addressing. -* Watch for upcoming articles on Spring by http://spring.io/blog[subscribing] to spring.io. +* Github is for social coding: if you want to write code, we encourage contributions through pull requests from https://help.github.com/forking/[forks of this repository]. If you want to contribute code this way, please reference a JIRA ticket as well, covering the specific issue you are addressing. +* Watch for upcoming articles on Spring by https://spring.io/blog[subscribing] to spring.io. Before we accept a non-trivial patch or pull request we will need you to https://cla.pivotal.io/sign/spring[sign the Contributor License Agreement]. Signing the contributor’s agreement does not grant anyone commit rights to the main repository, but it does mean that we can accept your contributions, and you will get an author credit if we do. If you forget to do so, you'll be reminded when you submit a pull request. Active contributors might be asked to join the core team, and given the ability to merge pull requests. == License -link:src/main/resources/license.txt[The license under which Spring Data JDBC is published can be found here]. \ No newline at end of file +link:src/main/resources/license.txt[The license under which Spring Data JDBC is published can be found here]. diff --git a/src/main/asciidoc/glossary.adoc b/src/main/asciidoc/glossary.adoc index 83c515ae3..64d622132 100644 --- a/src/main/asciidoc/glossary.adoc +++ b/src/main/asciidoc/glossary.adoc @@ -9,10 +9,10 @@ CRUD:: Create, Read, Update, Delete - Basic persistence operations Dependency Injection:: - Pattern to hand a component's dependency to the component from outside, freeing the component to lookup the dependent itself. For more information, see link:$$http://en.wikipedia.org/wiki/Dependency_Injection$$[http://en.wikipedia.org/wiki/Dependency_Injection]. + Pattern to hand a component's dependency to the component from outside, freeing the component to lookup the dependent itself. For more information, see link:$$https://en.wikipedia.org/wiki/Dependency_Injection$$[https://en.wikipedia.org/wiki/Dependency_Injection]. JPA:: Java Persistence API Spring:: - Java application framework -- link:$$http://projects.spring.io/spring-framework$$[http://projects.spring.io/spring-framework] + Java application framework -- link:$$https://projects.spring.io/spring-framework$$[https://projects.spring.io/spring-framework] diff --git a/src/main/asciidoc/index.adoc b/src/main/asciidoc/index.adoc index ddf2af877..38d7db5a5 100644 --- a/src/main/asciidoc/index.adoc +++ b/src/main/asciidoc/index.adoc @@ -13,7 +13,7 @@ Jens Schauder, Jay Bryant, Mark Paluch :imagesdir: images ifdef::backend-epub3[:front-cover-image: image:epub-cover.png[Front Cover,1050,1600]] :spring-data-commons-docs: https://raw.githubusercontent.com/spring-projects/spring-data-commons/master/src/main/asciidoc -:spring-framework-docs: http://docs.spring.io/spring-framework/docs/{springVersion}/ +:spring-framework-docs: https://docs.spring.io/spring-framework/docs/{springVersion}/ (C) 2018-2019 The original authors. diff --git a/src/main/asciidoc/jdbc.adoc b/src/main/asciidoc/jdbc.adoc index b9bd3ed8d..e6c95a968 100644 --- a/src/main/asciidoc/jdbc.adoc +++ b/src/main/asciidoc/jdbc.adoc @@ -282,7 +282,7 @@ The following table describes the strategies that Spring Data JDBC offers for de |Id-Property inspection (the default)|By default, Spring Data JDBC inspects the identifier property of the given entity. If the identifier property is `null`, then the entity is assumed to be new. Otherwise, it is assumed to not be new. |Implementing `Persistable`|If an entity implements `Persistable`, Spring Data JDBC delegates the new detection to the `isNew(…)` method of the entity. -See the link:$$http://docs.spring.io/spring-data/data-commons/docs/current/api/index.html?org/springframework/data/domain/Persistable.html$$[Javadoc] for details. +See the link:$$https://docs.spring.io/spring-data/data-commons/docs/current/api/index.html?org/springframework/data/domain/Persistable.html$$[Javadoc] for details. |Implementing `EntityInformation`|You can customize the `EntityInformation` abstraction used in the `SimpleJdbcRepository` implementation by creating a subclass of `JdbcRepositoryFactory` and overriding the `getEntityInformation(…)` method. You then have to register the custom implementation of `JdbcRepositoryFactory` as a Spring bean. Note that this should rarely be necessary. See the link:{javadoc-base}org/springframework/data/jdbc/repository/support/JdbcRepositoryFactory.html[Javadoc] for details. diff --git a/src/main/asciidoc/preface.adoc b/src/main/asciidoc/preface.adoc index 160e05677..738f16d68 100644 --- a/src/main/asciidoc/preface.adoc +++ b/src/main/asciidoc/preface.adoc @@ -7,7 +7,7 @@ Spring Data JDBC offers a repository abstraction based on JDBC. [preface] == Project Metadata -* Version control: http://github.com/spring-projects/spring-data-jdbc +* Version control: https://github.com/spring-projects/spring-data-jdbc * Bugtracker: https://jira.spring.io/browse/DATAJDBC * Release repository: https://repo.spring.io/libs-release * Milestone repository: https://repo.spring.io/libs-milestone diff --git a/src/main/resources/license.txt b/src/main/resources/license.txt index 682d127ac..635b6e2e3 100644 --- a/src/main/resources/license.txt +++ b/src/main/resources/license.txt @@ -200,17 +200,17 @@ See the License for the specific language governing permissions and limitations under the License. -======================================================================= - -To the extent any open source subcomponents are licensed under the EPL and/or other -similar licenses that require the source code and/or modifications to -source code to be made available (as would be noted above), you may obtain a -copy of the source code corresponding to the binaries for such open source -components and modifications thereto, if any, (the "Source Files"), by -downloading the Source Files from http://www.springsource.org/download, -or by sending a request, with your name and address to: VMware, Inc., 3401 Hillview -Avenue, Palo Alto, CA 94304, United States of America or email info@vmware.com. All -such requests should clearly specify: OPEN SOURCE FILES REQUEST, Attention General -Counsel. VMware shall mail a copy of the Source Files to you on a CD or equivalent -physical medium. This offer to obtain a copy of the Source Files is valid for three -years from the date you acquired this Software product. \ No newline at end of file +======================================================================= + +To the extent any open source subcomponents are licensed under the EPL and/or other +similar licenses that require the source code and/or modifications to +source code to be made available (as would be noted above), you may obtain a +copy of the source code corresponding to the binaries for such open source +components and modifications thereto, if any, (the "Source Files"), by +downloading the Source Files from https://www.springsource.org/download, +or by sending a request, with your name and address to: VMware, Inc., 3401 Hillview +Avenue, Palo Alto, CA 94304, United States of America or email info@vmware.com. All +such requests should clearly specify: OPEN SOURCE FILES REQUEST, Attention General +Counsel. VMware shall mail a copy of the Source Files to you on a CD or equivalent +physical medium. This offer to obtain a copy of the Source Files is valid for three +years from the date you acquired this Software product.