/[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.42 by sysadm, Tue Sep 30 14:56:51 2025 UTC Revision 1.58 by sysadm, Wed Oct 29 01:48:46 2025 UTC
# Line 15  Line 15 
15   ***************************************************************************/   ***************************************************************************/
16    
17  #include "article_cache.h"  #include "article_cache.h"
18    #include "article_favor.h"
19  #include "article_op.h"  #include "article_op.h"
20  #include "article_post.h"  #include "article_post.h"
21  #include "article_view_log.h"  #include "article_view_log.h"
# Line 24  Line 25 
25  #include "log.h"  #include "log.h"
26  #include "login.h"  #include "login.h"
27  #include "menu.h"  #include "menu.h"
28    #include "menu_proc.h"
29  #include "section_list_display.h"  #include "section_list_display.h"
30  #include "section_list_loader.h"  #include "section_list_loader.h"
31  #include "screen.h"  #include "screen.h"
32  #include "str_process.h"  #include "str_process.h"
33    #include "user_info_display.h"
34  #include "user_priv.h"  #include "user_priv.h"
35  #include <string.h>  #include <string.h>
36  #include <time.h>  #include <time.h>
37  #include <sys/param.h>  #include <sys/param.h>
38    
39    static int section_aid_locations[BBS_max_section] = {0};
40  static int section_topic_view_mode = 0;  static int section_topic_view_mode = 0;
41  static int section_topic_view_tid = -1;  static int section_topic_view_tid = -1;
42    
# Line 47  enum select_cmd_t Line 51  enum select_cmd_t
51          EDIT_ARTICLE,          EDIT_ARTICLE,
52          DELETE_ARTICLE,          DELETE_ARTICLE,
53          QUERY_ARTICLE,          QUERY_ARTICLE,
54            QUERY_USER,
55            SET_FAVOR_ARTICLE,
56            UNSET_FAVOR_ARTICLE,
57          FIRST_TOPIC_ARTICLE,          FIRST_TOPIC_ARTICLE,
58          LAST_TOPIC_ARTICLE,          LAST_TOPIC_ARTICLE,
59            SCAN_NEW_ARTICLE,
60          VIEW_EX_DIR,          VIEW_EX_DIR,
61            SHOW_TOP10,
62  };  };
63    
64  static int section_list_draw_items(int page_id, ARTICLE *p_articles[], int article_count, int display_nickname, int ontop_start_offset)  static int section_list_draw_items(int page_id, ARTICLE *p_articles[], int article_count, int display_nickname, int ontop_start_offset)
# Line 64  static int section_list_draw_items(int p Line 73  static int section_list_draw_items(int p
73          size_t j;          size_t j;
74          char article_flag;          char article_flag;
75          int is_viewed;          int is_viewed;
76            int is_favor;
77          time_t tm_now;          time_t tm_now;
78    
79          time(&tm_now);          time(&tm_now);
# Line 86  static int section_list_draw_items(int p Line 96  static int section_list_draw_items(int p
96                          }                          }
97                  }                  }
98    
99                    if (p_articles[i]->tid == 0)
100                    {
101                            is_favor = article_favor_check(p_articles[i]->aid, &BBS_article_favor);
102                            if (is_favor < 0)
103                            {
104                                    log_error("article_favor_check(aid=%d) error\n", p_articles[i]->aid);
105                                    is_favor = 0;
106                            }
107                    }
108                    else
109                    {
110                            is_favor = 0;
111                    }
112    
113                  if (p_articles[i]->excerption)                  if (p_articles[i]->excerption)
114                  {                  {
115                          article_flag = (is_viewed ? 'm' : 'M');                          article_flag = (is_viewed ? 'm' : 'M');
# Line 132  static int section_list_draw_items(int p Line 156  static int section_list_draw_items(int p
156                  }                  }
157                  strncat(title_f, p_articles[i]->title + j, sizeof(title_f) - 1 - strnlen(title_f, sizeof(title_f)));                  strncat(title_f, p_articles[i]->title + j, sizeof(title_f) - 1 - strnlen(title_f, sizeof(title_f)));
158    
159                  len = split_line(title_f, 47 - (display_nickname ? 8 : 0), &eol, &title_f_len, 1);                  len = split_line(title_f, 59 - (display_nickname ? BBS_nickname_max_len / 2 : BBS_username_max_len), &eol, &title_f_len, 1);
160                  if (title_f[len] != '\0')                  if (title_f[len] != '\0')
161                  {                  {
162                          title_f[len] = '\0';                          title_f[len] = '\0';
# Line 141  static int section_list_draw_items(int p Line 165  static int section_list_draw_items(int p
165                  moveto(4 + i, 1);                  moveto(4 + i, 1);
166                  if (i >= ontop_start_offset)                  if (i >= ontop_start_offset)
167                  {                  {
168                          prints("   \033[1;33m[提示]\033[m %c %s%*s %s %s%s\033[m",                          prints("   \033[1;33m[提示]\033[m%c%c %s%*s %s %s%s\033[m",
169                                       (is_favor ? '@' : ' '),
170                                     article_flag,                                     article_flag,
171                                     (display_nickname ? p_articles[i]->nickname : p_articles[i]->username),                                     (display_nickname ? p_articles[i]->nickname : p_articles[i]->username),
172                                     (display_nickname ? BBS_nickname_max_len - (int)strnlen(p_articles[i]->nickname, sizeof(p_articles[i]->nickname))                                     (display_nickname ? BBS_nickname_max_len / 2 - str_length(p_articles[i]->nickname, 1)
173                                                                           : BBS_username_max_len - (int)strnlen(p_articles[i]->username, sizeof(p_articles[i]->username))),                                                                           : BBS_username_max_len - str_length(p_articles[i]->username, 1)),
174                                     "",                                     "",
175                                     str_time,                                     str_time,
176                                     (p_articles[i]->aid == section_topic_view_tid                                     (p_articles[i]->aid == section_topic_view_tid
# Line 157  static int section_list_draw_items(int p Line 182  static int section_list_draw_items(int p
182                  }                  }
183                  else                  else
184                  {                  {
185                          prints("  %s%7d\033[m %c %s%*s %s %s%s\033[m",                          prints("  %s%7d\033[m%c%c %s%*s %s %s%s\033[m",
186                                     (p_articles[i]->aid == section_topic_view_tid                                     (p_articles[i]->aid == section_topic_view_tid
187                                                  ? "\033[1;33m"                                                  ? "\033[1;33m"
188                                                  : (p_articles[i]->tid == section_topic_view_tid                                                  : (p_articles[i]->tid == section_topic_view_tid
189                                                             ? "\033[1;36m"                                                             ? "\033[1;36m"
190                                                             : "")),                                                             : "")),
191                                     p_articles[i]->aid,                                     p_articles[i]->aid,
192                                       (is_favor ? '@' : ' '),
193                                     article_flag,                                     article_flag,
194                                     (display_nickname ? p_articles[i]->nickname : p_articles[i]->username),                                     (display_nickname ? p_articles[i]->nickname : p_articles[i]->username),
195                                     (display_nickname ? BBS_nickname_max_len - (int)strnlen(p_articles[i]->nickname, sizeof(p_articles[i]->nickname))                                     (display_nickname ? BBS_nickname_max_len / 2 - str_length(p_articles[i]->nickname, 1)
196                                                                           : BBS_username_max_len - (int)strnlen(p_articles[i]->username, sizeof(p_articles[i]->username))),                                                                           : BBS_username_max_len - str_length(p_articles[i]->username, 1)),
197                                     "",                                     "",
198                                     str_time,                                     str_time,
199                                     (p_articles[i]->aid == section_topic_view_tid                                     (p_articles[i]->aid == section_topic_view_tid
# Line 231  static enum select_cmd_t section_list_se Line 257  static enum select_cmd_t section_list_se
257          {          {
258                  ch = igetch(100);                  ch = igetch(100);
259    
260                  switch (ch)                  if (ch != KEY_NULL && ch != KEY_TIMEOUT)
261                  {                  {
                 case KEY_ESC:  
                 case KEY_LEFT:  
262                          BBS_last_access_tm = time(NULL);                          BBS_last_access_tm = time(NULL);
263                  case KEY_NULL:                   // broken pipe                  }
264                          return EXIT_SECTION; // exit section  
265                    switch (ch)
266                    {
267                    case KEY_NULL: // broken pipe
268                            log_error("KEY_NULL\n");
269                            return EXIT_SECTION;
270                  case KEY_TIMEOUT:                  case KEY_TIMEOUT:
271                          if (time(NULL) - BBS_last_access_tm >= MAX_DELAY_TIME)                          if (time(NULL) - BBS_last_access_tm >= MAX_DELAY_TIME)
272                          {                          {
273                                  return EXIT_SECTION; // exit section                                  log_error("User input timeout\n");
274                                    return EXIT_SECTION;
275                          }                          }
276                          continue;                          continue;
277                    case KEY_ESC:
278                    case KEY_LEFT:
279                            return EXIT_SECTION;
280                  case 'n':                  case 'n':
                         BBS_last_access_tm = time(NULL);  
281                          return CHANGE_NAME_DISPLAY;                          return CHANGE_NAME_DISPLAY;
282                  case CR:                  case CR:
                         igetch_reset();  
283                  case 'r':                  case 'r':
284                  case KEY_RIGHT:                  case KEY_RIGHT:
285                          if (item_count > 0)                          if (item_count > 0)
286                          {                          {
                                 BBS_last_access_tm = time(NULL);  
287                                  return VIEW_ARTICLE;                                  return VIEW_ARTICLE;
288                          }                          }
289                          break;                          break;
# Line 277  static enum select_cmd_t section_list_se Line 307  static enum select_cmd_t section_list_se
307                                  return QUERY_ARTICLE;                                  return QUERY_ARTICLE;
308                          }                          }
309                          break;                          break;
310                    case Ctrl('A'):
311                            if (item_count > 0)
312                            {
313                                    return QUERY_USER;
314                            }
315                            break;
316                    case 'F':
317                            if (item_count > 0)
318                            {
319                                    return SET_FAVOR_ARTICLE;
320                            }
321                            break;
322                    case '-':
323                            if (item_count > 0)
324                            {
325                                    return UNSET_FAVOR_ARTICLE;
326                            }
327                            break;
328                  case KEY_HOME:                  case KEY_HOME:
329                          *p_page_id = 0;                          *p_page_id = 0;
330                  case 'P':                  case 'P':
# Line 291  static enum select_cmd_t section_list_se Line 339  static enum select_cmd_t section_list_se
339                                          (*p_page_id)--;                                          (*p_page_id)--;
340                                          *p_selected_index = BBS_article_limit_per_page - 1;                                          *p_selected_index = BBS_article_limit_per_page - 1;
341                                  }                                  }
342                                    else if (ch == KEY_UP || ch == 'k') // Rotate to the tail of section list
343                                    {
344                                            if (total_page > 0)
345                                            {
346                                                    *p_page_id = total_page - 1;
347                                            }
348                                            if (item_count > 0)
349                                            {
350                                                    *p_selected_index = item_count - 1;
351                                            }
352                                    }
353                          }                          }
354                          else                          else
355                          {                          {
# Line 318  static enum select_cmd_t section_list_se Line 377  static enum select_cmd_t section_list_se
377                                          (*p_page_id)++;                                          (*p_page_id)++;
378                                          *p_selected_index = 0;                                          *p_selected_index = 0;
379                                  }                                  }
380                                  else // end of last page                                  else if (ch == KEY_DOWN || ch == 'j') // Rotate to the head of section list
381                                  {                                  {
382                                          return CHANGE_PAGE; // force refresh pages                                          *p_page_id = 0;
383                                            *p_selected_index = 0;
384                                  }                                  }
385                          }                          }
386                          else                          else
# Line 340  static enum select_cmd_t section_list_se Line 400  static enum select_cmd_t section_list_se
400                                  return LAST_TOPIC_ARTICLE;                                  return LAST_TOPIC_ARTICLE;
401                          }                          }
402                          break;                          break;
403                    case 'S':
404                            if (item_count > 0)
405                            {
406                                    return SCAN_NEW_ARTICLE;
407                            }
408                            break;
409                  case 'h':                  case 'h':
410                          return SHOW_HELP;                          return SHOW_HELP;
411                  case 'x':                  case 'x':
412                          return VIEW_EX_DIR;                          return VIEW_EX_DIR;
413                    case 'H':
414                            return SHOW_TOP10;
415                  default:                  default:
416                            break;
417                  }                  }
418    
419                  if (old_page_id != *p_page_id)                  if (old_page_id != *p_page_id)
# Line 369  static enum select_cmd_t section_list_se Line 438  static enum select_cmd_t section_list_se
438                          old_selected_index = *p_selected_index;                          old_selected_index = *p_selected_index;
439                  }                  }
440    
                 BBS_last_access_tm = time(NULL);  
441                  if (BBS_last_access_tm - last_refresh_tm >= BBS_section_list_load_interval)                  if (BBS_last_access_tm - last_refresh_tm >= BBS_section_list_load_interval)
442                  {                  {
443                          return CHANGE_PAGE; // force section list refresh                          return CHANGE_PAGE; // force section list refresh
# Line 466  static int display_article_key_handler(i Line 534  static int display_article_key_handler(i
534          return 0;          return 0;
535  }  }
536    
537  int section_list_display(const char *sname)  int section_list_display(const char *sname, int32_t aid)
538  {  {
539          static int display_nickname = 0;          static int display_nickname = 0;
540    
541          SECTION_LIST *p_section;          SECTION_LIST *p_section;
542            int64_t section_index;
543            int32_t aid_location;
544          char stitle[BBS_section_title_max_len + 1];          char stitle[BBS_section_title_max_len + 1];
545          char master_list[(BBS_username_max_len + 1) * 3 + 1];          char master_list[(BBS_username_max_len + 1) * 3 + 1];
546          char page_info_str[LINE_BUFFER_LEN];          char page_info_str[LINE_BUFFER_LEN];
# Line 486  int section_list_display(const char *sna Line 556  int section_list_display(const char *sna
556          int direction;          int direction;
557          ARTICLE article_new;          ARTICLE article_new;
558          int page_id_cur;          int page_id_cur;
559            const ARTICLE *p_article_locate;
560            USER_INFO user_info;
561    
562          p_section = section_list_find_by_name(sname);          p_section = section_list_find_by_name(sname);
563          if (p_section == NULL)          if (p_section == NULL)
# Line 494  int section_list_display(const char *sna Line 566  int section_list_display(const char *sna
566                  return -1;                  return -1;
567          }          }
568    
569          if ((ret = section_list_rd_lock(p_section)) < 0)          if (!checkpriv(&BBS_priv, p_section->sid, S_LIST))
570          {          {
571                  log_error("section_list_rd_lock(sid = 0) error\n");                  log_error("Forbid access to unauthorized section, sid=%d, uid=%d\n",
572                  return -2;                                    p_section->sid, BBS_priv.uid);
573                    return -1;
574          }          }
575    
576          strncpy(stitle, p_section->stitle, sizeof(stitle) - 1);          section_index = get_section_index(p_section);
         stitle[sizeof(stitle) - 1] = '\0';  
         strncpy(master_list, p_section->master_list, sizeof(master_list) - 1);  
         master_list[sizeof(master_list) - 1] = '\0';  
577    
578          if ((ret = section_list_rd_unlock(p_section)) < 0)          if (get_section_info(p_section, NULL, stitle, master_list) < 0)
579          {          {
580                  log_error("section_list_rd_unlock(sid = 0) error\n");                  log_error("get_section_info(sid=%d) error\n", p_section->sid);
581                  return -2;                  return -4;
582            }
583    
584            if (aid == 0)
585            {
586                    aid_location = section_aid_locations[section_index];
587            }
588            else
589            {
590                    aid_location = aid;
591            }
592    
593            // Locate at article with aid_locate
594            if (aid_location > 0)
595            {
596                    p_article_locate = article_block_find_by_aid(aid_location);
597                    if (p_article_locate == NULL)
598                    {
599                            log_error("article_block_find_by_aid(%d) error\n", aid_location);
600                            return -3;
601                    }
602    
603                    ret = locate_article_in_section(p_section, p_article_locate, 0, 0,
604                                                                                    &page_id, &selected_index, &article_count);
605                    if (ret < 0)
606                    {
607                            log_error("locate_article_in_section(sid=%d, aid=%d, direction=0, step=0) error\n",
608                                              p_section->sid, p_article_locate->aid);
609                            return -3;
610                    }
611          }          }
612    
613          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
# Line 524  int section_list_display(const char *sna Line 623  int section_list_display(const char *sna
623                  return -3;                  return -3;
624          }          }
625    
626            section_topic_view_tid = -1;
627    
628          if (article_count == 0) // empty section          if (article_count == 0) // empty section
629          {          {
630                  selected_index = 0;                  selected_index = 0;
631          }          }
632            else if (aid > 0)
633            {
634                    // Update current topic
635                    section_topic_view_tid = (p_articles[selected_index]->tid == 0 ? p_articles[selected_index]->aid : p_articles[selected_index]->tid);
636    
637                    // Update current aid location
638                    section_aid_locations[section_index] = p_articles[selected_index]->aid;
639            }
640    
641          while (!SYS_server_exit)          while (!SYS_server_exit)
642          {          {
# Line 732  int section_list_display(const char *sna Line 841  int section_list_display(const char *sna
841                          // Update current topic                          // Update current topic
842                          section_topic_view_tid = (p_articles[selected_index]->tid == 0 ? p_articles[selected_index]->aid : p_articles[selected_index]->tid);                          section_topic_view_tid = (p_articles[selected_index]->tid == 0 ? p_articles[selected_index]->aid : p_articles[selected_index]->tid);
843    
844                            // Update current aid location
845                            section_aid_locations[section_index] = p_articles[selected_index]->aid;
846    
847                          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)                          if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
848                          {                          {
849                                  log_error("section_list_draw_screen() error\n");                                  log_error("section_list_draw_screen() error\n");
# Line 829  int section_list_display(const char *sna Line 941  int section_list_display(const char *sna
941                                  return -2;                                  return -2;
942                          }                          }
943                          break;                          break;
944                    case QUERY_USER:
945                            if ((ret = query_user_info_by_uid(p_articles[selected_index]->uid, &user_info)) < 0)
946                            {
947                                    log_error("query_user_info_by_uid(uid=%d) error\n", p_articles[selected_index]->uid);
948                                    return -2;
949                            }
950                            else if (ret == 0)
951                            {
952                                    clearscr();
953                                    prints("该用户已升天");
954                                    press_any_key();
955                            }
956                            else if (user_info_display(&user_info) < 0) // && ret > 0
957                            {
958                                    log_error("user_info_display(uid=%d) error\n", p_articles[selected_index]->uid);
959                            }
960    
961                            if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
962                            {
963                                    log_error("section_list_draw_screen() error\n");
964                                    return -2;
965                            }
966                            break;
967                    case SET_FAVOR_ARTICLE:
968                            ret = article_favor_set(p_articles[selected_index]->tid == 0
969                                                                                    ? p_articles[selected_index]->aid
970                                                                                    : p_articles[selected_index]->tid,
971                                                                            &BBS_article_favor, 1);
972                            if (ret < 0)
973                            {
974                                    log_error("article_favor_set(aid=%d, 1) error\n",
975                                                      p_articles[selected_index]->tid == 0 ? p_articles[selected_index]->aid : p_articles[selected_index]->tid);
976                            }
977                            break;
978                    case UNSET_FAVOR_ARTICLE:
979                            ret = article_favor_set(p_articles[selected_index]->tid == 0
980                                                                                    ? p_articles[selected_index]->aid
981                                                                                    : p_articles[selected_index]->tid,
982                                                                            &BBS_article_favor, 0);
983                            if (ret < 0)
984                            {
985                                    log_error("article_favor_set(aid=%d, 0) error\n",
986                                                      p_articles[selected_index]->tid == 0 ? p_articles[selected_index]->aid : p_articles[selected_index]->tid);
987                            }
988                            break;
989                  case FIRST_TOPIC_ARTICLE:                  case FIRST_TOPIC_ARTICLE:
990                  case LAST_TOPIC_ARTICLE:                  case LAST_TOPIC_ARTICLE:
991                          page_id_cur = page_id;                          page_id_cur = page_id;
# Line 851  int section_list_display(const char *sna Line 1008  int section_list_display(const char *sna
1008                                  }                                  }
1009                          }                          }
1010                          break;                          break;
1011                    case SCAN_NEW_ARTICLE:
1012                            ret = scan_unread_article_in_section(p_section, p_articles[selected_index], &p_article_locate);
1013                            if (ret < 0)
1014                            {
1015                                    log_error("scan_unread_article_in_section(sid=%d, aid=%d) error\n",
1016                                                      p_section->sid, p_articles[selected_index]->aid);
1017                                    return -3;
1018                            }
1019                            else if (ret == 0) // not found
1020                            {
1021                                    break;
1022                            }
1023                            page_id_cur = page_id;
1024                            ret = locate_article_in_section(p_section, p_article_locate, 0, 0,
1025                                                                                            &page_id, &selected_index, &article_count);
1026                            if (ret < 0)
1027                            {
1028                                    log_error("locate_article_in_section(sid=%d, aid=%d, direction=0, step=0) error\n",
1029                                                      p_section->sid, p_article_locate->aid);
1030                                    return -3;
1031                            }
1032                            else if (ret > 0 && page_id != page_id_cur) // found and page changed
1033                            {
1034                                    ret = query_section_articles(p_section, page_id, p_articles, &article_count, &page_count, &ontop_start_offset);
1035                                    if (ret < 0)
1036                                    {
1037                                            log_error("query_section_articles(sid=%d, page_id=%d) error\n", p_section->sid, page_id);
1038                                            return -3;
1039                                    }
1040                            }
1041                            break;
1042                  case SHOW_HELP:                  case SHOW_HELP:
1043                          // Display help information                          // Display help information
1044                          display_file(DATA_READ_HELP, 1);                          display_file(DATA_READ_HELP, 1);
# Line 871  int section_list_display(const char *sna Line 1059  int section_list_display(const char *sna
1059                                  return -2;                                  return -2;
1060                          }                          }
1061                          break;                          break;
1062                    case SHOW_TOP10:
1063                            show_top10_menu(NULL);
1064                            if (section_list_draw_screen(sname, stitle, master_list, display_nickname) < 0)
1065                            {
1066                                    log_error("section_list_draw_screen() error\n");
1067                                    return -2;
1068                            }
1069                            break;
1070                  default:                  default:
1071                          log_error("Unknown command %d\n", ret);                          log_error("Unknown command %d\n", ret);
1072                  }                  }
# Line 919  int section_list_ex_dir_display(SECTION_ Line 1115  int section_list_ex_dir_display(SECTION_
1115                  {                  {
1116                          iflush();                          iflush();
1117                          ch = igetch(100);                          ch = igetch(100);
1118    
1119                            if (ch != KEY_NULL && ch != KEY_TIMEOUT)
1120                            {
1121                                    BBS_last_access_tm = time(NULL);
1122                            }
1123    
1124                          switch (ch)                          switch (ch)
1125                          {                          {
1126                          case KEY_NULL: // broken pipe                          case KEY_NULL: // broken pipe
1127                                    log_error("KEY_NULL\n");
1128                                  return 0;                                  return 0;
1129                          case KEY_TIMEOUT:                          case KEY_TIMEOUT:
1130                                  if (time(NULL) - BBS_last_access_tm >= MAX_DELAY_TIME)                                  if (time(NULL) - BBS_last_access_tm >= MAX_DELAY_TIME)
1131                                  {                                  {
1132                                            log_error("User input timeout\n");
1133                                          return 0;                                          return 0;
1134                                  }                                  }
1135                                  continue;                                  continue;
1136                          case CR:                          case CR:
                                 igetch_reset();  
1137                          default:                          default:
1138                                  switch (menu_control(&ex_menu_set, ch))                                  switch (menu_control(&ex_menu_set, ch))
1139                                  {                                  {
# Line 949  int section_list_ex_dir_display(SECTION_ Line 1152  int section_list_ex_dir_display(SECTION_
1152                                  }                                  }
1153                          }                          }
1154    
                         BBS_last_access_tm = time(NULL);  
   
1155                          if (ch == EXITMENU)                          if (ch == EXITMENU)
1156                          {                          {
1157                                  break;                                  break;


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

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