about summary refs log tree commit diff stats
path: root/doc/pydoc/ranger.defaults.html
blob: 22015dc05745e38c8d7b07fb4e225e6e6d60e3b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><title>Python: package ranger.defaults</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head><body bgcolor="#f0f0f8">

<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="heading">
<tr bgcolor="#7799ee">
<td valign=bottom>&nbsp;<br>
<font color="#ffffff" face="helvetica, arial">&nbsp;<br><big><big><strong><a href="ranger.html"><font color="#ffffff">ranger</font></a>.defaults</strong></big></big></font></td
><td align=right valign=bottom
><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/hut/work/ranger/ranger/defaults/__init__.py">/home/hut/work/ranger/ranger/defaults/__init__.py</a></font></td></tr></table>
    <p><tt>Default&nbsp;options&nbsp;and&nbsp;configration&nbsp;files</tt></p>
<p>
<table width="100%" cellspacing=0 cellpadding=2 border=0 summary="section">
<tr bgcolor="#aa55cc">
<td colspan=3 valign=bottom>&nbsp;<br>
<font color="#ffffff" face="helvetica, arial"><big><strong>Package Contents</strong></big></font></td></tr>
    
<tr><td bgcolor="#aa55cc"><tt>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</tt></td><td>&nbsp;</td>
<td width="100%"><table width="100%" summary="list"><tr><td width="25%" valign=top><a href="ranger.defaults.apps.html">apps</a><br>
</td><td width="25%" valign=top><a href="ranger.defaults.keys.html">keys</a><br>
</td><td width="25%" valign=top><a href="ranger.defaults.options.html">options</a><br>
</td><td width="25%" valign=top></td></tr></table></td></tr></table>
</body></html>
or adding new character sets which do not have Unicode tables. * * Several #defines below are declarations for charsets which need no tables * for mapping to Unicode - CJK multibytes, x-transparent, UTF8 - Lynx takes * care of them internally. * * The declaration's format is kept in chrtrans/XXX_uni.h - keep this in mind * when changing ucmaketbl.c, see also UC_Charset_Setup() above for details. */ /* * There is no strict correlation for the next five, since the transfer * charset gets decoded into Display Char Set by the CJK code (separate from * Unicode mechanism). For now we use the MIME name that describes what is * output to the terminal. - KW */ /*----------------------------------------------------------------------------*/ #ifndef NO_CHARSET_euc_cn #define NO_CHARSET_euc_cn !ALL_CHARSETS #endif #if NO_CHARSET_euc_cn #define UC_CHARSET_SETUP_euc_cn /* nothing */ #else #define UC_CHARSET_SETUP_euc_cn UC_Charset_NoUctb_Setup("euc-cn","Chinese",\ 1, 128,UCT_ENC_CJK,0) #endif /*----------------------------------------------------------------------------*/ #ifndef NO_CHARSET_euc_jp #define NO_CHARSET_euc_jp !ALL_CHARSETS #endif #if NO_CHARSET_euc_jp #define UC_CHARSET_SETUP_euc_jp /* nothing */ #else #define UC_CHARSET_SETUP_euc_jp UC_Charset_NoUctb_Setup("euc-jp","Japanese (EUC-JP)",\ 1, 128,UCT_ENC_CJK,0) #endif /*----------------------------------------------------------------------------*/ #ifndef NO_CHARSET_shift_jis #define NO_CHARSET_shift_jis !ALL_CHARSETS #endif #if NO_CHARSET_shift_jis #define UC_CHARSET_SETUP_shift_jis /* nothing */ #else #define UC_CHARSET_SETUP_shift_jis UC_Charset_NoUctb_Setup("shift_jis","Japanese (Shift_JIS)",\ 1, 128,UCT_ENC_CJK,0) #endif /*----------------------------------------------------------------------------*/ #ifndef NO_CHARSET_euc_kr #define NO_CHARSET_euc_kr !ALL_CHARSETS #endif #if NO_CHARSET_euc_kr #define UC_CHARSET_SETUP_euc_kr /* nothing */ #else #define UC_CHARSET_SETUP_euc_kr UC_Charset_NoUctb_Setup("euc-kr","Korean",\ 1, 128,UCT_ENC_CJK,0) #endif /*----------------------------------------------------------------------------*/ #ifndef NO_CHARSET_big5 #define NO_CHARSET_big5 !ALL_CHARSETS #endif #if NO_CHARSET_big5 #define UC_CHARSET_SETUP_big5 /* nothing */ #else #define UC_CHARSET_SETUP_big5 UC_Charset_NoUctb_Setup("big5","Taipei (Big5)",\ 1, 128,UCT_ENC_CJK,0) #endif /*----------------------------------------------------------------------------*/ /* * Placeholder for non-translation mode. - FM */ #ifndef NO_CHARSET_x_transparent #define NO_CHARSET_x_transparent !ALL_CHARSETS #endif #if NO_CHARSET_x_transparent #define UC_CHARSET_SETUP_x_transparent /* nothing */ #else #define UC_CHARSET_SETUP_x_transparent UC_Charset_NoUctb_Setup("x-transparent","Transparent",\ 0, 128,UCT_ENC_8BIT,0) #endif /*----------------------------------------------------------------------------*/ #ifndef NO_CHARSET_utf_8 #define NO_CHARSET_utf_8 !ALL_CHARSETS #endif #if NO_CHARSET_utf_8 #define UC_CHARSET_SETUP_utf_8 /* nothing */ #else #define UC_CHARSET_SETUP_utf_8 UC_Charset_NoUctb_Setup("utf-8","UNICODE (UTF-8)",\ 0, 128,UCT_ENC_UTF8,-4) #endif #ifdef __cplusplus } #endif #endif /* UCDOMAP_H */