1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-13 00:38:32 -04:00
Commit Graph

2295 Commits

Author SHA1 Message Date
Witold Filipczyk
8ef93ebf09 fsp: call find_auth in both cases.
When the username and the password were given in the uri and when
they weren't. I'm not sure if it changes anything.
2007-01-27 12:05:17 +01:00
Witold Filipczyk
047bf7e1c6 ftp: ftp didn't handle filenames with spaces. 2007-01-27 10:05:40 +01:00
Witold Filipczyk
8678908412 fsp: used strings, encode and decode filenames with spaces. 2007-01-26 23:42:24 +01:00
Witold Filipczyk
c16c4d06c7 smb: Do not encode ' ' as %20 in base href. 2007-01-26 20:46:27 +01:00
Witold Filipczyk
71adb0e6cc cgi, fsp, smb: set_nonblocking_fd 2007-01-25 16:51:49 +01:00
Witold Filipczyk
73138dad3d smb: used string functions in place of printf and puts. 2007-01-25 14:09:44 +01:00
Witold Filipczyk
eef1c17dce fsp, smb: abort connection on empty files.
Empty files were causing 'read from socket' errors.
2007-01-25 13:38:32 +01:00
Witold Filipczyk
1d3cd264e9 smb: used string functions instead of snprintf. 2007-01-25 13:28:21 +01:00
Witold Filipczyk
0d26d3c05c smb2: show comments. 2007-01-24 20:14:41 +01:00
Witold Filipczyk
9c3cdfd5cf The SMB protocol handling using libsmbclient. 2007-01-24 18:40:28 +01:00
Witold Filipczyk
a17510c377 fsp: prompt for password when the authentication fails.
It works only for directory listings.
2007-01-23 14:34:16 +01:00
Witold Filipczyk
ad4dce3059 Removed unneded header file accidentally included by the previous commit. 2007-01-18 18:20:33 +01:00
Witold Filipczyk
d49a53b2a9 fsp: Pass the filesize by ctype (stderr). 2007-01-18 18:17:59 +01:00
Witold Filipczyk
99cff6aa70 Added macro foreach_module_builtin. Killed some warnings of gcc-4.2. 2007-01-18 17:05:16 +01:00
Witold Filipczyk
036d2d8475 dup2 closes given descriptors, so no need for the explicit close. 2007-01-18 16:41:57 +01:00
Witold Filipczyk
0e0cc7100d Merge with master 2007-01-18 16:23:38 +01:00
Kalle Olavi Niemitalo
18771fdedb Bug 924, my_timegm: Added a comment about 2100 not being a leap year. 2007-01-13 15:38:02 +02:00
Kalle Olavi Niemitalo
01fdf6c4d3 Bug 923: Added comments about potential time_t truncation.
And removed Miciah's portability question; MSVC++2005 already
has a time_t longer than long, so assuming that time_t is long
is surely not portable.
2007-01-13 15:26:21 +02:00
Kalle Olavi Niemitalo
9385c93ffd Move README.timegm to the same directory as date.c. 2007-01-13 10:01:51 +02:00
Kalle Olavi Niemitalo
f0dfd0504f Route time_t-to-string conversions via time_print_T and TIME_PRINT_FORMAT.
The previous code just printed time_t directly with "%ld".  Now it
instead first casts to time_print_T (currently long) and then formats
with TIME_PRINT_FORMAT (currently "ld").  So the varargs will now
always match with the format string, even if time_t is longer than
long.  This still doesn't correctly format time_t values larger than
LONG_MAX, though.  But now it is at least easier to find some of the
places that need to be changed to support that.

I located these time_t-to-string conversions by searching for
str_to_time_t, expires, and last_visit.  There are still more places
that assume every interesting time_t value fits either in 32 bits or
in a long, e.g. in the cookie editor and in the ECMAScript interface.

Inspired by bug 6.
2007-01-12 23:47:45 +02:00
M. Levinson
ec1bedc25e Python: Document more goto_url_hook and follow_url_hook return values.
Document what happens if goto_url_hook or follow_url_hook returns None or "".
doc/events.txt already explains the corresponding C values.

[ commit message by me --KON ]
2007-01-12 00:02:50 +02:00
Laurent MONIN
8b8bb5610f French translation was updated. 2007-01-10 09:21:52 +01:00
Witold Filipczyk
678d52551d epoll: use EPOLLHUP
Read data when EPOLLIN or EPOLLHUP events occur.
2007-01-08 20:28:22 +01:00
Witold Filipczyk
30fde644b1 Polish translation was updated. 2007-01-08 16:39:31 +01:00
Witold Filipczyk
753e503e26 Removed the buggy code. 2007-01-08 11:38:34 +01:00
Witold Filipczyk
6528b3c574 epoll: w_max is number of open descriptors.
Slave instances of ELinks quit properly.
2007-01-07 21:57:40 +01:00
Witold Filipczyk
79e59e9d6f bzip2: buf must be the last. 2007-01-07 21:48:34 +01:00
Witold Filipczyk
4d7c491a22 Missing include. 2007-01-07 21:41:46 +01:00
Witold Filipczyk
216d6c7ec8 Slave terminals work with epoll. 2007-01-07 17:36:30 +01:00
Witold Filipczyk
ef5f2638a3 Drop to_read. 2007-01-07 16:24:46 +01:00
Witold Filipczyk
f7b9be4aa1 bzip2: Used the patch from bug the 517.
Removed the bzip2-pipe.patch from contrib.
2007-01-07 16:17:43 +01:00
Witold Filipczyk
ff2e55c647 Merge with master 2007-01-07 16:03:24 +01:00
Kalle Olavi Niemitalo
f796051b4c Bug 921, add_document_to_string: Fixed the UTF-8 half of the code.
* Recompute the pos variable for each cell, rather than just once per line.
  This fixes the bug that only the first cell was being examined.

* Moved the bulk of the code outside the "if (frame && data >= 176 &&
  data < 224)" conditional.  This fixes the bug that only frame
  characters were being added to the string.

* If the cell has UCS_NO_CHAR in it, don't add that to the string.

* Call encode_utf8 even for characters that originated from a frame.
  This does not matter yet but will be correct if the function is
  later changed to use the Unicode line-drawing characters for frames.
2007-01-07 00:09:34 +02:00
Kalle Olavi Niemitalo
3bee1cbfc4 Regenerated manpages. 2007-01-06 23:46:35 +02:00
Kalle Olavi Niemitalo
06f058f5e8 Bug 752: Rearrange the docstrings of color-mode options.
In the elinks.conf.5 manual page, the text below the list of modes was
getting included in the last list item.  This appears to be a design
error in AsciiDoc.  Work around it by moving the text above the list.
2007-01-06 23:40:18 +02:00
Kalle Olavi Niemitalo
9cae6a4fa4 update-man: Install manpages to srcdir, not builddir.
elinks.1.in, elinkskeys.5, and elinks.conf.5 are included in the Git tree,
so they are initially in the srcdir, and that's were the new versions must go.
2007-01-06 22:17:54 +02:00
Kalle Olavi Niemitalo
d73632d7de keys2doc: Change \"foo\" to "foo". 2007-01-06 21:38:29 +02:00
Kalle Olavi Niemitalo
8f030fcb63 Hack elinkskeys.5 with sed some more, to please ESR.
http://catb.org/~esr/doclifter/problems.html
2007-01-06 21:05:52 +02:00
Jens Seidel
5d8101db62 [INTL:de] German PO file corrections
[ From Debian bug 313696 --KON ]
2007-01-03 23:36:09 +02:00
Witold Filipczyk
1e8f8aa4a6 warning: ctext is used only with CONFIG_UTF8. 2007-01-03 21:55:39 +02:00
Witold Filipczyk
2109be1587 warning: ctext is used only with CONFIG_UTF8. 2007-01-03 18:18:56 +01:00
Witold Filipczyk
f1173453d4 Merge with master 2007-01-03 18:15:16 +01:00
Witold Filipczyk
85cb16d14c Added ELINKS_EPOLL_SIZE to the setup.h. 128 is enough for most uses. 2007-01-03 12:54:05 +01:00
Kalle Olavi Niemitalo
a577455b24 Revise comments in struct codepage_desc and struct conv_table. 2007-01-03 07:32:00 +02:00
Witold Filipczyk
07ea72242e Merge with master 2007-01-02 22:09:51 +01:00
Kalle Olavi Niemitalo
455ea77ead Make strings[] and no_str[] const. 2007-01-02 21:40:14 +02:00
Kalle Olavi Niemitalo
1668d78998 Make cp2utf8 return a pointer to const. 2007-01-02 21:39:34 +02:00
Kalle Olavi Niemitalo
62d321fb31 Make add_utf8 accept a pointer to const. 2007-01-02 21:36:03 +02:00
Kalle Olavi Niemitalo
176bbe83b6 Make input data and source file names const in memacpy and stracpy. 2007-01-02 21:26:55 +02:00
Kalle Olavi Niemitalo
882d179fc8 Make many string parameters const in the memory leak detector. 2007-01-02 21:25:20 +02:00