Skip to content

Commit

Permalink
import new tags and functions from 6.1.0.235-RC
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jul 6, 2024
1 parent 42105d4 commit 0eb84e6
Show file tree
Hide file tree
Showing 143 changed files with 206 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Used in conjunction with the 'hash' type, this numeric input contributes to the generation of a deterministic ULID by influencing its random component.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Similar to 'input1', this string input is utilized only in the 'hash' mode to further seed the ULID's random component, enabling the creation of a deterministic ULID based on the hash of the inputs.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Specifies the generation mode of the ULID. If not defined, a standard ULID is generated. 'monotonic' ensures ULIDs increase monotonically, suitable for ensuring order in rapid generation scenarios. 'hash' mode generates a ULID based on hashing the provided inputs, useful for creating deterministic identifiers.
Empty file.
Empty file.
8 changes: 8 additions & 0 deletions docs/03.reference/01.functions/createulid/function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: createulid
id: function-createulid
related:
categories:
---

Generates a ULID (Universally Unique Lexicographically Sortable Identifier), a 128-bit identifier where the first 48 bits are a timestamp representing milliseconds since the Unix Epoch (1970-01-01), ensuring temporal ordering. The remaining 80 bits are populated by a secure random number generator, contributing to the identifier's uniqueness. The output is a 26-character string in its canonical representation. This function can operate in three modes specified by the 'type' argument: 'empty' for standard ULID generation, 'monotonic' to ensure sequential IDs even in rapid succession, and 'hash' to generate a ULID based on hashed input values.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Number of bits to use for the generated Keys.
Empty file.
Empty file.
8 changes: 8 additions & 0 deletions docs/03.reference/01.functions/isflushed/function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: isflushed
id: function-isflushed
related:
categories:
---

returns true if the response stream was already flushed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
A struct of xmlFeatures directives to override defaults
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Optional. Allows specifying a different locale for the conversion, superseding the page's default locale. This argument accepts a locale identifier, such as "fr-CA" for Canadian French or "de-DE" for German in Germany.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The string to be converted to lowercase. This parameter can accept either a string literal or a variable that holds the string content.
Empty file.
Empty file.
8 changes: 8 additions & 0 deletions docs/03.reference/01.functions/lslcase/function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: lslcase
id: function-lslcase
related:
categories:
---

Converts the alphabetic characters in a specified string to lowercase, respecting locale-specific casing rules. This is particularly important for languages where the standard lowercase conversion rules do not apply, ensuring accurate and culturally correct text processing. The function defaults to the current page's locale if no locale is specified.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Optional. Specifies the locale to use for the conversion, overriding the default locale of the page. This should be a locale code string (e.g., "en-US" for American English or "tr-TR" for Turkish).
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The string to be converted to uppercase. This can be a direct string value or a variable that contains the string.
Empty file.
Empty file.
10 changes: 10 additions & 0 deletions docs/03.reference/01.functions/lsucase/function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: lsucase
id: function-lsucase
related:
categories:
---

Converts the alphabetic characters in a specified string to uppercase,
respecting locale-specific casing rules. This is particularly important for languages where the standard lowercase conversion rules do not apply,
ensuring accurate and culturally correct text processing. The function defaults to the current page's locale if no locale is specified.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 accessKeyId, if not defined it checks the system property/environment variable for [lucee.s3.accesskeyid].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
an array of struct where each struct represents an ACL grant
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This can be the bucketname or a virtual filesystem path for a file/directory (example "s3://mybucket/myobject.txt").
1 change: 1 addition & 0 deletions docs/03.reference/01.functions/s3addacl/_arguments/host.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Name of the object (path) within the bucket of your object to read. In case you have defined a bucket with the first argument.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 secretAccessKey, if not defined it checks the system property/environment variable for [lucee.s3.secretaccesskey].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
timeout for this execution
Empty file.
Empty file.
8 changes: 8 additions & 0 deletions docs/03.reference/01.functions/s3addacl/function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: s3addacl
id: function-s3addacl
related:
categories:
---

Adds ACL to existing ACL for object or bucket. You can provide the endpoint as a bucket/object defintion (S3AddACL(bucket:"mybucket",object:"myobject.txt",acl:data) ) or as a virtual filesystem path (S3AddACL(path:"s3://mybucket/myobject.txt",acl:data) ).
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
1 change: 1 addition & 0 deletions docs/03.reference/01.functions/s3copy/_arguments/host.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 accessKeyId, if not defined it checks the system property/environment variable for [lucee.s3.accesskeyid].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Name of the bucket to delete.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Also delete bucket if it has content.
1 change: 1 addition & 0 deletions docs/03.reference/01.functions/s3delete/_arguments/host.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Name of the object to delete, if not defined the bucket itself is deleted.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 secretAccessKey, if not defined it checks the system property/environment variable for [lucee.s3.secretaccesskey].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
timeout for this execution
Empty file.
Empty file.
8 changes: 8 additions & 0 deletions docs/03.reference/01.functions/s3delete/function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: s3delete
id: function-s3delete
related:
categories:
---

deletes a bucket or an object within a bucket.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 accessKeyId, if not defined it checks the system property/environment variable for [lucee.s3.accesskeyid].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Name of the bucket to list objects from.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Also delete bucket if it has content.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 secretAccessKey, if not defined it checks the system property/environment variable for [lucee.s3.secretaccesskey].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
timeout for this execution
Empty file.
Empty file.
8 changes: 8 additions & 0 deletions docs/03.reference/01.functions/s3deletebucket/function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: s3deletebucket
id: function-s3deletebucket
related:
categories:
---

deletes a bucket, this function is deprecated, use instead S3Delete.
1 change: 1 addition & 0 deletions docs/03.reference/01.functions/s3exists/_arguments/host.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The base64 encoded MD5 checksum of the object's content.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Specifies presentational information for the object, like "attachment; filename=\"filename.pdf\"".
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Specifies content encodings applied to the object, like gzip.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The desired HTTP method (e.g., GET, PUT). Defaults to GET.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Struct of custom response headers for custom metadata prefixed with "x-amz-meta-" (prefix is optional, function will add it if missed).
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The desired server-side encryption algorithm, valid values are AES256 or KMS.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The server-side encryption customer-provided key.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The MIME type of the object (e.g., "text/plain").
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The version ID of the object if versioning is enabled.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
A flag to specify if the object has zero-byte content.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 accessKeyId, if not defined it checks the system property/environment variable for [lucee.s3.accesskeyid].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This can be the bucketname or a virtual filesystem path for a file/directory (example "s3://mybucket/myobject.txt").
1 change: 1 addition & 0 deletions docs/03.reference/01.functions/s3getacl/_arguments/host.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Name of the object (path) within the bucket of your object to read. In case you have defined a bucket with the first argument.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 secretAccessKey, if not defined it checks the system property/environment variable for [lucee.s3.secretaccesskey].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
timeout for this execution
Empty file.
Empty file.
8 changes: 8 additions & 0 deletions docs/03.reference/01.functions/s3getacl/function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: s3getacl
id: function-s3getacl
related:
categories:
---

Returns an array of structures, with each structure representing an ACL (Access Control List) grant. You can provide the endpoint as a bucket/object defintion (S3GetACL(bucket:"mybucket",object:"myobject.txt") ) or as a virtual filesystem path (S3GetACL(path:"s3://mybucket/myobject.txt") ).
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 accessKeyId, if not defined it checks the system property/environment variable for [lucee.s3.accesskeyid].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This can be the bucketname or a virtual filesystem path for a file/directory (example "s3://mybucket/myobject.txt").
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Name of the object (path) within the bucket of your object to read. In case you have defined a bucket with the first argument.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 secretAccessKey, if not defined it checks the system property/environment variable for [lucee.s3.secretaccesskey].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
timeout for this execution
Empty file.
Empty file.
8 changes: 8 additions & 0 deletions docs/03.reference/01.functions/s3getmetadata/function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: s3getmetadata
id: function-s3getmetadata
related:
categories:
---

Returns the metadata related to the object or bucket. You can provide the endpoint as a bucket/object defintion (S3GetMetaData(bucket:"mybucket",object:"myobject.txt") ) or as a virtual filesystem path (S3GetMetaData(path:"s3://mybucket/myobject.txt") ).
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 accessKeyId, if not defined it checks the system property/environment variable for [lucee.s3.accesskeyid].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 secretAccessKey, if not defined it checks the system property/environment variable for [lucee.s3.secretaccesskey].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
timeout for this execution
Empty file.
Empty file.
8 changes: 8 additions & 0 deletions docs/03.reference/01.functions/s3listbuckets/function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: s3listbuckets
id: function-s3listbuckets
related:
categories:
---

List all buckets
1 change: 1 addition & 0 deletions docs/03.reference/01.functions/s3move/_arguments/host.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
1 change: 1 addition & 0 deletions docs/03.reference/01.functions/s3read/_arguments/host.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 accessKeyId, if not defined it checks the system property/environment variable for [lucee.s3.accesskeyid].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
an array of struct where each struct represents an ACL grant
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This can be the bucketname or a virtual filesystem path for a file/directory (example "s3://mybucket/myobject.txt").
1 change: 1 addition & 0 deletions docs/03.reference/01.functions/s3setacl/_arguments/host.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Name of the object (path) within the bucket of your object to read. In case you have defined a bucket with the first argument.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 secretAccessKey, if not defined it checks the system property/environment variable for [lucee.s3.secretaccesskey].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
timeout for this execution
Empty file.
Empty file.
8 changes: 8 additions & 0 deletions docs/03.reference/01.functions/s3setacl/function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: s3setacl
id: function-s3setacl
related:
categories:
---

Sets ACL to existing ACL for object or bucket. You can provide the endpoint as a bucket/object defintion (S3SetACL(bucket:"mybucket",object:"myobject.txt",acl:data) ) or as a virtual filesystem path (S3SetACL(path:"s3://mybucket/myobject.txt",acl:data) ).
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 accessKeyId, if not defined it checks the system property/environment variable for [lucee.s3.accesskeyid].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This can be the bucketname or a virtual filesystem path for a file/directory (example "s3://mybucket/myobject.txt").
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Name of the object (path) within the bucket of your object to read. In case you have defined a bucket with the first argument.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
S3 secretAccessKey, if not defined it checks the system property/environment variable for [lucee.s3.secretaccesskey].
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
timeout for this execution
Empty file.
Empty file.
8 changes: 8 additions & 0 deletions docs/03.reference/01.functions/s3setmetadata/function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: s3setmetadata
id: function-s3setmetadata
related:
categories:
---

Sets the metadata on bucket or object. You can provide the endpoint as a bucket/object defintion (S3SetMetaData(bucket:"mybucket",object:"myobject.txt",metadata:data) ) or as a virtual filesystem path (S3SetMetaData(path:"s3://mybucket/myobject.txt",metadata:data) ).
1 change: 1 addition & 0 deletions docs/03.reference/01.functions/s3write/_arguments/host.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the provider to connect, if not set Amazon AWS is used.
1 change: 1 addition & 0 deletions docs/03.reference/01.functions/throw/_arguments/cause.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The cause of the exception created with this tag. This can be a cfcatch block or a native java exception.
1 change: 1 addition & 0 deletions docs/03.reference/01.functions/valueref/_arguments/ref.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
udf returning the value
Empty file.
Empty file.
8 changes: 8 additions & 0 deletions docs/03.reference/01.functions/valueref/function.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: valueref
id: function-valueref
related:
categories:
---

creates a reference to a UDF that acts like a simple value.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Show debug output at the end of teh webpage or not.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Show documentation output at the end of teh webpage or not.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Show metric output at the end of teh webpage or not.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Used to isolate third party cookies, requires path="/" and secure="true".
1 change: 1 addition & 0 deletions docs/03.reference/02.tags/dump/_attributes/flush.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
flushes the response stream after the dump
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
If set to false, any exceptions thrown by the servlet engine, such as those resulting from a client disconnection, will be suppressed.
1 change: 1 addition & 0 deletions docs/03.reference/02.tags/ftp/_attributes/actionparam.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
used with action="quote" to execute custom ftp commands
3 changes: 3 additions & 0 deletions docs/03.reference/02.tags/http/_attributes/autocert.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
When set to true, this attribute enables the automatic installation of SSL certificates for HTTPS connections,
ensuring the request can proceed without SSL certificate errors.
This is particularly useful for environments where certificates may not be pre-installed or are dynamically updated.
Loading

0 comments on commit 0eb84e6

Please sign in to comment.