-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.cfm
More file actions
39 lines (37 loc) · 1.35 KB
/
index.cfm
File metadata and controls
39 lines (37 loc) · 1.35 KB
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
35
36
37
38
39
<html>
<body>
<h2>Code Scanner Testing</h2>
<br /> <br />
<cfscript>
local.scanner = createObject('component', 'Code-Scanner').init();
local.basePath = 'c:\source\cfmx\wwwroot\test\barrett\';
local.scanOptions = {
scanTitle: '<h2>ColdFusion Test</h2>',
scanType: 'ColdFusion',
outPath: local.basePath & 'Code-Scanner\resultsCF',
scanTarget: [
'C:\source\cfmx\wwwroot\test\barrett\'
],
excludeContaining: [],
showHtml: true,
sizeUnits: 'Bytes'
};
local.scanResults = local.scanner.scan(local.scanOptions);
local.scanOptions = {
scanTitle: '<h2>Javascript Test</h2>',
scanType: 'js',
outPath: local.basePath & 'Code-Scanner\resultsJS',
scanTarget: [
'C:\source\cfmx\wwwroot\test\barrett\'
],
excludeContaining: [
'_combined',
'.min'
],
showHtml: true,
sizeUnits: 'KB'
};
local.scanResults = local.scanner.scan(local.scanOptions);
</cfscript>
</body>
</html>