Sorcerer's IsleCode QueryParam Scanner / files

 1<cfimport prefix="form" taglib="../../tags/form"/>
 2
 3<cfoutput>
 4	<form:main action="#link(xfa.Scan)#" class="std typeA">
 5
 6		<h2>Quick Start</h2>
 7
 8		<form:group>
 9
10			<form:select
11				id      = "config"
12				label   = "Select Config:"
13				options = "default,paranoid"
14				value   = "default"
15			/>
16
17			<form:edit
18				id    = "StartingDir"
19				label = "Starting Directory:"
20				value = "#Settings.findHomeDirectory()#"
21				hint  = "Absolute path or mapping. No ending slash required."
22			/>
23
24			<form:select
25				id      = "recurse"
26				label   = "Recurse sub-directories?"
27				options = "true,false"
28				value   = "false"
29				hint    = "Set to true to scan inside sub-directories."
30			/>
31
32		</form:group>
33
34		<form:controls>
35
36			<form:submit value="Scan"/>
37
38		</form:controls>
39
40	</form:main>
41</cfoutput>