Skip to content

Commit 06e2359

Browse files
committed
cleanup
1 parent 8059035 commit 06e2359

File tree

8 files changed

+22
-19
lines changed

8 files changed

+22
-19
lines changed
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
Filter to be used to filter the results:
1+
Specifies a filter to be used to filter the results:
22

3-
* A string that uses "*" as a wildcard, for example, "*.cfm"
4-
* a UDF (User defined Function) with signature `Boolean function(String path)`. The function is run for each file in turn; if the function returns `true`, then the file is will be added to the result; otherwise it will be omitted.
3+
- A string that uses `*` as a wildcard, for example, `*.cfm`
4+
- UDF (User Defined Function) using the following pattern: `boolean function(String path, String type, String ext)`. The function is run for every single file; if the function returns `true`, the file is included in the list; otherwise, it is omitted. `Type` is either `File` or `Directory`
5+
6+
`Type` and `Ext` arguments were added in Lucee 6.0
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
- name: returns an array of names of files and directories.
2-
- path: returns an array of paths of files and directories. This is the default.
3-
- query: returns a query.
1+
Defines the return type of this function:
2+
3+
- `name`: returns an array of names of files and directories.
4+
- `path`: returns an array of paths of files and directories. This is the default.
5+
- `query`: returns a query object.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
The absolute path of the directory to list the content from.
22

3-
Alternatively, you can specify IP address as in the following example: DirectoryList(\"//12.3.123.123/c_drive/test\");.
3+
This can be any type of supported [[virtual-file-system]]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Whether Lucee performs the action on sub-directories:
1+
Specifies whether to include subdirectories in the listing.
22

3-
If true, the contents of all sub-directories are also included.
3+
If `true`, the content of all sub-directories is also included.

docs/03.reference/01.functions/directorylist/_arguments/sort.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ Sorting is case sensitive.
66

77
To qualify a column, use one of the following values:
88

9-
- asc: ascending (a to z) sort order.
10-
- desc: descending (z to a) sort order.
9+
- `asc`: ascending (a to z) sort order. Default
10+
- `desc`: descending (z to a) sort order.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
type of the result returned:
22

3-
- file: includes only filenames
4-
- dir: includes only directory names
5-
- all: includes both filenames and directory names
3+
- `file`: includes only filenames
4+
- `dir`: includes only directory names
5+
- `all`: includes both filenames and directory names
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
For ACF compatibility, on Unix systems, the `mode` column is currently not populated
2-
3-
<https://luceeserver.atlassian.net/browse/LDEV-2118>
1+
The Unix `mode` column was not populated prior to Lucee 6.1

docs/03.reference/01.functions/gethttprequestdata/function.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
title: GetHTTPRequestData
33
id: function-gethttprequestdata
44
related:
5-
categories:
5+
- function-gethttprequestheaders
6+
- function-getpagecontext
67
---
78

89
Makes HTTP request headers and body available to CFML pages.
910
Useful for capturing SOAP request data, which can be delivered
10-
in an HTTP header.
11+
in an HTTP header.

0 commit comments

Comments
 (0)