Skip to content

Commit

Permalink
Removed panel descriptions in the terminal output.
Browse files Browse the repository at this point in the history
  • Loading branch information
allinurl committed Jul 19, 2015
1 parent 99dd72d commit 120e91c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
1 change: 0 additions & 1 deletion src/gdashboard.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ typedef struct GDashModule_
{
GDashData *data;
GModule module;
const char *desc;
const char *head;

int alloc_data; /* alloc data items */
Expand Down
13 changes: 0 additions & 13 deletions src/goaccess.c
Original file line number Diff line number Diff line change
Expand Up @@ -210,57 +210,44 @@ allocate_data (void)
case VISITORS:
dash->module[module].head =
(!conf.ignore_crawlers ? VISIT_HEAD INCLUDE_BOTS : VISIT_HEAD);
dash->module[module].desc = VISIT_DESC;
break;
case REQUESTS:
dash->module[module].head = REQUE_HEAD;
dash->module[module].desc = REQUE_DESC;
break;
case REQUESTS_STATIC:
dash->module[module].head = STATI_HEAD;
dash->module[module].desc = STATI_DESC;
break;
case NOT_FOUND:
dash->module[module].head = FOUND_HEAD;
dash->module[module].desc = FOUND_DESC;
break;
case HOSTS:
dash->module[module].head = HOSTS_HEAD;
dash->module[module].desc = HOSTS_DESC;
break;
case OS:
dash->module[module].head = OPERA_HEAD;
dash->module[module].desc = OPERA_DESC;
break;
case BROWSERS:
dash->module[module].head = BROWS_HEAD;
dash->module[module].desc = BROWS_DESC;
break;
case VISIT_TIMES:
dash->module[module].head = VTIME_HEAD;
dash->module[module].desc = VTIME_DESC;
break;
case REFERRERS:
dash->module[module].head = REFER_HEAD;
dash->module[module].desc = REFER_DESC;
break;
case REFERRING_SITES:
dash->module[module].head = SITES_HEAD;
dash->module[module].desc = SITES_DESC;
break;
case KEYPHRASES:
dash->module[module].head = KEYPH_HEAD;
dash->module[module].desc = KEYPH_DESC;
break;
#ifdef HAVE_LIBGEOIP
case GEO_LOCATION:
dash->module[module].head = GEOLO_HEAD;
dash->module[module].desc = GEOLO_DESC;
break;
#endif
case STATUS_CODES:
dash->module[module].head = CODES_HEAD;
dash->module[module].desc = CODES_DESC;
break;
}

Expand Down

0 comments on commit 120e91c

Please sign in to comment.