/[LeafOK_CVS]/lbbs/src/section_list_display.c
ViewVC logotype

Diff of /lbbs/src/section_list_display.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.65 by sysadm, Mon Nov 3 06:45:18 2025 UTC Revision 1.66 by sysadm, Mon Nov 3 07:14:25 2025 UTC
# Line 39  Line 39 
39  #include <time.h>  #include <time.h>
40  #include <sys/param.h>  #include <sys/param.h>
41    
42    #define TITLE_SEARCH_MAX_LEN 60
43    
44  static int32_t section_aid_locations[BBS_max_section] = {0};  static int32_t section_aid_locations[BBS_max_section] = {0};
45  static int section_topic_view_mode = 0;  static int section_topic_view_mode = 0;
46  static int section_topic_view_tid = -1;  static int section_topic_view_tid = -1;
# Line 62  enum select_cmd_t Line 64  enum select_cmd_t
64          SCAN_NEW_ARTICLE,          SCAN_NEW_ARTICLE,
65          SCAN_ARTICLE_BACKWARD_BY_USER,          SCAN_ARTICLE_BACKWARD_BY_USER,
66          SCAN_ARTICLE_FORWARD_BY_USER,          SCAN_ARTICLE_FORWARD_BY_USER,
67            SCAN_ARTICLE_BACKWARD_BY_TITLE,
68            SCAN_ARTICLE_FORWARD_BY_TITLE,
69          VIEW_EX_DIR,          VIEW_EX_DIR,
70          SHOW_TOP10,          SHOW_TOP10,
71          SEARCH_USER,          SEARCH_USER,
# Line 424  static enum select_cmd_t section_list_se Line 428  static enum select_cmd_t section_list_se
428                                  return SCAN_ARTICLE_FORWARD_BY_USER;                                  return SCAN_ARTICLE_FORWARD_BY_USER;
429                          }                          }
430                          break;                          break;
431                    case '?':
432                            if (item_count > 0)
433                            {
434                                    return SCAN_ARTICLE_BACKWARD_BY_TITLE;
435                            }
436                            break;
437                    case '/':
438                            if (item_count > 0)
439                            {
440                                    return SCAN_ARTICLE_FORWARD_BY_TITLE;
441                            }
442                            break;
443                  case 'u':                  case 'u':
444                          return SEARCH_USER;                          return SEARCH_USER;
445                  case 'h':                  case 'h':
# Line 578  int section_list_display(const char *sna Line 594  int section_list_display(const char *sna
594          int page_id_cur;          int page_id_cur;
595          const ARTICLE *p_article_locate;          const ARTICLE *p_article_locate;
596          USER_INFO user_info;          USER_INFO user_info;
597          char user_intro[BBS_user_intro_max_len];          char user_intro[BBS_user_intro_max_len + 1];
598          char username[BBS_username_max_len + 1];          char username[BBS_username_max_len + 1];
599          char username_list[1][BBS_username_max_len + 1];          char username_list[1][BBS_username_max_len + 1];
600          int32_t uid;          int32_t uid;
601          int i;          int i;
602          int ok;          int ok;
603            char title[BBS_article_title_max_len + 1] = "\0";
604    
605          p_section = section_list_find_by_name(sname);          p_section = section_list_find_by_name(sname);
606          if (p_section == NULL)          if (p_section == NULL)
# Line 1146  int section_list_display(const char *sna Line 1163  int section_list_display(const char *sna
1163                          }                          }
1164    
1165                          page_id_cur = page_id;                          page_id_cur = page_id;
1166                            ret = locate_article_in_section(p_section, p_article_locate, 0, 0,
1167                                                                                            &page_id, &selected_index, &article_count);
1168                            if (ret < 0)
1169                            {
1170                                    log_error("locate_article_in_section(sid=%d, aid=%d, direction=0, step=0) error\n",
1171                                                      p_section->sid, p_article_locate->aid);
1172                                    return -3;
1173                            }
1174                            else if (ret > 0 && page_id != page_id_cur) // found and page changed
1175                            {
1176                                    ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
1177                                    if (ret < 0)
1178                                    {
1179                                            log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
1180                                            return -3;
1181                                    }
1182                            }
1183                            break;
1184                    case SCAN_ARTICLE_BACKWARD_BY_TITLE:
1185                    case SCAN_ARTICLE_FORWARD_BY_TITLE:
1186                            direction = (ret == SCAN_ARTICLE_FORWARD_BY_TITLE ? 1 : -1);
1187    
1188                            moveto(SCREEN_ROWS, 1);
1189                            clrtoeol();
1190                            get_data(SCREEN_ROWS, 1,
1191                                             (direction == 1 ? "向下搜寻标题: " : "向上搜寻标题: "),
1192                                             title, sizeof(title), TITLE_SEARCH_MAX_LEN);
1193    
1194                            if (title[0] == '\0')
1195                            {
1196                                    break;
1197                            }
1198    
1199                            ret = scan_article_in_section_by_title(p_section, p_articles[selected_index],
1200                                                                                                       direction, title, &p_article_locate);
1201                            if (ret < 0)
1202                            {
1203                                    log_error("scan_article_in_section_by_title(sid=%d, aid=%d, direction=%d, title=%s) error\n",
1204                                                      p_section->sid, p_articles[selected_index]->aid, direction, title);
1205                                    return -3;
1206                            }
1207                            else if (ret == 0) // not found
1208                            {
1209                                    break;
1210                            }
1211    
1212                            page_id_cur = page_id;
1213                          ret = locate_article_in_section(p_section, p_article_locate, 0, 0,                          ret = locate_article_in_section(p_section, p_article_locate, 0, 0,
1214                                                                                          &page_id, &selected_index, &article_count);                                                                                          &page_id, &selected_index, &article_count);
1215                          if (ret < 0)                          if (ret < 0)


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1