Skip to content

Commit 73f0e6f

Browse files
committed
Added comments and removed tags for certain functions regarding removal in ColdFusion 2025
1 parent afae559 commit 73f0e6f

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

data/en/cfhttp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"result":""
5656
},
5757
{
58-
"title": "Alternate Script Syntax (CF9+)",
58+
"title": "Alternate Script Syntax (CF9+). Removed in ColdFusion 2025.",
5959
"description": "",
6060
"code": "httpService = new http(method = \"GET\", charset = \"utf-8\", url = \"https://www.google.com/\");\r\nhttpService.addParam(name = \"q\", type = \"url\", value = \"cfml\");\r\nresult = httpService.send().getPrefix();\r\nwriteDump(result);",
6161
"result": ""

data/en/cfhttpparam.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"result":""
2828
},
2929
{
30-
"title": "Alternate Script Syntax (CF9+)",
30+
"title": "Alternate Script Syntax (CF9+). Removed in ColdFusion 2025.",
3131
"description": "",
3232
"code": "httpService = new http(method = \"POST\", charset = \"utf-8\", url = \"https://www.google.com/\");\r\nhttpService.addParam(name = \"q\", type = \"formfield\", value = \"cfml\");\r\nresult = httpService.send().getPrefix();\r\nwriteDump(result);",
3333
"result": ""

data/en/cfmail.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@
390390
"code": "<cfset myQuery = queryNew( \"recipient,lastname,firstname\" )>\n<cfset queryAddRow( myQuery, { recipient = \"[email protected]\", lastname = \"Doe\", firstname = \"John\" }) />\n\n<cfmail to=\"#recipient#\" from=\"[email protected]\" subject=\"Example email\" query=\"myQuery\">\n Dear #lastname#,\n\n Text here, containing any variable in the myQuery scope.\n</cfmail>"
391391
},
392392
{
393-
"title": "Script syntax using new mail()",
393+
"title": "Script syntax using new mail(). Removed in ColdFusion 2025.",
394394
"description": "CF9+ The cfmail features are also available through the mail component.",
395395
"code": "savecontent variable=\"mailBody\" {\n writeOutput( \"Your Email Message!!\" );\n};\n\n// Create and populate the mail object\nmailService = new mail(\n to = \"[email protected]\",\n from = \"[email protected]\",\n subject = \"Example email\",\n body = mailBody\n);\n\n// Send\nmailService.send();"
396396
},

data/en/cfquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
},
6464
{
6565
"title": "Script Syntax using new Query()",
66-
"description": "This syntax was implemented by script-based components in CF 9 & 10. It is superseded by queryExecute() in CF11.",
66+
"description": "This syntax was implemented by script-based components in CF 9 & 10. Deprecated in ColdFusion 2018. Removed in ColdFusion 2025. It is superseded by queryExecute() in CF11.",
6767
"code": "queryObj = new Query(\r\n name=\"qryDemo\",\r\n datasource=\"mydatasourcename\",\r\n sql = \"SELECT col1, col2\r\n FROM myTable\r\n WHERE id=:id\"\r\n); \r\nqueryObj.addParam(name=\"id\",value=arguments.id, cfsqltype=\"cf_sql_integer\");\r\nresultset=queryObj.execute().getResult();",
6868
"result": ""
6969
},

data/en/htmleditformat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
"engines": {
2727
"coldfusion": { "docs": "https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-functions/functions-h-im/htmleditformat.html",
28-
"minimum_version": "", "notes": "Use encodeForHTML, which can provide more protection from XSS.", "deprecated" : "11" },
28+
"minimum_version": "", "notes": "Use encodeForHTML, which can provide more protection from XSS.", "deprecated" : "11" , "removed":"2025"},
2929
"lucee": { "docs": "https://docs.lucee.org/reference/functions/htmleditformat.html",
3030
"minimum_version": "", "notes": "" },
3131
"openbd": { "docs": "http://openbd.org/manual/?/function/htmleditformat",

data/en/parameterexists.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{"name":"parameter","description":"A syntactically valid parameter name.","required":true,"default":"","type":"string","values":[]}
1010
],
1111
"engines": {
12-
"coldfusion": {"minimum_version":"", "notes":"This function is deprecated, but is still available for backward compatibility. Use StructKeyExists() or IsDefined() functions instead.", "docs":"https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-functions/functions-m-r/parameterexists.html", "deprecated":"6"}
12+
"coldfusion": {"minimum_version":"", "notes":"This function is deprecated, but is still available for backward compatibility until ColdFusion 2025. Use StructKeyExists() or IsDefined() functions instead.", "docs":"https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-functions/functions-m-r/parameterexists.html", "deprecated":"6", "removed":"2025"}
1313
},
1414
"links": [
1515

0 commit comments

Comments
 (0)