Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/en/cfhttp.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"result":""
},
{
"title": "Alternate Script Syntax (CF9+)",
"title": "Alternate Script Syntax (CF9+). Removed in ColdFusion 2025.",
"description": "",
"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);",
"result": ""
Expand Down
2 changes: 1 addition & 1 deletion data/en/cfhttpparam.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"result":""
},
{
"title": "Alternate Script Syntax (CF9+)",
"title": "Alternate Script Syntax (CF9+). Removed in ColdFusion 2025.",
"description": "",
"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);",
"result": ""
Expand Down
2 changes: 1 addition & 1 deletion data/en/cfmail.json
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@
"code": "<cfset myQuery = queryNew( \"recipient,lastname,firstname\" )>\n<cfset queryAddRow( myQuery, { recipient = \"recipient@example.com\", lastname = \"Doe\", firstname = \"John\" }) />\n\n<cfmail to=\"#recipient#\" from=\"sender@example.com\" subject=\"Example email\" query=\"myQuery\">\n Dear #lastname#,\n\n Text here, containing any variable in the myQuery scope.\n</cfmail>"
},
{
"title": "Script syntax using new mail()",
"title": "Script syntax using new mail(). Removed in ColdFusion 2025.",
"description": "CF9+ The cfmail features are also available through the mail component.",
"code": "savecontent variable=\"mailBody\" {\n writeOutput( \"Your Email Message!!\" );\n};\n\n// Create and populate the mail object\nmailService = new mail(\n to = \"recipient@example.com\",\n from = \"sender@example.com\",\n subject = \"Example email\",\n body = mailBody\n);\n\n// Send\nmailService.send();"
},
Expand Down
2 changes: 1 addition & 1 deletion data/en/cfquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
},
{
"title": "Script Syntax using new Query()",
"description": "This syntax was implemented by script-based components in CF 9 & 10. It is superseded by queryExecute() in CF11.",
"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.",
"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();",
"result": ""
},
Expand Down
2 changes: 1 addition & 1 deletion data/en/htmleditformat.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

"engines": {
"coldfusion": { "docs": "https://helpx.adobe.com/coldfusion/cfml-reference/coldfusion-functions/functions-h-im/htmleditformat.html",
"minimum_version": "", "notes": "Use encodeForHTML, which can provide more protection from XSS.", "deprecated" : "11" },
"minimum_version": "", "notes": "Use encodeForHTML, which can provide more protection from XSS.", "deprecated" : "11" , "removed":"2025"},
"lucee": { "docs": "https://docs.lucee.org/reference/functions/htmleditformat.html",
"minimum_version": "", "notes": "" },
"openbd": { "docs": "http://openbd.org/manual/?/function/htmleditformat",
Expand Down
2 changes: 1 addition & 1 deletion data/en/parameterexists.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{"name":"parameter","description":"A syntactically valid parameter name.","required":true,"default":"","type":"string","values":[]}
],
"engines": {
"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"}
"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"}
},
"links": [

Expand Down