summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-06-10 13:42:23 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-06-10 13:42:23 +0800
commit6a18ea9674e484ebf63aedded04751cbde3752b4 (patch)
tree7df51a837c719ca7bdcee9316ccb4770a13980aa
parent02c21a1fa3b9d2f93e59c7e399f0ad1d49241e74 (diff)
downloadpttbbs-6a18ea9674e484ebf63aedded04751cbde3752b4.tar
pttbbs-6a18ea9674e484ebf63aedded04751cbde3752b4.tar.gz
pttbbs-6a18ea9674e484ebf63aedded04751cbde3752b4.tar.bz2
pttbbs-6a18ea9674e484ebf63aedded04751cbde3752b4.tar.lz
pttbbs-6a18ea9674e484ebf63aedded04751cbde3752b4.tar.xz
pttbbs-6a18ea9674e484ebf63aedded04751cbde3752b4.tar.zst
pttbbs-6a18ea9674e484ebf63aedded04751cbde3752b4.zip
pmore: general ui updates.
fav: auto fav threshold should be increased because some people really know what they were doing. And the default value should honor user preference. git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2817 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--include/fav.h2
-rw-r--r--mbbsd/mbbsd.c2
-rw-r--r--mbbsd/pmore.c36
3 files changed, 21 insertions, 19 deletions
diff --git a/include/fav.h b/include/fav.h
index 732dea17..cd0fbdff 100644
--- a/include/fav.h
+++ b/include/fav.h
@@ -19,7 +19,7 @@
#define MAX_FAV 1024
#define MAX_LINE 64
#define MAX_FOLDER 64
-#define NEW_FAV_THRESHOLD 5
+#define NEW_FAV_THRESHOLD 12 /* half page */
#define FAV3 ".fav3"
#define FAV4 ".fav4"
diff --git a/mbbsd/mbbsd.c b/mbbsd/mbbsd.c
index df34d206..e1c5e8b9 100644
--- a/mbbsd/mbbsd.c
+++ b/mbbsd/mbbsd.c
@@ -1052,7 +1052,7 @@ user_login(void)
int num;
num = updatenewfav(1);
if (num > NEW_FAV_THRESHOLD &&
- getans("找到 %d 個新看板,要加入我的最愛嗎?[N/y]", num) != 'y') {
+ getans("找到 %d 個新看板,確定要加入我的最愛嗎?[Y/n]", num) == 'n') {
fav_free();
fav_load();
}
diff --git a/mbbsd/pmore.c b/mbbsd/pmore.c
index 45a86866..13f4edc3 100644
--- a/mbbsd/pmore.c
+++ b/mbbsd/pmore.c
@@ -74,7 +74,7 @@
* OVERVIEW
* - pmore is designed as a line-oriented pager. After you load (mf_attach)
* a file, you can move current display window by lines (mf_forward and
- * mf_backward) and then dislpay a page(mf_display).
+ * mf_backward) and then display a page(mf_display).
* And please remember to delete allocated resources (mf_detach)
* when you exit.
* - Functions are designed to work with global variables.
@@ -699,12 +699,12 @@ pmore_str_chomp(unsigned char *p)
unsigned char *pb = p + strlen(p)-1;
while (pb >= p)
- if(isascii(*pb) && isspace(*pb))
+ if(*pb <= ' ')
*pb-- = 0;
else
break;
pb = p;
- while (*pb && isascii(*pb) && isspace(*pb))
+ while (*pb && *pb <= ' ')
pb++;
if(pb != p)
@@ -813,7 +813,7 @@ mf_parseHeaders()
pmore_str_chomp(np);
// remove quote and traverse back
*pb-- = 0;
- while (pb > p && *pb != ',' && !(isascii(*pb) && isspace(*pb)))
+ while (pb > p && *pb != ',' && *pb <= ' ')
pb--;
if (pb > p) {
@@ -1160,6 +1160,7 @@ mf_display()
continue;
} else {
+
if(c == ESC_CHR)
{
inAnsi = 1;
@@ -1365,7 +1366,7 @@ mf_display()
if(wrapping)
MFDISP_FORCEDIRTY2BOT();
- if(!bpref.oldwrapmode && bpref.indicator)
+ if(!bpref.oldwrapmode && bpref.indicator && col < t_columns)
{
if(wrapping)
outs(MFDISP_WRAP_INDICATOR);
@@ -2082,11 +2083,11 @@ pmore(char *fpath, int promptend)
{
case MFDISP_WRAP_WRAP:
bpref.wrapmode = MFDISP_WRAP_TRUNCATE;
- override_msg = "已設定為截行模式(不自動折行)";
+ override_msg = ANSI_COLOR(31) "已設定為截行模式(不自動折行)";
break;
case MFDISP_WRAP_TRUNCATE:
bpref.wrapmode = MFDISP_WRAP_WRAP;
- override_msg = "已設定為自動折行模式";
+ override_msg = ANSI_COLOR(34) "已設定為自動折行模式";
break;
}
MFDISP_DIRTY();
@@ -2094,9 +2095,9 @@ pmore(char *fpath, int promptend)
case 'W':
bpref.indicator = !bpref.indicator;
if(bpref.indicator)
- override_msg = "顯示折行符號";
+ override_msg = ANSI_COLOR(34) "顯示折行符號";
else
- override_msg = "不再顯示折行符號";
+ override_msg = ANSI_COLOR(31) "不再顯示折行符號";
MFDISP_DIRTY();
break;
case 'o':
@@ -2109,15 +2110,15 @@ pmore(char *fpath, int promptend)
{
case MFDISP_SEP_OLD:
bpref.seperator = MFDISP_SEP_LINE;
- override_msg = "設定為單行分隔線";
+ override_msg = ANSI_COLOR(31) "設定為單行分隔線";
break;
case MFDISP_SEP_LINE:
bpref.seperator = 0;
- override_msg = "設定為無分隔線";
+ override_msg = ANSI_COLOR(31) "設定為無分隔線";
break;
default:
bpref.seperator = MFDISP_SEP_OLD;
- override_msg = "傳統分隔線加空行";
+ override_msg = ANSI_COLOR(34) "傳統分隔線加空行";
break;
}
MFDISP_DIRTY();
@@ -2132,16 +2133,16 @@ pmore(char *fpath, int promptend)
switch(bpref.rawmode)
{
case MFDISP_RAW_NA:
- override_msg = "顯示預設格式化內容";
+ override_msg = ANSI_COLOR(34) "顯示預設格式化內容";
break;
case MFDISP_RAW_NOFMT:
- override_msg = "省略自動格式化";
+ override_msg = ANSI_COLOR(31) "省略自動格式化";
break;
case MFDISP_RAW_NOANSI:
- override_msg = "顯示原始 ANSI 控制碼";
+ override_msg = ANSI_COLOR(33) "顯示原始 ANSI 控制碼";
break;
case MFDISP_RAW_PLAIN:
- override_msg = "顯示純文字";
+ override_msg = ANSI_COLOR(37) "顯示純文字";
break;
}
MFDISP_DIRTY();
@@ -2155,7 +2156,8 @@ pmore(char *fpath, int promptend)
RESET_MOVIE();
mfmovie.mode = MFDISP_MOVIE_PLAYING;
mf_determinemaxdisps(0, 0); // display until last line
- mf_goTop();
+ /* it is said that it's better not to go top. */
+ // mf_goTop();
mf_movieNextFrame();
MFDISP_DIRTY();
}