]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/no_search_button__44___hence_can__39__t_do_search_in_w3m_at_ikiwiki.info.mdwn
Fix python proxy to not crash when fed unicode data in getstate and setstate.
[ikiwiki.git] / doc / bugs / no_search_button__44___hence_can__39__t_do_search_in_w3m_at_ikiwiki.info.mdwn
1 If I browse <http://ikiwiki.info> in [emacs-w3m](http://www.emacswiki.org/emacs/emacs-w3m) (without Javascript), I
2 can't do a [[search|plugins/search]]: the text field is there (so I can
3 enter my search request), but there seems to be no way to make
4 actually a search request (i.e., no button). 
5
6 (A remark on how it works now in the other browsers: 
7 In the more "complete"
8 browsers (Chromium etc.), the request is done by pressing Enter in the
9 text field.)
10 --Ivan Z.
11
12 I see, no Javascript is probably involved in using the search form;
13 the code is simply:
14
15     <form method="get" action="/ikiwiki.cgi" id="searchform">
16     <div>
17     <input type="text" id="searchbox" name="P" value="" size="16"
18      />
19      </div>
20      </form>
21
22 So, if the semantics suggested by HTML is such that such a form is to
23 be submitted by some default form submitting action in the UI and it
24 doesn't really require a button to be functional, then I'd say it's
25 not an ikiwiki's problem, but a missing feature in the UI of emacs-w3m
26 or the underlying w3m... Perhaps I'll report this issue to them. --Ivan Z.
27
28 [[!tag done]]
29 There is no problem at all!
30 I'm sorry for this hassle!
31 In emacs-w3m, there is the <code>w3m-submit-form</code> command
32 (<kbd>C-c C-c</kbd>) to submit the form at point; it works.--Ivan Z.