about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-05-22 23:59:52 +0100
committerJames Booth <boothj5@gmail.com>2016-05-22 23:59:52 +0100
commitfb34785566c59e055399d2c5eb8378ea44c8c983 (patch)
tree9f74fbdf31d50b5b28671b679f0ec5c9e8b0be41
parentcd15a271533df18d0ae54bf7a40f80b08e13b7af (diff)
downloadprofani-tty-fb34785566c59e055399d2c5eb8378ea44c8c983.tar.gz
Rename command sources
-rw-r--r--Makefile.am12
-rw-r--r--src/command/cmd_ac.c (renamed from src/command/cmd_autocomplete.c)5
-rw-r--r--src/command/cmd_ac.h (renamed from src/command/cmd_autocomplete.h)2
-rw-r--r--src/command/cmd_defs.c (renamed from src/command/command.c)6
-rw-r--r--src/command/cmd_defs.h (renamed from src/command/command.h)0
-rw-r--r--src/command/cmd_funcs.c (renamed from src/command/commands.c)6
-rw-r--r--src/command/cmd_funcs.h (renamed from src/command/commands.h)0
-rw-r--r--src/config/scripts.c2
-rw-r--r--src/main.c2
-rw-r--r--src/plugins/api.c2
-rw-r--r--src/plugins/callbacks.c4
-rw-r--r--src/plugins/callbacks.h2
-rw-r--r--src/plugins/plugins.h2
-rw-r--r--src/profanity.c2
-rw-r--r--src/ui/console.c2
-rw-r--r--src/ui/core.c4
-rw-r--r--src/ui/inputwin.c2
-rw-r--r--src/ui/ui.h2
-rw-r--r--tests/unittests/test_cmd_account.c2
-rw-r--r--tests/unittests/test_cmd_alias.c6
-rw-r--r--tests/unittests/test_cmd_bookmark.c2
-rw-r--r--tests/unittests/test_cmd_connect.c2
-rw-r--r--tests/unittests/test_cmd_disconnect.c2
-rw-r--r--tests/unittests/test_cmd_join.c2
-rw-r--r--tests/unittests/test_cmd_otr.c4
-rw-r--r--tests/unittests/test_cmd_pgp.c2
-rw-r--r--tests/unittests/test_cmd_rooms.c2
-rw-r--r--tests/unittests/test_cmd_roster.c2
-rw-r--r--tests/unittests/test_cmd_statuses.c2
-rw-r--r--tests/unittests/test_cmd_sub.c2
30 files changed, 44 insertions, 43 deletions
diff --git a/Makefile.am b/Makefile.am
index a9f7837a..a2c023c5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -30,9 +30,9 @@ core_sources = \
 	src/ui/privwin.c \
 	src/ui/mucconfwin.c \
 	src/ui/xmlwin.c \
-	src/command/command.h src/command/command.c \
-	src/command/commands.h src/command/commands.c \
-	src/command/cmd_autocomplete.h src/command/cmd_autocomplete.c \
+	src/command/cmd_defs.h src/command/cmd_defs.c \
+	src/command/cmd_funcs.h src/command/cmd_funcs.c \
+	src/command/cmd_ac.h src/command/cmd_ac.c \
 	src/tools/parser.c \
 	src/tools/parser.h \
 	src/tools/http_upload.c \
@@ -68,9 +68,9 @@ unittest_sources = \
 	src/ui/ui.h \
 	src/otr/otr.h \
 	src/pgp/gpg.h \
-	src/command/command.h src/command/command.c \
-	src/command/commands.h src/command/commands.c \
-	src/command/cmd_autocomplete.h src/command/cmd_autocomplete.c \
+	src/command/cmd_defs.h src/command/cmd_defs.c \
+	src/command/cmd_funcs.h src/command/cmd_funcs.c \
+	src/command/cmd_ac.h src/command/cmd_ac.c \
 	src/tools/parser.c \
 	src/tools/parser.h \
 	src/tools/p_sha1.h src/tools/p_sha1.c \
diff --git a/src/command/cmd_autocomplete.c b/src/command/cmd_ac.c
index cce4855b..3abe5c22 100644
--- a/src/command/cmd_autocomplete.c
+++ b/src/command/cmd_ac.c
@@ -38,11 +38,12 @@
 #include <string.h>
 #include <assert.h>
 #include <libgen.h>
+#include <dirent.h>
 
 #include "common.h"
 #include "tools/parser.h"
 #include "ui/win_types.h"
-#include "command/commands.h"
+#include "command/cmd_funcs.h"
 #include "config/preferences.h"
 #include "config/scripts.h"
 #include "muc.h"
@@ -50,7 +51,7 @@
 #include "roster_list.h"
 #include "window_list.h"
 #include "plugins/plugins.h"
-#include "command/cmd_autocomplete.h"
+#include "command/cmd_ac.h"
 
 #ifdef HAVE_LIBGPGME
 #include "pgp/gpg.h"
diff --git a/src/command/cmd_autocomplete.h b/src/command/cmd_ac.h
index 0d9e5f28..99740246 100644
--- a/src/command/cmd_autocomplete.h
+++ b/src/command/cmd_ac.h
@@ -33,7 +33,7 @@
  */
 
 #include "config/preferences.h"
-#include "command/commands.h"
+#include "command/cmd_funcs.h"
 
 void cmd_ac_init(void);
 void cmd_ac_uninit(void);
diff --git a/src/command/command.c b/src/command/cmd_defs.c
index 408b59a7..b57fba9f 100644
--- a/src/command/command.c
+++ b/src/command/cmd_defs.c
@@ -49,9 +49,9 @@
 #include <glib.h>
 
 #include "chat_session.h"
-#include "command/command.h"
-#include "command/commands.h"
-#include "command/cmd_autocomplete.h"
+#include "command/cmd_defs.h"
+#include "command/cmd_funcs.h"
+#include "command/cmd_ac.h"
 #include "common.h"
 #include "config/accounts.h"
 #include "config/preferences.h"
diff --git a/src/command/command.h b/src/command/cmd_defs.h
index 4764ea4d..4764ea4d 100644
--- a/src/command/command.h
+++ b/src/command/cmd_defs.h
diff --git a/src/command/commands.c b/src/command/cmd_funcs.c
index d4df39b8..4fea5e1c 100644
--- a/src/command/commands.c
+++ b/src/command/cmd_funcs.c
@@ -50,9 +50,9 @@
 #include <ctype.h>
 
 #include "chat_session.h"
-#include "command/commands.h"
-#include "command/command.h"
-#include "command/cmd_autocomplete.h"
+#include "command/cmd_funcs.h"
+#include "command/cmd_defs.h"
+#include "command/cmd_ac.h"
 #include "common.h"
 #include "config/accounts.h"
 #include "config/account.h"
diff --git a/src/command/commands.h b/src/command/cmd_funcs.h
index 24828989..24828989 100644
--- a/src/command/commands.h
+++ b/src/command/cmd_funcs.h
diff --git a/src/config/scripts.c b/src/config/scripts.c
index 0f8800d8..945aaec2 100644
--- a/src/config/scripts.c
+++ b/src/config/scripts.c
@@ -43,7 +43,7 @@
 #include "common.h"
 #include "log.h"
 #include "window_list.h"
-#include "command/command.h"
+#include "command/cmd_defs.h"
 #include "ui/ui.h"
 #include "xmpp/xmpp.h"
 
diff --git a/src/main.c b/src/main.c
index 7f87c165..b15293d0 100644
--- a/src/main.c
+++ b/src/main.c
@@ -43,7 +43,7 @@
 
 #include "profanity.h"
 #include "common.h"
-#include "command/command.h"
+#include "command/cmd_defs.h"
 
 static gboolean version = FALSE;
 static char *log = "INFO";
diff --git a/src/plugins/api.c b/src/plugins/api.c
index 0a4b04af..326ec61d 100644
--- a/src/plugins/api.c
+++ b/src/plugins/api.c
@@ -49,7 +49,7 @@
 #include "profanity.h"
 #include "ui/ui.h"
 #include "config/theme.h"
-#include "command/command.h"
+#include "command/cmd_defs.h"
 #include "window_list.h"
 #include "common.h"
 
diff --git a/src/plugins/callbacks.c b/src/plugins/callbacks.c
index ad09abef..2572f7a4 100644
--- a/src/plugins/callbacks.c
+++ b/src/plugins/callbacks.c
@@ -35,8 +35,8 @@
 #include <string.h>
 #include <stdlib.h>
 
-#include "command/command.h"
-#include "command/cmd_autocomplete.h"
+#include "command/cmd_defs.h"
+#include "command/cmd_ac.h"
 #include "plugins/callbacks.h"
 #include "plugins/plugins.h"
 #include "tools/autocomplete.h"
diff --git a/src/plugins/callbacks.h b/src/plugins/callbacks.h
index dc6b78bb..9b175d0a 100644
--- a/src/plugins/callbacks.h
+++ b/src/plugins/callbacks.h
@@ -37,7 +37,7 @@
 
 #include <glib.h>
 
-#include "command/command.h"
+#include "command/cmd_defs.h"
 
 typedef struct p_command {
     const char *command_name;
diff --git a/src/plugins/plugins.h b/src/plugins/plugins.h
index b7eb4c80..b03248ab 100644
--- a/src/plugins/plugins.h
+++ b/src/plugins/plugins.h
@@ -35,7 +35,7 @@
 #ifndef PLUGINS_H
 #define PLUGINS_H
 
-#include "command/command.h"
+#include "command/cmd_defs.h"
 
 typedef enum {
     LANG_PYTHON,
diff --git a/src/profanity.c b/src/profanity.c
index 56f242ef..c9e19fa8 100644
--- a/src/profanity.c
+++ b/src/profanity.c
@@ -55,7 +55,7 @@
 #include "config/preferences.h"
 #include "config/theme.h"
 #include "config/scripts.h"
-#include "command/command.h"
+#include "command/cmd_defs.h"
 #include "common.h"
 #include "contact.h"
 #include "roster_list.h"
diff --git a/src/ui/console.c b/src/ui/console.c
index 5c5afbd9..b14d36cf 100644
--- a/src/ui/console.c
+++ b/src/ui/console.c
@@ -43,7 +43,7 @@
 #include <ncurses.h>
 #endif
 
-#include "command/command.h"
+#include "command/cmd_defs.h"
 #include "common.h"
 #include "log.h"
 #include "muc.h"
diff --git a/src/ui/core.c b/src/ui/core.c
index 4397044b..3a89008f 100644
--- a/src/ui/core.c
+++ b/src/ui/core.c
@@ -55,8 +55,8 @@
 #endif
 
 #include "chat_session.h"
-#include "command/command.h"
-#include "command/cmd_autocomplete.h"
+#include "command/cmd_defs.h"
+#include "command/cmd_ac.h"
 #include "common.h"
 #include "config/preferences.h"
 #include "config/theme.h"
diff --git a/src/ui/inputwin.c b/src/ui/inputwin.c
index 72f65271..8f896dbe 100644
--- a/src/ui/inputwin.c
+++ b/src/ui/inputwin.c
@@ -53,7 +53,7 @@
 #include <ncurses.h>
 #endif
 
-#include "command/cmd_autocomplete.h"
+#include "command/cmd_ac.h"
 #include "common.h"
 #include "config/accounts.h"
 #include "config/preferences.h"
diff --git a/src/ui/ui.h b/src/ui/ui.h
index 18a5864f..2213ccc1 100644
--- a/src/ui/ui.h
+++ b/src/ui/ui.h
@@ -37,7 +37,7 @@
 
 #include "config.h"
 
-#include "command/commands.h"
+#include "command/cmd_funcs.h"
 #include "ui/win_types.h"
 #include "muc.h"
 #include "config/tlscerts.h"
diff --git a/tests/unittests/test_cmd_account.c b/tests/unittests/test_cmd_account.c
index 74781177..0b723bde 100644
--- a/tests/unittests/test_cmd_account.c
+++ b/tests/unittests/test_cmd_account.c
@@ -13,7 +13,7 @@
 
 #include "config/accounts.h"
 
-#include "command/commands.h"
+#include "command/cmd_funcs.h"
 
 #define CMD_ACCOUNT "/account"
 
diff --git a/tests/unittests/test_cmd_alias.c b/tests/unittests/test_cmd_alias.c
index 8957f558..d1cdaf01 100644
--- a/tests/unittests/test_cmd_alias.c
+++ b/tests/unittests/test_cmd_alias.c
@@ -13,9 +13,9 @@
 
 #include "config/preferences.h"
 
-#include "command/command.h"
-#include "command/commands.h"
-#include "command/cmd_autocomplete.h"
+#include "command/cmd_defs.h"
+#include "command/cmd_funcs.h"
+#include "command/cmd_ac.h"
 
 #define CMD_ALIAS "/alias"
 
diff --git a/tests/unittests/test_cmd_bookmark.c b/tests/unittests/test_cmd_bookmark.c
index 8b8b4871..5b17c6e0 100644
--- a/tests/unittests/test_cmd_bookmark.c
+++ b/tests/unittests/test_cmd_bookmark.c
@@ -14,7 +14,7 @@
 #include "muc.h"
 #include "common.h"
 
-#include "command/commands.h"
+#include "command/cmd_funcs.h"
 
 #include "xmpp/bookmark.h"
 
diff --git a/tests/unittests/test_cmd_connect.c b/tests/unittests/test_cmd_connect.c
index e4f01271..b2511183 100644
--- a/tests/unittests/test_cmd_connect.c
+++ b/tests/unittests/test_cmd_connect.c
@@ -11,7 +11,7 @@
 #include "ui/ui.h"
 #include "ui/stub_ui.h"
 
-#include "command/commands.h"
+#include "command/cmd_funcs.h"
 #include "config/accounts.h"
 
 #define CMD_CONNECT "/connect"
diff --git a/tests/unittests/test_cmd_disconnect.c b/tests/unittests/test_cmd_disconnect.c
index ba73adf5..9bf78a7a 100644
--- a/tests/unittests/test_cmd_disconnect.c
+++ b/tests/unittests/test_cmd_disconnect.c
@@ -6,7 +6,7 @@
 #include <string.h>
 
 #include "chat_session.h"
-#include "command/commands.h"
+#include "command/cmd_funcs.h"
 #include "xmpp/xmpp.h"
 #include "roster_list.h"
 
diff --git a/tests/unittests/test_cmd_join.c b/tests/unittests/test_cmd_join.c
index 8b71c5e5..709b4145 100644
--- a/tests/unittests/test_cmd_join.c
+++ b/tests/unittests/test_cmd_join.c
@@ -13,7 +13,7 @@
 
 #include "config/accounts.h"
 
-#include "command/commands.h"
+#include "command/cmd_funcs.h"
 #include "muc.h"
 
 #define CMD_JOIN "/join"
diff --git a/tests/unittests/test_cmd_otr.c b/tests/unittests/test_cmd_otr.c
index 44703943..ab03e7d4 100644
--- a/tests/unittests/test_cmd_otr.c
+++ b/tests/unittests/test_cmd_otr.c
@@ -15,8 +15,8 @@
 
 #include "config/preferences.h"
 
-#include "command/command.h"
-#include "command/commands.h"
+#include "command/cmd_defs.h"
+#include "command/cmd_funcs.h"
 #include "window_list.h"
 #include "xmpp/xmpp.h"
 
diff --git a/tests/unittests/test_cmd_pgp.c b/tests/unittests/test_cmd_pgp.c
index ec010cce..b2a1aa7e 100644
--- a/tests/unittests/test_cmd_pgp.c
+++ b/tests/unittests/test_cmd_pgp.c
@@ -8,7 +8,7 @@
 
 #include "config.h"
 
-#include "command/commands.h"
+#include "command/cmd_funcs.h"
 #include "xmpp/xmpp.h"
 
 #include "ui/stub_ui.h"
diff --git a/tests/unittests/test_cmd_rooms.c b/tests/unittests/test_cmd_rooms.c
index 85a528b5..2cb6be6b 100644
--- a/tests/unittests/test_cmd_rooms.c
+++ b/tests/unittests/test_cmd_rooms.c
@@ -12,7 +12,7 @@
 #include "ui/stub_ui.h"
 
 #include "config/accounts.h"
-#include "command/commands.h"
+#include "command/cmd_funcs.h"
 
 #define CMD_ROOMS "/rooms"
 
diff --git a/tests/unittests/test_cmd_roster.c b/tests/unittests/test_cmd_roster.c
index 8b194de4..6628147d 100644
--- a/tests/unittests/test_cmd_roster.c
+++ b/tests/unittests/test_cmd_roster.c
@@ -11,7 +11,7 @@
 
 #include "xmpp/xmpp.h"
 #include "roster_list.h"
-#include "command/commands.h"
+#include "command/cmd_funcs.h"
 
 #define CMD_ROSTER "/roster"
 
diff --git a/tests/unittests/test_cmd_statuses.c b/tests/unittests/test_cmd_statuses.c
index bd5337c3..f4d8c067 100644
--- a/tests/unittests/test_cmd_statuses.c
+++ b/tests/unittests/test_cmd_statuses.c
@@ -11,7 +11,7 @@
 #include "ui/ui.h"
 #include "ui/stub_ui.h"
 
-#include "command/commands.h"
+#include "command/cmd_funcs.h"
 
 #define CMD_STATUSES "/statuses"
 
diff --git a/tests/unittests/test_cmd_sub.c b/tests/unittests/test_cmd_sub.c
index a89e82bf..4afe8752 100644
--- a/tests/unittests/test_cmd_sub.c
+++ b/tests/unittests/test_cmd_sub.c
@@ -11,7 +11,7 @@
 #include "ui/ui.h"
 #include "ui/stub_ui.h"
 
-#include "command/commands.h"
+#include "command/cmd_funcs.h"
 
 #define CMD_SUB "/sub"