Skip to content

Commit

Permalink
cross ref, cleanup, update to rc version
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Nov 12, 2024
1 parent 7247466 commit a4a8792
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
webroot: ${{ github.workspace }}
execute: /build-all.cfm
luceeVersion: 6.2.0.164-SNAPSHOT
luceeVersion: 6.2.0.164-RC
# redis, chart, lucene, form. ajax, chart
extensions: 60772C12-F179-D555-8E2CD2B4F7428718;version=3.0.0.54-SNAPSHOT,D46B46A9-A0E3-44E1-D972A04AC3A8DC10,EFDEB172-F52E-4D84-9CD1A1F561B3DFC8,FAD67145-E3AE-30F8-1C11A6CCF544F0B7,6E2CB28F-98FB-4B51-B6BE6C64ADF35473,DF28D0A4-6748-44B9-A2FDC12E4E2E4D38
- name: Upload Artifact
Expand Down
4 changes: 2 additions & 2 deletions docs/03.reference/01.functions/createguid/function.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
title: CreateGUID
id: function-createguid
related:
categories:
- core
---

A globally unique identifier or GUID is a special type of identifier used in software applications to provide an unique reference number.

The value is represented as a 32 character hexadecimal string, such as {21EC2020-3AEA-1069-A2DD-08002B30309D} and usually stored as a 128 bit integer.
The value is represented as a 32 character hexadecimal string, such as {21EC2020-3AEA-1069-A2DD-08002B30309D} and usually stored as a 128 bit integer.
6 changes: 4 additions & 2 deletions docs/03.reference/01.functions/createulid/function.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
---
title: createULID
title: CreateULID
id: function-createulid
description: Generates a ULID (Universally Unique Lexicographically Sortable Identifier)
related:
- function-createguid
- function-createuuid
categories:
- core
description: Generates a ULID (Universally Unique Lexicographically Sortable Identifier)
---

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.
Expand Down
2 changes: 2 additions & 0 deletions docs/03.reference/01.functions/createuuid/function.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ id: function-createuuid
related:
- function-createguid
- function-createulid
categories:
- core
---

Creates a Universally Unique Identifier (UUID).
Expand Down
6 changes: 4 additions & 2 deletions docs/03.reference/01.functions/lslcase/function.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
---
title: lslcase
title: LSLCase
id: function-lslcase
related:
- function-lcase
categories:
- internationalization
---

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.
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.
7 changes: 5 additions & 2 deletions docs/03.reference/01.functions/lsucase/function.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
---
title: lsucase
title: LSUCase
id: function-lsucase
related:
- function-ucase
categories:
- internationalization
description: Converts the alphabetic characters in a specified string to uppercase, respecting locale-specific casing rules
---

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.
ensuring accurate and culturally correct text processing. The function defaults to the current page's locale if no locale is specified.
6 changes: 2 additions & 4 deletions docs/03.reference/01.functions/valueref/function.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
---
title: valueref
title: ValueRef
id: function-valueref
related:
categories:
---

creates a reference to a UDF that acts like a simple value.
creates a reference to a UDF that acts like a simple value.

0 comments on commit a4a8792

Please sign in to comment.