Mercurial > pidgin.yaz
annotate plugins/tcl/tcl.c @ 12640:de306144dc8a
[gaim-migrate @ 14976]
Yahoo profiles use links of this form:
<a href="http://gaim.sf.net">gaim.sf.net</a>
The Yahoo prpl strips HTML, manipulates the text, then passes it to the core, which passes to the UI, which calls another UI function which calls ...linkify. This leads to these URLs looking quite odd.
The fix is to have the HTML stripping function deal properly with URLs of the above format. With HTTP being the most common type of URL these days, that's probably a good plan anyway.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Fri, 23 Dec 2005 06:48:27 +0000 |
parents | bb0d7b719af2 |
children | 750968cab201 |
rev | line source |
---|---|
6694 | 1 /** |
2 * @file tcl.c Gaim Tcl plugin bindings | |
3 * | |
4 * gaim | |
5 * | |
6 * Copyright (C) 2003 Ethan Blanton <eblanton@cs.purdue.edu> | |
9943 | 7 * |
6694 | 8 * This program is free software; you can redistribute it and/or modify |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program; if not, write to the Free Software | |
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
21 */ | |
22 | |
23 #include "config.h" | |
24 | |
25 #include <tcl.h> | |
26 | |
27 #ifdef HAVE_TK | |
28 #include <tk.h> | |
29 #endif | |
30 | |
31 #include <stdio.h> | |
32 #include <sys/types.h> | |
33 #include <sys/stat.h> | |
34 #include <unistd.h> | |
35 #include <string.h> | |
36 | |
37 #include "tcl_glib.h" | |
38 #include "tcl_gaim.h" | |
39 | |
40 #include "internal.h" | |
41 #include "connection.h" | |
42 #include "plugin.h" | |
43 #include "signals.h" | |
44 #include "debug.h" | |
45 #include "util.h" | |
9943 | 46 #include "version.h" |
6694 | 47 |
48 struct tcl_plugin_data { | |
49 GaimPlugin *plugin; | |
50 Tcl_Interp *interp; | |
51 }; | |
52 | |
53 static GHashTable *tcl_plugins = NULL; | |
54 | |
55 GaimPlugin *_tcl_plugin; | |
56 | |
7831
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
57 static gboolean tcl_loaded = FALSE; |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
58 |
6694 | 59 GaimPlugin *tcl_interp_get_plugin(Tcl_Interp *interp) |
60 { | |
61 struct tcl_plugin_data *data; | |
62 | |
63 if (tcl_plugins == NULL) | |
64 return NULL; | |
65 | |
66 data = g_hash_table_lookup(tcl_plugins, (gpointer)interp); | |
67 return data != NULL ? data->plugin : NULL; | |
68 } | |
69 | |
70 static int tcl_init_interp(Tcl_Interp *interp) | |
71 { | |
72 char *rcfile; | |
9943 | 73 char init[] = |
6694 | 74 "namespace eval ::gaim {\n" |
75 " namespace export account buddy connection conversation\n" | |
76 " namespace export core debug notify prefs send_im\n" | |
77 " namespace export signal unload\n" | |
78 " namespace eval _callback { }\n" | |
79 "\n" | |
80 " proc conv_send { account who text } {\n" | |
81 " set gc [gaim::account connection $account]\n" | |
82 " set convo [gaim::conversation new $account $who]\n" | |
83 " set myalias [gaim::account alias $account]\n" | |
84 "\n" | |
85 " if {![string length $myalias]} {\n" | |
86 " set myalias [gaim::account username $account]\n" | |
87 " }\n" | |
88 "\n" | |
89 " gaim::send_im $gc $who $text\n" | |
90 " gaim::conversation write $convo send $myalias $text\n" | |
91 " }\n" | |
92 "}\n" | |
93 "\n" | |
94 "proc bgerror { message } {\n" | |
95 " global errorInfo\n" | |
96 " gaim::notify -error \"Tcl Error\" \"Tcl Error: $message\" \"$errorInfo\"\n" | |
97 "}\n"; | |
98 | |
99 if (Tcl_EvalEx(interp, init, -1, TCL_EVAL_GLOBAL) != TCL_OK) { | |
100 return 1; | |
101 } | |
102 | |
103 Tcl_SetVar(interp, "argc", "0", TCL_GLOBAL_ONLY); | |
104 Tcl_SetVar(interp, "argv0", "gaim", TCL_GLOBAL_ONLY); | |
105 Tcl_SetVar(interp, "tcl_interactive", "0", TCL_GLOBAL_ONLY); | |
106 rcfile = g_strdup_printf("%s" G_DIR_SEPARATOR_S "tclrc", gaim_user_dir()); | |
107 Tcl_SetVar(interp, "tcl_rcFileName", rcfile, TCL_GLOBAL_ONLY); | |
108 g_free(rcfile); | |
109 | |
110 Tcl_SetVar(interp, "::gaim::version", VERSION, TCL_GLOBAL_ONLY); | |
111 Tcl_SetVar(interp, "::gaim::user_dir", gaim_user_dir(), TCL_GLOBAL_ONLY); | |
112 #ifdef HAVE_TK | |
113 Tcl_SetVar(interp, "::gaim::tk_available", "1", TCL_GLOBAL_ONLY); | |
114 #else | |
115 Tcl_SetVar(interp, "::gaim::tk_available", "0", TCL_GLOBAL_ONLY); | |
116 #endif /* HAVE_TK */ | |
117 | |
118 Tcl_CreateObjCommand(interp, "::gaim::account", tcl_cmd_account, (ClientData)NULL, NULL); | |
119 Tcl_CreateObjCommand(interp, "::gaim::buddy", tcl_cmd_buddy, (ClientData)NULL, NULL); | |
120 Tcl_CreateObjCommand(interp, "::gaim::connection", tcl_cmd_connection, (ClientData)NULL, NULL); | |
121 Tcl_CreateObjCommand(interp, "::gaim::conversation", tcl_cmd_conversation, (ClientData)NULL, NULL); | |
122 Tcl_CreateObjCommand(interp, "::gaim::core", tcl_cmd_core, (ClientData)NULL, NULL); | |
123 Tcl_CreateObjCommand(interp, "::gaim::debug", tcl_cmd_debug, (ClientData)NULL, NULL); | |
124 Tcl_CreateObjCommand(interp, "::gaim::notify", tcl_cmd_notify, (ClientData)NULL, NULL); | |
125 Tcl_CreateObjCommand(interp, "::gaim::prefs", tcl_cmd_prefs, (ClientData)NULL, NULL); | |
126 Tcl_CreateObjCommand(interp, "::gaim::send_im", tcl_cmd_send_im, (ClientData)NULL, NULL); | |
127 Tcl_CreateObjCommand(interp, "::gaim::signal", tcl_cmd_signal, (ClientData)NULL, NULL); | |
128 Tcl_CreateObjCommand(interp, "::gaim::unload", tcl_cmd_unload, (ClientData)NULL, NULL); | |
129 | |
130 return 0; | |
131 } | |
132 | |
133 static Tcl_Interp *tcl_create_interp() | |
134 { | |
135 Tcl_Interp *interp; | |
136 | |
137 interp = Tcl_CreateInterp(); | |
138 if (Tcl_Init(interp) == TCL_ERROR) { | |
139 Tcl_DeleteInterp(interp); | |
140 return NULL; | |
141 } | |
142 | |
143 if (tcl_init_interp(interp)) { | |
144 Tcl_DeleteInterp(interp); | |
145 return NULL; | |
146 } | |
147 Tcl_StaticPackage(interp, "gaim", tcl_init_interp, NULL); | |
148 | |
149 return interp; | |
150 } | |
151 | |
152 static gboolean tcl_probe_plugin(GaimPlugin *plugin) | |
153 { | |
154 GaimPluginInfo *info; | |
155 Tcl_Interp *interp; | |
156 Tcl_Parse parse; | |
157 Tcl_Obj *result, **listitems; | |
158 struct stat st; | |
159 FILE *fp; | |
160 char *buf, *cur; | |
10344 | 161 const char *next; |
6694 | 162 int len, found = 0, err = 0, nelems; |
163 gboolean status = FALSE; | |
10589
0f7452b1f777
[gaim-migrate @ 11994]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
10454
diff
changeset
|
164 if ((fp = g_fopen(plugin->path, "r")) == NULL) |
6694 | 165 return FALSE; |
166 if (fstat(fileno(fp), &st)) { | |
167 fclose(fp); | |
168 return FALSE; | |
169 } | |
170 len = st.st_size; | |
171 | |
172 buf = g_malloc(len + 1); | |
10344 | 173 |
174 cur = buf; | |
8989 | 175 while (fgets(cur, (int) buf - (buf - cur), fp)) { |
176 cur += strlen(cur); | |
10344 | 177 if (feof(fp)) |
8989 | 178 break; |
179 } | |
180 | |
181 if (ferror(fp)) { | |
182 gaim_debug(GAIM_DEBUG_ERROR, "tcl", "error reading %s (%s)\n", plugin->path, strerror(errno)); | |
6694 | 183 g_free(buf); |
184 fclose(fp); | |
185 return FALSE; | |
186 } | |
8989 | 187 |
6694 | 188 fclose(fp); |
189 | |
190 if ((interp = tcl_create_interp()) == NULL) { | |
191 return FALSE; | |
192 } | |
193 | |
10344 | 194 next = buf; |
6694 | 195 do { |
10344 | 196 if (Tcl_ParseCommand(interp, next, len, 0, &parse) == TCL_ERROR) { |
6694 | 197 gaim_debug(GAIM_DEBUG_ERROR, "tcl", "parse error in %s: %s\n", plugin->path, |
198 Tcl_GetString(Tcl_GetObjResult(interp))); | |
199 err = 1; | |
200 break; | |
201 } | |
202 if (parse.tokenPtr[0].type == TCL_TOKEN_SIMPLE_WORD | |
203 && !strncmp(parse.tokenPtr[0].start, "proc", parse.tokenPtr[0].size)) { | |
204 if (!strncmp(parse.tokenPtr[2].start, "plugin_init", parse.tokenPtr[2].size)) { | |
205 if (Tcl_EvalEx(interp, parse.commandStart, parse.commandSize, TCL_EVAL_GLOBAL) != TCL_OK) { | |
206 Tcl_FreeParse(&parse); | |
207 break; | |
208 } | |
209 found = 1; | |
210 /* We'll continue parsing the file, just in case */ | |
211 } | |
212 } | |
10344 | 213 len -= (parse.commandStart + parse.commandSize) - next; |
214 next = parse.commandStart + parse.commandSize; | |
6694 | 215 Tcl_FreeParse(&parse); |
216 } while (len); | |
217 | |
218 if (found && !err) { | |
219 if (Tcl_EvalEx(interp, "plugin_init", -1, TCL_EVAL_GLOBAL) == TCL_OK) { | |
220 result = Tcl_GetObjResult(interp); | |
221 if (Tcl_ListObjGetElements(interp, result, &nelems, &listitems) == TCL_OK) { | |
8117 | 222 if (nelems == 6) { |
6694 | 223 info = g_new0(GaimPluginInfo, 1); |
8761 | 224 |
9943 | 225 info->magic = GAIM_PLUGIN_MAGIC; |
226 info->major_version = GAIM_MAJOR_VERSION; | |
227 info->minor_version = GAIM_MINOR_VERSION; | |
6694 | 228 info->type = GAIM_PLUGIN_STANDARD; |
229 info->dependencies = g_list_append(info->dependencies, "core-tcl"); | |
8761 | 230 |
6694 | 231 info->name = g_strdup(Tcl_GetString(listitems[0])); |
232 info->version = g_strdup(Tcl_GetString(listitems[1])); | |
8117 | 233 info->summary = g_strdup(Tcl_GetString(listitems[2])); |
9775 | 234 info->description = g_strdup(Tcl_GetString(listitems[3])); |
10454 | 235 info->author = g_strdup(Tcl_GetString(listitems[4])); |
8117 | 236 info->homepage = g_strdup(Tcl_GetString(listitems[5])); |
8761 | 237 |
6694 | 238 plugin->info = info; |
8761 | 239 |
6694 | 240 if (gaim_plugin_register(plugin)) |
241 status = TRUE; | |
242 } | |
243 } | |
244 } | |
245 } | |
246 | |
247 Tcl_DeleteInterp(interp); | |
248 g_free(buf); | |
249 return status; | |
250 } | |
251 | |
252 static gboolean tcl_load_plugin(GaimPlugin *plugin) | |
253 { | |
254 struct tcl_plugin_data *data; | |
255 Tcl_Interp *interp; | |
256 Tcl_Obj *result; | |
257 | |
258 plugin->extra = NULL; | |
259 | |
260 if ((interp = tcl_create_interp()) == NULL) { | |
261 gaim_debug(GAIM_DEBUG_ERROR, "tcl", "Could not initialize Tcl interpreter\n"); | |
262 return FALSE; | |
263 } | |
264 | |
265 Tcl_SourceRCFile(interp); | |
266 | |
267 if (Tcl_EvalFile(interp, plugin->path) != TCL_OK) { | |
268 result = Tcl_GetObjResult(interp); | |
269 gaim_debug(GAIM_DEBUG_ERROR, "tcl", "Error evaluating %s: %s\n", plugin->path, Tcl_GetString(result)); | |
270 Tcl_DeleteInterp(interp); | |
271 return FALSE; | |
272 } | |
273 | |
274 Tcl_Preserve((ClientData)interp); | |
275 | |
276 data = g_new0(struct tcl_plugin_data, 1); | |
277 data->plugin = plugin; | |
278 data->interp = interp; | |
279 plugin->extra = data; | |
280 | |
281 g_hash_table_insert(tcl_plugins, (gpointer)interp, (gpointer)data); | |
282 | |
283 return TRUE; | |
284 } | |
285 | |
286 static gboolean tcl_unload_plugin(GaimPlugin *plugin) | |
287 { | |
288 struct tcl_plugin_data *data; | |
289 | |
290 if (plugin == NULL) | |
291 return TRUE; | |
292 | |
293 data = plugin->extra; | |
294 | |
10281 | 295 g_hash_table_remove(tcl_plugins, (gpointer)(data->interp)); |
6694 | 296 if (data != NULL) { |
297 gaim_signals_disconnect_by_handle(data->interp); | |
298 tcl_signal_cleanup(data->interp); | |
299 Tcl_Release((ClientData)data->interp); | |
300 Tcl_DeleteInterp(data->interp); | |
301 g_free(data); | |
302 } | |
303 | |
304 return TRUE; | |
305 } | |
306 | |
307 static void tcl_destroy_plugin(GaimPlugin *plugin) | |
308 { | |
309 if (plugin->info != NULL) { | |
310 g_free(plugin->info->name); | |
311 g_free(plugin->info->version); | |
312 g_free(plugin->info->description); | |
313 g_free(plugin->info->author); | |
314 g_free(plugin->info->homepage); | |
315 } | |
316 | |
317 return; | |
318 } | |
319 | |
320 static gboolean tcl_load(GaimPlugin *plugin) | |
321 { | |
7831
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
322 if(!tcl_loaded) |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
323 return FALSE; |
6694 | 324 tcl_glib_init(); |
325 tcl_signal_init(); | |
326 tcl_plugins = g_hash_table_new(g_direct_hash, g_direct_equal); | |
327 | |
7828 | 328 #ifdef HAVE_TK |
329 Tcl_StaticPackage(NULL, "Tk", Tk_Init, Tk_SafeInit); | |
330 #endif /* HAVE_TK */ | |
331 | |
6694 | 332 return TRUE; |
333 } | |
334 | |
335 static gboolean tcl_unload(GaimPlugin *plugin) | |
336 { | |
337 g_hash_table_destroy(tcl_plugins); | |
338 tcl_plugins = NULL; | |
339 | |
340 return TRUE; | |
341 } | |
342 | |
343 static GaimPluginLoaderInfo tcl_loader_info = | |
344 { | |
345 NULL, | |
346 tcl_probe_plugin, | |
347 tcl_load_plugin, | |
348 tcl_unload_plugin, | |
349 tcl_destroy_plugin, | |
350 }; | |
351 | |
352 static GaimPluginInfo tcl_info = | |
353 { | |
9943 | 354 GAIM_PLUGIN_MAGIC, |
355 GAIM_MAJOR_VERSION, | |
356 GAIM_MINOR_VERSION, | |
6694 | 357 GAIM_PLUGIN_LOADER, |
358 NULL, | |
359 0, | |
360 NULL, | |
361 GAIM_PRIORITY_DEFAULT, | |
362 "core-tcl", | |
363 N_("Tcl Plugin Loader"), | |
364 VERSION, | |
365 N_("Provides support for loading Tcl plugins"), | |
366 N_("Provides support for loading Tcl plugins"), | |
367 "Ethan Blanton <eblanton@cs.purdue.edu>", | |
368 GAIM_WEBSITE, | |
369 tcl_load, | |
370 tcl_unload, | |
371 NULL, | |
372 NULL, | |
8993 | 373 &tcl_loader_info, |
374 NULL, | |
375 NULL | |
6694 | 376 }; |
377 | |
7831
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
378 #ifdef _WIN32 |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
379 extern Tcl_Interp* (CALLBACK* wtcl_CreateInterp)(); |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
380 extern void (CALLBACK* wtk_Init)(Tcl_Interp*); |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
381 #undef Tcl_CreateInterp |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
382 #define Tcl_CreateInterp wtcl_CreateInterp |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
383 #undef Tk_Init |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
384 #define Tk_Init wtk_Init |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
385 #endif /* _WIN32 */ |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
386 |
6694 | 387 static void tcl_init_plugin(GaimPlugin *plugin) |
388 { | |
7831
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
389 #ifdef USE_TCL_STUBS |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
390 Tcl_Interp *interp=NULL; |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
391 #endif |
6694 | 392 _tcl_plugin = plugin; |
393 | |
7831
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
394 #ifdef USE_TCL_STUBS |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
395 if(!(interp=Tcl_CreateInterp())) |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
396 return; |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
397 |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
398 if(!Tcl_InitStubs(interp, TCL_VERSION, 0)) { |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
399 gaim_debug(GAIM_DEBUG_ERROR, "tcl", "Tcl_InitStubs: %s\n", interp->result); |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
400 return; |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
401 } |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
402 #endif |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
403 |
6694 | 404 Tcl_FindExecutable("gaim"); |
405 | |
7831
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
406 #if defined(USE_TK_STUBS) && defined(HAVE_TK) |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
407 Tk_Init(interp); |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
408 |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
409 if(!Tk_InitStubs(interp, TK_VERSION, 0)) { |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
410 gaim_debug(GAIM_DEBUG_ERROR, "tcl", "Error Tk_InitStubs: %s\n", interp->result); |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
411 Tcl_DeleteInterp(interp); |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
412 return; |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
413 } |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
414 #endif |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
415 tcl_loaded = TRUE; |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
416 #ifdef USE_TCL_STUBS |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
417 Tcl_DeleteInterp(interp); |
409f7f167c98
[gaim-migrate @ 8483]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
7828
diff
changeset
|
418 #endif |
6694 | 419 tcl_loader_info.exts = g_list_append(tcl_loader_info.exts, "tcl"); |
420 } | |
421 | |
6735 | 422 GAIM_INIT_PLUGIN(tcl, tcl_init_plugin, tcl_info) |