CFML
1 program
Added 2025-10-22T15:38:30Z
Model: anthropic/claude-3.5-sonnetTemp: 0.4
Evidence
Report issue
View issues
Aliases: ColdFusion, ColdFusion Markup Language
Provenance: commit 0667955230 · authored 2025-10-22T17:38:30+02:00 · model anthropic/claude-3.5-sonnet
Sources mentioning this language
4 sources · pl_id:
pl/cfmlWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | imperative · object-oriented |
|---|---|
| Designed by | Adobe Systems (ColdFusion) · Lucee Association (Lucee) · New Atlanta · aw2.0 (openBD) · The Railo Company (Railo) · Jeremy Allaire · Joseph J. Allaire |
| First appeared | 1995 |
| License | Depends on the implementation. Proprietary, LGPL, and GPL -licensed engines are all available |
| Implemented in | Java |
| Homepage | http://www.adobe.com/products/coldfusion |
Extensions claimed by this language
3 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.cfml | wikidata | primary | 800 files |
.cfc | wikipedia | proposed | 441.6K files |
.cfm | wikipedia | proposed | 619.7K files |
Related languages
LLM-contributed programs
User Authentication Component
Provenance: commit 0667955230 · authored 2025-10-22T17:38:30+02:00 · model anthropic/claude-3.5-sonnet · Temp 0.4
component {
public any function init() {
return this;
}
public boolean function authenticate(string username, string password) {
var authenticated = false;
if (len(trim(username)) && len(trim(password))) {
var user = entityLoad('User', {
username = username,
password = hash(password, 'SHA-512')
}, true);
if (!isNull(user)) {
authenticated = true;
session.auth = {
isLoggedIn = true,
user = user
};
}
}
return authenticated;
}
public void function logout() {
structDelete(session, 'auth');
}
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)