Sha256: 271e2fc0254d1e8fc5799a5cce5464b37dcb73d7fcbf0c8ad49ee8dfef8ae667

Contents?: true

Size: 783 Bytes

Versions: 12

Compression:

Stored size: 783 Bytes

Contents

<!---

jQuery File Tree
ColdFusion connector script
By Tjarko Rikkerink (http://carlosgallupa.com/)

--->
<cfparam name="form.dir" default="/somedir" />
<cfdirectory action="LIST" directory="#expandpath('#URLDecode(form.dir)#')#" name="qDir" sort="type, name" type="all" listinfo="all" recurse="no">

<ul class="jqueryFileTree" style="display: none;">
       <cfoutput query="qDir">
               <cfif type eq "dir">
                   <li class="directory collapsed"><a href="##" rel="#URLDecode(form.dir)##name#/">#name#</a></li>
               <cfelseif type eq "file">
               <li class="file ext_#listLast(name,'.')#"><a href="##" rel="#URLDecode(form.dir)##name#">#name# (#round(size/1024)#KB)</a></li>
               </cfif>
       </cfoutput>
</ul>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
milksteak-0.0.15 lib/public/milksteak/jqueryFileTree/connectors/jqueryFileTree.cf
milksteak-0.0.13 lib/public/milksteak/jqueryFileTree/connectors/jqueryFileTree.cf
milksteak-0.0.12 lib/public/milksteak/jqueryFileTree/connectors/jqueryFileTree.cf
milksteak-0.0.11 lib/public/milksteak/jqueryFileTree/connectors/jqueryFileTree.cf
milksteak-0.0.10 lib/public/milksteak/jqueryFileTree/connectors/jqueryFileTree.cf
milksteak-0.0.9 lib/public/milksteak/jqueryFileTree/connectors/jqueryFileTree.cf
milksteak-0.0.8 lib/public/milksteak/jqueryFileTree/connectors/jqueryFileTree.cf
milksteak-0.0.7 lib/public/milksteak/jqueryFileTree/connectors/jqueryFileTree.cf
milksteak-0.0.6 lib/public/milksteak/jqueryFileTree/connectors/jqueryFileTree.cf
milksteak-0.0.4 lib/public/milksteak/jqueryFileTree/connectors/jqueryFileTree.cf
milksteak-0.0.3 lib/public/milksteak/jqueryFileTree/connectors/jqueryFileTree.cf
milksteak-0.0.2 lib/public/milksteak/jqueryFileTree/connectors/jqueryFileTree.cf