diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-14 11:27:59 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-14 11:27:59 +0700 |
commit | 5f5d10b184daaeafa9c63b53d77eb4004985d8d7 (patch) | |
tree | 3ca2d9ec0bc65f6042eb343cd49688282461e7ee /docs | |
parent | f70b4f67494b18607d39990f95b40d888b79525e (diff) | |
download | aspectj-5f5d10b184daaeafa9c63b53d77eb4004985d8d7.tar.gz aspectj-5f5d10b184daaeafa9c63b53d77eb4004985d8d7.zip |
Fix some docs links
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/release/README-1.5.0.adoc | 2 | ||||
-rw-r--r-- | docs/release/README-1.5.3.adoc | 3 | ||||
-rw-r--r-- | docs/release/README-1.6.4.adoc | 3 | ||||
-rw-r--r-- | docs/release/README-1.8.4.adoc | 17 |
4 files changed, 11 insertions, 14 deletions
diff --git a/docs/release/README-1.5.0.adoc b/docs/release/README-1.5.0.adoc index d6bd837f0..1f4e377ed 100644 --- a/docs/release/README-1.5.0.adoc +++ b/docs/release/README-1.5.0.adoc @@ -13,7 +13,7 @@ AspectJ 5]. Some of the other documentation has not been updated for AspectJ 5. For the latest documentation, see https://eclipse.org/aspectj/doc/next/index.html, linked off -https://eclipse.org/aspectj/docs.php[the AspectJ documentation home page]. +https://eclipse.org/aspectj/doc/latest/index.html[the AspectJ documentation home page]. For information on bug fixes in AspectJ 5 v1.5.0, see the xref:changes.adoc[changes] document. diff --git a/docs/release/README-1.5.3.adoc b/docs/release/README-1.5.3.adoc index 280181aeb..b5f019878 100644 --- a/docs/release/README-1.5.3.adoc +++ b/docs/release/README-1.5.3.adoc @@ -82,8 +82,7 @@ problems - the usage scenarios for AJ are becoming more and more sophisticated. To help us work on problems in these scenarios we have added a tracing and logging framework and improved our dump mechanism. These traces and dumps can be attached to bug reports. In AspectJ 1.5.3 -we have included some -https://www.eclipse.org/aspectj/doc/released/pdguide/index.html[documentation] +we have included some xref:../pdguide/index.adoc[documentation] on how to configure these new features. Don't be surprised if you get asked for an AspectJ trace on a future bug report! diff --git a/docs/release/README-1.6.4.adoc b/docs/release/README-1.6.4.adoc index e3d2550df..8529d9985 100644 --- a/docs/release/README-1.6.4.adoc +++ b/docs/release/README-1.6.4.adoc @@ -197,8 +197,7 @@ public static SomeInterface createDelegate(Object instance) { } .... -More examples are -https://www.eclipse.org/aspectj/doc/released/adk15notebook/ataspectj-itds.html[here +More examples are xref:../adk15notebook/ataspectj.adoc#ataspectj-itds[here in the online documentation]. Going forward attempts will be made to try and make @DeclareParents diff --git a/docs/release/README-1.8.4.adoc b/docs/release/README-1.8.4.adoc index b70d97240..48dea03a6 100644 --- a/docs/release/README-1.8.4.adoc +++ b/docs/release/README-1.8.4.adoc @@ -12,18 +12,17 @@ _Release info: 1.8.4 available 6-Nov-2014_ === Support for is(FinalType) AspectJ has had type category type patterns since version 1.6.9, see the -https://www.eclipse.org/aspectj/doc/released/README-1.6.9.html[README]. -This enabled pointcuts to include is(..) clauses to specify which kinds -of type they were or were not interested in matching, e.g. !within(* && -is(InnerType)) means not within innertypes. In 1.8.4 it is now possible +xref:README-1.6.9.adoc[read-me]. +This enabled pointcuts to include `is(..)` clauses to specify which kinds +of type they were or were not interested in matching, e.g. `!within(* && +is(InnerType))` means not within innertypes. In 1.8.4 it is now possible to recognize (for inclusion or exclusion) final types with -is(FinalType). +`is(FinalType)`. -=== thisAspectInstance correctly handled with -1.8 +=== `thisAspectInstance` correctly handled with `-1.8` This is the key fix in this release. Some products based on AspectJ were -using the thisAspectInstance feature (see -https://www.eclipse.org/aspectj/doc/released/README-1.6.12.html[README -1.6.12] for more info on the feature). Unfortunately if specifying -1.8 +using the `thisAspectInstance` feature (see xref:README-1.6.12.adoc[read-me 1.6.12] +for more info on the feature). Unfortunately if specifying `-1.8` compliance and using the feature an error would be reported at compile time of the aspect. This is now fixed. |