mirror of
https://github.com/openbsd/src.git
synced 2024-12-22 07:27:59 -08:00
8dc592d3fc
- make it an actual table - use "human readable sizes" for the file sizes - add some decoration and javascript to be able to sort it per-column (client side) (this means some extra column attribute) - add glue to facilitate embedding js + css directly in the program - add some graphical indication for directories - should still validate as proper html everywhere (custom properties need to be called data-* for this!) Work with claudio@ and tb@, many thanks to claudio@ for some of the finer points of css handling, and tb@ for some fine spaces fixes. I've tried it with lynx as well, shows up correctly. One big plus is that the size of columns work as utf-8, so you can expose filenames without any problems (I've tried it with non-js text navigators as well as firefox, chromium and friends) And it looks slightly less yahoo ca. 1995. It's still "one size fits all". If people object to the current look, adding httpd.conf(5) properties to override the default css should be easy. okay claudio@, tb@
11 lines
237 B
Sed
11 lines
237 B
Sed
# first line of input is the variable declaration, don't touch that
|
|
2,$ {
|
|
# XXX beware of the order ! we have to quote \ and " before inserting \n"
|
|
s/\\/\\\\/g
|
|
s/"/\\"/g
|
|
s/^/ "/
|
|
s/$/\\n"/
|
|
}
|
|
# and append a ; at the end !
|
|
$s/$/;/
|