1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-29 03:17:53 -04:00

ftp: Don't pad the timestamp column with spaces.

This commit is contained in:
Kalle Olavi Niemitalo 2007-03-20 21:26:46 +02:00 committed by Kalle Olavi Niemitalo
parent 3c6c79a637
commit 9d45ff5be1

View File

@ -1165,13 +1165,22 @@ display_dir_entry(struct cache_entry *cached, off_t *pos, int *tries,
fmt = "%b %e %H:%M";
wr = strftime(date, sizeof(date), fmt, when_tm);
while (wr < sizeof(date) - 1) date[wr++] = ' ';
date[sizeof(date) - 1] = '\0';
add_to_string(&string, date);
add_html_to_string(&string, date, wr);
} else
#endif
add_to_string(&string, " ");
/* TODO: Above, the number of spaces might not match the width
* of the string generated by strftime. It depends on the
* locale. So if ELinks knows the timestamps of some FTP
* files but not others, it may misalign the file names.
* Potential solutions:
* - Pad the strings to a compile-time fixed width.
* Con: If we choose a width that suffices for all known
* locales, then it will be stupidly large for most of them.
* - Generate an HTML table.
* Con: Bloats the HTML source.
* Any solution chosen here should also be applied to the
* file: protocol handler. */
add_char_to_string(&string, ' ');