Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruno Coudoin <bcoudoin@src.gnome.org>2006-10-17 23:31:12 (GMT)
committer Bruno Coudoin <bcoudoin@src.gnome.org>2006-10-17 23:31:12 (GMT)
commit6d3e0ee9b806b32030367acb7253550b0c9be1c3 (patch)
tree402fddbb80ac4c9846d5d27a8c9259f8a68f3065
parent6117d444e9e9a6cfbbc53d357985802b191bd043 (diff)
removed an extra call to python_gcompris_module_init();
* src/boards/python.c: removed an extra call to python_gcompris_module_init();
-rw-r--r--ChangeLog2
-rw-r--r--src/boards/python.c118
2 files changed, 57 insertions, 63 deletions
diff --git a/ChangeLog b/ChangeLog
index e5c2819..58f67bd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,8 @@
* Makefile.mingw.in:
* configure.in:
* boards/colors.xml.in: fixed goal, it has a newline that break translations.
+ * src/boards/python.c: removed an extra call to python_gcompris_module_init();
+
2006-10-17 Bruno coudoin <bruno.coudoin@free.fr>
diff --git a/src/boards/python.c b/src/boards/python.c
index 74c1683..9bb8173 100644
--- a/src/boards/python.c
+++ b/src/boards/python.c
@@ -154,13 +154,12 @@ pythonboard_init (GcomprisBoard *agcomprisBoard){
#else
execstr = g_strdup_printf("import sys; sys.path.append('%s')",properties->package_python_plugin_dir );
#endif
+
+ g_warning("Executing %s\n", execstr);
if(PyRun_SimpleString(execstr)!=0){
pythonboard_is_ready = FALSE;
g_warning("! Python disabled: Cannot add plugins dir into search path\n");
} else {
- /* Load the gcompris modules */
- python_gcompris_module_init();
-
/* Try to import pygtk modules */
g_free(execstr);
execstr = g_strdup("import gtk; import gtk.gdk");
@@ -168,78 +167,71 @@ pythonboard_init (GcomprisBoard *agcomprisBoard){
pythonboard_is_ready = FALSE;
g_warning("! Python disabled: Cannot import pygtk modules\n");
} else {
- /* Try to import gnomecanvas modules */
+ /* Try to import gcompris modules */
+
+ /* Load the gcompris modules */
+ python_gcompris_module_init();
+
g_free(execstr);
- execstr = g_strdup("import gnomecanvas");
+ execstr = g_strdup("import gcompris; import gcompris.bonus; "
+ "import gcompris.score; import gcompris.sound;"
+ "import gcompris.skin; import gcompris.timer;"
+ "import gcompris.utils; import gcompris.anim");
if(PyRun_SimpleString(execstr)!=0){
pythonboard_is_ready = FALSE;
- g_warning("! Python disabled: Cannot import gnomecanvas modules\n");
+ g_warning("! Python disabled: Cannot import gcompris modules\n");
} else {
- /* Try to import gcompris modules */
- g_free(execstr);
- execstr = g_strdup("import gcompris; import gcompris.bonus; "
- "import gcompris.score; import gcompris.sound;"
- "import gcompris.skin; import gcompris.timer;"
- "import gcompris.utils; import gcompris.anim");
- if(PyRun_SimpleString(execstr)!=0){
- pythonboard_is_ready = FALSE;
- g_warning("! Python disabled: Cannot import gcompris modules\n");
- } else {
- GList *python_boards;
- GList *list;
-
- /* Load the gcompris modules */
- python_gcompris_module_init();
-
- /* Get the list of python boards */
- python_boards = get_pythonboards_list();
-
- /* Search in the list each one with a config entry */
- for(list = python_boards; list != NULL; list = list->next) {
- GcomprisBoard *board = (GcomprisBoard *) list->data;
-
- /* Python is now initialized we create some usefull variables */
- board_file_name = strchr(board->type, ':')+1;
- boardclass = g_strdup_printf("Gcompris_%s", board_file_name);
-
- /* Test if board come with -L option */
-
- g_warning("board_dir: %s package_data_dir %s",
- board->board_dir,
- properties->package_python_plugin_dir);
-
- if (strcmp(board->board_dir, properties->package_python_plugin_dir)!=0){
- boarddir = g_strdup_printf("sys.path.append('%s/')", board->board_dir);
-
- PyRun_SimpleString(boarddir);
- g_free(boarddir);
- }
+ GList *python_boards;
+ GList *list;
- /* Insert the board module into the python's interpreter */
- python_board_module = PyImport_ImportModuleEx(board_file_name,
- globals,
- globals,
- NULL);
+ /* Get the list of python boards */
+ python_boards = get_pythonboards_list();
- if(python_board_module!=NULL){
- /* Get the module dictionnary */
- module_dict = PyModule_GetDict(python_board_module);
+ /* Search in the list each one with a config entry */
+ for(list = python_boards; list != NULL; list = list->next) {
+ GcomprisBoard *board = (GcomprisBoard *) list->data;
- /* Get the python board class */
- py_boardclass = PyDict_GetItemString(module_dict, boardclass);
+ /* Python is now initialized we create some usefull variables */
+ board_file_name = strchr(board->type, ':')+1;
+ boardclass = g_strdup_printf("Gcompris_%s", board_file_name);
- if (PyObject_HasAttrString( py_boardclass, "config_start")) {
- config_boards = g_list_append(config_boards, board);
- g_warning("The board '%s' has a configuration entry",
- board_file_name);
- }
- }
+ /* Test if board come with -L option */
+
+ g_warning("board_dir: %s package_data_dir %s",
+ board->board_dir,
+ properties->package_python_plugin_dir);
+
+ if (strcmp(board->board_dir, properties->package_python_plugin_dir)!=0){
+ boarddir = g_strdup_printf("sys.path.append('%s/')", board->board_dir);
- g_free(boardclass);
+ PyRun_SimpleString(boarddir);
+ g_free(boarddir);
}
- g_list_free(python_boards);
+ /* Insert the board module into the python's interpreter */
+ python_board_module = PyImport_ImportModuleEx(board_file_name,
+ globals,
+ globals,
+ NULL);
+
+ if(python_board_module!=NULL){
+ /* Get the module dictionnary */
+ module_dict = PyModule_GetDict(python_board_module);
+
+ /* Get the python board class */
+ py_boardclass = PyDict_GetItemString(module_dict, boardclass);
+
+ if (PyObject_HasAttrString( py_boardclass, "config_start")) {
+ config_boards = g_list_append(config_boards, board);
+ g_warning("The board '%s' has a configuration entry",
+ board_file_name);
+ }
+ }
+
+ g_free(boardclass);
}
+
+ g_list_free(python_boards);
}
}
}