You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
(58) |
May
(28) |
Jun
(308) |
Jul
(11) |
Aug
(1) |
Sep
|
Oct
(3) |
Nov
(4) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(4) |
Feb
(8) |
Mar
(3) |
Apr
(3) |
May
(8) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(1) |
2009 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ik...@us...> - 2007-06-06 03:01:53
|
Revision: 1287 http://tomoe.svn.sourceforge.net/tomoe/?rev=1287&view=rev Author: ikezoe Date: 2007-06-05 20:01:55 -0700 (Tue, 05 Jun 2007) Log Message: ----------- add TOMOE_LDFLAGS. Modified Paths: -------------- tomoe/trunk/bindings/python/Makefile.am Modified: tomoe/trunk/bindings/python/Makefile.am =================================================================== --- tomoe/trunk/bindings/python/Makefile.am 2007-06-06 03:01:38 UTC (rev 1286) +++ tomoe/trunk/bindings/python/Makefile.am 2007-06-06 03:01:55 UTC (rev 1287) @@ -8,12 +8,13 @@ nodist_tomoe_la_SOURCES = \ tomoe.c -tomoe_la_SOURCES = \ +tomoe_la_SOURCES = \ tomoe-module.c -tomoe_la_LDFLAGS = \ - -module \ - -avoid-version \ +tomoe_la_LDFLAGS = \ + -module \ + -avoid-version \ + $(TOMOE_LDFLAGS) \ $(PYTHON_LDFLAGS) tomoe_la_LIBADD = \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-06 03:01:36
|
Revision: 1286 http://tomoe.svn.sourceforge.net/tomoe/?rev=1286&view=rev Author: ikezoe Date: 2007-06-05 20:01:38 -0700 (Tue, 05 Jun 2007) Log Message: ----------- * bindings/python/tomoe.defs: tomoe_config_new() and tomoe_context_load_config() does not require arguments. Modified Paths: -------------- tomoe/trunk/ChangeLog tomoe/trunk/bindings/python/tomoe.defs Modified: tomoe/trunk/ChangeLog =================================================================== --- tomoe/trunk/ChangeLog 2007-06-06 02:59:36 UTC (rev 1285) +++ tomoe/trunk/ChangeLog 2007-06-06 03:01:38 UTC (rev 1286) @@ -2,6 +2,8 @@ * lib/tomoe-config.c: Invoke tomoe_config_load() in constructor since pygtk-codegen-2.0 does not wrap XX_new() function. + * bindings/python/tomoe.defs: tomoe_config_new() and + tomoe_context_load_config() does not require arguments. 2007-06-06 Kouhei Sutou <ko...@co...> Modified: tomoe/trunk/bindings/python/tomoe.defs =================================================================== --- tomoe/trunk/bindings/python/tomoe.defs 2007-06-06 02:59:36 UTC (rev 1285) +++ tomoe/trunk/bindings/python/tomoe.defs 2007-06-06 03:01:38 UTC (rev 1286) @@ -309,7 +309,7 @@ (is-constructor-of "TomoeConfig") (return-type "TomoeConfig*") (properties - '("filename" (argname "config_file")) + '("filename" (argname "config_file") (optional)) ) ) @@ -354,7 +354,7 @@ (c-name "tomoe_context_load_config") (return-type "none") (parameters - '("const-gchar*" "config_file") + '("const-gchar*" "config_file" (null-ok) (default "NULL")) ) ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-06 02:59:34
|
Revision: 1285 http://tomoe.svn.sourceforge.net/tomoe/?rev=1285&view=rev Author: ikezoe Date: 2007-06-05 19:59:36 -0700 (Tue, 05 Jun 2007) Log Message: ----------- append LIBADD to all modules. Modified Paths: -------------- tomoe/trunk/module/dict/Makefile.am Modified: tomoe/trunk/module/dict/Makefile.am =================================================================== --- tomoe/trunk/module/dict/Makefile.am 2007-06-06 02:59:01 UTC (rev 1284) +++ tomoe/trunk/module/dict/Makefile.am 2007-06-06 02:59:36 UTC (rev 1285) @@ -32,7 +32,8 @@ $(MYSQL_CFLAGS) \ $(RUBY_CFLAGS) -LIBADD = $(TOMOE_LIBS) +LIBADD = $(TOMOE_LIBS) \ + $(top_builddir)/lib/libtomoe.la LDFLAGS = \ -rpath $(dict_moduledir) -avoid-version -module \ -export-dynamic $(no_undefined) $(LIBTOOL_EXPORT_OPTIONS) @@ -45,13 +46,14 @@ xml_la_CPPFLAGS = -DG_LOG_DOMAIN=\"Tomoe/Dict:XML\" $(AM_CPPFLAGS) xml_la_SOURCES = tomoe-dict-xml.c $(ptr_array_based_dict_sources) +xml_la_LIBADD = $(LIBADD) if USE_EST dict_module_LTLIBRARIES += est.la est_la_CPPFLAGS = -DG_LOG_DOMAIN=\"Tomoe/Dict:Est\" $(AM_CPPFLAGS) est_la_SOURCES = tomoe-dict-est.c -est_la_LIBADD = $(EST_LIBS) +est_la_LIBADD = $(EST_LIBS) $(LIBADD) endif if USE_DICT_RUBY @@ -59,7 +61,7 @@ ruby_la_CPPFLAGS = -DG_LOG_DOMAIN=\"Tomoe/Dict:Ruby\" $(AM_CPPFLAGS) ruby_la_SOURCES = tomoe-dict-ruby.c -ruby_la_LIBADD = $(RUBY_LIBS) +ruby_la_LIBADD = $(RUBY_LIBS) $(LIBADD) endif if USE_UNIHAN @@ -81,6 +83,7 @@ tomoe-unihan.h \ $(unihan_built_sources) \ $(ptr_array_based_dict_sources) +unihan_la_LIBADD = $(LIBADD) unihan-compiler.rb: xml.la @@ -107,7 +110,7 @@ svn_la_CPPFLAGS = -DG_LOG_DOMAIN=\"Tomoe/Dict:Svn\" $(AM_CPPFLAGS) svn_la_SOURCES = tomoe-dict-svn.c -svn_la_LIBADD = $(SVN_LIBS) +svn_la_LIBADD = $(SVN_LIBS) $(LIBADD) endif if USE_MYSQL @@ -115,5 +118,5 @@ mysql_la_CPPFLAGS = -DG_LOG_DOMAIN=\"Tomoe/Dict:MySQL\" $(AM_CPPFLAGS) mysql_la_SOURCES = tomoe-dict-mysql.c -mysql_la_LIBADD = $(MYSQL_LIBS) +mysql_la_LIBADD = $(MYSQL_LIBS) $(LIBADD) endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-06 02:59:12
|
Revision: 1284 http://tomoe.svn.sourceforge.net/tomoe/?rev=1284&view=rev Author: ikezoe Date: 2007-06-05 19:59:01 -0700 (Tue, 05 Jun 2007) Log Message: ----------- * lib/tomoe-config.c: Invoke tomoe_config_load() in constructor since pygtk-codegen-2.0 does not wrap XX_new() function. Modified Paths: -------------- tomoe/trunk/ChangeLog tomoe/trunk/lib/tomoe-config.c Modified: tomoe/trunk/ChangeLog =================================================================== --- tomoe/trunk/ChangeLog 2007-06-06 02:53:39 UTC (rev 1283) +++ tomoe/trunk/ChangeLog 2007-06-06 02:59:01 UTC (rev 1284) @@ -1,3 +1,8 @@ +2007-06-06 Hiroyuki Ikezoe <poi...@ik...> + + * lib/tomoe-config.c: Invoke tomoe_config_load() in constructor since + pygtk-codegen-2.0 does not wrap XX_new() function. + 2007-06-06 Kouhei Sutou <ko...@co...> * test/run-spec.rb: Modified: tomoe/trunk/lib/tomoe-config.c =================================================================== --- tomoe/trunk/lib/tomoe-config.c 2007-06-06 02:53:39 UTC (rev 1283) +++ tomoe/trunk/lib/tomoe-config.c 2007-06-06 02:59:01 UTC (rev 1284) @@ -61,6 +61,9 @@ static const gchar *system_config_file = CONFDIR "/config"; static void tomoe_config_dispose (GObject *object); +static GObject *tomoe_config_constructor (GType type, + guint n_props, + GObjectConstructParam *props); static void tomoe_config_set_property (GObject *object, guint prop_id, const GValue *value, @@ -103,6 +106,7 @@ gobject_class = G_OBJECT_CLASS (klass); gobject_class->dispose = tomoe_config_dispose; + gobject_class->constructor = tomoe_config_constructor; gobject_class->set_property = tomoe_config_set_property; gobject_class->get_property = tomoe_config_get_property; @@ -117,6 +121,21 @@ g_type_class_add_private (gobject_class, sizeof (TomoeConfigPrivate)); } +static GObject * +tomoe_config_constructor (GType type, guint n_props, + GObjectConstructParam *props) +{ + + GObject *object; + GObjectClass *klass = G_OBJECT_CLASS (tomoe_config_parent_class); + + object = klass->constructor (type, n_props, props); + + tomoe_config_load (TOMOE_CONFIG (object)); + + return object; +} + static void tomoe_config_init (TomoeConfig *config) { @@ -137,8 +156,6 @@ "filename", config_file, NULL); - tomoe_config_load (config); - return config; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kt...@us...> - 2007-06-06 02:53:39
|
Revision: 1283 http://tomoe.svn.sourceforge.net/tomoe/?rev=1283&view=rev Author: ktou Date: 2007-06-05 19:53:39 -0700 (Tue, 05 Jun 2007) Log Message: ----------- * reverted the previous change because ikezoe is veeeeeery angry!!! Modified Paths: -------------- tomoe/trunk/data/config Modified: tomoe/trunk/data/config =================================================================== --- tomoe/trunk/data/config 2007-06-06 01:32:46 UTC (rev 1282) +++ tomoe/trunk/data/config 2007-06-06 02:53:39 UTC (rev 1283) @@ -1,3 +1,2 @@ - [config] -use-system-dictionaries=true +use-system-dictionaries = true This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-06 01:32:44
|
Revision: 1282 http://tomoe.svn.sourceforge.net/tomoe/?rev=1282&view=rev Author: ikezoe Date: 2007-06-05 18:32:46 -0700 (Tue, 05 Jun 2007) Log Message: ----------- minor fix. Modified Paths: -------------- tomoe-gtk/trunk/src/tomoe-details.c Modified: tomoe-gtk/trunk/src/tomoe-details.c =================================================================== --- tomoe-gtk/trunk/src/tomoe-details.c 2007-06-06 01:05:20 UTC (rev 1281) +++ tomoe-gtk/trunk/src/tomoe-details.c 2007-06-06 01:32:46 UTC (rev 1282) @@ -141,11 +141,12 @@ GtkTreeIter iter; TomoeDetails *window; GtkCellRenderer *renderer; + TomoeDetailsPrivate *priv; object = klass->constructor (type, n_props, props); window = TOMOE_DETAILS (object); - TomoeDetailsPrivate *priv = TOMOE_DETAILS_GET_PRIVATE (object); + priv = TOMOE_DETAILS_GET_PRIVATE (object); gtk_window_set_title (GTK_WINDOW (window), _("Character Details")); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kt...@us...> - 2007-06-06 01:05:23
|
Revision: 1281 http://tomoe.svn.sourceforge.net/tomoe/?rev=1281&view=rev Author: ktou Date: 2007-06-05 18:05:20 -0700 (Tue, 05 Jun 2007) Log Message: ----------- * test/run-spec.rb: - ext -> bindings. - require_gem -> require. Modified Paths: -------------- tomoe/trunk/ChangeLog tomoe/trunk/data/config tomoe/trunk/test/run-spec.rb Modified: tomoe/trunk/ChangeLog =================================================================== --- tomoe/trunk/ChangeLog 2007-06-06 00:45:15 UTC (rev 1280) +++ tomoe/trunk/ChangeLog 2007-06-06 01:05:20 UTC (rev 1281) @@ -1,5 +1,9 @@ 2007-06-06 Kouhei Sutou <ko...@co...> + * test/run-spec.rb: + - ext -> bindings. + - require_gem -> require. + * ext/python/Makefile.am: added dependencies on *.override. 2007-06-06 Hiroyuki Ikezoe <poi...@ik...> Modified: tomoe/trunk/data/config =================================================================== --- tomoe/trunk/data/config 2007-06-06 00:45:15 UTC (rev 1280) +++ tomoe/trunk/data/config 2007-06-06 01:05:20 UTC (rev 1281) @@ -1,2 +1,3 @@ + [config] -use-system-dictionaries = true +use-system-dictionaries=true Modified: tomoe/trunk/test/run-spec.rb =================================================================== --- tomoe/trunk/test/run-spec.rb 2007-06-06 00:45:15 UTC (rev 1280) +++ tomoe/trunk/test/run-spec.rb 2007-06-06 01:05:20 UTC (rev 1281) @@ -2,13 +2,12 @@ require 'rubygems' -require_gem 'rspec' require 'spec' test_dir = File.expand_path(File.dirname(__FILE__)) top_dir = File.expand_path(File.join(test_dir, "..")) -$LOAD_PATH.unshift(File.join(top_dir, "ext", "ruby", ".libs")) -$LOAD_PATH.unshift(File.join(top_dir, "ext", "ruby")) +$LOAD_PATH.unshift(File.join(top_dir, "bindings", "ruby", ".libs")) +$LOAD_PATH.unshift(File.join(top_dir, "bindings", "ruby")) $LOAD_PATH.unshift(File.join(test_dir)) require 'tomoe-spec-utils' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-06 00:59:48
|
Revision: 1280 http://tomoe.svn.sourceforge.net/tomoe/?rev=1280&view=rev Author: ikezoe Date: 2007-06-05 17:45:15 -0700 (Tue, 05 Jun 2007) Log Message: ----------- add some files. Modified Paths: -------------- tomoe/trunk/po/POTFILES.in Modified: tomoe/trunk/po/POTFILES.in =================================================================== --- tomoe/trunk/po/POTFILES.in 2007-06-06 00:09:25 UTC (rev 1279) +++ tomoe/trunk/po/POTFILES.in 2007-06-06 00:45:15 UTC (rev 1280) @@ -1,4 +1,6 @@ lib/glib-utils.c +lib/glib-compat-file-utilities.c +lib/glib-compat-key-file.c lib/tomoe-candidate.c lib/tomoe-char.c lib/tomoe-config.c @@ -13,3 +15,5 @@ lib/tomoe-writing.c lib/tomoe-xml-parser.c lib/tomoe.c +module/recognizer/tomoe-recognizer-simple.c + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-06 00:09:23
|
Revision: 1279 http://tomoe.svn.sourceforge.net/tomoe/?rev=1279&view=rev Author: ikezoe Date: 2007-06-05 17:09:25 -0700 (Tue, 05 Jun 2007) Log Message: ----------- ext -> bindings: Renamed. Modified Paths: -------------- tomoe/trunk/ChangeLog tomoe/trunk/Makefile.am tomoe/trunk/configure.ac Added Paths: ----------- tomoe/trunk/bindings/ tomoe/trunk/bindings/Makefile.am tomoe/trunk/bindings/python/ tomoe/trunk/bindings/ruby/ Removed Paths: ------------- tomoe/trunk/bindings/Makefile.am tomoe/trunk/bindings/python/ tomoe/trunk/bindings/ruby/ tomoe/trunk/ext/ Modified: tomoe/trunk/ChangeLog =================================================================== --- tomoe/trunk/ChangeLog 2007-06-05 23:43:46 UTC (rev 1278) +++ tomoe/trunk/ChangeLog 2007-06-06 00:09:25 UTC (rev 1279) @@ -12,6 +12,7 @@ * ext/python/tomoe-module.c: added. * ext/python/tomoe-context.override: Ignore tomoe_context_multi_search. + * ext -> bindings. 2007-06-05 Hiroyuki Ikezoe <poi...@ik...> Modified: tomoe/trunk/Makefile.am =================================================================== --- tomoe/trunk/Makefile.am 2007-06-05 23:43:46 UTC (rev 1278) +++ tomoe/trunk/Makefile.am 2007-06-06 00:09:25 UTC (rev 1279) @@ -20,7 +20,7 @@ ACLOCAL_AMFLAGS = -I macros -SUBDIRS = po lib ext module data db test benchmark doc spec +SUBDIRS = po lib bindings module data db test benchmark doc spec EXTRA_DIST = \ autogen.sh \ Copied: tomoe/trunk/bindings (from rev 1267, tomoe/trunk/ext) Deleted: tomoe/trunk/bindings/Makefile.am =================================================================== --- tomoe/trunk/ext/Makefile.am 2007-06-05 11:51:28 UTC (rev 1267) +++ tomoe/trunk/bindings/Makefile.am 2007-06-06 00:09:25 UTC (rev 1279) @@ -1,11 +0,0 @@ -# -*- Mode: Makefile; tab-width: 8; indent-tabs-mode: t; -*- - -SUBDIRS = - -if WITH_RUBY -SUBDIRS += ruby -endif - -if WITH_PYTHON -SUBDIRS += python -endif Copied: tomoe/trunk/bindings/Makefile.am (from rev 1278, tomoe/trunk/ext/Makefile.am) =================================================================== --- tomoe/trunk/bindings/Makefile.am (rev 0) +++ tomoe/trunk/bindings/Makefile.am 2007-06-06 00:09:25 UTC (rev 1279) @@ -0,0 +1,11 @@ +# -*- Mode: Makefile; tab-width: 8; indent-tabs-mode: t; -*- + +SUBDIRS = + +if WITH_RUBY +SUBDIRS += ruby +endif + +if WITH_PYTHON +SUBDIRS += python +endif Copied: tomoe/trunk/bindings/python (from rev 1278, tomoe/trunk/ext/python) Copied: tomoe/trunk/bindings/ruby (from rev 1278, tomoe/trunk/ext/ruby) Modified: tomoe/trunk/configure.ac =================================================================== --- tomoe/trunk/configure.ac 2007-06-05 23:43:46 UTC (rev 1278) +++ tomoe/trunk/configure.ac 2007-06-06 00:09:25 UTC (rev 1279) @@ -283,9 +283,9 @@ module/dict/Makefile module/recognizer/Makefile data/Makefile -ext/Makefile -ext/ruby/Makefile -ext/python/Makefile +bindings/Makefile +bindings/ruby/Makefile +bindings/python/Makefile db/Makefile db/lib/Makefile db/migrate/Makefile This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <kt...@us...> - 2007-06-05 23:43:45
|
Revision: 1278 http://tomoe.svn.sourceforge.net/tomoe/?rev=1278&view=rev Author: ktou Date: 2007-06-05 16:43:46 -0700 (Tue, 05 Jun 2007) Log Message: ----------- * ext/python/Makefile.am: added dependencies on *.override. Modified Paths: -------------- tomoe/trunk/ChangeLog tomoe/trunk/ext/python/Makefile.am Modified: tomoe/trunk/ChangeLog =================================================================== --- tomoe/trunk/ChangeLog 2007-06-05 23:43:35 UTC (rev 1277) +++ tomoe/trunk/ChangeLog 2007-06-05 23:43:46 UTC (rev 1278) @@ -1,3 +1,7 @@ +2007-06-06 Kouhei Sutou <ko...@co...> + + * ext/python/Makefile.am: added dependencies on *.override. + 2007-06-06 Hiroyuki Ikezoe <poi...@ik...> * ext/python/tomoe-dict.override, Modified: tomoe/trunk/ext/python/Makefile.am =================================================================== --- tomoe/trunk/ext/python/Makefile.am 2007-06-05 23:43:35 UTC (rev 1277) +++ tomoe/trunk/ext/python/Makefile.am 2007-06-05 23:43:46 UTC (rev 1278) @@ -21,10 +21,20 @@ $(PYTHON_LIBS) \ $(top_builddir)/lib/libtomoe.la -tomoe.c: tomoe.defs +OVERRIDES = \ + tomoe.override \ + tomoe-char.override \ + tomoe-context.override \ + tomoe-dict.override \ + tomoe-query.override \ + tomoe-recognizer.override \ + tomoe-shelf.override \ + tomoe-writing.override +tomoe.c: tomoe.defs $(OVERRIDES) + CLEANFILES = tomoe.c -EXTRA_DIST = tomoe.override tomoe.defs +EXTRA_DIST = tomoe.defs $(OVERRIDES) .defs.c: (cd $(srcdir) \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-05 23:43:33
|
Revision: 1277 http://tomoe.svn.sourceforge.net/tomoe/?rev=1277&view=rev Author: ikezoe Date: 2007-06-05 16:43:35 -0700 (Tue, 05 Jun 2007) Log Message: ----------- remove underscore. Modified Paths: -------------- tomoe/trunk/ext/python/tomoe-module.c Modified: tomoe/trunk/ext/python/tomoe-module.c =================================================================== --- tomoe/trunk/ext/python/tomoe-module.c 2007-06-05 23:35:42 UTC (rev 1276) +++ tomoe/trunk/ext/python/tomoe-module.c 2007-06-05 23:43:35 UTC (rev 1277) @@ -5,13 +5,13 @@ extern PyMethodDef pytomoe_functions[]; DL_EXPORT(void) -init_tomoe(void) +inittomoe(void) { PyObject *m, *d; init_pygobject (); - m = Py_InitModule ("_tomoe", pytomoe_functions); + m = Py_InitModule ("tomoe", pytomoe_functions); d = PyModule_GetDict (m); pytomoe_register_classes (d); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-05 23:35:44
|
Revision: 1276 http://tomoe.svn.sourceforge.net/tomoe/?rev=1276&view=rev Author: ikezoe Date: 2007-06-05 16:35:42 -0700 (Tue, 05 Jun 2007) Log Message: ----------- * ext/python/tomoe-context.override: Ignore tomoe_context_multi_search. Modified Paths: -------------- tomoe/trunk/ChangeLog tomoe/trunk/ext/python/tomoe-context.override Modified: tomoe/trunk/ChangeLog =================================================================== --- tomoe/trunk/ChangeLog 2007-06-05 23:33:36 UTC (rev 1275) +++ tomoe/trunk/ChangeLog 2007-06-05 23:35:42 UTC (rev 1276) @@ -6,6 +6,8 @@ * ext/python/tomoe-writing.override, ext/python/tomoe-query.override, ext/python/tomo-char.override: Fix double free. * ext/python/tomoe-module.c: added. + * ext/python/tomoe-context.override: Ignore + tomoe_context_multi_search. 2007-06-05 Hiroyuki Ikezoe <poi...@ik...> Modified: tomoe/trunk/ext/python/tomoe-context.override =================================================================== --- tomoe/trunk/ext/python/tomoe-context.override 2007-06-05 23:33:36 UTC (rev 1275) +++ tomoe/trunk/ext/python/tomoe-context.override 2007-06-05 23:35:42 UTC (rev 1276) @@ -3,6 +3,10 @@ #define NO_IMPORT_PYGOBJECT #include "tomoe-python-utils.h" %% +ignore + tomoe_context_multi_search +%% +%% override tomoe_context_search kwargs static PyObject * _wrap_tomoe_context_search(PyGObject *self, TomoeQuery *query) @@ -19,19 +23,3 @@ return py_cands; } %% -override tomoe_context_multi_search kwargs -static PyObject * -_wrap_tomoe_context_multi_search(PyGObject *self, GList *queries) -{ - GList *candidates; - PyObject *py_cands; - - candidates = tomoe_context_multi_search (TOMOE_CONTEXT(self->obj), queries); - - CONVERT_LIST (py_cands, candidates); - - g_list_free (candidates); - - return py_cands; -} -%% This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-05 23:33:36
|
Revision: 1275 http://tomoe.svn.sourceforge.net/tomoe/?rev=1275&view=rev Author: ikezoe Date: 2007-06-05 16:33:36 -0700 (Tue, 05 Jun 2007) Log Message: ----------- fix typo. Modified Paths: -------------- tomoe/trunk/ext/python/tomoe-module.c Modified: tomoe/trunk/ext/python/tomoe-module.c =================================================================== --- tomoe/trunk/ext/python/tomoe-module.c 2007-06-05 23:31:32 UTC (rev 1274) +++ tomoe/trunk/ext/python/tomoe-module.c 2007-06-05 23:33:36 UTC (rev 1275) @@ -16,7 +16,7 @@ pytomoe_register_classes (d); - if (PyErr_Occured ()) + if (PyErr_Occurred ()) { Py_FatalError ("can't initialize module globalkeys"); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-05 23:31:37
|
Revision: 1274 http://tomoe.svn.sourceforge.net/tomoe/?rev=1274&view=rev Author: ikezoe Date: 2007-06-05 16:31:32 -0700 (Tue, 05 Jun 2007) Log Message: ----------- * ext/python/tomoe-module.c: added. Modified Paths: -------------- tomoe/trunk/ChangeLog tomoe/trunk/ext/python/Makefile.am Added Paths: ----------- tomoe/trunk/ext/python/tomoe-module.c Modified: tomoe/trunk/ChangeLog =================================================================== --- tomoe/trunk/ChangeLog 2007-06-05 23:18:01 UTC (rev 1273) +++ tomoe/trunk/ChangeLog 2007-06-05 23:31:32 UTC (rev 1274) @@ -5,6 +5,7 @@ tomoe_XX_get_registered_types and tomoe_XX_get_log_domains. * ext/python/tomoe-writing.override, ext/python/tomoe-query.override, ext/python/tomo-char.override: Fix double free. + * ext/python/tomoe-module.c: added. 2007-06-05 Hiroyuki Ikezoe <poi...@ik...> Modified: tomoe/trunk/ext/python/Makefile.am =================================================================== --- tomoe/trunk/ext/python/Makefile.am 2007-06-05 23:18:01 UTC (rev 1273) +++ tomoe/trunk/ext/python/Makefile.am 2007-06-05 23:31:32 UTC (rev 1274) @@ -8,6 +8,9 @@ nodist_tomoe_la_SOURCES = \ tomoe.c +tomoe_la_SOURCES = \ + tomoe-module.c + tomoe_la_LDFLAGS = \ -module \ -avoid-version \ Added: tomoe/trunk/ext/python/tomoe-module.c =================================================================== --- tomoe/trunk/ext/python/tomoe-module.c (rev 0) +++ tomoe/trunk/ext/python/tomoe-module.c 2007-06-05 23:31:32 UTC (rev 1274) @@ -0,0 +1,27 @@ +#include <pygobject.h> + +void pytomoe_register_classes (PyObject *d); + +extern PyMethodDef pytomoe_functions[]; + +DL_EXPORT(void) +init_tomoe(void) +{ + PyObject *m, *d; + + init_pygobject (); + + m = Py_InitModule ("_tomoe", pytomoe_functions); + d = PyModule_GetDict (m); + + pytomoe_register_classes (d); + + if (PyErr_Occured ()) + { + Py_FatalError ("can't initialize module globalkeys"); + } +} + +/* +vi:ts=4:nowrap:ai:expandtab +*/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-05 23:18:02
|
Revision: 1273 http://tomoe.svn.sourceforge.net/tomoe/?rev=1273&view=rev Author: ikezoe Date: 2007-06-05 16:18:01 -0700 (Tue, 05 Jun 2007) Log Message: ----------- * ext/python/tomoe-writing.override, ext/python/tomoe-query.override, ext/python/tomo-char.override: Fix double free. Modified Paths: -------------- tomoe/trunk/ChangeLog tomoe/trunk/ext/python/tomoe-char.override tomoe/trunk/ext/python/tomoe-query.override tomoe/trunk/ext/python/tomoe-writing.override Modified: tomoe/trunk/ChangeLog =================================================================== --- tomoe/trunk/ChangeLog 2007-06-05 23:12:25 UTC (rev 1272) +++ tomoe/trunk/ChangeLog 2007-06-05 23:18:01 UTC (rev 1273) @@ -3,6 +3,8 @@ * ext/python/tomoe-dict.override, ext/python/tomoe-tomoe-recognizer.override: removed tomoe_XX_get_registered_types and tomoe_XX_get_log_domains. + * ext/python/tomoe-writing.override, ext/python/tomoe-query.override, + ext/python/tomo-char.override: Fix double free. 2007-06-05 Hiroyuki Ikezoe <poi...@ik...> Modified: tomoe/trunk/ext/python/tomoe-char.override =================================================================== --- tomoe/trunk/ext/python/tomoe-char.override 2007-06-05 23:12:25 UTC (rev 1272) +++ tomoe/trunk/ext/python/tomoe-char.override 2007-06-05 23:18:01 UTC (rev 1273) @@ -7,15 +7,13 @@ static PyObject * _wrap_tomoe_char_get_readings(PyGObject *self) { - GList *readings; + const GList *readings; PyObject *py_readings; readings = tomoe_char_get_readings (TOMOE_CHAR(self->obj)); - CONVERT_LIST (py_readings, readings); + CONVERT_LIST (py_readings, (GList *) readings); - g_list_free (readings); - return py_readings; } %% @@ -23,15 +21,13 @@ static PyObject * _wrap_tomoe_char_get_radicals(PyGObject *self) { - GList *radicals; + const GList *radicals; PyObject *py_radicals; radicals = tomoe_char_get_radicals (TOMOE_CHAR(self->obj)); - CONVERT_LIST (py_radicals, radicals); + CONVERT_LIST (py_radicals, (GList *) radicals); - g_list_free (radicals); - return py_radicals; } %% Modified: tomoe/trunk/ext/python/tomoe-query.override =================================================================== --- tomoe/trunk/ext/python/tomoe-query.override 2007-06-05 23:12:25 UTC (rev 1272) +++ tomoe/trunk/ext/python/tomoe-query.override 2007-06-05 23:18:01 UTC (rev 1273) @@ -7,15 +7,13 @@ static PyObject * _wrap_tomoe_query_get_readings(PyGObject *self) { - GList *readings; + const GList *readings; PyObject *py_readings; readings = tomoe_query_get_readings (TOMOE_QUERY(self->obj)); - CONVERT_LIST (py_readings, readings); + CONVERT_LIST (py_readings, (GList *) readings); - g_list_free (readings); - return py_readings; } %% @@ -23,15 +21,13 @@ static PyObject * _wrap_tomoe_query_get_radicals(PyGObject *self) { - GList *radicals; + const GList *radicals; PyObject *py_radicals; radicals = tomoe_query_get_radicals (TOMOE_QUERY(self->obj)); - CONVERT_LIST (py_radicals, radicals); + CONVERT_LIST (py_radicals, (GList *) radicals); - g_list_free (radicals); - return py_radicals; } %% Modified: tomoe/trunk/ext/python/tomoe-writing.override =================================================================== --- tomoe/trunk/ext/python/tomoe-writing.override 2007-06-05 23:12:25 UTC (rev 1272) +++ tomoe/trunk/ext/python/tomoe-writing.override 2007-06-05 23:18:01 UTC (rev 1273) @@ -7,15 +7,13 @@ static PyObject * _wrap_tomoe_writing_get_strokes(PyGObject *self) { - GList *strokes; + const GList *strokes; PyObject *py_strokes; strokes = tomoe_writing_get_strokes (TOMOE_WRITING(self->obj)); - CONVERT_LIST (py_strokes, strokes); + CONVERT_LIST (py_strokes, (GList *) strokes); - g_list_free (strokes); - return py_strokes; } %% This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-05 23:12:29
|
Revision: 1272 http://tomoe.svn.sourceforge.net/tomoe/?rev=1272&view=rev Author: ikezoe Date: 2007-06-05 16:12:25 -0700 (Tue, 05 Jun 2007) Log Message: ----------- add ignoring functions. Modified Paths: -------------- tomoe/trunk/ext/python/tomoe-dict.override tomoe/trunk/ext/python/tomoe-recognizer.override Modified: tomoe/trunk/ext/python/tomoe-dict.override =================================================================== --- tomoe/trunk/ext/python/tomoe-dict.override 2007-06-05 23:08:59 UTC (rev 1271) +++ tomoe/trunk/ext/python/tomoe-dict.override 2007-06-05 23:12:25 UTC (rev 1272) @@ -7,6 +7,8 @@ %% ignore tomoe_dict_load_module + tomoe_dict_get_registered_types + tomoe_dict_get_log_domains %% override tomoe_dict_new static PyObject * Modified: tomoe/trunk/ext/python/tomoe-recognizer.override =================================================================== --- tomoe/trunk/ext/python/tomoe-recognizer.override 2007-06-05 23:08:59 UTC (rev 1271) +++ tomoe/trunk/ext/python/tomoe-recognizer.override 2007-06-05 23:12:25 UTC (rev 1272) @@ -7,6 +7,8 @@ %% ignore tomoe_recognizer_load_module + tomoe_recognizer_get_registered_types + tomoe_recognizer_get_log_domains %% override tomoe_recognizer_new static PyObject * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-05 23:08:57
|
Revision: 1271 http://tomoe.svn.sourceforge.net/tomoe/?rev=1271&view=rev Author: ikezoe Date: 2007-06-05 16:08:59 -0700 (Tue, 05 Jun 2007) Log Message: ----------- fix typo. Modified Paths: -------------- tomoe/trunk/ext/python/tomoe-shelf.override Modified: tomoe/trunk/ext/python/tomoe-shelf.override =================================================================== --- tomoe/trunk/ext/python/tomoe-shelf.override 2007-06-05 23:07:33 UTC (rev 1270) +++ tomoe/trunk/ext/python/tomoe-shelf.override 2007-06-05 23:08:59 UTC (rev 1271) @@ -5,7 +5,7 @@ %% override tomoe_shelf_get_dict_names noargs static PyObject * -_wrap_tomoe_shelf_get_dict_name(PyGObject *self) +_wrap_tomoe_shelf_get_dict_names(PyGObject *self) { GList *names; PyObject *py_names; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-05 23:07:39
|
Revision: 1270 http://tomoe.svn.sourceforge.net/tomoe/?rev=1270&view=rev Author: ikezoe Date: 2007-06-05 16:07:33 -0700 (Tue, 05 Jun 2007) Log Message: ----------- * ext/python/tomoe-dict.override, ext/python/tomoe-tomoe-recognizer.override: removed tomoe_XX_get_registered_types and tomoe_XX_get_log_domains. Modified Paths: -------------- tomoe/trunk/ChangeLog tomoe/trunk/ext/python/tomoe-dict.override Modified: tomoe/trunk/ChangeLog =================================================================== --- tomoe/trunk/ChangeLog 2007-06-05 23:00:39 UTC (rev 1269) +++ tomoe/trunk/ChangeLog 2007-06-05 23:07:33 UTC (rev 1270) @@ -1,3 +1,9 @@ +2007-06-06 Hiroyuki Ikezoe <poi...@ik...> + + * ext/python/tomoe-dict.override, + ext/python/tomoe-tomoe-recognizer.override: removed + tomoe_XX_get_registered_types and tomoe_XX_get_log_domains. + 2007-06-05 Hiroyuki Ikezoe <poi...@ik...> * ext/ruby/Makeifle.am: Use -avoid-version option instead of Modified: tomoe/trunk/ext/python/tomoe-dict.override =================================================================== --- tomoe/trunk/ext/python/tomoe-dict.override 2007-06-05 23:00:39 UTC (rev 1269) +++ tomoe/trunk/ext/python/tomoe-dict.override 2007-06-05 23:07:33 UTC (rev 1270) @@ -31,36 +31,3 @@ return py_cands; } -%% -override tomoe_dict_get_registered_types noargs -static PyObject * -_wrap_tomoe_dict_get_registered_types(PyGObject *self) -{ - GList *types; - PyObject *py_list; - - types = tomoe_dict_get_registered_types (TOMOE_DICT(self->obj)); - - CONVERT_LIST (py_list, types); - - g_list_free (types); - - return py_list; -} -%% -override tomoe_dict_get_log_domains noargs -static PyObject * -_wrap_tomoe_dict_get_log_domains(PyGObject *self) -{ - GList *domains; - PyObject *py_list; - - domains = tomoe_dict_get_log_domains (TOMOE_DICT(self->obj)); - - CONVERT_LIST (py_list, domains); - - g_list_free (domains); - - return py_list; -} -%% This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-05 23:00:37
|
Revision: 1269 http://tomoe.svn.sourceforge.net/tomoe/?rev=1269&view=rev Author: ikezoe Date: 2007-06-05 16:00:39 -0700 (Tue, 05 Jun 2007) Log Message: ----------- fix typo. Modified Paths: -------------- tomoe/trunk/ext/python/tomoe-writing.override Modified: tomoe/trunk/ext/python/tomoe-writing.override =================================================================== --- tomoe/trunk/ext/python/tomoe-writing.override 2007-06-05 23:00:16 UTC (rev 1268) +++ tomoe/trunk/ext/python/tomoe-writing.override 2007-06-05 23:00:39 UTC (rev 1269) @@ -7,10 +7,10 @@ static PyObject * _wrap_tomoe_writing_get_strokes(PyGObject *self) { - GList *strokess; + GList *strokes; PyObject *py_strokes; - strokess = tomoe_writing_get_strokes (TOMOE_WRITING(self->obj)); + strokes = tomoe_writing_get_strokes (TOMOE_WRITING(self->obj)); CONVERT_LIST (py_strokes, strokes); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-05 23:00:26
|
Revision: 1268 http://tomoe.svn.sourceforge.net/tomoe/?rev=1268&view=rev Author: ikezoe Date: 2007-06-05 16:00:16 -0700 (Tue, 05 Jun 2007) Log Message: ----------- fix typo. Modified Paths: -------------- tomoe/trunk/ext/python/tomoe-char.override tomoe/trunk/ext/python/tomoe-query.override tomoe/trunk/ext/python/tomoe-recognizer.override Modified: tomoe/trunk/ext/python/tomoe-char.override =================================================================== --- tomoe/trunk/ext/python/tomoe-char.override 2007-06-05 11:51:28 UTC (rev 1267) +++ tomoe/trunk/ext/python/tomoe-char.override 2007-06-05 23:00:16 UTC (rev 1268) @@ -7,10 +7,10 @@ static PyObject * _wrap_tomoe_char_get_readings(PyGObject *self) { - GList *readingss; + GList *readings; PyObject *py_readings; - readingss = tomoe_char_get_readings (TOMOE_CHAR(self->obj)); + readings = tomoe_char_get_readings (TOMOE_CHAR(self->obj)); CONVERT_LIST (py_readings, readings); @@ -23,10 +23,10 @@ static PyObject * _wrap_tomoe_char_get_radicals(PyGObject *self) { - GList *radicalss; + GList *radicals; PyObject *py_radicals; - radicalss = tomoe_char_get_radicals (TOMOE_CHAR(self->obj)); + radicals = tomoe_char_get_radicals (TOMOE_CHAR(self->obj)); CONVERT_LIST (py_radicals, radicals); Modified: tomoe/trunk/ext/python/tomoe-query.override =================================================================== --- tomoe/trunk/ext/python/tomoe-query.override 2007-06-05 11:51:28 UTC (rev 1267) +++ tomoe/trunk/ext/python/tomoe-query.override 2007-06-05 23:00:16 UTC (rev 1268) @@ -7,10 +7,10 @@ static PyObject * _wrap_tomoe_query_get_readings(PyGObject *self) { - GList *readingss; + GList *readings; PyObject *py_readings; - readingss = tomoe_query_get_readings (TOMOE_QUERY(self->obj)); + readings = tomoe_query_get_readings (TOMOE_QUERY(self->obj)); CONVERT_LIST (py_readings, readings); @@ -23,10 +23,10 @@ static PyObject * _wrap_tomoe_query_get_radicals(PyGObject *self) { - GList *radicalss; + GList *radicals; PyObject *py_radicals; - radicalss = tomoe_query_get_radicals (TOMOE_QUERY(self->obj)); + radicals = tomoe_query_get_radicals (TOMOE_QUERY(self->obj)); CONVERT_LIST (py_radicals, radicals); Modified: tomoe/trunk/ext/python/tomoe-recognizer.override =================================================================== --- tomoe/trunk/ext/python/tomoe-recognizer.override 2007-06-05 11:51:28 UTC (rev 1267) +++ tomoe/trunk/ext/python/tomoe-recognizer.override 2007-06-05 23:00:16 UTC (rev 1268) @@ -31,36 +31,3 @@ return py_cands; } -%% -override tomoe_recognizer_get_registered_types noargs -static PyObject * -_wrap_tomoe_recognizer_get_registered_types(PyGObject *self) -{ - GList *types; - PyObject *py_list; - - types = tomoe_recognizer_get_registered_types (TOMOE_RECOGNIZER(self->obj)); - - CONVERT_LIST (py_list, types); - - g_list_free (types); - - return py_list; -} -%% -override tomoe_recognizer_get_log_domains noargs -static PyObject * -_wrap_tomoe_recognizer_get_log_domains(PyGObject *self) -{ - GList *domains; - PyObject *py_list; - - domains = tomoe_recognizer_get_log_domains (TOMOE_RECOGNIZER(self->obj)); - - CONVERT_LIST (py_list, domains); - - g_list_free (domains); - - return py_list; -} -%% This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ma...@us...> - 2007-06-05 11:51:34
|
Revision: 1267 http://tomoe.svn.sourceforge.net/tomoe/?rev=1267&view=rev Author: makeinu Date: 2007-06-05 04:51:28 -0700 (Tue, 05 Jun 2007) Log Message: ----------- 2200/3390 has been finished. Modified Paths: -------------- tools/stroke-editor/data/ja/jis-x-0208-level2.xml Modified: tools/stroke-editor/data/ja/jis-x-0208-level2.xml =================================================================== --- tools/stroke-editor/data/ja/jis-x-0208-level2.xml 2007-06-05 11:49:21 UTC (rev 1266) +++ tools/stroke-editor/data/ja/jis-x-0208-level2.xml 2007-06-05 11:51:28 UTC (rev 1267) @@ -106098,6 +106098,97 @@ <character> <utf8>龝</utf8> <strokes> + <stroke> + <point x="300" y="177"/> + <point x="108" y="250"/> + </stroke> + <stroke> + <point x="38" y="377"/> + <point x="348" y="371"/> + </stroke> + <stroke> + <point x="195" y="231"/> + <point x="203" y="847"/> + </stroke> + <stroke> + <point x="193" y="416"/> + <point x="28" y="692"/> + </stroke> + <stroke> + <point x="198" y="435"/> + <point x="323" y="586"/> + </stroke> + <stroke> + <point x="535" y="175"/> + <point x="373" y="317"/> + </stroke> + <stroke> + <point x="533" y="185"/> + <point x="708" y="183"/> + <point x="628" y="276"/> + </stroke> + <stroke> + <point x="448" y="282"/> + <point x="453" y="375"/> + </stroke> + <stroke> + <point x="453" y="291"/> + <point x="873" y="284"/> + <point x="860" y="384"/> + </stroke> + <stroke> + <point x="455" y="379"/> + <point x="580" y="379"/> + </stroke> + <stroke> + <point x="728" y="375"/> + <point x="850" y="373"/> + </stroke> + <stroke> + <point x="710" y="293"/> + <point x="718" y="804"/> + </stroke> + <stroke> + <point x="595" y="302"/> + <point x="605" y="828"/> + <point x="923" y="841"/> + <point x="940" y="756"/> + </stroke> + <stroke> + <point x="355" y="455"/> + <point x="483" y="453"/> + <point x="478" y="556"/> + </stroke> + <stroke> + <point x="355" y="500"/> + <point x="885" y="498"/> + <point x="885" y="696"/> + </stroke> + <stroke> + <point x="360" y="558"/> + <point x="480" y="558"/> + </stroke> + <stroke> + <point x="350" y="638"/> + <point x="468" y="634"/> + <point x="478" y="767"/> + </stroke> + <stroke> + <point x="325" y="696"/> + <point x="878" y="688"/> + </stroke> + <stroke> + <point x="378" y="752"/> + <point x="475" y="746"/> + </stroke> + <stroke> + <point x="835" y="534"/> + <point x="758" y="653"/> + </stroke> + <stroke> + <point x="770" y="550"/> + <point x="858" y="623"/> + </stroke> </strokes> </character> <character> @@ -106641,6 +106732,97 @@ <character> <utf8>竈</utf8> <strokes> + <stroke> + <point x="498" y="114"/> + <point x="503" y="224"/> + </stroke> + <stroke> + <point x="143" y="213"/> + <point x="138" y="295"/> + </stroke> + <stroke> + <point x="148" y="203"/> + <point x="905" y="200"/> + <point x="780" y="269"/> + </stroke> + <stroke> + <point x="400" y="239"/> + <point x="185" y="349"/> + </stroke> + <stroke> + <point x="588" y="222"/> + <point x="590" y="310"/> + <point x="815" y="302"/> + <point x="788" y="278"/> + </stroke> + <stroke> + <point x="300" y="358"/> + <point x="633" y="356"/> + </stroke> + <stroke> + <point x="490" y="308"/> + <point x="495" y="429"/> + </stroke> + <stroke> + <point x="145" y="422"/> + <point x="830" y="412"/> + </stroke> + <stroke> + <point x="193" y="472"/> + <point x="205" y="571"/> + </stroke> + <stroke> + <point x="193" y="468"/> + <point x="800" y="476"/> + <point x="760" y="550"/> + </stroke> + <stroke> + <point x="203" y="547"/> + <point x="380" y="547"/> + </stroke> + <stroke> + <point x="595" y="543"/> + <point x="758" y="545"/> + </stroke> + <stroke> + <point x="573" y="478"/> + <point x="558" y="765"/> + </stroke> + <stroke> + <point x="410" y="478"/> + <point x="415" y="800"/> + <point x="905" y="819"/> + <point x="905" y="724"/> + </stroke> + <stroke> + <point x="153" y="612"/> + <point x="395" y="612"/> + </stroke> + <stroke> + <point x="148" y="610"/> + <point x="153" y="752"/> + </stroke> + <stroke> + <point x="150" y="668"/> + <point x="398" y="666"/> + </stroke> + <stroke> + <point x="150" y="735"/> + <point x="378" y="724"/> + </stroke> + <stroke> + <point x="580" y="606"/> + <point x="843" y="610"/> + <point x="825" y="750"/> + </stroke> + <stroke> + <point x="580" y="677"/> + <point x="828" y="672"/> + </stroke> + <stroke> + <point x="575" y="739"/> + <point x="810" y="728"/> + </stroke> </strokes> </character> <character> @@ -120120,491 +120302,6806 @@ <character> <utf8>繩</utf8> <strokes> + <stroke> + <point x="260" y="164"/> + <point x="125" y="302"/> + <point x="220" y="390"/> + </stroke> + <stroke> + <point x="365" y="246"/> + <point x="163" y="500"/> + <point x="315" y="481"/> + </stroke> + <stroke> + <point x="310" y="422"/> + <point x="343" y="534"/> + </stroke> + <stroke> + <point x="230" y="498"/> + <point x="230" y="821"/> + </stroke> + <stroke> + <point x="120" y="580"/> + <point x="40" y="769"/> + </stroke> + <stroke> + <point x="263" y="582"/> + <point x="313" y="713"/> + </stroke> + <stroke> + <point x="460" y="200"/> + <point x="470" y="338"/> + </stroke> + <stroke> + <point x="453" y="190"/> + <point x="870" y="181"/> + <point x="848" y="334"/> + </stroke> + <stroke> + <point x="460" y="325"/> + <point x="578" y="325"/> + </stroke> + <stroke> + <point x="733" y="321"/> + <point x="838" y="317"/> + </stroke> + <stroke> + <point x="708" y="190"/> + <point x="705" y="718"/> + </stroke> + <stroke> + <point x="598" y="207"/> + <point x="608" y="806"/> + <point x="920" y="810"/> + <point x="933" y="744"/> + </stroke> + <stroke> + <point x="550" y="388"/> + <point x="458" y="455"/> + </stroke> + <stroke> + <point x="453" y="446"/> + <point x="453" y="711"/> + </stroke> + <stroke> + <point x="468" y="563"/> + <point x="588" y="565"/> + </stroke> + <stroke> + <point x="468" y="681"/> + <point x="585" y="679"/> + </stroke> + <stroke> + <point x="725" y="435"/> + <point x="870" y="440"/> + <point x="860" y="685"/> + </stroke> + <stroke> + <point x="713" y="571"/> + <point x="863" y="558"/> + </stroke> + <stroke> + <point x="723" y="700"/> + <point x="858" y="696"/> + </stroke> </strokes> </character> <character> <utf8>繼</utf8> <strokes> + <stroke> + <point x="230" y="175"/> + <point x="100" y="287"/> + <point x="218" y="345"/> + </stroke> + <stroke> + <point x="323" y="272"/> + <point x="120" y="491"/> + <point x="328" y="457"/> + </stroke> + <stroke> + <point x="305" y="397"/> + <point x="350" y="500"/> + </stroke> + <stroke> + <point x="218" y="500"/> + <point x="223" y="841"/> + </stroke> + <stroke> + <point x="120" y="603"/> + <point x="78" y="761"/> + </stroke> + <stroke> + <point x="270" y="586"/> + <point x="345" y="724"/> + </stroke> + <stroke> + <point x="448" y="172"/> + <point x="425" y="806"/> + <point x="940" y="806"/> + </stroke> + <stroke> + <point x="613" y="185"/> + <point x="523" y="280"/> + <point x="563" y="293"/> + </stroke> + <stroke> + <point x="650" y="252"/> + <point x="508" y="401"/> + <point x="618" y="384"/> + </stroke> + <stroke> + <point x="620" y="347"/> + <point x="673" y="438"/> + </stroke> + <stroke> + <point x="830" y="203"/> + <point x="745" y="282"/> + <point x="818" y="321"/> + </stroke> + <stroke> + <point x="873" y="269"/> + <point x="725" y="427"/> + <point x="888" y="394"/> + </stroke> + <stroke> + <point x="853" y="347"/> + <point x="903" y="425"/> + </stroke> + <stroke> + <point x="438" y="478"/> + <point x="913" y="483"/> + </stroke> + <stroke> + <point x="618" y="513"/> + <point x="528" y="603"/> + <point x="598" y="647"/> + </stroke> + <stroke> + <point x="645" y="599"/> + <point x="505" y="752"/> + <point x="675" y="716"/> + </stroke> + <stroke> + <point x="648" y="666"/> + <point x="703" y="759"/> + </stroke> + <stroke> + <point x="843" y="532"/> + <point x="745" y="612"/> + <point x="803" y="642"/> + </stroke> + <stroke> + <point x="875" y="591"/> + <point x="740" y="739"/> + <point x="870" y="722"/> + </stroke> + <stroke> + <point x="853" y="672"/> + <point x="910" y="759"/> + </stroke> </strokes> </character> <character> <utf8>繻</utf8> <strokes> + <stroke> + <point x="240" y="175"/> + <point x="143" y="297"/> + <point x="218" y="379"/> + </stroke> + <stroke> + <point x="325" y="269"/> + <point x="110" y="489"/> + <point x="313" y="468"/> + </stroke> + <stroke> + <point x="280" y="425"/> + <point x="343" y="522"/> + </stroke> + <stroke> + <point x="228" y="500"/> + <point x="215" y="851"/> + </stroke> + <stroke> + <point x="118" y="606"/> + <point x="70" y="756"/> + </stroke> + <stroke> + <point x="270" y="599"/> + <point x="323" y="733"/> + </stroke> + <stroke> + <point x="478" y="207"/> + <point x="823" y="200"/> + </stroke> + <stroke> + <point x="440" y="276"/> + <point x="408" y="416"/> + </stroke> + <stroke> + <point x="443" y="291"/> + <point x="908" y="265"/> + <point x="888" y="384"/> + </stroke> + <stroke> + <point x="673" y="211"/> + <point x="678" y="431"/> + </stroke> + <stroke> + <point x="515" y="330"/> + <point x="593" y="353"/> + </stroke> + <stroke> + <point x="518" y="388"/> + <point x="598" y="420"/> + </stroke> + <stroke> + <point x="720" y="338"/> + <point x="820" y="349"/> + </stroke> + <stroke> + <point x="725" y="407"/> + <point x="833" y="422"/> + </stroke> + <stroke> + <point x="450" y="513"/> + <point x="920" y="506"/> + </stroke> + <stroke> + <point x="658" y="515"/> + <point x="583" y="608"/> + </stroke> + <stroke> + <point x="463" y="606"/> + <point x="455" y="838"/> + </stroke> + <stroke> + <point x="460" y="612"/> + <point x="868" y="606"/> + <point x="858" y="828"/> + <point x="788" y="800"/> + </stroke> + <stroke> + <point x="588" y="616"/> + <point x="593" y="808"/> + </stroke> + <stroke> + <point x="703" y="621"/> + <point x="720" y="804"/> + </stroke> </strokes> </character> <character> <utf8>纃</utf8> <strokes> + <stroke> + <point x="215" y="177"/> + <point x="108" y="289"/> + <point x="205" y="366"/> + </stroke> + <stroke> + <point x="295" y="259"/> + <point x="75" y="498"/> + <point x="290" y="457"/> + </stroke> + <stroke> + <point x="285" y="379"/> + <point x="330" y="506"/> + </stroke> + <stroke> + <point x="198" y="494"/> + <point x="195" y="802"/> + </stroke> + <stroke> + <point x="115" y="623"/> + <point x="70" y="761"/> + </stroke> + <stroke> + <point x="260" y="597"/> + <point x="320" y="737"/> + </stroke> + <stroke> + <point x="668" y="134"/> + <point x="673" y="228"/> + </stroke> + <stroke> + <point x="395" y="244"/> + <point x="898" y="226"/> + </stroke> + <stroke> + <point x="573" y="272"/> + <point x="615" y="321"/> + </stroke> + <stroke> + <point x="758" y="250"/> + <point x="675" y="341"/> + </stroke> + <stroke> + <point x="645" y="347"/> + <point x="645" y="515"/> + </stroke> + <stroke> + <point x="393" y="336"/> + <point x="568" y="325"/> + <point x="518" y="498"/> + <point x="480" y="470"/> + </stroke> + <stroke> + <point x="478" y="338"/> + <point x="393" y="494"/> + </stroke> + <stroke> + <point x="900" y="293"/> + <point x="725" y="347"/> + </stroke> + <stroke> + <point x="728" y="341"/> + <point x="725" y="498"/> + <point x="838" y="457"/> + </stroke> + <stroke> + <point x="840" y="323"/> + <point x="920" y="513"/> + </stroke> + <stroke> + <point x="490" y="563"/> + <point x="475" y="735"/> + <point x="353" y="851"/> + </stroke> + <stroke> + <point x="815" y="563"/> + <point x="830" y="864"/> + </stroke> + <stroke> + <point x="495" y="614"/> + <point x="818" y="606"/> + </stroke> + <stroke> + <point x="488" y="703"/> + <point x="815" y="705"/> + </stroke> </strokes> </character> <character> <utf8>緕</utf8> <strokes> + <stroke> + <point x="255" y="175"/> + <point x="145" y="293"/> + <point x="240" y="369"/> + </stroke> + <stroke> + <point x="368" y="269"/> + <point x="108" y="526"/> + <point x="345" y="496"/> + </stroke> + <stroke> + <point x="318" y="405"/> + <point x="370" y="530"/> + </stroke> + <stroke> + <point x="238" y="509"/> + <point x="240" y="804"/> + </stroke> + <stroke> + <point x="138" y="597"/> + <point x="73" y="761"/> + </stroke> + <stroke> + <point x="300" y="571"/> + <point x="383" y="720"/> + </stroke> + <stroke> + <point x="680" y="136"/> + <point x="678" y="246"/> + </stroke> + <stroke> + <point x="443" y="261"/> + <point x="890" y="250"/> + </stroke> + <stroke> + <point x="775" y="269"/> + <point x="655" y="412"/> + <point x="438" y="513"/> + </stroke> + <stroke> + <point x="555" y="263"/> + <point x="725" y="431"/> + <point x="910" y="491"/> + </stroke> + <stroke> + <point x="548" y="476"/> + <point x="548" y="681"/> + <point x="445" y="813"/> + </stroke> + <stroke> + <point x="808" y="472"/> + <point x="823" y="847"/> + </stroke> + <stroke> + <point x="543" y="547"/> + <point x="830" y="545"/> + </stroke> + <stroke> + <point x="543" y="657"/> + <point x="828" y="668"/> + </stroke> </strokes> </character> <character> <utf8>繽</utf8> <strokes> + <stroke> + <point x="238" y="177"/> + <point x="133" y="297"/> + <point x="203" y="369"/> + </stroke> + <stroke> + <point x="290" y="272"/> + <point x="113" y="500"/> + <point x="328" y="483"/> + </stroke> + <stroke> + <point x="283" y="384"/> + <point x="345" y="528"/> + </stroke> + <stroke> + <point x="213" y="517"/> + <point x="225" y="830"/> + </stroke> + <stroke> + <point x="165" y="606"/> + <point x="105" y="739"/> + </stroke> + <stroke> + <point x="295" y="584"/> + <point x="353" y="739"/> + </stroke> + <stroke> + <point x="673" y="138"/> + <point x="680" y="216"/> + </stroke> + <stroke> + <point x="460" y="216"/> + <point x="418" y="328"/> + </stroke> + <stroke> + <point x="440" y="218"/> + <point x="945" y="207"/> + <point x="878" y="293"/> + </stroke> + <stroke> + <point x="508" y="302"/> + <point x="795" y="306"/> + </stroke> + <stroke> + <point x="663" y="317"/> + <point x="663" y="427"/> + </stroke> + <stroke> + <point x="530" y="345"/> + <point x="440" y="457"/> + </stroke> + <stroke> + <point x="820" y="373"/> + <point x="365" y="552"/> + </stroke> + <stroke> + <point x="525" y="496"/> + <point x="550" y="744"/> + </stroke> + <stroke> + <point x="533" y="485"/> + <point x="868" y="476"/> + <point x="823" y="713"/> + </stroke> + <stroke> + <point x="528" y="558"/> + <point x="823" y="554"/> + </stroke> + <stroke> + <point x="550" y="636"/> + <point x="840" y="623"/> + </stroke> + <stroke> + <point x="543" y="705"/> + <point x="840" y="696"/> + </stroke> + <stroke> + <point x="615" y="761"/> + <point x="480" y="864"/> + </stroke> + <stroke> + <point x="740" y="750"/> + <point x="853" y="866"/> + </stroke> </strokes> </character> <character> <utf8>辮</utf8> <strokes> + <stroke> + <point x="208" y="140"/> + <point x="208" y="256"/> + </stroke> + <stroke> + <point x="48" y="272"/> + <point x="308" y="274"/> + </stroke> + <stroke> + <point x="120" y="295"/> + <point x="160" y="418"/> + </stroke> + <stroke> + <point x="260" y="293"/> + <point x="228" y="457"/> + </stroke> + <stroke> + <point x="20" y="470"/> + <point x="300" y="457"/> + </stroke> + <stroke> + <point x="38" y="662"/> + <point x="310" y="595"/> + </stroke> + <stroke> + <point x="195" y="466"/> + <point x="193" y="679"/> + <point x="63" y="856"/> + </stroke> + <stroke> + <point x="505" y="175"/> + <point x="410" y="293"/> + <point x="470" y="369"/> + </stroke> + <stroke> + <point x="585" y="254"/> + <point x="363" y="502"/> + <point x="563" y="461"/> + </stroke> + <stroke> + <point x="550" y="407"/> + <point x="573" y="517"/> + </stroke> + <stroke> + <point x="500" y="476"/> + <point x="490" y="819"/> + </stroke> + <stroke> + <point x="403" y="599"/> + <point x="315" y="789"/> + </stroke> + <stroke> + <point x="540" y="597"/> + <point x="600" y="748"/> + </stroke> + <stroke> + <point x="810" y="153"/> + <point x="810" y="254"/> + </stroke> + <stroke> + <point x="640" y="276"/> + <point x="900" y="265"/> + </stroke> + <stroke> + <point x="698" y="284"/> + <point x="748" y="429"/> + </stroke> + <stroke> + <point x="873" y="289"/> + <point x="805" y="433"/> + </stroke> + <stroke> + <point x="635" y="466"/> + <point x="945" y="444"/> + </stroke> + <stroke> + <point x="648" y="642"/> + <point x="943" y="629"/> + </stroke> + <stroke> + <point x="778" y="468"/> + <point x="783" y="843"/> + </stroke> </strokes> </character> <character> <utf8>繿</utf8> <strokes> + <stroke> + <point x="185" y="179"/> + <point x="108" y="313"/> + <point x="188" y="369"/> + </stroke> + <stroke> + <point x="305" y="259"/> + <point x="100" y="509"/> + <point x="318" y="496"/> + </stroke> + <stroke> + <point x="288" y="414"/> + <point x="363" y="532"/> + </stroke> + <stroke> + <point x="210" y="496"/> + <point x="230" y="817"/> + </stroke> + <stroke> + <point x="123" y="606"/> + <point x="68" y="765"/> + </stroke> + <stroke> + <point x="283" y="591"/> + <point x="325" y="724"/> + </stroke> + <stroke> + <point x="435" y="198"/> + <point x="433" y="524"/> + </stroke> + <stroke> + <point x="425" y="203"/> + <point x="648" y="198"/> + </stroke> + <stroke> + <point x="535" y="203"/> + <point x="530" y="304"/> + </stroke> + <stroke> + <point x="443" y="295"/> + <point x="648" y="295"/> + <point x="620" y="386"/> + </stroke> + <stroke> + <point x="445" y="394"/> + <point x="613" y="388"/> + </stroke> + <stroke> + <point x="540" y="397"/> + <point x="553" y="509"/> + </stroke> + <stroke> + <point x="438" y="511"/> + <point x="680" y="509"/> + </stroke> + <stroke> + <point x="790" y="172"/> + <point x="713" y="399"/> + </stroke> + <stroke> + <point x="763" y="293"/> + <point x="923" y="287"/> + </stroke> + <stroke> + <point x="738" y="455"/> + <point x="950" y="455"/> + </stroke> + <stroke> + <point x="473" y="608"/> + <point x="483" y="810"/> + </stroke> + <stroke> + <point x="478" y="608"/> + <point x="813" y="603"/> + <point x="810" y="806"/> + </stroke> + <stroke> + <point x="600" y="595"/> + <point x="600" y="802"/> + </stroke> + <stroke> + <point x="713" y="610"/> + <point x="710" y="791"/> + </stroke> + <stroke> + <point x="350" y="806"/> + <point x="975" y="800"/> + </stroke> </strokes> </character> <character> <utf8>纈</utf8> <strokes> + <stroke> + <point x="228" y="177"/> + <point x="118" y="280"/> + <point x="158" y="351"/> + </stroke> + <stroke> + <point x="298" y="261"/> + <point x="93" y="481"/> + <point x="280" y="444"/> + </stroke> + <stroke> + <point x="273" y="422"/> + <point x="305" y="483"/> + </stroke> + <stroke> + <point x="188" y="466"/> + <point x="198" y="825"/> + </stroke> + <stroke> + <point x="110" y="606"/> + <point x="78" y="744"/> + </stroke> + <stroke> + <point x="265" y="571"/> + <point x="300" y="709"/> + </stroke> + <stroke> + <point x="328" y="293"/> + <point x="615" y="284"/> + </stroke> + <stroke> + <point x="488" y="168"/> + <point x="470" y="438"/> + </stroke> + <stroke> + <point x="375" y="453"/> + <point x="555" y="438"/> + </stroke> + <stroke> + <point x="358" y="563"/> + <point x="395" y="750"/> + </stroke> + <stroke> + <point x="355" y="556"/> + <point x="553" y="560"/> + <point x="540" y="705"/> + </stroke> + <stroke> + <point x="418" y="718"/> + <point x="560" y="705"/> + </stroke> + <stroke> + <point x="643" y="192"/> + <point x="935" y="179"/> + </stroke> + <stroke> + <point x="795" y="196"/> + <point x="713" y="334"/> + </stroke> + <stroke> + <point x="665" y="308"/> + <point x="698" y="722"/> + </stroke> + <stroke> + <point x="675" y="323"/> + <point x="903" y="319"/> + <point x="880" y="700"/> + </stroke> + <stroke> + <point x="680" y="431"/> + <point x="890" y="429"/> + </stroke> + <stroke> + <point x="683" y="543"/> + <point x="870" y="539"/> + </stroke> + <stroke> + <point x="693" y="679"/> + <point x="873" y="666"/> + </stroke> + <stroke> + <point x="730" y="741"/> + <point x="643" y="851"/> + </stroke> + <stroke> + <point x="848" y="756"/> + <point x="940" y="849"/> + </stroke> </strokes> </character> <character> <utf8>纉</utf8> <strokes> + <stroke> + <point x="250" y="168"/> + <point x="130" y="293"/> + <point x="218" y="364"/> + </stroke> + <stroke> + <point x="338" y="250"/> + <point x="93" y="489"/> + <point x="315" y="463"/> + </stroke> + <stroke> + <point x="288" y="388"/> + <point x="340" y="515"/> + </stroke> + <stroke> + <point x="210" y="478"/> + <point x="208" y="845"/> + </stroke> + <stroke> + <point x="118" y="599"/> + <point x="85" y="759"/> + </stroke> + <stroke> + <point x="278" y="584"/> + <point x="340" y="707"/> + </stroke> + <stroke> + <point x="420" y="224"/> + <point x="598" y="213"/> + </stroke> + <stroke> + <point x="403" y="313"/> + <point x="605" y="297"/> + </stroke> + <stroke> + <point x="515" y="164"/> + <point x="500" y="338"/> + <point x="420" y="422"/> + </stroke> + <stroke> + <point x="505" y="332"/> + <point x="590" y="405"/> + </stroke> + <stroke> + <point x="668" y="222"/> + <point x="878" y="211"/> + </stroke> + <stroke> + <point x="658" y="315"/> + <point x="898" y="302"/> + </stroke> + <stroke> + <point x="783" y="162"/> + <point x="768" y="308"/> + <point x="698" y="429"/> + </stroke> + <stroke> + <point x="760" y="330"/> + <point x="885" y="420"/> + </stroke> + <stroke> + <point x="510" y="470"/> + <point x="533" y="707"/> + </stroke> + <stroke> + <point x="535" y="485"/> + <point x="798" y="466"/> + <point x="748" y="703"/> + </stroke> + <stroke> + <point x="525" y="547"/> + <point x="765" y="532"/> + </stroke> + <stroke> + <point x="535" y="608"/> + <point x="755" y="597"/> + </stroke> + <stroke> + <point x="535" y="696"/> + <point x="720" y="685"/> + </stroke> + <stroke> + <point x="585" y="759"/> + <point x="500" y="853"/> + </stroke> + <stroke> + <point x="718" y="735"/> + <point x="850" y="843"/> + </stroke> </strokes> </character> <character> <utf8>續</utf8> <strokes> + <stroke> + <point x="260" y="164"/> + <point x="148" y="280"/> + <point x="250" y="373"/> + </stroke> + <stroke> + <point x="395" y="267"/> + <point x="88" y="498"/> + <point x="325" y="461"/> + </stroke> + <stroke> + <point x="313" y="397"/> + <point x="390" y="528"/> + </stroke> + <stroke> + <point x="228" y="506"/> + <point x="245" y="817"/> + </stroke> + <stroke> + <point x="133" y="610"/> + <point x="103" y="752"/> + </stroke> + <stroke> + <point x="295" y="597"/> + <point x="350" y="718"/> + </stroke> + <stroke> + <point x="425" y="200"/> + <point x="845" y="200"/> + </stroke> + <stroke> + <point x="663" y="142"/> + <point x="668" y="278"/> + </stroke> + <stroke> + <point x="483" y="265"/> + <point x="810" y="263"/> + </stroke> + <stroke> + <point x="460" y="336"/> + <point x="495" y="500"/> + </stroke> + <stroke> + <point x="460" y="353"/> + <point x="878" y="338"/> + <point x="838" y="491"/> + </stroke> + <stroke> + <point x="620" y="353"/> + <point x="580" y="418"/> + </stroke> + <stroke> + <point x="700" y="345"/> + <point x="713" y="414"/> + <point x="810" y="409"/> + <point x="795" y="377"/> + </stroke> + <stroke> + <point x="505" y="468"/> + <point x="808" y="463"/> + </stroke> + <stroke> + <point x="510" y="528"/> + <point x="533" y="713"/> + </stroke> + <stroke> + <point x="510" y="528"/> + <point x="830" y="519"/> + <point x="773" y="705"/> + </stroke> + <stroke> + <point x="558" y="584"/> + <point x="805" y="582"/> + </stroke> + <stroke> + <point x="538" y="651"/> + <point x="773" y="644"/> + </stroke> + <stroke> + <point x="533" y="711"/> + <point x="775" y="698"/> + </stroke> + <stroke> + <point x="573" y="759"/> + <point x="483" y="871"/> + </stroke> + <stroke> + <point x="698" y="763"/> + <point x="798" y="873"/> + </stroke> </strokes> </character> <character> <utf8>纒</utf8> <strokes> + <stroke> + <point x="223" y="170"/> + <point x="133" y="284"/> + <point x="215" y="375"/> + </stroke> + <stroke> + <point x="313" y="261"/> + <point x="70" y="500"/> + <point x="318" y="466"/> + </stroke> + <stroke> + <point x="285" y="384"/> + <point x="350" y="537"/> + </stroke> + <stroke> + <point x="210" y="481"/> + <point x="215" y="800"/> + </stroke> + <stroke> + <point x="128" y="612"/> + <point x="100" y="754"/> + </stroke> + <stroke> + <point x="273" y="575"/> + <point x="363" y="681"/> + </stroke> + <stroke> + <point x="440" y="194"/> + <point x="910" y="192"/> + </stroke> + <stroke> + <point x="455" y="194"/> + <point x="448" y="537"/> + <point x="370" y="836"/> + </stroke> + <stroke> + <point x="578" y="265"/> + <point x="590" y="418"/> + </stroke> + <stroke> + <point x="575" y="265"/> + <point x="853" y="259"/> + <point x="823" y="412"/> + </stroke> + <stroke> + <point x="575" y="338"/> + <point x="850" y="330"/> + </stroke> + <stroke> + <point x="583" y="405"/> + <point x="863" y="397"/> + </stroke> + <stroke> + <point x="718" y="278"/> + <point x="718" y="528"/> + </stroke> + <stroke> + <point x="590" y="461"/> + <point x="823" y="453"/> + </stroke> + <stroke> + <point x="510" y="528"/> + <point x="878" y="532"/> + </stroke> + <stroke> + <point x="565" y="569"/> + <point x="513" y="679"/> + </stroke> + <stroke> + <point x="653" y="560"/> + <point x="675" y="653"/> + </stroke> + <stroke> + <point x="748" y="573"/> + <point x="795" y="655"/> + </stroke> + <stroke> + <point x="863" y="578"/> + <point x="903" y="653"/> + </stroke> + <stroke> + <point x="553" y="733"/> + <point x="870" y="731"/> + </stroke> + <stroke> + <point x="698" y="668"/> + <point x="698" y="823"/> + </stroke> + <stroke> + <point x="463" y="834"/> + <point x="920" y="819"/> + </stroke> </strokes> </character> <character> <utf8>纐</utf8> <strokes> + <stroke> + <point x="210" y="190"/> + <point x="123" y="284"/> + <point x="198" y="381"/> + </stroke> + <stroke> + <point x="308" y="261"/> + <point x="83" y="489"/> + <point x="315" y="461"/> + </stroke> + <stroke> + <point x="263" y="399"/> + <point x="320" y="515"/> + </stroke> + <stroke> + <point x="190" y="470"/> + <point x="203" y="815"/> + </stroke> + <stroke> + <point x="110" y="610"/> + <point x="70" y="774"/> + </stroke> + <stroke> + <point x="233" y="591"/> + <point x="258" y="726"/> + </stroke> + <stroke> + <point x="493" y="153"/> + <point x="465" y="284"/> + </stroke> + <stroke> + <point x="340" y="291"/> + <point x="603" y="280"/> + </stroke> + <stroke> + <point x="398" y="341"/> + <point x="355" y="455"/> + </stroke> + <stroke> + <point x="528" y="345"/> + <point x="630" y="478"/> + </stroke> + <stroke> + <point x="545" y="412"/> + <point x="500" y="614"/> + <point x="323" y="767"/> + </stroke> + <stroke> + <point x="380" y="418"/> + <point x="593" y="705"/> + </stroke> + <stroke> + <point x="648" y="194"/> + <point x="935" y="183"/> + </stroke> + <stroke> + <point x="795" y="198"/> + <point x="740" y="300"/> + </stroke> + <stroke> + <point x="660" y="310"/> + <point x="688" y="675"/> + </stroke> + <stroke> + <point x="653" y="321"/> + <point x="913" y="310"/> + <point x="870" y="683"/> + </stroke> + <stroke> + <point x="690" y="446"/> + <point x="885" y="442"/> + </stroke> + <stroke> + <point x="693" y="552"/> + <point x="875" y="539"/> + </stroke> + <stroke> + <point x="688" y="685"/> + <point x="878" y="677"/> + </stroke> + <stroke> + <point x="718" y="741"/> + <point x="668" y="838"/> + </stroke> + <stroke> + <point x="838" y="720"/> + <point x="933" y="849"/> + </stroke> </strokes> </character> <character> <utf8>纓</utf8> <strokes> + <stroke> + <point x="248" y="166"/> + <point x="105" y="306"/> + <point x="183" y="362"/> + </stroke> + <stroke> + <point x="290" y="261"/> + <point x="95" y="487"/> + <point x="275" y="463"/> + </stroke> + <stroke> + <point x="263" y="386"/> + <point x="328" y="532"/> + </stroke> + <stroke> + <point x="213" y="470"/> + <point x="218" y="810"/> + </stroke> + <stroke> + <point x="100" y="580"/> + <point x="75" y="748"/> + </stroke> + <stroke> + <point x="265" y="588"/> + <point x="303" y="744"/> + </stroke> + <stroke> + <point x="415" y="192"/> + <point x="425" y="407"/> + </stroke> + <stroke> + <point x="410" y="203"/> + <point x="590" y="200"/> + <point x="565" y="416"/> + </stroke> + <stroke> + <point x="435" y="263"/> + <point x="580" y="263"/> + </stroke> + <stroke> + <point x="425" y="330"/> + <point x="588" y="328"/> + </stroke> + <stroke> + <point x="445" y="407"/> + <point x="565" y="405"/> + </stroke> + <stroke> + <point x="453" y="440"/> + <point x="398" y="541"/> + </stroke> + <stroke> + <point x="518" y="438"/> + <point x="578" y="530"/> + </stroke> + <stroke> + <point x="688" y="196"/> + <point x="715" y="414"/> + </stroke> + <stroke> + <point x="693" y="196"/> + <point x="878" y="194"/> + <point x="843" y="412"/> + </stroke> + <stroke> + <point x="700" y="267"/> + <point x="873" y="265"/> + </stroke> + <stroke> + <point x="723" y="338"/> + <point x="875" y="332"/> + </stroke> + <stroke> + <point x="723" y="414"/> + <point x="830" y="405"/> + </stroke> + <stroke> + <point x="725" y="457"/> + <point x="690" y="539"/> + </stroke> + <stroke> + <point x="848" y="442"/> + <point x="888" y="526"/> + </stroke> + <stroke> + <point x="618" y="547"/> + <point x="520" y="690"/> + <point x="750" y="843"/> + </stroke> + <stroke> + <point x="758" y="623"/> + <point x="643" y="750"/> + <point x="445" y="860"/> + </stroke> + <stroke> + <point x="415" y="621"/> + <point x="863" y="593"/> + </stroke> </strokes> </character> <character> <utf8>纔</utf8> <strokes> + <stroke> + <point x="230" y="155"/> + <point x="125" y="302"/> + <point x="198" y="364"/> + </stroke> + <stroke> + <point x="308" y="246"/> + <point x="103" y="506"/> + <point x="333" y="459"/> + </stroke> + <stroke> + <point x="283" y="379"/> + <point x="370" y="524"/> + </stroke> + <stroke> + <point x="223" y="485"/> + <point x="223" y="830"/> + </stroke> + <stroke> + <point x="153" y="593"/> + <point x="90" y="752"/> + </stroke> + <stroke> + <point x="283" y="565"/> + <point x="330" y="733"/> + </stroke> + <stroke> + <point x="575" y="166"/> + <point x="460" y="248"/> + </stroke> + <stroke> + <point x="558" y="159"/> + <point x="705" y="166"/> + <point x="658" y="256"/> + </stroke> + <stroke> + <point x="488" y="248"/> + <point x="515" y="332"/> + </stroke> + <stroke> + <point x="510" y="250"/> + <point x="808" y="237"/> + <point x="748" y="349"/> + </stroke> + <stroke> + <point x="533" y="343"/> + <point x="753" y="332"/> + </stroke> + <stroke> + <point x="488" y="412"/> + <point x="623" y="403"/> + </stroke> + <stroke> + <point x="475" y="353"/> + <point x="480" y="485"/> + </stroke> + <stroke> + <point x="395" y="498"/> + <point x="610" y="474"/> + </stroke> + <stroke> + <point x="893" y="362"/> + <point x="753" y="412"/> + </stroke> + <stroke> + <point x="705" y="347"/> + <point x="713" y="485"/> + <point x="890" y="494"/> + <point x="890" y="420"/> + </stroke> + <stroke> + <point x="565" y="539"/> + <point x="398" y="657"/> + </stroke> + <stroke> + <point x="553" y="532"/> + <point x="688" y="532"/> + <point x="628" y="616"/> + </stroke> + <stroke> + <point x="525" y="603"/> + <point x="523" y="707"/> + </stroke> + <stroke> + <point x="530" y="627"/> + <point x="838" y="603"/> + <point x="785" y="726"/> + </stroke> + <stroke> + <point x="508" y="720"/> + <point x="805" y="698"/> + </stroke> + <stroke> + <point x="660" y="623"/> + <point x="620" y="761"/> + <point x="473" y="838"/> + </stroke> + <stroke> + <point x="645" y="709"/> + <point x="690" y="815"/> + <point x="828" y="832"/> + <point x="865" y="765"/> + </stroke> + <stroke> + <point x="768" y="720"/> + <point x="810" y="778"/> + </stroke> </strokes> </character> <character> <utf8>纖</utf8> <strokes> + <stroke> + <point x="255" y="134"/> + <point x="108" y="274"/> + <point x="200" y="353"/> + </stroke> + <stroke> + <point x="318" y="256"/> + <point x="93" y="502"/> + <point x="315" y="457"/> + </stroke> + <stroke> + <point x="265" y="399"/> + <point x="360" y="554"/> + </stroke> + <stroke> + <point x="208" y="504"/> + <point x="208" y="875"/> + </stroke> + <stroke> + <point x="130" y="588"/> + <point x="88" y="759"/> + </stroke> + <stroke> + <point x="260" y="582"/> + <point x="350" y="716"/> + </stroke> + <stroke> + <point x="468" y="172"/> + <point x="368" y="332"/> + </stroke> + <stroke> + <point x="433" y="244"/> + <point x="503" y="317"/> + </stroke> + <stroke> + <point x="653" y="166"/> + <point x="553" y="321"/> + </stroke> + <stroke> + <point x="620" y="248"/> + <point x="715" y="317"/> + </stroke> + <stroke> + <point x="343" y="388"/> + <point x="928" y="369"/> + </stroke> + <stroke> + <point x="470" y="392"/> + <point x="458" y="737"/> + </stroke> + <stroke> + <point x="370" y="481"/> + <point x="455" y="485"/> + </stroke> + <stroke> + <point x="378" y="560"/> + <point x="450" y="556"/> + </stroke> + <stroke> + <point x="373" y="636"/> + <point x="455" y="634"/> + </stroke> + <stroke> + <point x="585" y="392"/> + <point x="583" y="724"/> + </stroke> + <stroke> + <point x="575" y="472"/> + <point x="693" y="472"/> + </stroke> + <stroke> + <point x="600" y="539"/> + <point x="695" y="539"/> + </stroke> + <stroke> + <point x="615" y="616"/> + <point x="705" y="606"/> + </stroke> + <stroke> + <point x="330" y="780"/> + <point x="715" y="694"/> + </stroke> + <stroke> + <point x="748" y="157"/> + <point x="778" y="580"/> + <point x="885" y="832"/> + <point x="935" y="737"/> + </stroke> + <stroke> + <point x="888" y="468"/> + <point x="785" y="672"/> + <point x="625" y="825"/> + </stroke> + <stroke> + <point x="785" y="207"/> + <point x="900" y="287"/> + </stroke> </strokes> </character> <character> <utf8>纎</utf8> <strokes> + <stroke> + <point x="225" y="177"/> + <point x="115" y="291"/> + <point x="195" y="366"/> + </stroke> + <stroke> + <point x="293" y="263"/> + <point x="63" y="526"/> + <point x="288" y="487"/> + </stroke> + <stroke> + <point x="290" y="409"/> + <point x="328" y="550"/> + </stroke> + <stroke> + <point x="193" y="491"/> + <point x="215" y="862"/> + </stroke> + <stroke> + <point x="100" y="655"/> + <point x="33" y="810"/> + </stroke> + <stroke> + <point x="273" y="601"/> + <point x="303" y="776"/> + </stroke> + <stroke> + <point x="400" y="241"/> + <point x="630" y="241"/> + </stroke> + <stroke> + <point x="515" y="127"/> + <point x="525" y="351"/> + </stroke> + <stroke> + <point x="358" y="362"/> + <point x="940" y="358"/> + </stroke> + <stroke> + <point x="470" y="379"/> + <point x="458" y="735"/> + </stroke> + <stroke> + <point x="370" y="463"/> + <point x="470" y="455"/> + </stroke> + <stroke> + <point x="363" y="541"/> + <point x="465" y="528"/> + </stroke> + <stroke> + <point x="385" y="636"/> + <point x="450" y="625"/> + </stroke> + <stroke> + <point x="575" y="381"/> + <point x="563" y="696"/> + </stroke> + <stroke> + <point x="585" y="435"/> + <point x="670" y="433"/> + </stroke> + <stroke> + <point x="583" y="513"/> + <point x="683" y="509"/> + </stroke> + <stroke> + <point x="583" y="621"/> + <point x="683" y="599"/> + </stroke> + <stroke> + <point x="350" y="765"/> + <point x="648" y="724"/> + </stroke> + <stroke> + <point x="728" y="172"/> + <point x="765" y="640"/> + <point x="913" y="817"/> + <point x="953" y="692"/> + </stroke> + <stroke> + <point x="895" y="496"/> + <point x="805" y="653"/> + <point x="608" y="841"/> + </stroke> + <stroke> + <point x="800" y="203"/> + <point x="880" y="254"/> + </stroke> </strokes> </character> <character> <utf8>纛</utf8> <strokes> + <stroke> + <point x="268" y="172"/> + <point x="695" y="172"/> + </stroke> + <stroke> + <point x="320" y="228"/> + <point x="655" y="235"/> + </stroke> + <stroke> + <point x="493" y="127"/> + <point x="503" y="269"/> + </stroke> + <stroke> + <point x="138" y="282"/> + <point x="805" y="278"/> + </stroke> + <stroke> + <point x="293" y="323"/> + <point x="250" y="457"/> + <point x="663" y="450"/> + </stroke> + <stroke> + <point x="288" y="323"/> + <point x="665" y="330"/> + <point x="573" y="522"/> + <point x="485" y="483"/> + </stroke> + <stroke> + <point x="65" y="386"/> + <point x="863" y="379"/> + </stroke> + <stroke> + <point x="483" y="334"/> + <point x="450" y="448"/> + </stroke> + <stroke> + <point x="248" y="500"/> + <point x="243" y="664"/> + </stroke> + <stroke> + <point x="248" y="504"/> + <point x="425" y="504"/> + <point x="400" y="662"/> + </stroke> + <stroke> + <point x="268" y="550"/> + <point x="418" y="547"/> + </stroke> + <stroke> + <point x="253" y="595"/> + <point x="393" y="595"/> + </stroke> + <stroke> + <point x="228" y="649"/> + <point x="433" y="642"/> + </stroke> + <stroke> + <point x="135" y="524"/> + <point x="140" y="713"/> + <point x="505" y="707"/> + </stroke> + <stroke> + <point x="313" y="713"/> + <point x="308" y="830"/> + </stroke> + <stroke> + <point x="188" y="761"/> + <point x="118" y="849"/> + </stroke> + <stroke> + <point x="368" y="741"/> + <point x="430" y="825"/> + </stroke> + <stroke> + <point x="820" y="494"/> + <point x="520" y="565"/> + </stroke> + <stroke> + <point x="733" y="528"/> + <point x="585" y="621"/> + <point x="680" y="636"/> + </stroke> + <stroke> + <point x="785" y="571"/> + <point x="563" y="705"/> + <point x="810" y="675"/> + </stroke> + <stroke> + <point x="783" y="627"/> + <point x="838" y="707"/> + </stroke> + <stroke> + <point x="705" y="703"/> + <point x="718" y="892"/> + </stroke> + <stroke> + <point x="680" y="748"/> + <point x="558" y="849"/> + </stroke> + <stroke> + <point x="773" y="765"/> + <point x="883" y="871"/> + </stroke> </strokes> </character> <character> <utf8>纜</utf8> <strokes> + <stroke> + <point x="243" y="157"/> + <point x="120" y="310"/> + <point x="188" y="377"/> + </stroke> + <stroke> + <point x="313" y="252"/> + <point x="43" y="526"/> + <point x="305" y="487"/> + </stroke> + <stroke> + <point x="270" y="403"/> + <point x="323" y="575"/> + </stroke> + <stroke> + <point x="188" y="504"/> + <point x="198" y="834"/> + </stroke> + <stroke> + <point x="140" y="606"/> + <point x="78" y="759"/> + </stroke> + <stroke> + <point x="273" y="591"/> + <point x="333" y="705"/> + </stroke> + <stroke> + <point x="405" y="185"/> + <point x="390" y="422"/> + </stroke> + <stroke> + <point x="405" y="196"/> + <point x="608" y="192"/> + </stroke> + <stroke> + <point x="478" y="196"/> + <point x="490" y="265"/> + </stroke> + <stroke> + <point x="410" y="269"/> + <point x="593" y="265"/> + <point x="565" y="366"/> + </stroke> + <stroke> + <point x="395" y="358"/> + <point x="580" y="349"/> + </stroke> + <stroke> + <point x="493" y="358"/> + <point x="495" y="414"/> + </stroke> + <stroke> + <point x="385" y="420"/> + <point x="605" y="420"/> + </stroke> + <stroke> + <point x="715" y="144"/> + <point x="623" y="293"/> + </stroke> + <stroke> + <point x="698" y="192"/> + <point x="935" y="192"/> + </stroke> + <stroke> + <point x="718" y="252"/> + <point x="888" y="250"/> + </stroke> + <stroke> + <point x="683" y="323"/> + <point x="680" y="433"/> + </stroke> + <stroke> + <point x="690" y="325"/> + <point x="918" y="319"/> + <point x="900" y="427"/> + </stroke> + <stroke> + <point x="755" y="334"/> + <point x="765" y="414"/> + </stroke> + <stroke> + <point x="833" y="328"/> + <point x="840" y="407"/> + </stroke> + <stroke> + <point x="688" y="416"/> + <point x="918" y="420"/> + </stroke> + <stroke> + <point x="495" y="500"/> + <point x="503" y="713"/> + </stroke> + <stroke> + <point x="490" y="509"/> + <point x="808" y="498"/> + <point x="783" y="685"/> + </stroke> + <stroke> + <point x="520" y="565"/> + <point x="773" y="569"/> + </stroke> + <stroke> + <point x="510" y="625"/> + <point x="783" y="629"/> + </stroke> + <stroke> + <point x="503" y="703"/> + <point x="780" y="700"/> + </stroke> + <stroke> + <point x="580" y="713"/> + <point x="518" y="813"/> + <point x="358" y="888"/> + </stroke> + <stroke> + <point x="688" y="709"/> + <point x="693" y="862"/> + <point x="890" y="862"/> + <point x="870" y="780"/> + </stroke> </strokes> </character> <character> <utf8>缸</utf8> <strokes> + <stroke> + <point x="178" y="175"/> + <point x="100" y="369"/> + </stroke> + <stroke> + <point x="135" y="276"/> + <point x="398" y="276"/> + </stroke> + <stroke> + <point x="88" y="440"/> + <point x="450" y="440"/> + </stroke> + <stroke> + <point x="268" y="282"/> + <point x="283" y="748"/> + </stroke> + <stroke> + <point x="130" y="537"/> + <point x="130" y="754"/> + <point x="368" y="754"/> + </stroke> + <stroke> + <point x="403" y="534"/> + <point x="378" y="763"/> + </stroke> + <stroke> + <point x="528" y="254"/> + <point x="903" y="250"/> + </stroke> + <stroke> + <point x="685" y="252"/> + <point x="678" y="817"/> + </stroke> + <stroke> + <point x="423" y="815"/> + <point x="845" y="813"/> + </stroke> </strokes> </character> <character> <utf8>缺</utf8> <strokes> + <stroke> + <point x="183" y="179"/> + <point x="120" y="347"/> + </stroke> + <stroke> + <point x="153" y="254"/> + <point x="388" y="250"/> + </stroke> + <stroke> + <point x="83" y="427"/> + <point x="403" y="418"/> + </stroke> + <stroke> + <point x="248" y="261"/> + <point x="255" y="744"/> + </stroke> + <stroke> + <point x="120" y="539"/> + <point x="105" y="737"/> + <point x="383" y="739"/> + </stroke> + <stroke> + <point x="380" y="547"/> + <point x="385" y="754"/> + </stroke> + <stroke> + <point x="503" y="306"/> + <point x="818" y="302"/> + <point x="805" y="519"/> + </stroke> + <stroke> + <point x="443" y="526"/> + <point x="958" y="515"/> + </stroke> + <stroke> + <point x="640" y="151"/> + <point x="653" y="470"/> + <point x="608" y="655"/> + <point x="445" y="817"/> + </stroke> + <stroke> + <point x="635" y="541"/> + <point x="893" y="797"/> + </stroke> </strokes> </character> <character> <utf8>罅</utf8> <strokes> + <stroke> + <point x="173" y="166"/> + <point x="65" y="375"/> + </stroke> + <stroke> + <point x="135" y="263"/> + <point x="370" y="263"/> + </stroke> + <stroke> + <point x="63" y="429"/> + <point x="375" y="425"/> + </stroke> + <stroke> + <point x="233" y="269"/> + <point x="245" y="726"/> + </stroke> + <stroke> + <point x="118" y="522"/> + <point x="123" y="744"/> + <point x="348" y="741"/> + </stroke> + <stroke> + <point x="345" y="519"/> + <point x="353" y="763"/> + </stroke> + <stroke> + <point x="688" y="220"/> + <point x="868" y="213"/> + </stroke> + <stroke> + <point x="695" y="144"/> + <point x="690" y="293"/> + </stroke> + <stroke> + <point x="500" y="291"/> + <point x="908" y="280"/> + <point x="855" y="360"/> + </stroke> + <stroke> + <point x="485" y="287"/> + <point x="493" y="597"/> + <point x="383" y="806"/> + </stroke> + <stroke> + <point x="553" y="403"/> + <point x="810" y="377"/> + </stroke> + <stroke> + <point x="660" y="304"/> + <point x="675" y="474"/> + <point x="888" y="453"/> + <point x="868" y="384"/> + </stroke> + <stroke> + <point x="833" y="519"/> + <point x="578" y="584"/> + </stroke> + <stroke> + <point x="548" y="711"/> + <point x="913" y="709"/> + </stroke> + <stroke> + <point x="738" y="554"/> + <point x="723" y="860"/> + <point x="628" y="821"/> + </stroke> + <stroke> + <point x="585" y="610"/> + <point x="663" y="681"/> + </stroke> + <stroke> + <point x="868" y="569"/> + <point x="820" y="662"/> + </stroke> </strokes> </character> <character> <utf8>罌</utf8> <strokes> + <stroke> + <point x="180" y="179"/> + <point x="195" y="379"/> + </stroke> + <stroke> + <point x="193" y="172"/> + <point x="400" y="164"/> + <point x="405" y="377"/> + </stroke> + <stroke> + <point x="200" y="246"/> + <point x="385" y="250"/> + </stroke> + <stroke> + <point x="203" y="315"/> + <point x="395" y="310"/> + </stroke> + <stroke> + <point x="213" y="381"/> + <point x="420" y="377"/> + </stroke> + <stroke> + <point x="225" y="427"/> + <point x="160" y="522"/> + </stroke> + <stroke> + <point x="360" y="429"/> + <point x="400" y="509"/> + </stroke> + <stroke> + <point x="593" y="168"/> + <point x="595" y="381"/> + </stroke> + <stroke> + <point x="595" y="179"/> + <point x="793" y="185"/> + <point x="785" y="390"/> + </stroke> + <stroke> + <point x="600" y="239"/> + <point x="765" y="244"/> + </stroke> + <stroke> + <point x="615" y="304"/> + <point x="788" y="306"/> + </stroke> + <stroke> + <point x="605" y="375"/> + <point x="760" y="373"/> + </stroke> + <stroke> + <point x="658" y="422"/> + <point x="588" y="506"/> + </stroke> + <stroke> + <point x="730" y="427"/> + <point x="805" y="496"/> + </stroke> + <stroke> + <point x="310" y="500"/> + <point x="238" y="625"/> + </stroke> + <stroke> + <point x="268" y="558"/> + <point x="730" y="547"/> + </stroke> + <stroke> + <point x="218" y="655"/> + <point x="723" y="653"/> + </stroke> + <stroke> + <point x="510" y="560"/> + <point x="500" y="808"/> + </stroke> + <stroke> + <point x="238" y="724"/> + <point x="253" y="830"/> + <point x="785" y="823"/> + </stroke> + <stroke> + <point x="800" y="711"/> + <point x="793" y="830"/> + </stroke> </strokes> </character> <character> <utf8>罍</utf8> <strokes> + <stroke> + <point x="278" y="168"/> + <point x="285" y="332"/> + </stroke> + <stroke> + <point x="285" y="172"/> + <point x="743" y="159"/> + <point x="683" y="347"/> + </stroke> + <stroke> + <point x="500" y="164"/> + <point x="493" y="310"/> + </stroke> + <stroke> + <point x="290" y="235"/> + <point x="693" y="233"/> + </stroke> + <stroke> + <point x="295" y="325"/> + <point x="660" y="325"/> + </stroke> + <stroke> + <point x="138" y="381"/> + <point x="148" y="530"/> + </stroke> + <stroke> + <point x="130" y="366"/> + <point x="403" y="362"/> + <point x="378" y="537"/> + </stroke> + <stroke> + <point x="243" y="362"/> + <point x="270" y="506"/> + </stroke> + <stroke> + <point x="148" y="433"/> + <point x="370" y="433"/> + </stroke> + <stroke> + <point x="133" y="511"/> + <point x="388" y="504"/> + </stroke> + <stroke> + <point x="588" y="366"/> + <point x="605" y="530"/> + </stroke> + <stroke> + <point x="575" y="369"/> + <point x="865" y="364"/> + <point x="825" y="526"/> + </stroke> + <stroke> + <point x="710" y="366"/> + <point x="715" y="511"/> + </stroke> + <stroke> + <point x="583" y="438"/> + <point x="830" y="444"/> + </stroke> + <stroke> + <point x="600" y="515"/> + <point x="813" y="504"/> + </stroke> + <stroke> + <point x="295" y="558"/> + <point x="225" y="655"/> + </stroke> + <stroke> + <point x="263" y="597"/> + <point x="738" y="582"/> + </stroke> + <stroke> + <point x="198" y="707"/> + <point x="803" y="675"/> + </stroke> + <stroke> + <point x="500" y="599"/> + <point x="508" y="830"/> + </stroke> + <stroke> + <point x="278" y="754"/> + <point x="263" y="877"/> + <point x="810" y="845"/> + </stroke> + <stroke> + <point x="818" y="716"/> + <point x="830" y="834"/> + </stroke> </strokes> </character> <character> <utf8>罎</utf8> <strokes> + <stroke> + <point x="180" y="157"/> + <point x="103" y="358"/> + </stroke> + <stroke> + <point x="118" y="261"/... [truncated message content] |
From: <ik...@us...> - 2007-06-05 11:49:20
|
Revision: 1266 http://tomoe.svn.sourceforge.net/tomoe/?rev=1266&view=rev Author: ikezoe Date: 2007-06-05 04:49:21 -0700 (Tue, 05 Jun 2007) Log Message: ----------- ignore-glob -> ignore. Modified Paths: -------------- tomoe/trunk/ext/python/tomoe-dict.override tomoe/trunk/ext/python/tomoe-recognizer.override Modified: tomoe/trunk/ext/python/tomoe-dict.override =================================================================== --- tomoe/trunk/ext/python/tomoe-dict.override 2007-06-05 11:44:35 UTC (rev 1265) +++ tomoe/trunk/ext/python/tomoe-dict.override 2007-06-05 11:49:21 UTC (rev 1266) @@ -5,7 +5,7 @@ %% new-constructor TOMOE_TYPE_DICT %% -ignore-glob +ignore tomoe_dict_load_module %% override tomoe_dict_new Modified: tomoe/trunk/ext/python/tomoe-recognizer.override =================================================================== --- tomoe/trunk/ext/python/tomoe-recognizer.override 2007-06-05 11:44:35 UTC (rev 1265) +++ tomoe/trunk/ext/python/tomoe-recognizer.override 2007-06-05 11:49:21 UTC (rev 1266) @@ -5,7 +5,7 @@ %% new-constructor TOMOE_TYPE_RECOGNIZER %% -ignore-glob +ignore tomoe_recognizer_load_module %% override tomoe_recognizer_new This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-05 11:44:34
|
Revision: 1265 http://tomoe.svn.sourceforge.net/tomoe/?rev=1265&view=rev Author: ikezoe Date: 2007-06-05 04:44:35 -0700 (Tue, 05 Jun 2007) Log Message: ----------- * ext/python/tomoe.defs: Remove tomoe_module_XX. * ext/python/tomoe-dict.override, ext/python/tomoe-recognizer.override: Ignore tomoe_XX_load_module. Modified Paths: -------------- tomoe/trunk/ChangeLog tomoe/trunk/ext/python/tomoe-dict.override tomoe/trunk/ext/python/tomoe-recognizer.override tomoe/trunk/ext/python/tomoe.defs Modified: tomoe/trunk/ChangeLog =================================================================== --- tomoe/trunk/ChangeLog 2007-06-05 10:49:01 UTC (rev 1264) +++ tomoe/trunk/ChangeLog 2007-06-05 11:44:35 UTC (rev 1265) @@ -9,6 +9,9 @@ * ext/python/tomoe-char.override, ext/python/tomoe-recognizer.override: Implement some functions. * ext/python/tomoe-dict.override: Implement some functions. + * ext/python/tomoe.defs: Remove tomoe_module_XX. + * ext/python/tomoe-dict.override, + ext/python/tomoe-recognizer.override: Ignore tomoe_XX_load_module. 2007-05-08 Takuro Ashie <as...@ho...> Modified: tomoe/trunk/ext/python/tomoe-dict.override =================================================================== --- tomoe/trunk/ext/python/tomoe-dict.override 2007-06-05 10:49:01 UTC (rev 1264) +++ tomoe/trunk/ext/python/tomoe-dict.override 2007-06-05 11:44:35 UTC (rev 1265) @@ -5,6 +5,9 @@ %% new-constructor TOMOE_TYPE_DICT %% +ignore-glob + tomoe_dict_load_module +%% override tomoe_dict_new static PyObject * _wrap_tomoe_dict_new(PyGObject *self, PyObject *args) Modified: tomoe/trunk/ext/python/tomoe-recognizer.override =================================================================== --- tomoe/trunk/ext/python/tomoe-recognizer.override 2007-06-05 10:49:01 UTC (rev 1264) +++ tomoe/trunk/ext/python/tomoe-recognizer.override 2007-06-05 11:44:35 UTC (rev 1265) @@ -5,6 +5,9 @@ %% new-constructor TOMOE_TYPE_RECOGNIZER %% +ignore-glob + tomoe_recognizer_load_module +%% override tomoe_recognizer_new static PyObject * _wrap_tomoe_recognizer_new(PyGObject *self, PyObject *args) Modified: tomoe/trunk/ext/python/tomoe.defs =================================================================== --- tomoe/trunk/ext/python/tomoe.defs 2007-06-05 10:49:01 UTC (rev 1264) +++ tomoe/trunk/ext/python/tomoe.defs 2007-06-05 11:44:35 UTC (rev 1265) @@ -35,13 +35,6 @@ (gtype-id "TOMOE_TYPE_DICT") ) -;(define-object Module -; (in-module "Tomoe") -; (parent "GTypeModule") -; (c-name "TomoeModule") -; (gtype-id "TOMOE_TYPE_MODULE") -;) - (define-object Query (in-module "Tomoe") (parent "GObject") @@ -963,80 +956,3 @@ ;; From tomoe-xml-parser.h - - -;; From tomoe-module.h - -(define-function tomoe_module_get_type - (c-name "tomoe_module_get_type") - (return-type "GType") -) - -(define-function tomoe_module_load_module - (c-name "tomoe_module_load_module") - (return-type "TomoeModule*") - (parameters - '("const-gchar*" "base_dir") - '("const-gchar*" "name") - ) -) - -(define-function tomoe_module_load_modules - (c-name "tomoe_module_load_modules") - (return-type "GList*") - (parameters - '("const-gchar*" "base_dir") - ) -) - -(define-function tomoe_module_load_modules_unique - (c-name "tomoe_module_load_modules_unique") - (return-type "GList*") - (parameters - '("const-gchar*" "base_dir") - '("GList*" "modules") - ) -) - -(define-function tomoe_module_find - (c-name "tomoe_module_find") - (return-type "TomoeModule*") - (parameters - '("GList*" "modules") - '("const-gchar*" "name") - ) -) - -(define-method instantiate - (of-object "TomoeModule") - (c-name "tomoe_module_instantiate") - (return-type "GObject*") - (parameters - '("const-gchar*" "first_property") - '("va_list" "var_args") - ) -) - -(define-function tomoe_module_collect_registered_types - (c-name "tomoe_module_collect_registered_types") - (return-type "GList*") - (parameters - '("GList*" "modules") - ) -) - -(define-function tomoe_module_collect_log_domains - (c-name "tomoe_module_collect_log_domains") - (return-type "GList*") - (parameters - '("GList*" "modules") - ) -) - -(define-method unload - (of-object "TomoeModule") - (c-name "tomoe_module_unload") - (return-type "none") -) - - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-05 10:49:08
|
Revision: 1264 http://tomoe.svn.sourceforge.net/tomoe/?rev=1264&view=rev Author: ikezoe Date: 2007-06-05 03:49:01 -0700 (Tue, 05 Jun 2007) Log Message: ----------- minor fix. Modified Paths: -------------- tomoe/trunk/ext/python/tomoe-recognizer.override Modified: tomoe/trunk/ext/python/tomoe-recognizer.override =================================================================== --- tomoe/trunk/ext/python/tomoe-recognizer.override 2007-06-05 10:48:39 UTC (rev 1263) +++ tomoe/trunk/ext/python/tomoe-recognizer.override 2007-06-05 10:49:01 UTC (rev 1264) @@ -3,6 +3,16 @@ #define NO_IMPORT_PYGOBJECT #include "tomoe-python-utils.h" %% +new-constructor TOMOE_TYPE_RECOGNIZER +%% +override tomoe_recognizer_new +static PyObject * +_wrap_tomoe_recognizer_new(PyGObject *self, PyObject *args) +{ + /* NOT IMPLEMENTED YET */ + return NULL; +} +%% override tomoe_recognizer_search kwargs static PyObject * _wrap_tomoe_recognizer_search(PyGObject *self, TomoeWriting *writing) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ik...@us...> - 2007-06-05 10:48:42
|
Revision: 1263 http://tomoe.svn.sourceforge.net/tomoe/?rev=1263&view=rev Author: ikezoe Date: 2007-06-05 03:48:39 -0700 (Tue, 05 Jun 2007) Log Message: ----------- * ext/python/tomoe-dict.override: Implement some functions. Modified Paths: -------------- tomoe/trunk/ChangeLog tomoe/trunk/ext/python/tomoe-dict.override Modified: tomoe/trunk/ChangeLog =================================================================== --- tomoe/trunk/ChangeLog 2007-06-05 10:34:27 UTC (rev 1262) +++ tomoe/trunk/ChangeLog 2007-06-05 10:48:39 UTC (rev 1263) @@ -8,6 +8,7 @@ Implement some functions. * ext/python/tomoe-char.override, ext/python/tomoe-recognizer.override: Implement some functions. + * ext/python/tomoe-dict.override: Implement some functions. 2007-05-08 Takuro Ashie <as...@ho...> Modified: tomoe/trunk/ext/python/tomoe-dict.override =================================================================== --- tomoe/trunk/ext/python/tomoe-dict.override 2007-06-05 10:34:27 UTC (rev 1262) +++ tomoe/trunk/ext/python/tomoe-dict.override 2007-06-05 10:48:39 UTC (rev 1263) @@ -3,6 +3,16 @@ #define NO_IMPORT_PYGOBJECT #include "tomoe-python-utils.h" %% +new-constructor TOMOE_TYPE_DICT +%% +override tomoe_dict_new +static PyObject * +_wrap_tomoe_dict_new(PyGObject *self, PyObject *args) +{ + /* NOT IMPLEMENTED YET */ + return NULL; +} +%% override tomoe_dict_search kwargs static PyObject * _wrap_tomoe_dict_search(PyGObject *self, TomoeQuery *query) @@ -19,3 +29,35 @@ return py_cands; } %% +override tomoe_dict_get_registered_types noargs +static PyObject * +_wrap_tomoe_dict_get_registered_types(PyGObject *self) +{ + GList *types; + PyObject *py_list; + + types = tomoe_dict_get_registered_types (TOMOE_DICT(self->obj)); + + CONVERT_LIST (py_list, types); + + g_list_free (types); + + return py_list; +} +%% +override tomoe_dict_get_log_domains noargs +static PyObject * +_wrap_tomoe_dict_get_log_domains(PyGObject *self) +{ + GList *domains; + PyObject *py_list; + + domains = tomoe_dict_get_log_domains (TOMOE_DICT(self->obj)); + + CONVERT_LIST (py_list, domains); + + g_list_free (domains); + + return py_list; +} +%% This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |