Skip to content

Commit c5cbe23

Browse files
committed
fix links
1 parent 92a1045 commit c5cbe23

10 files changed

Lines changed: 15 additions & 15 deletions

File tree

docs/03.reference/01.functions/isnull/_usageNotes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ if ( isNull( local.result ) ) { ... }
2525
if ( isNull( variables.config ) ) { ... }
2626
```
2727

28-
See [[recipe-null-support]] for more information on null handling in CFML.
28+
See [[null_support]] for more information on null handling in CFML.

docs/04.guides/13.Various/15.FAQs/01.technical-FAQs/page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ id: technical-FAQs
4545

4646
### How to use cfmail with SSL authentication ###
4747

48-
[[tips-cfmail-SSL-authentication]]
48+
[[mail-how-to-send-a-mail]]

docs/04.guides/13.Various/30.TIPS/chapter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ id: tips-lucee
2121

2222
* [[tips-template-cache]]
2323

24-
* [[tips-cfmail-SSL-authentication]]
24+
* [[mail-how-to-send-a-mail]]
2525

2626
* [[tips-serialize-data]]
2727

docs/04.guides/13.Various/chapter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ This is the temporary location where all the new links will be added.
4545

4646
[[about-lucee-how-to-get-help]]
4747

48-
[[orm-start]]
48+
[[orm-getting-started]]
4949

5050
[[query-of-queries]]
5151

docs/recipes/application-cfc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"related": [
66
"tag-application",
77
"function-getapplicationsettings",
8-
"application-context-update"
8+
"update-application-context"
99
],
1010
"categories": [
1111
"application",
@@ -721,4 +721,4 @@ component displayname="Application" output="false" hint="Handle the application"
721721

722722
The `<cfapplication>` tag allows you to update application settings per-request at runtime, without restarting the application. This is useful for dynamically adjusting datasources, mappings, or other context settings on a per-request basis.
723723

724-
See [[application-context-update]] for details and examples.
724+
See [[update-application-context]] for details and examples.

docs/recipes/configuration.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"description": "Best practices for configuring Lucee in various environments.",
88
"keywords": ["configuration", "config", ".CFConfig.json", "lucee-server.xml", "lucee-web.xml"],
99
"categories":[
10-
"server"
10+
"server",
11+
"devops"
1112
],
1213
"related": [
1314
"function-configimport",

docs/recipes/database-connection-management.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
"connection pinning"
1717
],
1818
"related": [
19-
"cfconfig",
20-
"cftransaction",
21-
"datasource-configuration",
19+
"config",
20+
"tag-transaction",
21+
"datasource-how-to-define-them",
2222
"tag-query",
23-
"function-dbpoolevict"
23+
"function-dbpoolclear"
2424
]
2525
}
2626
-->

docs/recipes/dynamodb-cache-extension.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"related": [
1919
"caching-getting-started",
20-
"s3-extension"
20+
"category-s3"
2121
]
2222
}
2323
-->

docs/recipes/heap-dumps.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"JVM"
1616
],
1717
"related": [
18-
"performance-monitoring",
1918
"troubleshooting"
2019
]
2120
}

docs/recipes/thread-usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ employees.each(
208208

209209
## Function Listeners (Lucee 6.1+)
210210

211-
Modern promise-like syntax for async execution. See the [[function-listeners]] recipe for full details.
211+
Modern promise-like syntax for async execution. See the [[function-listener]] recipe for full details.
212212

213213
### Simple Async Function Execution
214214

@@ -443,5 +443,5 @@ dump("All threads completed");
443443

444444
## Additional Resources
445445

446-
- [[function-listeners]] - Complete guide to async function execution
446+
- [[function-listener]] - Complete guide to async function execution
447447
- [Lucee Threads Video Tutorial](https://www.youtube.com/watch?v=oGUZRrcg9KE)

0 commit comments

Comments
 (0)