|
68 | 68 |
|
69 | 69 | <!--- Toolbar --->
|
70 | 70 | <div class="cbd-floatRight">
|
| 71 | + |
71 | 72 | <!--- ************************************************ --->
|
72 | 73 | <!--- Visualizer Toolbar --->
|
73 | 74 | <!--- ************************************************ --->
|
74 | 75 | <cfif args.isVisualizer>
|
| 76 | + |
75 | 77 | <!--- Auto Refresh Frequency --->
|
76 | 78 | <select
|
77 | 79 | @change="startDebuggerMonitor( $el.value )"
|
|
89 | 91 | <button
|
90 | 92 | type="button"
|
91 | 93 | title="Refresh the profilers"
|
92 |
| - @click="refreshProfilers" |
| 94 | + @click="refreshProfilers()" |
93 | 95 | >
|
94 | 96 | <svg
|
95 | 97 | xmlns="http://www.w3.org/2000/svg"
|
|
116 | 118 | <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" />
|
117 | 119 | </svg>
|
118 | 120 | </button>
|
| 121 | + |
119 | 122 | <!--- ************************************************ --->
|
120 | 123 | <!--- NON Visualizer Toolbar --->
|
121 | 124 | <!--- ************************************************ --->
|
|
161 | 164 | </button>
|
162 | 165 | </div>
|
163 | 166 |
|
164 |
| - <!--- Machine Info ---> |
165 |
| - <div class="cbd-titleCell"> |
166 |
| - Framework Info: |
167 |
| - </div> |
168 |
| - <div class="cbd-contentCell"> |
169 |
| - #controller.getColdboxSettings().codename# |
170 |
| - #controller.getColdboxSettings().version# |
171 |
| - #controller.getColdboxSettings().suffix# |
172 |
| - </div> |
| 167 | + <!--- General Information ---> |
| 168 | + <div> |
| 169 | + <!--- Machine Info ---> |
| 170 | + <div class="cbd-titleCell"> |
| 171 | + Framework Info: |
| 172 | + </div> |
| 173 | + <div class="cbd-contentCell"> |
| 174 | + #controller.getColdboxSettings().codename# |
| 175 | + #controller.getColdboxSettings().version# |
| 176 | + #controller.getColdboxSettings().suffix# |
| 177 | + </div> |
173 | 178 |
|
174 |
| - <!--- App Name + Environment ---> |
175 |
| - <div class="cbd-titleCell"> |
176 |
| - Application Name: |
177 |
| - </div> |
178 |
| - <div class="cbd-contentCell"> |
179 |
| - #controller.getSetting( "AppName" )# |
180 |
| - <span class="cbd-text-purple"> |
181 |
| - (environment=#controller.getSetting( "Environment" )#) |
182 |
| - </span> |
183 |
| - </div> |
| 179 | + <!--- App Name + Environment ---> |
| 180 | + <div class="cbd-titleCell"> |
| 181 | + Application Name: |
| 182 | + </div> |
| 183 | + <div class="cbd-contentCell"> |
| 184 | + #controller.getSetting( "AppName" )# |
| 185 | + <span class="cbd-text-purple"> |
| 186 | + (environment=#controller.getSetting( "Environment" )#) |
| 187 | + </span> |
| 188 | + </div> |
184 | 189 |
|
185 |
| - <!--- App Name + Environment ---> |
186 |
| - <div class="cbd-titleCell"> |
187 |
| - CFML Engine: |
188 |
| - </div> |
189 |
| - <div class="cbd-contentCell"> |
190 |
| - #args.environment.cfmlEngine# |
191 |
| - #args.environment.cfmlVersion# |
192 |
| - / |
193 |
| - Java #args.environment.javaVersion# |
| 190 | + <!--- App Name + Environment ---> |
| 191 | + <div class="cbd-titleCell"> |
| 192 | + CFML Engine: |
| 193 | + </div> |
| 194 | + <div class="cbd-contentCell"> |
| 195 | + #args.environment.cfmlEngine# |
| 196 | + #args.environment.cfmlVersion# |
| 197 | + / |
| 198 | + Java #args.environment.javaVersion# |
| 199 | + </div> |
194 | 200 | </div>
|
195 | 201 |
|
| 202 | + <!---**********************************************************************---> |
196 | 203 | <!--- RENDER PROFILERS OR PROFILER REPORT, DEPENDING ON VISUALIZER FLAG --->
|
197 |
| - <h2>Request History</h2> |
| 204 | + <!---**********************************************************************---> |
| 205 | + |
198 | 206 | <a name="cbd-profilers"></a>
|
199 | 207 | <div
|
200 | 208 | id="cbd-profilers"
|
201 | 209 | x-ref="cbd-profilers"
|
202 | 210 | >
|
203 | 211 | <!--- If visualizer, show all the profilers--->
|
204 | 212 | <cfif args.isVisualizer>
|
| 213 | + <h2>Request History</h2> |
205 | 214 | #renderView(
|
206 | 215 | view : "main/partials/profilers",
|
207 | 216 | module : "cbdebugger",
|
|
0 commit comments