├── .gitattributes ├── tests ├── assets │ ├── InterfaceX.cfc │ ├── InterfaceY.cfc │ ├── InterfaceZ.cfc │ ├── ComponentB.cfc │ ├── ComponentA.cfc │ └── ComponentDump.cfc ├── dump.cfm ├── dumpmail.cfm ├── mail.cfm ├── data.inc.cfm └── browser.cfm ├── screenshots ├── top.png ├── label.png ├── xml_acf.png ├── array_acf.png ├── blacklist.png ├── bytes_acf.png ├── query_acf.png ├── xml_dump.png ├── xml_lucee.png ├── array_dump.png ├── array_lucee.png ├── bytes_dump.png ├── bytes_lucee.png ├── circular_ref.png ├── object_acf.png ├── object_dump.png ├── object_lucee.png ├── query_dump.png ├── query_lucee.png ├── string_acf.png ├── string_dump.png ├── string_lucee.png ├── struct_acf.png ├── struct_dump.png ├── struct_lucee.png ├── exception_acf.jpg ├── string_pre_acf.png ├── string_ws_acf.png ├── string_ws_dump.png ├── empty_array_acf.png ├── empty_array_dump.png ├── empty_array_lucee.png ├── empty_query_acf.png ├── empty_query_dump.png ├── empty_query_lucee.png ├── empty_string_acf.png ├── empty_string_dump.png ├── empty_struct_acf.png ├── empty_struct_dump.png ├── exception_lucee.jpg ├── string_pre_dump.png ├── string_pre_lucee.png ├── string_ws_lucee.png ├── empty_string_lucee.png ├── empty_struct_lucee.png ├── exception_dump_acf.jpg ├── component_private_acf.png ├── component_private_dump.png ├── component_public_acf.png ├── component_public_dump.png ├── component_public_lucee.png ├── exception_dump_lucee.jpg └── component_private_lucee.png ├── LICENSE ├── src ├── dump.js └── dump.css ├── README.md ├── dump.cfm └── dumpmail.cfm /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /tests/assets/InterfaceX.cfc: -------------------------------------------------------------------------------- 1 | interface {} 2 | -------------------------------------------------------------------------------- /tests/assets/InterfaceY.cfc: -------------------------------------------------------------------------------- 1 | interface {} 2 | -------------------------------------------------------------------------------- /tests/assets/InterfaceZ.cfc: -------------------------------------------------------------------------------- 1 | interface {} 2 | -------------------------------------------------------------------------------- /tests/dump.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/dumpmail.cfm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshots/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/top.png -------------------------------------------------------------------------------- /screenshots/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/label.png -------------------------------------------------------------------------------- /screenshots/xml_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/xml_acf.png -------------------------------------------------------------------------------- /screenshots/array_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/array_acf.png -------------------------------------------------------------------------------- /screenshots/blacklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/blacklist.png -------------------------------------------------------------------------------- /screenshots/bytes_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/bytes_acf.png -------------------------------------------------------------------------------- /screenshots/query_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/query_acf.png -------------------------------------------------------------------------------- /screenshots/xml_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/xml_dump.png -------------------------------------------------------------------------------- /screenshots/xml_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/xml_lucee.png -------------------------------------------------------------------------------- /screenshots/array_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/array_dump.png -------------------------------------------------------------------------------- /screenshots/array_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/array_lucee.png -------------------------------------------------------------------------------- /screenshots/bytes_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/bytes_dump.png -------------------------------------------------------------------------------- /screenshots/bytes_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/bytes_lucee.png -------------------------------------------------------------------------------- /screenshots/circular_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/circular_ref.png -------------------------------------------------------------------------------- /screenshots/object_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/object_acf.png -------------------------------------------------------------------------------- /screenshots/object_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/object_dump.png -------------------------------------------------------------------------------- /screenshots/object_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/object_lucee.png -------------------------------------------------------------------------------- /screenshots/query_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/query_dump.png -------------------------------------------------------------------------------- /screenshots/query_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/query_lucee.png -------------------------------------------------------------------------------- /screenshots/string_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/string_acf.png -------------------------------------------------------------------------------- /screenshots/string_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/string_dump.png -------------------------------------------------------------------------------- /screenshots/string_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/string_lucee.png -------------------------------------------------------------------------------- /screenshots/struct_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/struct_acf.png -------------------------------------------------------------------------------- /screenshots/struct_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/struct_dump.png -------------------------------------------------------------------------------- /screenshots/struct_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/struct_lucee.png -------------------------------------------------------------------------------- /screenshots/exception_acf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/exception_acf.jpg -------------------------------------------------------------------------------- /screenshots/string_pre_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/string_pre_acf.png -------------------------------------------------------------------------------- /screenshots/string_ws_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/string_ws_acf.png -------------------------------------------------------------------------------- /screenshots/string_ws_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/string_ws_dump.png -------------------------------------------------------------------------------- /screenshots/empty_array_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/empty_array_acf.png -------------------------------------------------------------------------------- /screenshots/empty_array_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/empty_array_dump.png -------------------------------------------------------------------------------- /screenshots/empty_array_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/empty_array_lucee.png -------------------------------------------------------------------------------- /screenshots/empty_query_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/empty_query_acf.png -------------------------------------------------------------------------------- /screenshots/empty_query_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/empty_query_dump.png -------------------------------------------------------------------------------- /screenshots/empty_query_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/empty_query_lucee.png -------------------------------------------------------------------------------- /screenshots/empty_string_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/empty_string_acf.png -------------------------------------------------------------------------------- /screenshots/empty_string_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/empty_string_dump.png -------------------------------------------------------------------------------- /screenshots/empty_struct_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/empty_struct_acf.png -------------------------------------------------------------------------------- /screenshots/empty_struct_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/empty_struct_dump.png -------------------------------------------------------------------------------- /screenshots/exception_lucee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/exception_lucee.jpg -------------------------------------------------------------------------------- /screenshots/string_pre_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/string_pre_dump.png -------------------------------------------------------------------------------- /screenshots/string_pre_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/string_pre_lucee.png -------------------------------------------------------------------------------- /screenshots/string_ws_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/string_ws_lucee.png -------------------------------------------------------------------------------- /screenshots/empty_string_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/empty_string_lucee.png -------------------------------------------------------------------------------- /screenshots/empty_struct_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/empty_struct_lucee.png -------------------------------------------------------------------------------- /screenshots/exception_dump_acf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/exception_dump_acf.jpg -------------------------------------------------------------------------------- /screenshots/component_private_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/component_private_acf.png -------------------------------------------------------------------------------- /screenshots/component_private_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/component_private_dump.png -------------------------------------------------------------------------------- /screenshots/component_public_acf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/component_public_acf.png -------------------------------------------------------------------------------- /screenshots/component_public_dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/component_public_dump.png -------------------------------------------------------------------------------- /screenshots/component_public_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/component_public_lucee.png -------------------------------------------------------------------------------- /screenshots/exception_dump_lucee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/exception_dump_lucee.jpg -------------------------------------------------------------------------------- /screenshots/component_private_lucee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwaschny/cf_dump/HEAD/screenshots/component_private_lucee.png -------------------------------------------------------------------------------- /tests/assets/ComponentB.cfc: -------------------------------------------------------------------------------- 1 | component extends="ComponentA" implements="InterfaceZ" { 2 | 3 | THIS.publicVarC = { REFERENCE: javaCast("null", "") }; 4 | 5 | } 6 | -------------------------------------------------------------------------------- /tests/assets/ComponentA.cfc: -------------------------------------------------------------------------------- 1 | component implements="InterfaceX,InterfaceY" { 2 | 3 | THIS.publicVarA = THIS; 4 | THIS.publicVarB = [ "" ]; 5 | 6 | VARIABLES.privateVarA = ""; 7 | VARIABLES.privateVarB = ""; 8 | 9 | public string function foo(required i, n) { 10 | } 11 | 12 | private function bar() { 13 | } 14 | 15 | public function init(x) { 16 | 17 | if (structKeyExists(ARGUMENTS, "x")) { 18 | 19 | THIS.reference = ARGUMENTS.x; 20 | } 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /tests/assets/ComponentDump.cfc: -------------------------------------------------------------------------------- 1 | component { 2 | 3 | VARIABLES["privateNumeric"] = 123 * 1; 4 | VARIABLES["privateNull"] = javaCast("null", ""); 5 | VARIABLES["privateString"] = "STRING"; 6 | VARIABLES["privateBoolean"] = (1 eq 1); 7 | 8 | THIS["PublicNumeric"] = 123 * 1; 9 | THIS["PublicNull"] = javaCast("null", ""); 10 | THIS["PublicString"] = "STRING"; 11 | THIS["PublicBoolean"] = (1 eq 1); 12 | 13 | public struct function dump() { 14 | 15 | return VARIABLES; 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /tests/mail.cfm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Set variable TEST_MAIL and try again. 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |

Array

15 | 16 | 17 |

Struct

18 | 19 | 20 |

Query

21 | 22 | 23 |

Exception

24 | 25 | 26 |
27 | 28 | SENT #now()# -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020-2025 Alexander Kwaschny 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /tests/data.inc.cfm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | AC')> 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 66 | -------------------------------------------------------------------------------- /src/dump.js: -------------------------------------------------------------------------------- 1 | /* to be minified and put into dump.cfm */ 2 | 3 | document.addEventListener('DOMContentLoaded', function() { 4 | 5 | if (typeof window.__cf_dump_head !== 'undefined') { return; } 6 | window.__cf_dump_head = true; 7 | 8 | var i, b; 9 | 10 | var toggleVisibility = function() { 11 | 12 | }; 13 | 14 | var colHeaders = document.querySelectorAll('.cf_dump .colheader'); 15 | var toggleHeader = function(source, targets) { 16 | 17 | var n, child; 18 | 19 | if (source.getAttribute('data-cf_dump_collapsed') === null) { 20 | 21 | for (n = 0; n < targets.length; n++) { 22 | 23 | child = targets[n]; 24 | 25 | if ( 26 | child.classList.contains('row') || 27 | child.classList.contains('colfooter') 28 | ) { 29 | 30 | child.classList.add('hidden'); 31 | } 32 | } 33 | 34 | source.setAttribute('data-cf_dump_collapsed', ''); 35 | 36 | } else { 37 | 38 | for (n = 0; n < targets.length; n++) { 39 | 40 | child = targets[n]; 41 | 42 | if ( 43 | child.classList.contains('row') || 44 | child.classList.contains('colfooter') 45 | ) { 46 | 47 | child.classList.remove('hidden'); 48 | } 49 | } 50 | 51 | source.removeAttribute('data-cf_dump_collapsed'); 52 | } 53 | }; 54 | 55 | for (i = 0; i < colHeaders.length; i++) { 56 | 57 | colHeaders[i].addEventListener('click', function(event) { 58 | 59 | if (event.target.nodeName === 'A') { return; } 60 | 61 | var source = this; 62 | var rows = source.parentNode.children; 63 | 64 | toggleHeader(source, rows); 65 | }); 66 | 67 | b = colHeaders[i].querySelector('a.toggle'); 68 | if (b) { 69 | 70 | b.addEventListener('click', function() { 71 | 72 | var rows = this.parentNode.parentNode.children; 73 | 74 | for (var n = 1; n < rows.length; n++) { 75 | 76 | var row = rows[n]; 77 | var rowHeader = ( (row.children.length === 2) ? row.children[0] : undefined ); 78 | var cellVar = ( rowHeader ? row.children[1].children[0] : row.children[0].children[0] ); 79 | 80 | if (rowHeader && cellVar.classList.contains('empty')) { 81 | 82 | toggleRowCell(rowHeader, row.children); 83 | 84 | } else if (cellVar.children.length > 0) { 85 | 86 | var toggle = cellVar.children[0].querySelector('a.toggle'); 87 | if (toggle) { 88 | 89 | toggle.click(); 90 | } 91 | } 92 | } 93 | }); 94 | } 95 | } 96 | 97 | var rowHeaders = document.querySelectorAll('.cf_dump .rowheader'); 98 | var toggleRowCell = function(source, targets) { 99 | 100 | var n, child; 101 | 102 | if (source.getAttribute('data-cf_dump_collapsed') === null) { 103 | 104 | for (n = 0; n < targets.length; n++) { 105 | 106 | child = targets[n]; 107 | 108 | if ( 109 | child.classList.contains('rowcell') 110 | ) { 111 | 112 | child.classList.add('hidden'); 113 | } 114 | } 115 | 116 | source.setAttribute('data-cf_dump_collapsed', ''); 117 | 118 | } else { 119 | 120 | for (n = 0; n < targets.length; n++) { 121 | 122 | child = targets[n]; 123 | 124 | if ( 125 | child.classList.contains('rowcell') 126 | ) { 127 | 128 | child.classList.remove('hidden'); 129 | } 130 | } 131 | 132 | source.removeAttribute('data-cf_dump_collapsed'); 133 | } 134 | }; 135 | 136 | for (i = 0; i < rowHeaders.length; i++) { 137 | 138 | rowHeaders[i].addEventListener('click', function() { 139 | 140 | var source = this; 141 | var column = source.getAttribute('data-cf_dump_querycolumn'); 142 | var cells; 143 | 144 | if (source.getAttribute('data-cf_dump_querycolumn') !== null) { 145 | 146 | var parent = source.parentNode.parentNode; 147 | cells = parent.querySelectorAll('.rowcell[data-cf_dump_querycell="' + column + '"]'); 148 | 149 | toggleRowCell(source, cells); 150 | 151 | } else { 152 | 153 | cells = source.parentNode.children; 154 | 155 | toggleRowCell(source, cells); 156 | } 157 | 158 | }); 159 | } 160 | 161 | }); 162 | -------------------------------------------------------------------------------- /tests/browser.cfm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 22 | 23 |

<cf_dump>

24 | 25 |

single dump

26 | 27 |

null

28 | 29 | 30 |

bool

31 | 32 | 33 | 34 |

char

35 | 36 | 37 |

string

38 | 39 | 40 | 41 | 48 | 49 |

integer/long/numeric

50 | 51 | 52 | 53 | 54 |

array

55 | 56 | 57 | 58 | 59 |

struct

60 | 61 | 62 | 63 |

xml

64 | 65 | 66 |

query

67 | 68 | 69 | 70 | 71 |

component

72 | 73 | 74 | 75 | 76 | 77 | 78 |

component dump()

79 | 80 | 81 | 82 |

object

83 | 84 | 85 | 86 |

exception dump

87 | 88 | 89 | 90 | 91 |

circular dump

92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 |

label

115 | 116 | 117 | 118 |

top

119 | 120 | 127 | 128 |

struct

129 | 130 | 131 | 150 | 151 |

array

152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 |

query

166 | 167 | 168 |

compact

169 | 170 |

query (implicit)

171 | 172 | 173 |

xml (implicit)

174 | 175 | 176 |

break long strings

177 | 178 | 179 | 180 |

embed

181 | 182 | 183 | 184 |

pre

185 | 186 | 191 | 192 | 193 | 194 |

wsWarning

195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 |

key only

221 | 222 | 223 |

value only

224 | 225 | 226 |

no warning

227 | 228 | 229 | 230 |

blacklist

231 | 232 | 233 | 234 | 235 |

empty

236 | 237 | 238 |

byteEncoding

239 | 240 | 241 | 242 | 243 | 244 |

CP1252

245 | 246 | 247 |

UTF-8

248 | 249 | 250 |

UTF-16

251 | 252 | 253 |

No Encoding

254 | 255 | 256 |

abort / reset

257 | 258 | 259 | 260 | 261 | 262 |
263 | -------------------------------------------------------------------------------- /src/dump.css: -------------------------------------------------------------------------------- 1 | /* to be minified and put into dump.cfm */ 2 | 3 | .cf_dump { 4 | background-color: #FFFFFF; 5 | border-spacing: 0; 6 | box-sizing: border-box; 7 | color: #000000; 8 | display: table; 9 | font-family: 'Segoe UI', sans-serif; 10 | font-size: 14px; 11 | margin-bottom: 8px; 12 | margin-top: 8px; 13 | } 14 | 15 | .cf_dump div { 16 | box-sizing: border-box; 17 | font-size: inherit; 18 | } 19 | 20 | .cf_dump pre { 21 | margin: 0; 22 | } 23 | 24 | .cf_dump .lowkey { 25 | color: #A0A0A0; 26 | } 27 | 28 | .cf_dump .empty { 29 | white-space: nowrap; 30 | } 31 | 32 | .cf_dump .label { 33 | background-color: #E91E63; 34 | color: #FFFFFF; 35 | padding: 4px; 36 | } 37 | 38 | .cf_dump .var { 39 | border-collapse: collapse; 40 | display: table; 41 | min-width: 32px; 42 | width: 100%; 43 | } 44 | .cf_dump .var .rowheader.whitespace::before, 45 | .cf_dump .var.whitespace .colheader::before { 46 | content: '⚠️' 47 | } 48 | .cf_dump .var .rowheader.whitespace, 49 | .cf_dump .var.whitespace .rowcell { 50 | color: #F00000; 51 | font-family: Consolas, monospace; 52 | letter-spacing: 1px; 53 | } 54 | 55 | /* BEGIN: colors */ 56 | 57 | .cf_dump .var.array > .colheader { 58 | background-color: #009900; 59 | border-color: #009900; 60 | color: #FFFFFF; 61 | } 62 | .cf_dump .var.array > .row > .rowheader { 63 | background-color: #CCFFCC; 64 | border-color: #009900; 65 | color: #009900; 66 | } 67 | .cf_dump .var.array > .row > .rowcell { 68 | border-color: #009900; 69 | } 70 | 71 | .cf_dump .var.boolean > .colheader { 72 | background-color: #673AB7; 73 | border-color: #673AB7; 74 | color: #FFFFFF; 75 | } 76 | .cf_dump .var.boolean > .row > .rowcell { 77 | border-color: #673AB7; 78 | } 79 | 80 | .cf_dump .var.byte > .colheader { 81 | background-color: #FFCC44; 82 | border-color: #FFCC44; 83 | color: #000000; 84 | } 85 | .cf_dump .var.byte > .row > .rowcell { 86 | border-color: #FFCC44; 87 | } 88 | 89 | .cf_dump .var.component > .colheader { 90 | background-color: #1C434A; 91 | border-color: #1C434A; 92 | color: #B6DCE3; 93 | } 94 | .cf_dump .var.component > .row > .rowheader { 95 | background-color: #B6DCE3; 96 | border-color: #1C434A; 97 | color: #1C434A; 98 | } 99 | .cf_dump .var.component > .row > .rowcell { 100 | border-color: #1C434A; 101 | } 102 | 103 | .cf_dump .var.exception > .colheader { 104 | background-color: #000000; 105 | border-color: #000000; 106 | color: #FFFF80; 107 | } 108 | .cf_dump .var.exception > .row > .rowheader { 109 | background-color: #FFFF80; 110 | border-color: #000000; 111 | color: #000000; 112 | } 113 | .cf_dump .var.exception > .row > .rowcell { 114 | border-color: #000000; 115 | } 116 | 117 | .cf_dump .var.null > .colheader { 118 | background-color: #000000; 119 | border-color: #000000; 120 | color: #FFFFFF; 121 | } 122 | .cf_dump .var.null > .row > .rowcell { 123 | border-color: #000000; 124 | } 125 | 126 | .cf_dump .var.numeric > .colheader { 127 | background-color: #2196F3; 128 | border-color: #2196F3; 129 | color: #FFFFFF; 130 | } 131 | .cf_dump .var.numeric > .row > .rowcell { 132 | border-color: #2196F3; 133 | } 134 | 135 | .cf_dump .var.object > .colheader { 136 | background-color: #FF4444; 137 | border-color: #FF4444; 138 | color: #FFFFFF; 139 | } 140 | .cf_dump .var.object > .row > .rowheader { 141 | background-color: #FFDBDB; 142 | border-color: #FF4444; 143 | color: #FF4444; 144 | } 145 | .cf_dump .var.object > .row > .rowcell { 146 | border-color: #FF4444; 147 | } 148 | 149 | .cf_dump .var.query > .colheader { 150 | background-color: #AA66AA; 151 | border-color: #AA66AA; 152 | color: #FFFFFF; 153 | } 154 | .cf_dump .var.query > .colfooter { 155 | border-color: #AA66AA; 156 | } 157 | .cf_dump .var.query > .row > .rowheader { 158 | background-color: #FFDDFF; 159 | border-color: #AA66AA; 160 | color: #AA66AA; 161 | } 162 | .cf_dump .var.query > .row > .rowcell { 163 | border-color: #AA66AA; 164 | } 165 | 166 | .cf_dump .var.simple > .colheader { 167 | background-color: #FF4444; 168 | border-color: #FF4444; 169 | color: #FFFFFF; 170 | } 171 | .cf_dump .var.simple > .row > .rowcell { 172 | border-color: #FF4444; 173 | } 174 | 175 | .cf_dump .var.string > .colheader { 176 | background-color: #FF8000; 177 | border-color: #FF8000; 178 | color: #FFFFFF; 179 | } 180 | .cf_dump .var.string > .row > .rowcell { 181 | border-color: #FF8000; 182 | } 183 | 184 | .cf_dump .var.struct > .colheader { 185 | background-color: #4444CC; 186 | border-color: #4444CC; 187 | color: #FFFFFF; 188 | } 189 | .cf_dump .var.struct > .row > .rowheader { 190 | background-color: #CCDDFF; 191 | border-color: #4444CC; 192 | color: #4444CC; 193 | } 194 | .cf_dump .var.struct > .row > .rowcell { 195 | border-color: #4444CC; 196 | } 197 | 198 | .cf_dump .var.xml > .colheader { 199 | background-color: #808080; 200 | border-color: #808080; 201 | color: #FFFFFF; 202 | } 203 | .cf_dump .var.xml > .row > .rowheader { 204 | background-color: #EEEEEE; 205 | border-color: #808080; 206 | color: #808080; 207 | } 208 | .cf_dump .var.xml > .row > .rowcell { 209 | border-color: #808080; 210 | } 211 | 212 | /* END: colors */ 213 | 214 | .cf_dump .colheader { 215 | border: 1px solid; 216 | cursor: pointer; 217 | display: table-caption; 218 | font-size: 11px; 219 | letter-spacing: 1px; 220 | padding: 1px 2px 2px 2px; 221 | user-select: none; 222 | white-space: nowrap; 223 | } 224 | .cf_dump .colheader[data-cf_dump_collapsed] { 225 | opacity: 0.50; 226 | } 227 | .cf_dump .colheader a { 228 | color: inherit; 229 | text-decoration: none; 230 | } 231 | .cf_dump .type { 232 | font-weight: bold; 233 | } 234 | .cf_dump .subtype { 235 | font-size: 9px; 236 | } 237 | .cf_dump .ref { 238 | opacity: 0.50; 239 | } 240 | 241 | .cf_dump .colfooter { 242 | border: 1px solid; 243 | border-top: 0; 244 | display: table-caption; 245 | caption-side: bottom; 246 | padding: 2px; 247 | white-space: nowrap; 248 | } 249 | .cf_dump .colfooter.hidden { 250 | display: none; 251 | } 252 | 253 | .cf_dump .row { 254 | display: table-row; 255 | } 256 | .cf_dump .row.hidden { 257 | display: none; 258 | } 259 | 260 | .cf_dump .rowheader { 261 | border: 1px solid; 262 | border-right: 0; 263 | border-top: 0; 264 | cursor: pointer; 265 | display: table-cell; 266 | padding: 2px 4px; 267 | vertical-align: top; 268 | width: 1%; 269 | } 270 | .cf_dump .rowheader[data-cf_dump_collapsed] { 271 | opacity: 0.50; 272 | } 273 | 274 | .cf_dump .struct > .row > .rowheader { 275 | white-space: nowrap; 276 | } 277 | 278 | .cf_dump .query > .row > .rowheader:last-child { 279 | border-right: 1px solid; 280 | } 281 | 282 | .cf_dump .rowcell { 283 | border: 1px solid; 284 | border-top: 0; 285 | display: table-cell; 286 | padding: 2px; 287 | vertical-align: top; 288 | } 289 | .cf_dump .rowcell.hidden .var, 290 | .cf_dump .rowcell.hidden .cellcontent { 291 | display: none; 292 | } 293 | 294 | .cf_dump .string .rowcell { 295 | word-break: break-all; 296 | } 297 | 298 | .cf_dump .component .extends { 299 | margin-left: 7px; 300 | } 301 | .cf_dump .component .implements { 302 | margin-left: 15px; 303 | } 304 | .cf_dump .component .keyword { 305 | color: #FFFFFF; 306 | } 307 | 308 | .cf_dump .object .col.colheader a { 309 | color: inherit; 310 | text-decoration: none; 311 | } 312 | .cf_dump .object .row .rowcell { 313 | font-family: Consolas, monospace; 314 | } 315 | .cf_dump .object .row .rowcell .returns, 316 | .cf_dump .object .row .rowcell .type { 317 | opacity: 0.50; 318 | } 319 | .cf_dump .object .row .rowcell .method { 320 | color: #0000FF; 321 | } 322 | .cf_dump .object .row .rowcell .returns, 323 | .cf_dump .object .row .rowcell .params, 324 | .cf_dump .object .row .rowcell .type { 325 | font-size: 11px; 326 | } 327 | 328 | .cf_dump .trace > .rowcell { 329 | overflow: auto; 330 | white-space: nowrap; 331 | } 332 | 333 | .cf_dump .trace .preview { 334 | border: 1px solid #A0A0A0; 335 | margin: 8px; 336 | padding: 8px; 337 | } 338 | .cf_dump .trace .preview .block { 339 | margin-top: 8px; 340 | } 341 | 342 | .cf_dump .trace .exception { 343 | font-weight: bold; 344 | } 345 | 346 | .cf_dump .trace .class, 347 | .cf_dump .trace .filler { 348 | opacity: 0.50; 349 | } 350 | 351 | .cf_dump .trace .file { 352 | font-size: 11px; 353 | } 354 | 355 | .cf_dump .cfdump_array, 356 | .cf_dump .cfdump_query, 357 | .cf_dump .cfdump_struct, 358 | .cf_dump .cfdump_xml { 359 | color: #000000; 360 | } 361 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # A ColdFusion custom tag to improve the native cfdump tag 2 | 3 | The `` tag is very handy to debug data. However, the output of it, especially in Adobe ColdFusion, unfortunately is very sparse. And while Lucee does way better here, there is still room for improvement. This custom tag `` is written from scratch, offers more insight and usually renders faster than the native (ACF) cfdump. 4 | 5 | Anyway, pictures are worth a thousand words: 6 | 7 | ## empty string 8 | 9 | Hints the number of characters (`len`). 10 | 11 | | cf_dump | Adobe CF | Lucee | 12 | | ------- | -------- | ----- | 13 | | ![](screenshots/empty_string_dump.png) | ![](screenshots/empty_string_acf.png) | ![](screenshots/empty_string_lucee.png) | 14 | 15 | ## string 16 | 17 | | cf_dump | Adobe CF | Lucee | 18 | | ------- | -------- | ----- | 19 | | ![](screenshots/string_dump.png) | ![](screenshots/string_acf.png) | ![](screenshots/string_lucee.png) | 20 | 21 | ## string with preserved whitespaces 22 | 23 | Preserve whitespaces with the `pre` attribute: `` 24 | 25 | | cf_dump | Adobe CF | Lucee | 26 | | ------- | -------- | ----- | 27 | | ![](screenshots/string_pre_dump.png) | ![](screenshots/string_pre_acf.png) | ![](screenshots/string_pre_lucee.png) | 28 | 29 | ## string with leading/trailing whitespaces 30 | 31 | Whitespaces in strings can be such a pain, as you cannot spot them with a regular dump. `cf_dump` indicates such an occurence. Note: You can disable the indication, if you don't need it, see Attributes section. 32 | 33 | _(Strings starts with a tab character and ends with two spaces.)_ 34 | 35 | | cf_dump | Adobe CF | Lucee | 36 | | ------- | -------- | ----- | 37 | | ![](screenshots/string_ws_dump.png) | ![](screenshots/string_ws_acf.png) | ![](screenshots/string_ws_lucee.png) | 38 | 39 | ## empty struct 40 | 41 | Hints the key count (`structCount`) and the type of the `Map` implementation. 42 | 43 | | cf_dump | Adobe CF | Lucee | 44 | | ------- | -------- | ----- | 45 | | ![](screenshots/empty_struct_dump.png) | ![](screenshots/empty_struct_acf.png) | ![](screenshots/empty_struct_lucee.png) | 46 | 47 | ## struct 48 | 49 | | cf_dump | Adobe CF | Lucee | 50 | | ------- | -------- | ----- | 51 | | ![](screenshots/struct_dump.png) | ![](screenshots/struct_acf.png) | ![](screenshots/struct_lucee.png) | 52 | 53 | ## empty array 54 | 55 | Hints the size (`arrayLen`) and type of the `List` implementation. 56 | 57 | | cf_dump | Adobe CF | Lucee | 58 | | ------- | -------- | ----- | 59 | | ![](screenshots/empty_array_dump.png) | ![](screenshots/empty_array_acf.png) | ![](screenshots/empty_array_lucee.png) | 60 | 61 | ## array 62 | 63 | | cf_dump | Adobe CF | Lucee | 64 | | ------- | -------- | ----- | 65 | | ![](screenshots/array_dump.png) | ![](screenshots/array_acf.png) | ![](screenshots/array_lucee.png) | 66 | 67 | ## empty query 68 | 69 | Hints the number of rows (`recordCount`). 70 | 71 | | cf_dump | Adobe CF | Lucee | 72 | | ------- | -------- | ----- | 73 | | ![](screenshots/empty_query_dump.png) | ![](screenshots/empty_query_acf.png) | ![](screenshots/empty_query_lucee.png) | 74 | 75 | ## query 76 | 77 | | cf_dump | Adobe CF | Lucee | 78 | | ------- | -------- | ----- | 79 | | ![](screenshots/query_dump.png) | ![](screenshots/query_acf.png) | ![](screenshots/query_lucee.png) | 80 | 81 | ## xml 82 | 83 | | cf_dump | Adobe CF | Lucee | 84 | | ------- | -------- | ----- | 85 | | ![](screenshots/xml_dump.png) | ![](screenshots/xml_acf.png) | ![](screenshots/xml_lucee.png) | 86 | 87 | ## exception 88 | 89 | | cf_dump | Adobe CF | 90 | | ------- | -------- | 91 | | ![](screenshots/exception_dump_acf.jpg) | ![](screenshots/exception_acf.jpg) | 92 | 93 | | cf_dump | Lucee | 94 | | ------- | ----- | 95 | | ![](screenshots/exception_dump_lucee.jpg) | ![](screenshots/exception_lucee.jpg) | 96 | 97 | ## component with public fields 98 | 99 | | cf_dump | Adobe CF | Lucee | 100 | | ------- | -------- | ----- | 101 | | ![](screenshots/component_public_dump.png) | ![](screenshots/component_public_acf.png) | ![](screenshots/component_public_lucee.png) | 102 | 103 | ## component with private fields 104 | 105 | To expose private variables of a component (everything inside of the `VARIABLES` scope), just implement a function called `dump` and let it return `VARIABLES`. The custom tag will invoke this method automatically and include the struct in the dump with the special indicator `👁`. 106 | 107 | | cf_dump | Adobe CF | Lucee | 108 | | ------- | -------- | ----- | 109 | | ![](screenshots/component_private_dump.png) | ![](screenshots/component_private_acf.png) | ![](screenshots/component_private_lucee.png) | 110 | 111 |
112 | How to implement dump() 113 | 114 | script syntax 115 | ```cfml 116 | component { 117 | 118 | public struct function dump() { 119 | 120 | return VARIABLES; 121 | } 122 | 123 | } 124 | ``` 125 | 126 | tag syntax 127 | ```cfml 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | ``` 137 | 138 |
139 | 140 | ## Java object 141 | 142 | | cf_dump | Adobe CF | Lucee | 143 | | ------- | -------- | ----- | 144 | | ![](screenshots/object_dump.png) | ![](screenshots/object_acf.png) | ![](screenshots/object_lucee.png) | 145 | 146 | ## Byte array with encoding 147 | 148 | The native dump tag represents a Byte as signed number (Java default). I rarely find this helpful, so I decided to represent each Byte as hex in an actual array. 149 | 150 | | cf_dump | Adobe CF | Lucee | 151 | | ------- | -------- | ----- | 152 | | ![](screenshots/bytes_dump.png) | ![](screenshots/bytes_acf.png) | ![](screenshots/bytes_lucee.png) | 153 | 154 | It also offers a preview of the encoded string. You can specify the desired encoding(s), see Attributes section. 155 | 156 | ## Blacklisting specific keys in structs and fields in components 157 | 158 | When dumping deeply nested data structures, you may want to skip specific fields to keep it small. `` offers this kind of blacklisting. 159 | 160 |
161 | Show code 162 | 163 | ```cfml 164 | 177 | 178 | 179 | ``` 180 | 181 |
182 | 183 | ![](screenshots/blacklist.png) 184 | 185 | ## Circular references 186 | 187 | To prevent recursively dumping circular references, all complex values are only dumped once while subsequent dumps will just point to the object's hashCode. 188 | 189 |
190 | Show code 191 | 192 | ```cfml 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | ``` 201 | 202 |
203 | 204 | ![](screenshots/circular_ref.png) 205 | 206 | ## Expand/Collapse by clicking on the column and row headers 207 | 208 | Just like the native cfdump tag, you can click on column and row headers to expand/collapse its values. The required JavaScript will be included once, regardless of how many dumps you do on a single page to keep the response as small as possible. This also applies to styles. 209 | 210 | ## Optional Tag Attributes 211 | 212 | ### var 213 | 214 | The variable or expression to dump, just like the native cfdump tag. If you omit this attribute, `null` will be dumped. 215 | 216 | ### label 217 | 218 | A label to be displayed on top of the dump, making it easier to identify multiple dumps. 219 | 220 |
221 | Show code 222 | 223 | ```cfml 224 | 225 | 226 | ``` 227 | 228 |
229 | 230 | ![](screenshots/label.png) 231 | 232 | ### top 233 | 234 | Limit the number of keys and rows to display. This is handy if you have large data amounts and want to reduce the time it takes to render them. Default: `-1` 235 | 236 |
237 | Show code 238 | 239 | ```cfml 240 | 250 | 251 | 252 | ``` 253 | 254 |
255 | 256 | ![](screenshots/top.png) 257 | 258 | ### compact 259 | 260 | Keep the output as compact as possible by omitting meta information. Default: `false` (`true` if you pass a Query or XML Document in `var`) 261 | 262 | | type | effect | 263 | | ----- | ------------------------------------------------------ | 264 | | Query | hide type meta text and show `[empty string]` as blank | 265 | | XML | hide fields of nodes that are empty | 266 | 267 | ### pre 268 | 269 | Preserve whitespaces in strings when displaying the dump. Default: `false` 270 | 271 | ### wsWarning 272 | 273 | Show warning if strings contain leading or trailing whitespaces. Default: `true` 274 | 275 | | param | whitespaces | 276 | | ------- | --------------------------- | 277 | | `false` | no detection | 278 | | `key` | detect in keys\* only | 279 | | `value` | detect in values only | 280 | | `true` | detect in keys\* and values | 281 | 282 | \* applies to struct keys only 283 | 284 | ### blacklist 285 | 286 | Keys to blacklist. Blacklisted keys will not be dumped. Default: `[]` 287 | 288 | ### byteEncoding 289 | 290 | Encoding(s) to use when dumping byte arrays. Default: `[ "UTF-8" ]` 291 | 292 | ### byteMax 293 | 294 | Maximum number of bytes to display as individual row when dumping byte arrays. Default: `1024` 295 | 296 | ### reset 297 | 298 | Discard all output before `` is executed. This is handy if you want to dump in the middle of a view without rendering the view up to this point. Default: `false` 299 | 300 | ### abort 301 | 302 | Abort the request after `` has been executed. This is a convenience shortcut for ``. Default: `false` 303 | 304 | ### embed 305 | 306 | Embed ` 209 | 210 | 215 | 216 | 217 | 218 |
219 | 220 | 221 |
222 | #encodeForHtml(ATTRIBUTES.label)# 223 |
224 |
225 | 226 | 227 | #renderDump(ATTRIBUTES.var)# 228 | 229 | #renderDump()# 230 | 231 | 232 |
233 | 234 | 235 | 236 | 237 | #trimOutput(VARIABLES.output, ATTRIBUTES.pre)# 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 258 | 259 |
260 |
261 | null 262 |
263 |
264 |
265 | [undefined] 266 |
267 |
268 |
269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 |
title="#encodeForHtmlAttribute(LOCAL.title)#" class="var #LOCAL.cssClass#"> 373 | 374 |
375 | 376 | #encodeForHtml(LOCAL.type)# #encodeForHtml(LOCAL.subType)# 377 | 378 |
379 | 380 |
381 |
382 | 383 |
#htmlEditFormat(ARGUMENTS.var)##encodeForHtml(ARGUMENTS.var)#
384 | 385 | 386 | #htmlEditFormat(ARGUMENTS.var)# 387 | 388 | #encodeForHtml(ARGUMENTS.var)# 389 | 390 |
391 |
392 |
393 |
394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 |
405 |
406 | array #encodeForHtml(LOCAL.subType)# 407 |
408 |
409 |
410 | [references @#encodeForHtml(LOCAL.identity)#] 411 |
412 |
413 |
414 | 415 | 416 | 417 | 418 | 419 |
420 |
421 | array [0] #encodeForHtml(LOCAL.subType)# @#encodeForHtml(LOCAL.identity)# 422 |
423 |
424 |
425 | [empty array] 426 |
427 |
428 |
429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 |
438 | 439 |
440 | array [#LOCAL.len#] #encodeForHtml(LOCAL.subType)# @#encodeForHtml(LOCAL.identity)# 🗜 441 |
442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 |
451 |
452 | #encodeForHtml( replace(uCase(LOCAL.encoding), "-", "‑", "ALL") )# 453 |
454 | 464 |
465 | 466 |
467 | 468 |
469 | 470 | 471 | 472 | 473 | 474 | 475 |
476 |
477 | #LOCAL.i# 478 |
479 |
480 |
481 | [top reached] 482 |
483 |
484 |
485 | 486 | 487 | 488 |
489 | 490 |
491 |
492 | #LOCAL.i# 493 |
494 |
495 | 496 | #renderDump(ARGUMENTS.var[LOCAL.i], ARGUMENTS.depth)# 497 | 498 | #renderDump()# 499 | 500 |
501 |
502 | 503 | 504 |
505 | 506 | 507 | 508 |
509 |
510 | [more than #ATTRIBUTES.byteMax# Bytes] 511 |
512 |
513 | 514 |
515 | 516 |
517 | 518 |
519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 531 | 532 | 533 | 534 |
535 |
536 | component #encodeForHtml(LOCAL.meta.FullName)# 537 |
538 |
539 |
540 | [references @#encodeForHtml(LOCAL.identity)#] 541 |
542 |
543 |
544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 |
624 | 625 |
626 | component #encodeForHtml(LOCAL.meta.FullName)# @#encodeForHtml(LOCAL.identity)# 🗜
627 | 628 | extends #encodeForHtml(LOCAL.extends)#
629 |
630 | 631 | implements #encodeForHtml(className)#
632 |
633 |
634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 |
645 |
646 | #encodeForHtml(LOCAL.field)# 647 |
648 |
649 |
650 | [blacklisted] 651 |
652 |
653 |
654 | 655 | 656 | 657 | 658 | 659 |
660 |
661 | #encodeForHtml(LOCAL.field)# 662 |
663 |
664 | 665 | #renderDump()# 666 | 667 | #renderDump(LOCAL.element, ARGUMENTS.depth)# 668 | 669 |
670 |
671 | 672 |
673 | 674 |
675 | 676 | 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | 686 | 687 | 688 | 689 | 690 |
691 |
692 | 693 | 👁 #encodeForHtml(LOCAL.field)# 694 | 695 |
696 |
697 |
698 | [blacklisted] 699 |
700 |
701 |
702 | 703 | 704 | 705 | 706 | 707 |
708 |
709 | 710 | 👁 #encodeForHtml(LOCAL.field)# 711 | 712 |
713 |
714 | #renderDump(LOCAL.element, ARGUMENTS.depth)# 715 |
716 |
717 | 718 |
719 | 720 |
721 | 722 |
723 | 724 |
725 | 726 | 727 | 728 | 729 | 730 | 731 | 732 | 733 | 734 | 735 | 736 | 737 | 738 | 739 |
740 |
741 | 742 | object #encodeForHtml(LOCAL.subType)# 743 | 744 | object #encodeForHtml(LOCAL.subType)# 745 | 746 |
747 |
748 |
749 | [references @#encodeForHtml(LOCAL.identity)#] 750 |
751 |
752 |
753 | 754 | 755 | 756 | 757 | 758 | 759 | 763 | 764 | 777 | 778 |
779 |
780 | ColdFusion Exception 🗜 781 |
782 |
783 |
784 | Type 785 |
786 |
787 | #renderDump(ARGUMENTS.var.getType(), ARGUMENTS.depth)# 788 |
789 |
790 |
791 |
792 | Message 793 |
794 |
795 | #renderDump(ARGUMENTS.var.getMessage(), ARGUMENTS.depth)# 796 |
797 |
798 |
799 |
800 | Detail 801 |
802 |
803 | #renderDump(ARGUMENTS.var.getDetail(), ARGUMENTS.depth)# 804 |
805 |
806 |
807 |
808 | TagContext 809 |
810 |
811 |
812 | 813 | 814 | #encodeForHtml( ARGUMENTS.var.getMessage() )# 815 | 816 | 817 | 818 |
  at #encodeForHtml(LOCAL.entry.Template)# in Line #LOCAL.entry.Line# 819 |
820 | 821 |
822 |
823 |
824 | 825 | 826 | 827 | 828 | 829 | 830 |
831 |
832 | #LOCAL.exceptionField# 833 |
834 |
835 | #renderDump(ARGUMENTS.var[LOCAL.exceptionField], ARGUMENTS.depth)# 836 |
837 |
838 | 839 |
840 |
841 |
842 | StackTrace 843 |
844 |
845 |
846 | 847 | 848 | #encodeForHtml( ARGUMENTS.var.toString() )# 849 | 850 | 851 | 852 | 853 |
  at #encodeForHtml( LOCAL.entry.getClassName() )#.#encodeForHtml( LOCAL.entry.getMethodName() )# (#encodeForHtml( LOCAL.entry.getFileName() )#:#LOCAL.entry.getLineNumber()#) 854 |
855 | 856 |
857 |
858 |
859 |
860 | 861 | 862 | 863 | 864 | 877 | 878 |
879 |
880 | Java Exception 🗜 881 |
882 |
883 |
884 | Message 885 |
886 |
887 | #renderDump(ARGUMENTS.var.getMessage(), ARGUMENTS.depth)# 888 |
889 |
890 |
891 |
892 | TagContext 893 |
894 |
895 |
896 | 897 | 898 | #encodeForHtml( ARGUMENTS.var.getMessage() )# 899 | 900 | 901 | 902 |
  at #encodeForHtml(LOCAL.entry.Template)# in Line #LOCAL.entry.Line# 903 |
904 | 905 |
906 |
907 |
908 | 909 | 910 | 911 | 912 | 913 | 914 |
915 |
916 | #LOCAL.exceptionField# 917 |
918 |
919 | #renderDump(ARGUMENTS.var[LOCAL.exceptionField], ARGUMENTS.depth)# 920 |
921 |
922 | 923 |
924 |
925 |
926 | StackTrace 927 |
928 |
929 |
930 | 931 | 932 | #encodeForHtml( ARGUMENTS.var.toString() )# 933 | 934 | 935 | 936 | 937 |
  at #encodeForHtml( LOCAL.entry.getClassName() )#.#encodeForHtml( LOCAL.entry.getMethodName() )# (#encodeForHtml( LOCAL.entry.getFileName() )#:#LOCAL.entry.getLineNumber()#) 938 |
939 | 940 |
941 |
942 |
943 |
944 | 945 | 946 | 947 | 948 | 949 | 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 | 964 | 965 | 966 | 967 | #encodeForHtml( listLast(LOCAL.method.getName(), ".") )#(#arrayToList(LOCAL.methodSign, ", ")#)' 969 | )> 970 | 971 | 972 | 973 | 974 | 975 | 976 | 977 | 978 | 979 | 980 | 981 | 982 | 983 | 984 | 985 | 986 | #encodeForHtml(LOCAL.fieldType)# #encodeForHtml( LOCAL.field.getName() )#' 988 | )> 989 | 990 | 991 | 992 | 993 | 994 | 995 | 996 | 997 | 998 | 999 | 1000 | 1001 | 1002 | 1003 | 1004 | 1005 | 1006 | 1007 | 1008 | 1009 | 1010 | 1011 | 1014 | 1015 | 1016 | 1017 | #encodeForHtml( LOCAL.method.getName() )#(#arrayToList(LOCAL.methodSign, ", ")#) #encodeForHtml(LOCAL.returnType)#' 1019 | )> 1020 | 1021 | 1022 | 1023 | 1024 | 1025 | 1026 | 1027 |
1028 |
1029 | 1030 | object #encodeForHtml(LOCAL.subType)# @#encodeForHtml(LOCAL.identity)# 1031 | 1032 | object #encodeForHtml(LOCAL.subType)# @#encodeForHtml(LOCAL.identity)# 1033 | 1034 |
1035 | 1036 |
1037 |
1038 | constructors 1039 |
1040 |
1041 |
1042 | 1043 | #LOCAL.method#
1044 |
1045 |
1046 |
1047 |
1048 |
1049 | 1050 |
1051 |
1052 | fields 1053 |
1054 |
1055 |
1056 | 1057 | #LOCAL.field#
1058 |
1059 |
1060 |
1061 |
1062 |
1063 | 1064 |
1065 |
1066 | methods 1067 |
1068 |
1069 |
1070 | 1071 | #LOCAL.method#
1072 |
1073 |
1074 |
1075 |
1076 |
1077 |
1078 | 1079 |
1080 | 1081 |
1082 | 1083 |
1084 | 1085 | 1086 | 1087 | 1088 | 1089 | 1090 |
1091 |
1092 | XmlDocument 🗜 1093 |
1094 |
1095 |
1096 | #renderDump(ARGUMENTS.var.XmlRoot, ARGUMENTS.depth)# 1097 |
1098 |
1099 |
1100 | 1101 | 1102 | 1103 |
1104 |
1105 | #( isXmlRoot(ARGUMENTS.var) ? "XmlRoot" : "XmlNode" )# 🗜 1106 |
1107 |
1108 |
1109 | XmlName 1110 |
1111 |
1112 | #renderDump(ARGUMENTS.var.XmlName, ARGUMENTS.depth)# 1113 |
1114 |
1115 | 1116 |
1117 |
1118 | XmlNsPrefix 1119 |
1120 |
1121 | #renderDump(ARGUMENTS.var.XmlNsPrefix, ARGUMENTS.depth)# 1122 |
1123 |
1124 |
1125 | 1126 |
1127 |
1128 | XmlNsURI 1129 |
1130 |
1131 | #renderDump(ARGUMENTS.var.XmlNsURI, ARGUMENTS.depth)# 1132 |
1133 |
1134 |
1135 | 1136 |
1137 |
1138 | XmlText 1139 |
1140 |
1141 | #renderDump(ARGUMENTS.var.XmlText, ARGUMENTS.depth)# 1142 |
1143 |
1144 |
1145 | 1146 |
1147 |
1148 | XmlComment 1149 |
1150 |
1151 | #renderDump(ARGUMENTS.var.XmlComment, ARGUMENTS.depth)# 1152 |
1153 |
1154 |
1155 | 1156 |
1157 |
1158 | XmlAttributes 1159 |
1160 |
1161 | #renderDump(ARGUMENTS.var.XmlAttributes, ARGUMENTS.depth)# 1162 |
1163 |
1164 |
1165 | 1166 |
1167 |
1168 | XmlChildren 1169 |
1170 |
1171 | #renderDump(ARGUMENTS.var.XmlChildren, ARGUMENTS.depth)# 1172 |
1173 |
1174 |
1175 |
1176 | 1177 |
1178 | 1179 | 1180 | 1181 | 1182 | 1183 | 1184 | 1185 |
1186 |
1187 |
1188 | [top reached] 1189 |
1190 |
1191 |
1192 | 1193 | 1194 | 1195 |
1196 | 1197 | 1198 | 1199 | 1200 | 1201 | 1202 | 1203 |
1204 |
1205 | struct #encodeForHtml(LOCAL.subType)# 1206 |
1207 |
1208 |
1209 | [references @#encodeForHtml(LOCAL.identity)#] 1210 |
1211 |
1212 |
1213 | 1214 | 1215 | 1216 |
1217 |
1218 | struct [0] #encodeForHtml(LOCAL.subType)# @#encodeForHtml(LOCAL.identity)# 1219 |
1220 |
1221 |
1222 | [empty struct] 1223 |
1224 |
1225 |
1226 | 1227 | 1228 | 1229 | 1230 | 1231 | 1232 | 1236 | 1237 | 1244 | 1245 |
1246 |
1247 | Lucee Exception 🗜 1248 |
1249 |
1250 |
1251 | Type 1252 |
1253 |
1254 | #renderDump(ARGUMENTS.var.Type, ARGUMENTS.depth)# 1255 |
1256 |
1257 |
1258 |
1259 | Message 1260 |
1261 |
1262 | #renderDump(ARGUMENTS.var.Message, ARGUMENTS.depth)# 1263 |
1264 |
1265 |
1266 |
1267 | Detail 1268 |
1269 |
1270 | #renderDump(ARGUMENTS.var.Detail, ARGUMENTS.depth)# 1271 |
1272 |
1273 |
1274 |
1275 | TagContext 1276 |
1277 |
1278 |
1279 | 1280 | 1281 | #encodeForHtml( ARGUMENTS.var.Message )# 1282 | 1283 | 1284 | 1285 | 1286 | 1287 | 1288 | 1289 |
1290 | at #encodeForHtml(LOCAL.entry.Template)# in Line #LOCAL.entry.Line# 1291 |
#LOCAL.preserveNL#
1292 |
1293 | 1294 |
1295 | 1296 |
1297 |
1298 |
1299 | 1300 | 1301 | 1302 | 1303 | 1304 | 1305 | 1306 | 1307 | 1308 | 1309 |
1310 |
1311 | #LOCAL.exceptionField# 1312 |
1313 |
1314 | #renderDump(ARGUMENTS.var[LOCAL.exceptionField], ARGUMENTS.depth)# 1315 |
1316 |
1317 | 1318 |
1319 | 1320 |
1321 |
1322 | StackTrace 1323 |
1324 |
1325 |
1326 | 1327 | 1328 | 1329 | ", "ALL")> 1330 | 1331 | 1332 | #LOCAL.preserveNL# 1333 | 1334 |
1335 |
1336 |
1337 |
1338 | 1339 | 1340 | 1341 |
1342 | 1343 |
1344 | struct [#LOCAL.len#] #encodeForHtml(LOCAL.subType)# @#encodeForHtml(LOCAL.identity)# 🗜 1345 |
1346 | 1347 | 1348 | 1349 | 1350 | 1351 | 1352 | 1353 | 1354 | 1355 | 1356 | 1357 | 1358 | 1359 | 1360 | 1361 | 1362 | 1363 | 1364 | 1365 | 1366 | 1367 | 1368 | 1369 |
1370 | 1371 |
title="#encodeForHtmlAttribute(LOCAL.title)#" class="rowheader #LOCAL.cssClass#"> 1372 | 1373 | #htmlEditFormat(LOCAL.printedKey)# 1374 | 1375 | #encodeForHtml(LOCAL.printedKey)# 1376 | 1377 |
1378 | 1379 | 1380 | 1381 |
1382 |
1383 | [blacklisted] 1384 |
1385 |
1386 | 1387 | 1388 | 1389 |
1390 | #renderDump(ARGUMENTS.var[LOCAL.key], ARGUMENTS.depth)# 1391 |
1392 | 1393 | 1394 | 1395 | 1396 |
1397 | #renderDump()# 1398 |
1399 | 1400 |
1401 | 1402 |
1403 | 1404 |
1405 | 1406 |
1407 | 1408 |
1409 | 1410 |
1411 | 1412 | 1413 | 1414 | 1415 | 1416 | 1417 | 1418 | 1419 | 1420 | 1421 | 1422 | 1423 | 1424 | 1425 | 1426 | 1427 | 1428 | 1429 | 1430 |
1431 | 1432 |
1433 | query [#LOCAL.len#] 1434 |
1435 |
1436 |
1437 |
1438 | 1439 |
1440 | #encodeForHtml(LOCAL.column)# 1441 |
1442 |
1443 |
1444 | 1445 | 1446 | 1447 | 1448 | 1449 | 1450 |
1451 |
1452 | #ARGUMENTS.var.currentRow# 1453 |
1454 | 1455 |
1456 |
1457 | [top reached] 1458 |
1459 |
1460 |
1461 |
1462 | 1463 | 1464 | 1465 |
1466 | 1467 |
1468 |
1469 | #ARGUMENTS.var.currentRow# 1470 |
1471 | 1472 |
1473 | #renderDump(ARGUMENTS.var[LOCAL.column][ARGUMENTS.var.currentRow], ARGUMENTS.depth, ATTRIBUTES.compact)# 1474 |
1475 |
1476 |
1477 | 1478 |
1479 | 1480 |
1481 | 1482 | 1483 | 1484 |
1485 |
1486 | query [0] 1487 |
1488 | 1489 |
1490 | 1491 |
1492 | #encodeForHtml(LOCAL.column)# 1493 |
1494 |
1495 |
1496 |
1497 |
1498 | [empty query] 1499 |
1500 |
1501 | 1502 |
1503 | 1504 |
1505 | 1506 |
1507 | 1508 |
1509 | 1510 | 1511 | 1512 | 1513 | 1514 | 1515 | 1516 | 1517 | 1518 | 1519 | 1520 | 1521 | 1522 | 1523 | 1524 | 1525 | 1526 | 1527 | 1528 | 1529 | 1530 | 1531 | 1532 | 1533 | 1534 | 1535 | 1536 | 1537 | 1538 | 1539 | 1540 | 1541 | 1542 | 1543 | 1544 | 1545 | 1546 | 1547 | 1548 | 1549 | 1550 | 1551 | 1552 | 1553 | 1554 | 1555 | 1556 | 1557 | 1558 | 1559 | 1563 | 1564 | 1565 | 1566 | 1567 | 1568 | 1569 | 1570 | 1571 | 1572 | 1573 | 1574 | 1575 | 1576 | 1577 | 1578 | 1579 | 1580 | 1581 | 1582 | 1583 | 1584 | 1585 | 1586 | 1587 | 1588 | 1593 | 1594 | 1595 | 1596 | 1597 | 1598 | 1599 | 1600 | 1601 | 1602 | 1603 | 1604 | 1605 | 1606 | 1607 | 1608 | 1609 | 1610 | 1611 | 1612 | 1613 | 1614 | 1615 | \n(?!=)", "")> 1616 | 1617 | 1618 | 1619 | 1620 | 1621 | -------------------------------------------------------------------------------- /dumpmail.cfm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 17 | 18 | 19 | 20 | 21 | 22 | 27 | 28 | 29 | 30 | 31 | 32 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 84 | 85 | 86 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 106 | 107 | 108 | 109 | 110 | 111 | 116 | 117 | 118 | 119 | 120 | 121 | 126 | 127 | 128 | 129 | 130 | 131 | 136 | 137 | 138 | 139 | 140 | 141 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 |
193 | 194 | 195 |
196 | #encodeForHtml(ATTRIBUTES.label)# 197 |
198 |
199 | 200 | 201 | #renderDump(ATTRIBUTES.var)# 202 | 203 | #renderDump()# 204 | 205 | 206 |
207 | 208 |
209 |
210 | 211 | #trimOutput(VARIABLES.output, ATTRIBUTES.pre)# 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 232 | 233 | 234 | 235 | 236 |
237 |
238 | null 239 |
240 |
241 |
242 | [undefined] 243 |
244 |
245 |
246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 |
355 |
356 | ⚠️ 357 | 358 | #encodeForHtml(LOCAL.type)# #encodeForHtml(LOCAL.subType)# 359 | 360 |
361 |
362 |
363 | 364 |
#htmlEditFormat(ARGUMENTS.var)##encodeForHtml(ARGUMENTS.var)#
365 | 366 | 367 | #htmlEditFormat(ARGUMENTS.var)# 368 | 369 | #encodeForHtml(ARGUMENTS.var)# 370 | 371 |
372 |
373 |
374 |
375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 |
390 |
391 | array #encodeForHtml(LOCAL.subType)# 392 |
393 |
394 |
395 | [references @#encodeForHtml(LOCAL.identity)#] 396 |
397 |
398 |
399 | 400 | 401 | 402 | 403 | 404 |
405 |
406 | array [0] #encodeForHtml(LOCAL.subType)# @#encodeForHtml(LOCAL.identity)# 407 |
408 |
409 |
410 | [empty array] 411 |
412 |
413 |
414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 |
423 | 424 |
425 | array [#LOCAL.len#] #encodeForHtml(LOCAL.subType)# @#encodeForHtml(LOCAL.identity)# 426 |
427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 |
436 |
437 | #encodeForHtml( replace(uCase(LOCAL.encoding), "-", "‑", "ALL") )# 438 |
439 |
440 |
441 | 442 | #charsetEncode(ARGUMENTS.var, LOCAL.encoding)# 443 | 444 | [encoding failed] 445 | 446 | 447 |
448 |
449 |
450 | 451 |
452 | 453 |
454 | 455 | 456 | 457 | 458 | 459 | 460 |
461 |
462 | #LOCAL.i# 463 |
464 |
465 |
466 | [top reached] 467 |
468 |
469 |
470 | 471 | 472 | 473 |
474 | 475 |
476 |
477 | #LOCAL.i# 478 |
479 |
480 | 481 | #renderDump(ARGUMENTS.var[LOCAL.i], ARGUMENTS.depth)# 482 | 483 | #renderDump()# 484 | 485 |
486 |
487 | 488 | 489 |
490 | 491 | 492 | 493 |
494 |
495 | [more than #ATTRIBUTES.byteMax# Bytes] 496 |
497 |
498 | 499 |
500 | 501 |
502 | 503 |
504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 |
524 |
525 | component #encodeForHtml(LOCAL.meta.FullName)# 526 |
527 |
528 |
529 | [references @#encodeForHtml(LOCAL.identity)#] 530 |
531 |
532 |
533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 |
613 | 614 |
615 | component #encodeForHtml(LOCAL.meta.FullName)# @#encodeForHtml(LOCAL.identity)#
616 | 617 | extends #encodeForHtml(LOCAL.extends)#
618 |
619 | 620 | implements #encodeForHtml(className)#
621 |
622 |
623 | 624 | 625 | 626 | 627 | 628 | 629 | 630 | 631 | 632 | 633 |
634 |
635 | #encodeForHtml(LOCAL.field)# 636 |
637 |
638 |
639 | [blacklisted] 640 |
641 |
642 |
643 | 644 | 645 | 646 | 647 | 648 |
649 |
650 | #encodeForHtml(LOCAL.field)# 651 |
652 |
653 | 654 | #renderDump()# 655 | 656 | #renderDump(LOCAL.element, ARGUMENTS.depth)# 657 | 658 |
659 |
660 | 661 |
662 | 663 |
664 | 665 | 666 | 667 | 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 |
680 |
681 | 👁 #encodeForHtml(LOCAL.field)# 682 |
683 |
684 |
685 | [blacklisted] 686 |
687 |
688 |
689 | 690 | 691 | 692 | 693 | 694 |
695 |
696 | 👁 #encodeForHtml(LOCAL.field)# 697 |
698 |
699 | #renderDump(LOCAL.element, ARGUMENTS.depth)# 700 |
701 |
702 | 703 |
704 | 705 |
706 | 707 |
708 | 709 |
710 | 711 | 712 | 713 | 714 | 715 | 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | 726 | 727 | 728 |
729 |
730 | 731 | object #encodeForHtml(LOCAL.subType)# 732 | 733 | object #encodeForHtml(LOCAL.subType)# 734 | 735 |
736 |
737 |
738 | [references @#encodeForHtml(LOCAL.identity)#] 739 |
740 |
741 |
742 | 743 | 744 | 745 | 746 | 747 | 748 | 752 | 753 | 754 | 755 | 756 | 757 | 770 | 771 |
772 |
773 | ColdFusion Exception 774 |
775 |
776 |
777 | Type 778 |
779 |
780 | #renderDump(ARGUMENTS.var.getType(), ARGUMENTS.depth)# 781 |
782 |
783 |
784 |
785 | Message 786 |
787 |
788 | #renderDump(ARGUMENTS.var.getMessage(), ARGUMENTS.depth)# 789 |
790 |
791 |
792 |
793 | Detail 794 |
795 |
796 | #renderDump(ARGUMENTS.var.getDetail(), ARGUMENTS.depth)# 797 |
798 |
799 |
800 |
801 | TagContext 802 |
803 |
804 |
805 | 806 | 807 | #encodeForHtml( ARGUMENTS.var.getMessage() )# 808 | 809 | 810 | 811 |
  at #encodeForHtml(LOCAL.entry.Template)# in Line #LOCAL.entry.Line# 812 |
813 | 814 |
815 |
816 |
817 | 818 | 819 | 820 | 821 | 822 | 823 |
824 |
825 | #LOCAL.exceptionField# 826 |
827 |
828 | #renderDump(ARGUMENTS.var[LOCAL.exceptionField], ARGUMENTS.depth)# 829 |
830 |
831 | 832 |
833 |
834 |
835 | StackTrace 836 |
837 |
838 |
839 | 840 | 841 | #encodeForHtml( ARGUMENTS.var.toString() )# 842 | 843 | 844 | 845 | 846 |
  at #encodeForHtml( LOCAL.entry.getClassName() )#.#encodeForHtml( LOCAL.entry.getMethodName() )# (#encodeForHtml( LOCAL.entry.getFileName() )#:#LOCAL.entry.getLineNumber()#) 847 |
848 | 849 |
850 |
851 |
852 |
853 | 854 | 855 | 856 | 857 | 858 | 859 | 860 | 861 | 874 | 875 |
876 |
877 | Java Exception 878 |
879 |
880 |
881 | Message 882 |
883 |
884 | #renderDump(ARGUMENTS.var.getMessage(), ARGUMENTS.depth)# 885 |
886 |
887 |
888 |
889 | TagContext 890 |
891 |
892 |
893 | 894 | 895 | #encodeForHtml( ARGUMENTS.var.getMessage() )# 896 | 897 | 898 | 899 |
  at #encodeForHtml(LOCAL.entry.Template)# in Line #LOCAL.entry.Line# 900 |
901 | 902 |
903 |
904 |
905 | 906 | 907 | 908 | 909 | 910 | 911 |
912 |
913 | #LOCAL.exceptionField# 914 |
915 |
916 | #renderDump(ARGUMENTS.var[LOCAL.exceptionField], ARGUMENTS.depth)# 917 |
918 |
919 | 920 |
921 |
922 |
923 | StackTrace 924 |
925 |
926 |
927 | 928 | 929 | #encodeForHtml( ARGUMENTS.var.toString() )# 930 | 931 | 932 | 933 | 934 |
  at #encodeForHtml( LOCAL.entry.getClassName() )#.#encodeForHtml( LOCAL.entry.getMethodName() )# (#encodeForHtml( LOCAL.entry.getFileName() )#:#LOCAL.entry.getLineNumber()#) 935 |
936 | 937 |
938 |
939 |
940 |
941 | 942 | 943 | 944 | 945 | 946 | 947 | 948 | 949 | 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 961 | 962 | 963 | 964 | #encodeForHtml( listLast(LOCAL.method.getName(), ".") )#(#arrayToList(LOCAL.methodSign, ", ")#)' 966 | )> 967 | 968 | 969 | 970 | 971 | 972 | 973 | 974 | 975 | 976 | 977 | 978 | 979 | 980 | 981 | 982 | 983 | #encodeForHtml(LOCAL.fieldType)# #encodeForHtml( LOCAL.field.getName() )#' 985 | )> 986 | 987 | 988 | 989 | 990 | 991 | 992 | 993 | 994 | 995 | 996 | 997 | 998 | 999 | 1000 | 1001 | 1002 | 1003 | 1004 | 1005 | 1006 | 1007 | 1008 | 1011 | 1012 | 1013 | 1014 | #encodeForHtml( LOCAL.method.getName() )#(#arrayToList(LOCAL.methodSign, ", ")#) #encodeForHtml(LOCAL.returnType)#' 1016 | )> 1017 | 1018 | 1019 | 1020 | 1021 | 1022 | 1023 | 1024 |
1025 |
1026 | 1027 | object #encodeForHtml(LOCAL.subType)# @#encodeForHtml(LOCAL.identity)# 1028 | 1029 | object #encodeForHtml(LOCAL.subType)# @#encodeForHtml(LOCAL.identity)# 1030 | 1031 |
1032 | 1033 |
1034 |
1035 | constructors 1036 |
1037 |
1038 |
1039 | 1040 | #LOCAL.method#
1041 |
1042 |
1043 |
1044 |
1045 |
1046 | 1047 |
1048 |
1049 | fields 1050 |
1051 |
1052 |
1053 | 1054 | #LOCAL.field#
1055 |
1056 |
1057 |
1058 |
1059 |
1060 | 1061 |
1062 |
1063 | methods 1064 |
1065 |
1066 |
1067 | 1068 | #LOCAL.method#
1069 |
1070 |
1071 |
1072 |
1073 |
1074 |
1075 | 1076 |
1077 | 1078 |
1079 | 1080 |
1081 | 1082 | 1083 | 1084 | 1085 | 1086 | 1087 | 1088 | 1089 | 1090 | 1091 |
1092 |
1093 | XmlDocument 1094 |
1095 |
1096 |
1097 | #renderDump(ARGUMENTS.var.XmlRoot, ARGUMENTS.depth)# 1098 |
1099 |
1100 |
1101 | 1102 | 1103 | 1104 |
1105 |
1106 | #( isXmlRoot(ARGUMENTS.var) ? "XmlRoot" : "XmlNode" )# 1107 |
1108 |
1109 |
1110 | XmlName 1111 |
1112 |
1113 | #renderDump(ARGUMENTS.var.XmlName, ARGUMENTS.depth)# 1114 |
1115 |
1116 | 1117 |
1118 |
1119 | XmlNsPrefix 1120 |
1121 |
1122 | #renderDump(ARGUMENTS.var.XmlNsPrefix, ARGUMENTS.depth)# 1123 |
1124 |
1125 |
1126 | 1127 |
1128 |
1129 | XmlNsURI 1130 |
1131 |
1132 | #renderDump(ARGUMENTS.var.XmlNsURI, ARGUMENTS.depth)# 1133 |
1134 |
1135 |
1136 | 1137 |
1138 |
1139 | XmlText 1140 |
1141 |
1142 | #renderDump(ARGUMENTS.var.XmlText, ARGUMENTS.depth)# 1143 |
1144 |
1145 |
1146 | 1147 |
1148 |
1149 | XmlComment 1150 |
1151 |
1152 | #renderDump(ARGUMENTS.var.XmlComment, ARGUMENTS.depth)# 1153 |
1154 |
1155 |
1156 | 1157 |
1158 |
1159 | XmlAttributes 1160 |
1161 |
1162 | #renderDump(ARGUMENTS.var.XmlAttributes, ARGUMENTS.depth)# 1163 |
1164 |
1165 |
1166 | 1167 |
1168 |
1169 | XmlChildren 1170 |
1171 |
1172 | #renderDump(ARGUMENTS.var.XmlChildren, ARGUMENTS.depth)# 1173 |
1174 |
1175 |
1176 |
1177 | 1178 |
1179 | 1180 | 1181 | 1182 | 1183 | 1184 | 1185 | 1186 |
1187 |
1188 |
1189 | [top reached] 1190 |
1191 |
1192 |
1193 | 1194 | 1195 | 1196 |
1197 | 1198 | 1199 | 1200 | 1201 | 1202 | 1203 | 1204 | 1205 | 1206 | 1207 | 1208 |
1209 |
1210 | struct #encodeForHtml(LOCAL.subType)# 1211 |
1212 |
1213 |
1214 | [references @#encodeForHtml(LOCAL.identity)#] 1215 |
1216 |
1217 |
1218 | 1219 | 1220 | 1221 |
1222 |
1223 | struct [0] #encodeForHtml(LOCAL.subType)# @#encodeForHtml(LOCAL.identity)# 1224 |
1225 |
1226 |
1227 | [empty struct] 1228 |
1229 |
1230 |
1231 | 1232 | 1233 | 1234 | 1235 | 1236 | 1237 | 1241 | 1242 | 1243 | 1244 | 1245 | 1246 | 1253 | 1254 |
1255 |
1256 | Lucee Exception 1257 |
1258 |
1259 |
1260 | Type 1261 |
1262 |
1263 | #renderDump(ARGUMENTS.var.Type, ARGUMENTS.depth)# 1264 |
1265 |
1266 |
1267 |
1268 | Message 1269 |
1270 |
1271 | #renderDump(ARGUMENTS.var.Message, ARGUMENTS.depth)# 1272 |
1273 |
1274 |
1275 |
1276 | Detail 1277 |
1278 |
1279 | #renderDump(ARGUMENTS.var.Detail, ARGUMENTS.depth)# 1280 |
1281 |
1282 |
1283 |
1284 | TagContext 1285 |
1286 |
1287 |
1288 | 1289 | 1290 | #encodeForHtml( ARGUMENTS.var.Message )# 1291 | 1292 | 1293 | 1294 | 1295 | 1296 | 1297 | 1298 |
1299 | at #encodeForHtml(LOCAL.entry.Template)# in Line #LOCAL.entry.Line# 1300 |
#LOCAL.preserveNL#
1301 |
1302 | 1303 |
1304 | 1305 |
1306 |
1307 |
1308 | 1309 | 1310 | 1311 | 1312 | 1313 | 1314 | 1315 | 1316 | 1317 | 1318 |
1319 |
1320 | #LOCAL.exceptionField# 1321 |
1322 |
1323 | #renderDump(ARGUMENTS.var[LOCAL.exceptionField], ARGUMENTS.depth)# 1324 |
1325 |
1326 | 1327 |
1328 | 1329 |
1330 |
1331 | StackTrace 1332 |
1333 |
1334 |
1335 | 1336 | 1337 | 1338 | ", "ALL")> 1339 | 1340 | 1341 | #LOCAL.preserveNL# 1342 | 1343 |
1344 |
1345 |
1346 |
1347 | 1348 | 1349 | 1350 | 1351 | 1352 |
1353 | 1354 |
1355 | struct [#LOCAL.len#] #encodeForHtml(LOCAL.subType)# @#encodeForHtml(LOCAL.identity)# 1356 |
1357 | 1358 | 1359 | 1360 | 1361 | 1362 | 1363 | 1364 | 1365 | 1366 | 1367 | 1368 | 1369 | 1370 | 1371 | 1372 | 1373 | 1374 | 1375 | 1376 | 1377 |
1378 | 1379 |
1380 | ⚠️ 1381 | 1382 | #htmlEditFormat(LOCAL.printedKey)# 1383 | 1384 | #encodeForHtml(LOCAL.printedKey)# 1385 | 1386 |
1387 | 1388 | 1389 | 1390 |
1391 |
1392 | [blacklisted] 1393 |
1394 |
1395 | 1396 | 1397 | 1398 |
1399 | #renderDump(ARGUMENTS.var[LOCAL.key], ARGUMENTS.depth)# 1400 |
1401 | 1402 | 1403 | 1404 | 1405 |
1406 | #renderDump()# 1407 |
1408 | 1409 |
1410 | 1411 |
1412 | 1413 |
1414 | 1415 |
1416 | 1417 |
1418 | 1419 |
1420 | 1421 | 1422 | 1423 | 1424 | 1425 | 1426 | 1427 | 1428 | 1429 | 1430 | 1431 | 1432 | 1433 | 1434 | 1435 | 1436 | 1437 | 1438 | 1439 | 1440 | 1441 | 1442 | 1443 |
1444 | 1445 |
1446 | query [#LOCAL.len#] 1447 |
1448 |
1449 |
1450 |
1451 | 1452 | 1453 | 1454 |
1455 | #encodeForHtml(LOCAL.column)# 1456 |
1457 |
1458 |
1459 | 1460 | 1461 | 1462 | 1463 | 1464 | 1465 |
1466 |
1467 | #ARGUMENTS.var.currentRow# 1468 |
1469 | 1470 |
1471 |
1472 | [top reached] 1473 |
1474 |
1475 |
1476 |
1477 | 1478 | 1479 | 1480 |
1481 | 1482 |
1483 |
1484 | #ARGUMENTS.var.currentRow# 1485 |
1486 | 1487 |
1488 | #renderDump(ARGUMENTS.var[LOCAL.column][ARGUMENTS.var.currentRow], ARGUMENTS.depth, ATTRIBUTES.compact)# 1489 |
1490 |
1491 |
1492 | 1493 |
1494 | 1495 |
1496 | 1497 | 1498 | 1499 |
1500 |
1501 | query [0] 1502 |
1503 | 1504 |
1505 | 1506 | 1507 | 1508 |
1509 | #encodeForHtml(LOCAL.column)# 1510 |
1511 |
1512 |
1513 |
1514 |
1515 | [empty query] 1516 |
1517 |
1518 | 1519 |
1520 | 1521 |
1522 | 1523 |
1524 | 1525 |
1526 | 1527 | 1528 | 1529 | 1530 | 1531 | 1532 | 1533 | 1534 | 1535 | 1536 | 1537 | 1538 | 1539 | 1540 | 1541 | 1542 | 1543 | 1544 | 1545 | 1546 | 1547 | 1548 | 1549 | 1550 | 1551 | 1552 | 1553 | 1554 | 1555 | 1556 | 1557 | 1558 | 1559 | 1560 | 1561 | 1562 | 1563 | 1564 | 1565 | 1566 | 1567 | 1568 | 1569 | 1570 | 1571 | 1572 | 1573 | 1574 | 1575 | 1576 | 1580 | 1581 | 1582 | 1583 | 1584 | 1585 | 1586 | 1587 | 1588 | 1589 | 1590 | 1591 | 1592 | 1593 | 1594 | 1595 | 1596 | 1597 | 1598 | 1599 | 1600 | 1601 | 1602 | 1603 | 1604 | 1605 | 1610 | 1611 | 1612 | 1613 | 1614 | 1615 | 1616 | 1617 | 1618 | 1619 | 1620 | 1621 | 1622 | 1623 | 1624 | 1625 | 1626 | 1627 | 1628 | 1629 | 1630 | 1631 | 1632 | \n(?!=)", "")> 1633 | 1634 | 1635 | 1636 | 1637 | 1638 | --------------------------------------------------------------------------------