about summary refs log tree commit diff stats
path: root/config/binds.conf
Commit message (Expand)AuthorAgeFilesLines
* Implement :filter, :clearKevin Kuehler2019-07-191-0/+1
* Change default attach keybindingDrew DeVault2019-07-191-1/+1
* Update binds.confDrew DeVault2019-07-041-2/+2
* Implement :search, :next-result, :prev-resultDrew DeVault2019-06-261-0/+4
* Fix reply bindings in [view]Drew DeVault2019-06-191-4/+4
* Add :next/:prev binds for [viewer]Drew DeVault2019-06-111-4/+8
* Override $ex in compose viewYash Srivastav2019-06-091-0/+1
* Add archive commandRobert Günzler2019-06-091-0/+2
* Add binding to toggle headersDrew DeVault2019-06-071-0/+1
* Add delete to the default binds.confDrew DeVault2019-06-021-0/+1
* Add :save and :pipe commands to viewerGalen Abell2019-05-271-0/+1
* Implement :edit in compose screenDrew DeVault2019-05-261-0/+1
* binds.conf: make reply -a easier to use than replyDrew DeVault2019-05-251-4/+4
* Bind :compose to C in binds.confFrancis Dinh2019-05-231-0/+2
* Implement :next-part, :prev-partDrew DeVault2019-05-201-0/+2
* Rename :delete-message et al to :delete et alDrew DeVault2019-05-191-14/+14
* Change default bindings for repliesDrew DeVault2019-05-161-4/+4
* Change default reply keybindingsDrew DeVault2019-05-161-8/+8
* Fix default bindings for quit and editDrew DeVault2019-05-141-1/+4
* Move ! bind to [messages]Drew DeVault2019-05-141-1/+1
* Add (non-functional) reply commands to bindingsDrew DeVault2019-05-141-2/+9
* Add ! to default keybindingsDrew DeVault2019-05-141-0/+1
* Add distinct keybindings for each compose viewDrew DeVault2019-05-141-0/+13
* Add initial compose widgetDrew DeVault2019-05-121-0/+8
* Add message view commands, :closeDrew DeVault2019-03-301-1/+1
* Update default config/binds.confDrew DeVault2019-03-301-2/+17
* Add context-specific keybindingsDrew DeVault2019-03-211-0/+32
ct "lynx", label v2-7-1ac_0-36' href='/ingrix/lynx-snapshots/commit/WWW/Library/Implementation/UCMap.h?id=57bfc74ff4ec4c2980b2330f2badc54a8990842d'>57bfc74f ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83


               

                    

                     












                                          



                                      









                                          

                                            



                                                                        
 



                                      
 














                                                                              
 


















                                                                             
 
                    
#ifndef UCMAP_H
#define UCMAP_H

#include <HTUtils.h>

typedef long UCode_t;

extern int UCTransUniChar PARAMS((
	UCode_t		unicode,
	int		charset_out));
extern int UCTransUniCharStr PARAMS((
	char *		outbuf,
	int		buflen,
	UCode_t		unicode,
	int		charset_out,
	int		chk_single_flag));
extern int UCTransChar PARAMS((
	char		ch_in,
	int		charset_in,
	int		charset_out));
extern int UCReverseTransChar PARAMS((
	char		ch_out,
	int		charset_in,
	int		charset_out));
extern int UCTransCharStr PARAMS((
	char *		outbuf,
	int		buflen,
	char		ch_in,
	int		charset_in,
	int		charset_out,
	int		chk_single_flag));
extern UCode_t UCTransToUni PARAMS((
	char		ch_in,
	int		charset_in));
extern int UCGetRawUniMode_byLYhndl PARAMS((
	int		i));
extern int UCGetLYhndl_byMIME PARAMS((
	CONST char *	p)); /* returns -1 if name not recognized */
extern int safeUCGetLYhndl_byMIME PARAMS((
	CONST char *	p)); /* returns LATIN1 if name not recognized */

extern int UCLYhndl_for_unspec;
extern int UCLYhndl_for_unrec;
extern int UCLYhndl_HTFile_for_unspec;
extern int UCLYhndl_HTFile_for_unrec;

/* easy to type: */
#define LATIN1   UCGetLYhndl_byMIME("iso-8859-1")
#define US_ASCII UCGetLYhndl_byMIME("us-ascii")

/*
In general, Lynx translates letters from document charset to display charset.
If document charset is not specified or not recognized by Lynx, we fall back
to different assumptions below, read also lynx.cfg for info.

UCLYhndl_for_unspec -  assume this as charset for documents that don't
                       specify a charset parameter in HTTP headers or via META
                       this corresponds to "assume_charset"

UCLYhndl_HTFile_for_unspec -  assume this as charset of local file
                       this corresponds to "assume_local_charset"

UCLYhndl_for_unrec  -  in case a charset parameter is not recognized;
                       this corresponds to "assume_unrec_charset"

UCLYhndl_HTFile_for_unrec  - the same but only for local files,
                             currently not used.


current_char_set  -	this corresponds to "display charset",
			declared in LYCharSets.c and really important.

All external charset information is available in so called MIME format.
For internal needs Lynx uses charset handlers as integers
from UCGetLYhndl_byMIME().  However, there is no way to recover
from user's error in configuration file lynx.cfg or command line switches,
those unrecognized MIME names are assumed as LATIN1 (via safeUCGetLYhndl...).
*/


#define UCTRANS_NOTFOUND (-4)

#endif /* UCMAP_H */