Skip to content

Commit 002a230

Browse files
committed
Update Anchor Links
Previously GitHub used capitalization reflecting the text for anchor links, such as: ../README.md#Configuration-and-Extension This recently changed to all lower case, e.g. ../README.md#configuration-and-extension While the links still went to the right page they did not go to the anchor. This change updates the affected links so they work properly. [#67911942]
1 parent 49146d6 commit 002a230

19 files changed

+19
-19
lines changed

docs/container-groovy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The container can be configured by modifying the [`config/groovy.yml`][] file.
3131
| `repository_root` | The URL of the Groovy repository index ([details][repositories]).
3232
| `version` | The version of Groovy to use. Candidate versions can be found in [this listing][].
3333

34-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
34+
[Configuration and Extension]: ../README.md#configuration-and-extension
3535
[`config/groovy.yml`]: ../config/groovy.yml
3636
[repositories]: extending-repositories.md
3737
[this listing]: http://download.pivotal.io.s3.amazonaws.com/groovy/index.yml

docs/container-java_main.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ The container can be configured by creating or modifying the `config/java_main.y
3131
| `arguments` | Optional command line arguments to be passed to the Java main class. The arguments are specified as a single YAML scalar in plain style or enclosed in single or double quotes.
3232
| `java_main_class` | The Java class name to run. Values containing whitespace are rejected with an error, but all others values appear without modification on the Java command line. If not specified, the Java Manifest value of `Main-Class` is used.
3333

34-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
34+
[Configuration and Extension]: ../README.md#configuration-and-extension

docs/container-spring_boot_cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The container can be configured by modifying the [`config/spring_boot_cli.yml`][
3131
| `repository_root` | The URL of the Spring Boot CLI repository index ([details][repositories]).
3232
| `version` | The version of Spring Boot CLI to use. Candidate versions can be found in [this listing][].
3333

34-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
34+
[Configuration and Extension]: ../README.md#configuration-and-extension
3535
[`config/spring_boot_cli.yml`]: ../config/spring_boot_cli.yml
3636
[repositories]: extending-repositories.md
3737
[Spring profiles]:http://blog.springsource.com/2011/02/14/spring-3-1-m1-introducing-profile/

docs/container-tomcat.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ To enable Redis-based session replication, simply bind a Redis service containin
4343
## Supporting Functionality
4444
Additional supporting functionality can be found in the [`java-buildpack-support`][] Git repository.
4545

46-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
46+
[Configuration and Extension]: ../README.md#configuration-and-extension
4747
[`config/tomcat.yml`]: ../config/tomcat.yml
4848
[`java-buildpack-support`]: https://github.com/cloudfoundry/java-buildpack-support
4949
[repositories]: extending-repositories.md

docs/extending-caches.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ def initialize
8383
[`config/cache.yml`]: ../config/cache.yml
8484
[`DownloadCache`]: ../lib/java_buildpack/util/cache/download_cache.rb
8585
[`GlobalCache`]: ../lib/java_buildpack/util/cache/global_cache.rb
86-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
86+
[Configuration and Extension]: ../README.md#configuration-and-extension

docs/extending-logging.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ The console logging severity filter is set to `DEBUG`, `INFO`, `WARN`, `ERROR`,
3333
3. `default_log_level` value in [`config/logging.yml`][].
3434
4. Fallback to `INFO` if none of the above are set.
3535

36-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
36+
[Configuration and Extension]: ../README.md#configuration-and-extension
3737
[`config/logging.yml`]: ../config/logging.yml

docs/extending-repositories.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,6 @@ In addition to declaring a specific versions to use, you can also specify a boun
8585

8686
[`config/repository.yml`]: ../config/repository.yml
8787
[`JavaBuildpack::Repository::ConfiguredItem`]: ../lib/java_buildpack/repository/configured_item.rb
88-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
88+
[Configuration and Extension]: ../README.md#configuration-and-extension
8989
[example]: http://download.pivotal.io.s3.amazonaws.com/openjdk/lucid/x86_64/index.yml
9090

docs/extending.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Extending
2-
For general information on extending the buildpack, refer to [Configuration and Extension](../README.md#Configuration-and-Extension).
2+
For general information on extending the buildpack, refer to [Configuration and Extension](../README.md#configuration-and-extension).
33

44
To add a component, its class name must be added added to [`config/components.yml`][]. It is recommended, but not required, that the class' file be placed in a directory that matches its type.
55

docs/framework-app_dynamics_agent.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The framework can be configured by modifying the [`config/app_dynamics_agent.yml
3636

3737
[`config/app_dynamics_agent.yml`]: ../config/app_dynamics_agent.yml
3838
[AppDynamics Service]: http://www.appdynamics.com
39-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
39+
[Configuration and Extension]: ../README.md#configuration-and-extension
4040
[repositories]: extending-repositories.md
4141
[this listing]: http://download.pivotal.io.s3.amazonaws.com/app-dynamics/index.yml
4242
[version syntax]: extending-repositories.md#version-syntax-and-ordering

docs/framework-java_opts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ The framework can be configured by creating or modifying the `config/java_opts.y
2323
| ---- | -----------
2424
| `java_opts` | The Java options to use when running the application. All values are used without modification when invoking the JVM. The options are specified as a single YAML scalar in plain style or enclosed in single or double quotes.
2525

26-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
26+
[Configuration and Extension]: ../README.md#configuration-and-extension

docs/framework-maria_db_jdbc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The framework can be configured by modifying the [`config/maria_db_jdbc.yml`][]
3333
| `repository_root` | The URL of the MariaDB JDBC repository index ([details][repositories]).
3434
| `version` | The version of MariaDB JDBC to use. Candidate versions can be found in [this listing][].
3535

36-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
36+
[Configuration and Extension]: ../README.md#configuration-and-extension
3737
[`config/maria_db_jdbc.yml`]: ../config/maria_db_jdbc.yml
3838
[MariaDB]: https://mariadb.com
3939
[MySQL Service]: http://www.mysql.org

docs/framework-new_relic_agent.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The framework can be configured by modifying the [`config/new_relic_agent.yml`][
3535
| `repository_root` | The URL of the New Relic repository index ([details][repositories]).
3636
| `version` | The version of New Relic to use. Candidate versions can be found in [this listing][].
3737

38-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
38+
[Configuration and Extension]: ../README.md#configuration-and-extension
3939
[`config/new_relic_agent.yml`]: ../config/new_relic_agent.yml
4040
[New Relic Service]: https://newrelic.com
4141
[repositories]: extending-repositories.md

docs/framework-play_framework_auto_reconfiguration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The framework can be configured by modifying the [`config/play_framework_auto_re
2424
| `repository_root` | The URL of the Auto Reconfiguration repository index ([details][repositories]).
2525
| `version` | The version of Auto Reconfiguration to use. Candidate versions can be found in [this listing][].
2626

27-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
27+
[Configuration and Extension]: ../README.md#configuration-and-extension
2828
[`config/play_framework_auto_reconfiguration.yml`]: ../config/config/play_framework_auto_reconfiguration.yml
2929
[repositories]: extending-repositories.md
3030
[this listing]: http://download.pivotal.io.s3.amazonaws.com/auto-reconfiguration/index.yml

docs/framework-play_framework_jpa_plugin.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The framework can be configured by modifying the [`config/play_framework_jpa_plu
2828
| `repository_root` | The URL of the Play Framework JPA Plugin repository index ([details][repositories]).
2929
| `version` | The version of the Play Framework JPA Plugin to use. Candidate versions can be found in [this listing][].
3030

31-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
31+
[Configuration and Extension]: ../README.md#configuration-and-extension
3232
[`config/play_framework_jpa_plugin.yml`]: ../config/play_framework_jpa_plugin.yml
3333
[repositories]: extending-repositories.md
3434
[this listing]: http://download.pivotal.io.s3.amazonaws.com/play-jpa-plugin/index.yml

docs/framework-postgresql_jdbc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The framework can be configured by modifying the [`config/postgresql_jdbc.yml`][
3131
| `repository_root` | The URL of the PostgreSQL JDBC repository index ([details][repositories]).
3232
| `version` | The version of PostgreSQL JDBC to use. Candidate versions can be found in [this listing][].
3333

34-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
34+
[Configuration and Extension]: ../README.md#configuration-and-extension
3535
[`config/postgresql_jdbc.yml`]: ../config/postgresql_jdbc.yml
3636
[PostgreSQL Service]: http://www.postgresql.org
3737
[repositories]: extending-repositories.md

docs/framework-spring_auto_reconfiguration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The framework can be configured by modifying the [`config/spring_auto_reconfigur
2828
| `repository_root` | The URL of the Auto Reconfiguration repository index ([details][repositories]).
2929
| `version` | The version of Auto Reconfiguration to use. Candidate versions can be found in [this listing][].
3030

31-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
31+
[Configuration and Extension]: ../README.md#configuration-and-extension
3232
[`config/spring_auto_reconfiguration.yml`]: ../config/spring_auto_reconfiguration.yml
3333
[repositories]: extending-repositories.md
3434
[this listing]: http://download.pivotal.io.s3.amazonaws.com/auto-reconfiguration/index.yml

docs/jre-open_jdk_jre.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ the range, the constrained size is excluded from the remaining memory, and no fu
7373
Termination is guaranteed since there is a finite number of memory types and in each iteration either none of the remaining memory sizes is constrained by the corresponding range and allocation terminates or at least one memory size is constrained by the corresponding range and is omitted from the next iteration.
7474
7575
[`config/open_jdk_jre.yml`]: ../config/open_jdk_jre.yml
76-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
76+
[Configuration and Extension]: ../README.md#configuration-and-extension
7777
[centos6]: http://download.pivotal.io.s3.amazonaws.com/openjdk/centos6/x86_64/index.yml
7878
[lucid]: http://download.pivotal.io.s3.amazonaws.com/openjdk/lucid/x86_64/index.yml
7979
[mountainlion]: http://download.pivotal.io.s3.amazonaws.com/openjdk/mountainlion/x86_64/index.yml

docs/jre-oracle_jre.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Termination is guaranteed since there is a finite number of memory types and in
8383
8484
[`config/components.yml`]: ../config/components.yml
8585
[`config/oracle_jre.yml`]: ../config/oracle_jre.yml
86-
[Configuration and Extension]: ../README.md#Configuration-and-Extension
86+
[Configuration and Extension]: ../README.md#configuration-and-extension
8787
[OpenJDK JRE]: jre-open_jdk.md
8888
[Oracle]: http://www.oracle.com/technetwork/java/index.html
8989
[repositories]: extending-repositories.md

docs/security.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ If you fork the Java buildpack, it is important to keep the fork up to date with
77
## Security and Logs
88
See [Sensitive Information in Logs][].
99

10-
[Sensitive Information in Logs]: extending-logging.md#Sensitive-Information-in-Logs
10+
[Sensitive Information in Logs]: extending-logging.md#sensitive-information-in-logs

0 commit comments

Comments
 (0)