1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00
Commit Graph

994 Commits

Author SHA1 Message Date
Witold Filipczyk
06b9ee5ff0 Removed outdated entries.
[ From commit 5c51b0a2ae in ELinks
  0.12.GIT.  --KON ]
2007-04-01 21:10:43 +03:00
Kalle Olavi Niemitalo
7e8020a36f "Do not show anymore" resets ui.success_msgbox, instead of toggling it.
Normally, the success msgbox is shown only if the ui.success_msgbox
option is set as 1, and clicking "Do not show anymore" would then
toggle the option to 0, and no more such msgboxes would appear.
However, if there already are two success msgboxes being displayed
(most likely in different terminals), then clicking "Do not show
anymore" in the first of them would reset the option to 0, but doing
the same in the second of them would toggle the option back to 1.

Rename toggle_success_msgbox to disable_success_msgbox, and make it
always reset the option to 0, regardless of the previous value.

[ From commit 7185e926e6 in ELinks
  0.12.GIT.  This I think does not deserve a NEWS entry.  --KON ]
2007-04-01 21:09:12 +03:00
Kalle Olavi Niemitalo
74799c60b2 NEWS: more verbose descriptions from 0.12.GIT 2007-04-01 15:30:43 +03:00
Kalle Olavi Niemitalo
d5d918e26b NEWS: more verbose descriptions from 0.12.GIT; mention bug 630 2007-04-01 15:12:51 +03:00
Kalle Olavi Niemitalo
22d051925e do_move_bookmark: Update comment to match reality. 2007-04-01 14:59:28 +03:00
Kalle Olavi Niemitalo
007207c796 NEWS: mention half of bug 396 2007-04-01 12:19:09 +03:00
Laurent MONIN
a3fb7f097c Compilation fix: _GNU_SOURCE has to be defined on GNU platforms to get
strcasestr().

[ From commit 7585eedd2e in ELinks
  0.12.GIT.  --KON ]
2007-04-01 12:14:33 +03:00
Jonas Fonseca
a822daef26 Add support for more graceful detection of HTML content
It will grab at the first fragment of the cache entry and try to detect the
content-type by looking for valid HTML. It is very stupid for now, simply
searching for "<html>", which may be bogus in certain circumstances. And I
am not sure if this is better left out and up to the scripting backends,
e.g. SMJS can now modify the cache entry.

A feable fix for bug 396.

[ From commit 3ea73da7df in ELinks
  0.12.GIT.  --KON ]
2007-04-01 12:10:03 +03:00
Kalle Olavi Niemitalo
60dbf024e5 NEWS: mention the crash in the file extensions menu 2007-04-01 12:05:31 +03:00
Miciah Dashiel Butler Masters
94e153194c MIME: fix crash with empty File extensions menu
Delete the FREE_LIST flag from mi_no_ext so that free_menu_items doesn't
try to free static memory.

This fixes a crash reproducible by deleting every entry under Setup -> File
extensions, opening said menu, and then closing said menu.

[ From commit b41c7d4055 in ELinks
  0.12.GIT.  --KON ]
2007-04-01 12:03:03 +03:00
Kalle Olavi Niemitalo
36f987840a NEWS: mention bug 760 2007-04-01 12:01:07 +03:00
Miciah Dashiel Butler Masters
cf4bfd6b75 do_move_bookmarks: replace destb and desti parameters with insert_as_child flag
Simplify do_move_bookmarks (from a readability perspective) by replacing
the destb and desti parameters with a new insert_as_child flag. Inspired
by Kalle Olavi Niemitalo.

[ Backported from commit 32ec5d1db3 in
  ELinks 0.12.GIT.  This change is not required for fixing bug 760, but
  the bookmark code in ELinks 0.12.GIT has been tested more with the
  change than without it, so I think applying it is safest.  --KON ]
2007-04-01 11:58:40 +03:00
Miciah Dashiel Butler Masters
f287d5aa31 Bookmarks: Fix update after move
do_move_bookmark was only updating the selection in the bookmarks manager
window in which the Move button was pressed. Now all windows are updated.

This patch also prevents a crash when the first item that was displayed
in a box was the last child of a folder and was being moved (the comment
removed in this patch was incorrect in assuming that bm->box->next must
be valid because it neglected to account for non-root children).

This change required that I move the definition of struct
hierbox_dialog_list_item from src/bfu/hierbox.c to src/bfu/hierbox.h.

Thanks to Kalle Olavi Niemitalo for finding both the update problem
and the crash.

[ Backported from commit 6f98f5fd96 in
  ELinks 0.12.GIT.  --KON ]
2007-04-01 11:49:37 +03:00
Kalle Olavi Niemitalo
c7987e331c NEWS: mention bug 927 2007-04-01 11:34:00 +03:00
Witold Filipczyk
a3862170ff Fix the memleak. Part II of the 927 bugfix.
[ From commit 27a66f59d9 in ELinks
  0.12.GIT.  --KON ]
2007-04-01 11:30:46 +03:00
Witold Filipczyk
7a56204271 The fix for the bug 927.
When tables were rendered first time html_format_part was called with
document==NULL. <meta http-equiv=Refresh.../> was inside a table,
so document was NULL. Second time the table knew its dimensions
and document was not NULL.

[ From commit e01785e462 in ELinks
  0.12.GIT.  --KON ]
2007-04-01 11:30:24 +03:00
Kalle Olavi Niemitalo
6bf41676b3 NEWS: show the severities of bugs; mention bug 872 2007-04-01 11:20:51 +03:00
Kalle Olavi Niemitalo
22524ad32b NEWS: mention bug 767 2007-04-01 11:02:20 +03:00
Laurent MONIN
b918ab57de Let be more tolerant with buggy meta refresh. It should fix bug 767.
[ From commit 36a277540c in ELinks
  0.12.GIT.  --KON ]
2007-04-01 10:57:35 +03:00
Kalle Olavi Niemitalo
73696e34ce NEWS: mention bug 24 2007-04-01 00:39:39 +03:00
Kalle Olavi Niemitalo
935f02c0f0 BFU: Fix infinite loops in menus that have only unselectable elements.
src/bfu/menu.c (scroll_menu): Let neither menu->selected nor pos
become -2.

src/bfu/menu.c (menu_mouse_handler): Call set_menu_selection directly
rather than via scroll_menu, as sel is already known to be selectable.
(Not required for fixing the bug.)

src/bfu/menu.c (menu_search_handler): Break infinite loops also if
menu->selected is -1 initially.

src/bfu/menu.c (menu_handler): Instead of tweaking menu->selected
directly, let scroll_menu do it.

[ From commit 0a8633d07e in ELinks
  0.12.GIT.  --KON ]
2007-04-01 00:33:45 +03:00
Kalle Olavi Niemitalo
220b0d770a BFU: Fix searching in menus past unselectable items.
The bug was that menu_search_handler gave scroll_menu an incorrect
count because it didn't know that scroll_menu skips unselectable
items.

[ From commit 9fa5ae374f in ELinks
  0.12.GIT.  --KON ]
2007-04-01 00:32:03 +03:00
Kalle Olavi Niemitalo
22f1dedaad NEWS: mention bug 886 2007-04-01 00:19:56 +03:00
Kalle Olavi Niemitalo
681f34d8d0 Bug 886: Set cookies_dirty if a cookie is edited via the manager.
If the appropriate option is set, this now causes the cookies to be
immediately saved as well.

[ From commit 3cd0fbe5f0 in ELinks
  0.12.GIT.  --KON ]
2007-04-01 00:16:36 +03:00
Kalle Olavi Niemitalo
0bdbb983b8 Bug 886: Update cookies_dirty after delete_cookie calls as appropriate.
[ From commit fad9c75cc6 in ELinks
  0.12.GIT.  --KON ]
2007-04-01 00:15:47 +03:00
Kalle Olavi Niemitalo
f311f3ea93 Bug 886: Postpone resaving the cookies until a bottom half.
[ From commit b79210ea1b in ELinks
  0.12.GIT.  --KON ]
2007-04-01 00:13:25 +03:00
Kalle Olavi Niemitalo
89f1e654c6 Bug 886: Document why delete_cookie does not set cookies_dirty.
[ From commit 8ecf105cd5 in ELinks
  0.12.GIT.  --KON ]
2007-04-01 00:11:26 +03:00
Kalle Olavi Niemitalo
72186129ec NEWS: mention bug 908 2007-04-01 00:03:04 +03:00
Miciah Dashiel Butler Masters
83663ac993 Re-use @fs in activate_link instead of introducing a new local variable
This optimisation is made possible by commit
4a9b80eea0.

[ From commit 896cdab771 in ELinks
  0.12.GIT.  --KON ]
2007-04-01 00:00:26 +03:00
Kalle Olavi Niemitalo
4a9b80eea0 Bug 908, activate_link: Set fs->state before the fs pointer becomes invalid.
[ From commit 15dce57bc9 in ELinks
  0.12.GIT.  --KON ]
2007-03-31 23:59:14 +03:00
Kalle Olavi Niemitalo
9b7217e286 NEWS: mention bug 772 2007-03-31 23:07:37 +03:00
Kalle Olavi Niemitalo
0003e4762c Bug 772: Recognize ESC [ Z as Shift-Tab, and bind it like Alt-Tab by default.
[ From commit b42f0ba153 in ELinks
  0.12.GIT.  I'll add a NEWS entry as a separate commit.  --KON ]
2007-03-31 23:05:53 +03:00
Kalle Olavi Niemitalo
b406adce1f NEWS: mention bug 769 2007-03-31 23:00:51 +03:00
Laurent MONIN
fd83797cae HTTP DIGEST AUTH: fix wrong sizeof(), patch by Vitaly Lavrov (added to
AUTHORS). Close bug 769.

[ From commit c2ca89cab1 in ELinks
  0.12.GIT.  I'll add a NEWS entry as a separate commit.  --KON ]
2007-03-31 22:55:52 +03:00
Kalle Olavi Niemitalo
e2f0608b89 NEWS: More details about Python goto_url_hook changes. 2007-03-28 00:21:32 +03:00
Kalle Olavi Niemitalo
9836e718cc NEWS: -remote changes don't deserve two separate entries. 2007-03-27 23:54:59 +03:00
Kalle Olavi Niemitalo
af82ab8af7 Advertise smb2.c to be included in ELinks 0.12.0. 2007-03-27 01:41:26 +03:00
Kalle Olavi Niemitalo
4829e4ad42 NEWS update
All relevant changes up to f135339a1a.
2007-03-27 01:19:52 +03:00
Kalle Olavi Niemitalo
f135339a1a add_string_to_string: Don't fail if @from is empty.
Old versions of add_string_to_string returned the target string
unmodified if from->source pointed to a null character, which usually
meant that the source string was empty.  That was changed in commit
5e18576391f75ad84e04f9c8a30b93d08f0b92ab on 2004-11-03 so that
add_string_to_string instead returned NULL in that situation.  The
change seems to have been inadvertent.

I'm now reverting that change and also making add_string_to_string
check the emptiness of the source string based on the stored length
only, rather than on any null characters.  So the function can now
also be used with non-C strings containing embedded null characters.
Note that the previous version did not completely prevent embedded
null characters either, because it checked only the first character.

[ From commit 4a23d7fd82 in ELinks
  0.12.GIT.  --KON ]
2007-03-18 21:18:02 +02:00
Witold Filipczyk
fd70a5b352 get_attr_value: do not do trim_chars
trim_chars was called only in debug mode and the results of the get_attr_val
for value=" something " in debug mode differ from normal and fastmem mode.

[ From commit e347122e6d in ELinks
  0.12.GIT.  --KON ]
2007-03-18 13:50:34 +02:00
Witold Filipczyk
8104dc80cd accesskey: start iterating with next link.
Rotating between links with the same accesskey works.

[ Backported from commit d2970e57af
  in ELinks 0.12.GIT.  --KON ]
2007-03-18 13:22:42 +02:00
Witold Filipczyk
94ff057a6c Accesskey didn't work as it should.
[ Backported from commit 682ad62a97
  in ELinks 0.12.GIT.  --KON ]
2007-03-18 13:21:36 +02:00
Kalle Olavi Niemitalo
518cf082db add_html_to_string: If out of memory, roll back and return NULL.
[ Backported from commits 28645973e5
  and b7dddaa685 in ELinks 0.12.GIT.
  --KON ]
2007-03-18 12:38:19 +02:00
Kalle Olavi Niemitalo
1c3c19c91b ftp, add_file_cmd_to_str: Check errors from string functions.
Use goto for error handling.  Free all strings in the same place.

[ Bug 942; backported from commit c6b8fa7151
  in ELinks 0.12.GIT.  --KON ]
2007-03-18 12:31:29 +02:00
Kalle Olavi Niemitalo
465166a940 Reject CR and LF characters in FTP pathnames.
[ Bug 942; backported from commit adfde652b9
  in ELinks 0.12.GIT.  --KON ]
2007-03-18 12:29:11 +02:00
Witold Filipczyk
feb3f21b34 ftp: ftp didn't handle filenames with spaces.
[ Bug 942; backported from commit 3f4de99f16
  in ELinks 0.12.GIT.  I omitted the part of the patch that decodes
  FTP URLs for HTML TITLE, because I think it's an enhancement rather
  than a bug fix.  --KON ]
2007-03-18 12:28:06 +02:00
Kalle Olavi Niemitalo
2f4b3dae69 string_assert: First arg of elinks_internal is a format string.
[ Backported from commit a73d165fd7
  in ELinks 0.12.GIT.  --KON ]
2007-03-11 14:02:17 +02:00
Kalle Olavi Niemitalo
0286a66c98 XBEL: Fix us-ascii charset lookup.
Previously, print_xml_entities did look up the charset, but did not
save the result anywhere and just used 0, leading to further lookups
in subsequent calls.  It worked by accident though, because the
codepage index of us-ascii currently is 0.

[ Backported from commit e325b748be
  in ELinks 0.12.GIT.  --KON ]
2007-03-11 14:01:08 +02:00
Kalle Olavi Niemitalo
fe886d198d textarea_edit: Cast size_t fx_maxlength to match "%u".
[ Backported from commit 0dfb88c802
  in ELinks 0.12.GIT.  --KON ]
2007-03-11 14:00:18 +02:00
Kalle Olavi Niemitalo
0b7097ca9f cgi: Avoid assertion failure when the POST data is empty.
[ Backported from commit 701e7e3e64
  in ELinks 0.12.GIT.  --KON ]
2007-03-11 13:57:34 +02:00