Skip to content

Commit 4f1239b

Browse files
authored
Merge pull request #1703 from elpete/boxlang
Add links to official BoxLang documentation
2 parents 4ae4299 + 2c49b24 commit 4f1239b

File tree

641 files changed

+1471
-768
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

641 files changed

+1471
-768
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This makes the documentation super easy to edit and allows developers to run a l
2121
The cfdocs.org site can run locally very easily thanks to CommandBox.
2222

2323
1. Go download [CommandBox](https://www.ortussolutions.com/products/commandbox) if you do not have it already.
24-
2. Download this repository and extract it to a folder, or clone it from this repository.
24+
2. Download this repository and extract it to a folder, or clone it from this repository.
2525
3. Make a copy of `.env.example` and name it `.env`. This contains required environment variables. [learn more](https://github.com/commandbox-modules/commandbox-dotenv)
2626
4. Run `box server start` from Command Prompt or Terminal in the root directory.
2727

@@ -41,7 +41,7 @@ CFDocs.org is meant to be a quick reference so keep it short and sweet. E.g. att
4141

4242
1. Browse the [data/en/](https://github.com/foundeo/cfdocs/tree/master/data/en) folder of this repository on GitHub and find the tag or function you want to edit.
4343
2. Click the edit button (pencil)
44-
3. Commit
44+
3. Commit
4545
4. Send a pull request to merge your change with this repository.
4646

4747
#### The better way to edit the docs

assets/style.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,13 @@ footer { text-align: center; margin-top: 10px; font-size:smaller; }
222222
.label-openbd:focus {
223223
background-color: #1b6c8f;
224224
}
225+
.label-boxlang {
226+
background-color: #04CD70;
227+
}
228+
.label-boxlang:hover,
229+
.label-boxlang:focus {
230+
background-color: #08834C;
231+
}
225232
.syntax-highlight {
226233
color: #c7254e;
227234
font-weight:bold;

data/cfdocs.schema.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@
6969
"description": "Engine details for OpenBD",
7070
"type": "object",
7171
"$ref": "#/definitions/engineDetail"
72+
},
73+
"boxlang": {
74+
"title": "BoxLang",
75+
"description": "Engine details for BoxLang",
76+
"type": "object",
77+
"$ref": "#/definitions/engineDetail"
7278
}
7379
}
7480
},

data/en/abs.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"coldfusion": {"minimum_version":"", "notes":"", "docs":"https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-functions/functions-a-b/abs.html"},
1313
"lucee": {"minimum_version":"", "notes":"", "docs":"https://docs.lucee.org/reference/functions/abs.html"},
1414
"railo": {"minimum_version":"", "notes":"", "docs":"http://railodocs.org/index.cfm/function/abs"},
15-
"openbd": {"minimum_version":"", "notes":"", "docs":"http://openbd.org/manual/?/function/abs"}
15+
"openbd": {"minimum_version":"", "notes":"", "docs":"http://openbd.org/manual/?/function/abs"},
16+
"boxlang": {"minimum_version":"1.0.0", "notes":"", "docs":"https://boxlang.ortusbooks.com/boxlang-language/reference/built-in-functions/math/abs"}
1617
},
1718
"links": [],
1819
"examples": [

data/en/acos.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"coldfusion": {"minimum_version":"4", "notes":"", "docs":"https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-functions/functions-a-b/acos.html"},
1414
"lucee": {"minimum_version":"", "notes":"", "docs":"https://docs.lucee.org/reference/functions/acos.html"},
1515
"railo": {"minimum_version":"", "notes":"", "docs":"http://railodocs.org/index.cfm/function/acos"},
16-
"openbd": {"minimum_version":"", "notes":"", "docs":"http://openbd.org/manual/?/function/acos"}
16+
"openbd": {"minimum_version":"", "notes":"", "docs":"http://openbd.org/manual/?/function/acos"},
17+
"boxlang": {"minimum_version":"1.0.0", "notes":"", "docs":"https://boxlang.ortusbooks.com/boxlang-language/reference/built-in-functions/math/acos"}
1718
},
1819
"links": [
1920

data/en/application-cfc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@
7171
"engines": {
7272
"coldfusion": {"minimum_version":"7", "notes":"", "docs":"https://helpx.adobe.com/coldfusion/cfml-reference/application-cfc-reference.html"},
7373
"lucee": {"minimum_version":"", "notes":"", "docs":"https://docs.lucee.org/reference/tags/application.html"},
74-
"openbd": {"minimum_version":"", "notes":"", "docs":"http://openbd.org/manual/?/tag/cfapplication"}
74+
"openbd": {"minimum_version":"", "notes":"", "docs":"http://openbd.org/manual/?/tag/cfapplication"},
75+
"boxlang": {"minimum_version":"1.0.0", "notes":"", "docs":"https://boxlang.ortusbooks.com/boxlang-framework/applicationbx"}
7576
},
7677
"links": [
7778
{

data/en/applicationstarttime.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"description": "Provides information about the time when the current application scope was created.",
88
"params": [],
99
"engines": {
10-
"lucee": {"minimum_version": "", "notes": "", "docs": "https://docs.lucee.org/reference/functions/applicationstarttime.html"}
10+
"lucee": {"minimum_version": "", "notes": "", "docs": "https://docs.lucee.org/reference/functions/applicationstarttime.html"},
11+
"boxlang": {"minimum_version": "1.0.0", "notes": "", "docs": "https://boxlang.ortusbooks.com/boxlang-language/reference/built-in-functions/system/applicationstarttime"}
1112
},
1213
"examples": [],
1314
"links": []

data/en/applicationstop.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"engines": {
1010
"coldfusion": {"minimum_version":"9", "notes":"", "docs":"https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-functions/functions-a-b/applicationstop.html"},
1111
"lucee": {"minimum_version":"", "notes":"", "docs":"https://docs.lucee.org/reference/functions/applicationstop.html"},
12-
"railo": {"minimum_version":"", "notes":"", "docs":"http://railodocs.org/index.cfm/function/applicationstop"}
12+
"railo": {"minimum_version":"", "notes":"", "docs":"http://railodocs.org/index.cfm/function/applicationstop"},
13+
"boxlang": {"minimum_version":"1.0.0", "notes":"", "docs":"https://boxlang.ortusbooks.com/boxlang-language/reference/built-in-functions/system/applicationstop"}
1314
},
1415
"links": [
1516
{

data/en/argon2checkhash.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
{"name": "variant", "description": "", "required": false, "default": "Argon2i", "type": "string", "values": ["Argon2i", "Argon2d", "Argon2id"]}
1212
],
1313
"engines": {
14-
"lucee": {"minimum_version": "5.3.8", "notes": "", "docs": "https://docs.lucee.org/reference/functions/argon2checkhash.html"}
14+
"lucee": {"minimum_version": "5.3.8", "notes": "", "docs": "https://docs.lucee.org/reference/functions/argon2checkhash.html"},
15+
"boxlang": {"minimum_version": "1.0.0", "notes": "Requires the bx-password-encrypt module", "docs": "https://github.com/ortus-boxlang/bx-password-encrypt"}
1516
},
1617
"examples": [{
1718
"title":"Show a passing and failing Argon2 hash check",

data/en/arrayappend.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"engines": {
1616
"coldfusion": {"minimum_version":"3", "notes":"", "docs":"https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-functions/functions-a-b/arrayappend.html"},
1717
"lucee": {"minimum_version":"", "notes":"When called as a member function array.append() returns the array instead of boolean.", "docs":"https://docs.lucee.org/reference/functions/arrayappend.html"},
18-
"openbd": {"minimum_version":"", "notes":"", "docs":"http://openbd.org/manual/?/function/arrayappend"}
18+
"openbd": {"minimum_version":"", "notes":"", "docs":"http://openbd.org/manual/?/function/arrayappend"},
19+
"boxlang": {"minimum_version":"1.0.0", "notes":"", "docs":"https://boxlang.ortusbooks.com/boxlang-language/reference/built-in-functions/array/arrayappend"}
1920
},
2021
"links": [
2122

0 commit comments

Comments
 (0)