Some remaining fixes

This commit is contained in:
Berke Viktor 2012-10-30 08:58:50 +01:00
parent e681eafa78
commit 8d6f4d9d40
16 changed files with 33 additions and 33 deletions

View File

@ -1663,7 +1663,7 @@ static int lxc_get_info(lua_State *L)
} }
/* /*
* lua: xchat.get_prefs(name) * lua: hexchat.get_prefs(name)
* desc: Provides xchat's setting information (that which is available * desc: Provides xchat's setting information (that which is available
* through the /set command). A few extra bits of information are * through the /set command). A few extra bits of information are
* available that don't appear in the /set list, currently they are: * available that don't appear in the /set list, currently they are:
@ -1684,7 +1684,7 @@ static int lxc_get_prefs(lua_State *L)
* luckily we can store anything in a lua var... this makes the * luckily we can store anything in a lua var... this makes the
* xchat lua api more user friendly ;-) * xchat lua api more user friendly ;-)
*/ */
switch (xchat_get_prefs(ph, name, &str, &i)) { switch (hexchat_get_prefs(ph, name, &str, &i)) {
case 0: /* request failed */ case 0: /* request failed */
lua_pushnil(L); lua_pushnil(L);
break; break;

View File

@ -836,7 +836,7 @@ XS (XS_Xchat_get_prefs)
} else { } else {
switch (xchat_get_prefs (ph, SvPV_nolen (ST (0)), &str, &integer)) { switch (hexchat_get_prefs (ph, SvPV_nolen (ST (0)), &str, &integer)) {
case 0: case 0:
XSRETURN_UNDEF; XSRETURN_UNDEF;
break; break;
@ -1376,7 +1376,7 @@ perl_init (void)
#endif #endif
warn = 0; warn = 0;
xchat_get_prefs (ph, "perl_warnings", NULL, &warn); hexchat_get_prefs (ph, "perl_warnings", NULL, &warn);
arg_count = warn ? 4 : 3; arg_count = warn ? 4 : 3;
PERL_SYS_INIT3 (&arg_count, (char ***)&perl_args, (char ***)&env); PERL_SYS_INIT3 (&arg_count, (char ***)&perl_args, (char ***)&env);

View File

@ -1519,7 +1519,7 @@ Module_xchat_get_prefs(PyObject *self, PyObject *args)
if (!PyArg_ParseTuple(args, "s:get_prefs", &name)) if (!PyArg_ParseTuple(args, "s:get_prefs", &name))
return NULL; return NULL;
BEGIN_XCHAT_CALLS(NONE); BEGIN_XCHAT_CALLS(NONE);
type = xchat_get_prefs(ph, name, &info, &integer); type = hexchat_get_prefs(ph, name, &info, &integer);
END_XCHAT_CALLS(); END_XCHAT_CALLS();
switch (type) { switch (type) {
case 0: case 0:

View File

@ -1081,7 +1081,7 @@ static int tcl_prefs(ClientData cd, Tcl_Interp * irp, int argc, const char *argv
BADARGS(2, 2, " name"); BADARGS(2, 2, " name");
switch (xchat_get_prefs (ph, argv[1], &str, &i)) { switch (hexchat_get_prefs (ph, argv[1], &str, &i)) {
case 1: case 1:
Tcl_AppendResult(irp, str, NULL); Tcl_AppendResult(irp, str, NULL);
break; break;

View File

@ -86,7 +86,7 @@ extern "C" {
hexchat_context *(*hexchat_get_context) (hexchat_plugin *ph); hexchat_context *(*hexchat_get_context) (hexchat_plugin *ph);
const char *(*hexchat_get_info) (hexchat_plugin *ph, const char *(*hexchat_get_info) (hexchat_plugin *ph,
const char *id); const char *id);
int (*xchat_get_prefs) (hexchat_plugin *ph, int (*hexchat_get_prefs) (hexchat_plugin *ph,
const char *name, const char *name,
const char **string, const char **string,
int *integer); int *integer);
@ -216,7 +216,7 @@ extern "C" {
const char *id); const char *id);
int int
xchat_get_prefs (hexchat_plugin *ph, hexchat_get_prefs (hexchat_plugin *ph,
const char *name, const char *name,
const char **string, const char **string,
int *integer); int *integer);
@ -309,7 +309,7 @@ extern "C" {
#define hexchat_find_context ((HEXCHAT_PLUGIN_HANDLE)->hexchat_find_context) #define hexchat_find_context ((HEXCHAT_PLUGIN_HANDLE)->hexchat_find_context)
#define hexchat_get_context ((HEXCHAT_PLUGIN_HANDLE)->hexchat_get_context) #define hexchat_get_context ((HEXCHAT_PLUGIN_HANDLE)->hexchat_get_context)
#define hexchat_get_info ((HEXCHAT_PLUGIN_HANDLE)->hexchat_get_info) #define hexchat_get_info ((HEXCHAT_PLUGIN_HANDLE)->hexchat_get_info)
#define xchat_get_prefs ((HEXCHAT_PLUGIN_HANDLE)->xchat_get_prefs) #define hexchat_get_prefs ((HEXCHAT_PLUGIN_HANDLE)->hexchat_get_prefs)
#define hexchat_list_get ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_get) #define hexchat_list_get ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_get)
#define hexchat_list_free ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_free) #define hexchat_list_free ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_free)
#define hexchat_list_fields ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_fields) #define hexchat_list_fields ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_fields)

View File

@ -70,7 +70,7 @@ You can use the "/org/hexchat/Remote" object with interface "org.hexchat.plugin"
* gchar\*: Name of the command (without the forward slash). * gchar\*: Name of the command (without the forward slash).
* int: Priority of this command. * int: Priority of this command.
* gchar\*: String of text to display when the user executes /help for this command. May be NULL if you're lazy. * gchar\*: String of text to display when the user executes /help for this command. May be NULL if you're lazy.
* int: Value to returns when the command is catched. See XCHAT\_EAT\_*. * int: Value to returns when the command is catched. See HEXCHAT\_EAT\_*.
* Returns: * Returns:
* guint: The ID of the hook. * guint: The ID of the hook.
@ -78,7 +78,7 @@ You can use the "/org/hexchat/Remote" object with interface "org.hexchat.plugin"
* Parameters: * Parameters:
* gchar\*: Name of the server event. * gchar\*: Name of the server event.
* int: Priority of this command. * int: Priority of this command.
* int: Value to returns when the command is catched. See XCHAT\_EAT\_*. * int: Value to returns when the command is catched. See HEXCHAT\_EAT\_*.
* Returns: * Returns:
* guint: The ID of the hook. * guint: The ID of the hook.
@ -86,7 +86,7 @@ You can use the "/org/hexchat/Remote" object with interface "org.hexchat.plugin"
* Parameters: * Parameters:
* gchar\*: Name of the print event. * gchar\*: Name of the print event.
* int: Priority of this command. * int: Priority of this command.
* int: Value to returns when the command is catched. See XCHAT\_EAT\_*. * int: Value to returns when the command is catched. See HEXCHAT\_EAT\_*.
* Returns: * Returns:
* guint: The ID of the hook. * guint: The ID of the hook.

View File

@ -514,7 +514,7 @@ a context cannot be found.</p>
</table><p>This function is used to retrieve certain information about the current </table><p>This function is used to retrieve certain information about the current
context. If there is an associated command then that command can be used to change the value for a particular ID.</p><p> context. If there is an associated command then that command can be used to change the value for a particular ID.</p><p>
</p> </p>
<h3><a name="xchat_get_prefs" /><code>Xchat::get_prefs( $name )</code></h3> <h3><a name="hexchat_get_prefs" /><code>Xchat::get_prefs( $name )</code></h3>
<ul> <ul>
<li><strong><code>$name</code> - name of a X-Chat setting (available through the /set command)</strong> <li><strong><code>$name</code> - name of a X-Chat setting (available through the /set command)</strong>
</li> </li>

View File

@ -875,7 +875,7 @@ A few extra bits of information are available that don't appear in the _/SET_ li
int i; int i;
const char *str; const char *str;
if (xchat_get_prefs (ph, "irc_nick1", &amp;str, &amp;i) == 1) if (hexchat_get_prefs (ph, "irc_nick1", &amp;str, &amp;i) == 1)
{ {
hexchat_printf (ph, "Current nickname setting: %s\n", str); hexchat_printf (ph, "Current nickname setting: %s\n", str);
} }

View File

@ -40,7 +40,7 @@ write_error (char *message,
} }
void void
xchat_remote (void) hexchat_remote (void)
/* TODO: dbus_g_connection_unref (connection) are commented because it makes /* TODO: dbus_g_connection_unref (connection) are commented because it makes
* dbus to crash. Fixed in dbus >=0.70 ?!? * dbus to crash. Fixed in dbus >=0.70 ?!?
* https://launchpad.net/distros/ubuntu/+source/dbus/+bug/54375 * https://launchpad.net/distros/ubuntu/+source/dbus/+bug/54375
@ -49,7 +49,7 @@ xchat_remote (void)
DBusGConnection *connection; DBusGConnection *connection;
DBusGProxy *dbus = NULL; DBusGProxy *dbus = NULL;
DBusGProxy *remote_object = NULL; DBusGProxy *remote_object = NULL;
gboolean xchat_running; gboolean hexchat_running;
GError *error = NULL; GError *error = NULL;
char *command = NULL; char *command = NULL;
@ -73,7 +73,7 @@ xchat_remote (void)
return; return;
} }
/* Checks if xchat is already running */ /* Checks if HexChat is already running */
dbus = dbus_g_proxy_new_for_name (connection, dbus = dbus_g_proxy_new_for_name (connection,
DBUS_SERVICE_DBUS, DBUS_SERVICE_DBUS,
DBUS_PATH_DBUS, DBUS_PATH_DBUS,
@ -81,14 +81,14 @@ xchat_remote (void)
if (!dbus_g_proxy_call (dbus, "NameHasOwner", &error, if (!dbus_g_proxy_call (dbus, "NameHasOwner", &error,
G_TYPE_STRING, DBUS_SERVICE, G_TYPE_STRING, DBUS_SERVICE,
G_TYPE_INVALID, G_TYPE_INVALID,
G_TYPE_BOOLEAN, &xchat_running, G_TYPE_BOOLEAN, &hexchat_running,
G_TYPE_INVALID)) { G_TYPE_INVALID)) {
write_error (_("Failed to complete NameHasOwner"), &error); write_error (_("Failed to complete NameHasOwner"), &error);
xchat_running = FALSE; hexchat_running = FALSE;
} }
g_object_unref (dbus); g_object_unref (dbus);
if (!xchat_running) { if (!hexchat_running) {
//dbus_g_connection_unref (connection); //dbus_g_connection_unref (connection);
return; return;
} }

View File

@ -22,6 +22,6 @@
#ifndef __DBUS_PLUGIN_H__ #ifndef __DBUS_PLUGIN_H__
#define __DBUS_PLUGIN_H__ #define __DBUS_PLUGIN_H__
void xchat_remote (void); void hexchat_remote (void);
#endif /* __DBUS_PLUGIN_H__ */ #endif /* __DBUS_PLUGIN_H__ */

View File

@ -1,4 +1,4 @@
/* dbus-plugin.c - xchat plugin for remote access using D-Bus /* dbus-plugin.c - hexchat plugin for remote access using D-Bus
* Copyright (C) 2006 Claessens Xavier * Copyright (C) 2006 Claessens Xavier
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -510,7 +510,7 @@ remote_object_get_prefs (RemoteObject *obj,
*ret_type = 0; *ret_type = 0;
return TRUE; return TRUE;
} }
*ret_type = xchat_get_prefs (ph, name, &str, ret_int); *ret_type = hexchat_get_prefs (ph, name, &str, ret_int);
*ret_str = g_strdup (str); *ret_str = g_strdup (str);
return TRUE; return TRUE;

View File

@ -1,4 +1,4 @@
/* dbus-plugin.c - xchat plugin for remote access using DBUS /* dbus-plugin.c - hexchat plugin for remote access using DBUS
* Copyright (C) 2006 Claessens Xavier * Copyright (C) 2006 Claessens Xavier
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -22,7 +22,7 @@
#ifndef XCHAT_DBUS_PLUGIN_H #ifndef XCHAT_DBUS_PLUGIN_H
#define XCHAT_DBUS_PLUGIN_H #define XCHAT_DBUS_PLUGIN_H
int dbus_plugin_init (xchat_plugin *plugin_handle, int dbus_plugin_init (hexchat_plugin *plugin_handle,
char **plugin_name, char **plugin_name,
char **plugin_desc, char **plugin_desc,
char **plugin_version, char **plugin_version,

View File

@ -73,7 +73,7 @@ test_command_cb (DBusGProxy *proxy,
G_TYPE_INVALID, G_TYPE_INVALID)) { G_TYPE_INVALID, G_TYPE_INVALID)) {
write_error ("Failed to complete unhook", &error); write_error ("Failed to complete unhook", &error);
} }
/* Now if you write "/test blah" again in the xchat window /* Now if you write "/test blah" again in the HexChat window
* you'll get a "Unknown command" error message */ * you'll get a "Unknown command" error message */
g_print ("test command received: %s\n", word_eol[1]); g_print ("test command received: %s\n", word_eol[1]);
if (!dbus_g_proxy_call (proxy, "Print", if (!dbus_g_proxy_call (proxy, "Print",
@ -193,7 +193,7 @@ main (int argc, char **argv)
G_CALLBACK (unload_cb), G_CALLBACK (unload_cb),
NULL, NULL); NULL, NULL);
/* Now you can write on the xchat windows: "/test arg1 arg2 ..." */ /* Now you can write on the HexChat windows: "/test arg1 arg2 ..." */
mainloop = g_main_loop_new (NULL, FALSE); mainloop = g_main_loop_new (NULL, FALSE);
g_main_loop_run (mainloop); g_main_loop_run (mainloop);

View File

@ -81,7 +81,7 @@ struct _hexchat_plugin
hexchat_context *(*hexchat_get_context) (hexchat_plugin *ph); hexchat_context *(*hexchat_get_context) (hexchat_plugin *ph);
const char *(*hexchat_get_info) (hexchat_plugin *ph, const char *(*hexchat_get_info) (hexchat_plugin *ph,
const char *id); const char *id);
int (*xchat_get_prefs) (hexchat_plugin *ph, int (*hexchat_get_prefs) (hexchat_plugin *ph,
const char *name, const char *name,
const char **string, const char **string,
int *integer); int *integer);
@ -226,7 +226,7 @@ hexchat_get_info (hexchat_plugin *ph,
const char *id); const char *id);
int int
xchat_get_prefs (hexchat_plugin *ph, hexchat_get_prefs (hexchat_plugin *ph,
const char *name, const char *name,
const char **string, const char **string,
int *integer); int *integer);
@ -345,7 +345,7 @@ hexchat_pluginpref_list (hexchat_plugin *ph,
#define hexchat_find_context ((HEXCHAT_PLUGIN_HANDLE)->hexchat_find_context) #define hexchat_find_context ((HEXCHAT_PLUGIN_HANDLE)->hexchat_find_context)
#define hexchat_get_context ((HEXCHAT_PLUGIN_HANDLE)->hexchat_get_context) #define hexchat_get_context ((HEXCHAT_PLUGIN_HANDLE)->hexchat_get_context)
#define hexchat_get_info ((HEXCHAT_PLUGIN_HANDLE)->hexchat_get_info) #define hexchat_get_info ((HEXCHAT_PLUGIN_HANDLE)->hexchat_get_info)
#define xchat_get_prefs ((HEXCHAT_PLUGIN_HANDLE)->xchat_get_prefs) #define hexchat_get_prefs ((HEXCHAT_PLUGIN_HANDLE)->hexchat_get_prefs)
#define hexchat_list_get ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_get) #define hexchat_list_get ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_get)
#define hexchat_list_free ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_free) #define hexchat_list_free ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_free)
#define hexchat_list_fields ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_fields) #define hexchat_list_fields ((HEXCHAT_PLUGIN_HANDLE)->hexchat_list_fields)

View File

@ -262,7 +262,7 @@ plugin_add (session *sess, char *filename, void *handle, void *init_func,
pl->hexchat_find_context = hexchat_find_context; pl->hexchat_find_context = hexchat_find_context;
pl->hexchat_get_context = hexchat_get_context; pl->hexchat_get_context = hexchat_get_context;
pl->hexchat_get_info = hexchat_get_info; pl->hexchat_get_info = hexchat_get_info;
pl->xchat_get_prefs = xchat_get_prefs; pl->hexchat_get_prefs = hexchat_get_prefs;
pl->hexchat_list_get = hexchat_list_get; pl->hexchat_list_get = hexchat_list_get;
pl->hexchat_list_free = hexchat_list_free; pl->hexchat_list_free = hexchat_list_free;
pl->hexchat_list_fields = hexchat_list_fields; pl->hexchat_list_fields = hexchat_list_fields;
@ -1137,7 +1137,7 @@ hexchat_get_info (hexchat_plugin *ph, const char *id)
} }
int int
xchat_get_prefs (hexchat_plugin *ph, const char *name, const char **string, int *integer) hexchat_get_prefs (hexchat_plugin *ph, const char *name, const char **string, int *integer)
{ {
int i = 0; int i = 0;

View File

@ -52,7 +52,7 @@ struct _hexchat_plugin
hexchat_context *(*hexchat_get_context) (hexchat_plugin *ph); hexchat_context *(*hexchat_get_context) (hexchat_plugin *ph);
const char *(*hexchat_get_info) (hexchat_plugin *ph, const char *(*hexchat_get_info) (hexchat_plugin *ph,
const char *id); const char *id);
int (*xchat_get_prefs) (hexchat_plugin *ph, int (*hexchat_get_prefs) (hexchat_plugin *ph,
const char *name, const char *name,
const char **string, const char **string,
int *integer); int *integer);