Browse Source

Revert "directory can paginate"

This reverts commit 69003d0e90.
pull/5743/head
chrislu 9 months ago
parent
commit
62c29b2398
  1. 3
      weed/server/filer_ui/filer.html
  2. 12
      weed/server/filer_ui/templates.go

3
weed/server/filer_ui/filer.html

@ -116,14 +116,13 @@
{{ else }} {{ else }}
<table width="100%" class="table table-hover"> <table width="100%" class="table table-hover">
{{ $path := .Path }} {{ $path := .Path }}
{{ $limit := .Limit }}
{{ $showDirDel := .ShowDirectoryDelete }} {{ $showDirDel := .ShowDirectoryDelete }}
{{ range $entry_index, $entry := .Entries }} {{ range $entry_index, $entry := .Entries }}
<tr> <tr>
<td> <td>
{{ if $entry.IsDirectory }} {{ if $entry.IsDirectory }}
<span class="glyphicon glyphicon-folder-open" aria-hidden="true"></span>&nbsp; <span class="glyphicon glyphicon-folder-open" aria-hidden="true"></span>&nbsp;
<a href="{{ printpath $path "/" $entry.Name "/" "?" "limit" "=" }}{{ print $limit }}" > <a href="{{ printpath $path "/" $entry.Name "/"}}" >
{{ $entry.Name }} {{ $entry.Name }}
</a> </a>
{{ else }} {{ else }}

12
weed/server/filer_ui/templates.go

@ -9,15 +9,9 @@ import (
) )
func printpath(parts ...string) string { func printpath(parts ...string) string {
var escapedParts []string concat := strings.Join(parts, "")
for _, p := range parts { escaped := url.PathEscape(concat)
if len(p) == 1 { return strings.ReplaceAll(escaped, "%2F", "/")
escapedParts = append(escapedParts, p)
} else {
escapedParts = append(escapedParts, url.PathEscape(p))
}
}
return strings.Join(escapedParts, "")
} }
var funcMap = template.FuncMap{ var funcMap = template.FuncMap{

|||||||
100:0
Loading…
Cancel
Save