source: server/trunk/web/root/templates/html/explorer/index.html @ 45

Last change on this file since 45 was 40, checked in by nanardon, 14 years ago
  • search function take into account search spec
  • add fts over description
File size: 631 bytes
Line 
1
2<p>
3<a href="[% c.uri_for('/explorer') %]">/</a>
4[% FOREACH p = eachpath %]
5<a href="[% c.uri_for('/explorer', p.path) %]">[% p.dir | html %]</a>
6[% END %]
7</p>
8
9<div id="exp_dir" style="float: left; border: outset; width: 30%">
10    Loading...
11</div>
12<div id="exp_file" style="float: left; border: outset; width: 60%">
13    Loading...
14</div>
15
16<script type="text/javascript">
17    new Ajax.Updater(
18        'exp_dir',
19        '[% dirurl %]',
20        { asynchronous: 1, parameters: 'ajax=1' }
21    );
22    new Ajax.Updater(
23        'exp_file',
24        '[% fileurl %]',
25        { asynchronous: 1, parameters: 'ajax=1' }
26    );
27</script>
Note: See TracBrowser for help on using the repository browser.