* src/grampslib.i: same fixes as grampslib_wrap.c
* src/plugins/RelCalc.py: use preferred name format svn: r2695
This commit is contained in:
parent
28a7b09c64
commit
e2b4392a39
@ -1,6 +1,10 @@
|
||||
%module grampslib
|
||||
%{
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <libgnomevfs/gnome-vfs-application-registry.h>
|
||||
GList *gnome_vfs_get_registered_mime_types(void);
|
||||
void gnome_vfs_mime_registered_mime_type_list_free(GList*);
|
||||
%}
|
||||
|
||||
extern const char* gnome_vfs_mime_get_icon(const char *);
|
||||
@ -10,21 +14,45 @@ extern const char* gnome_vfs_mime_get_value(const char*,const char*);
|
||||
|
||||
%inline %{
|
||||
const char* default_application_name(const char* type) {
|
||||
GnomeVFSMimeApplication *a = gnome_vfs_mime_get_default_application(type);
|
||||
if (a) {
|
||||
return a->name;
|
||||
} else {
|
||||
return (char*) NULL;
|
||||
|
||||
GList *node;
|
||||
char* value;
|
||||
char* retval = NULL;
|
||||
|
||||
GList *s = gnome_vfs_get_registered_mime_types();
|
||||
|
||||
for (node = g_list_first(s); node != NULL; node = g_list_next(node)) {
|
||||
if (!strcmp((char*)node->data,type)) {
|
||||
GnomeVFSMimeApplication *a = gnome_vfs_mime_get_default_application(type);
|
||||
if (a) {
|
||||
retval = a->name;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
gnome_vfs_mime_registered_mime_type_list_free(s);
|
||||
return retval;
|
||||
}
|
||||
|
||||
const char* default_application_command(const char* type) {
|
||||
GnomeVFSMimeApplication *a = gnome_vfs_mime_get_default_application(type);
|
||||
if (a) {
|
||||
return a->command;
|
||||
} else {
|
||||
return (char*) NULL;
|
||||
}
|
||||
|
||||
GList *node;
|
||||
char* value;
|
||||
char* retval = NULL;
|
||||
|
||||
GList *s = gnome_vfs_get_registered_mime_types();
|
||||
|
||||
for (node = g_list_first(s); node != NULL; node = g_list_next(node)) {
|
||||
if (!strcmp((char*)node->data,type)) {
|
||||
GnomeVFSMimeApplication *a = gnome_vfs_mime_get_default_application(type);
|
||||
if (a) {
|
||||
retval = a->command;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
gnome_vfs_mime_registered_mime_type_list_free(s);
|
||||
return retval;
|
||||
}
|
||||
|
||||
%}
|
||||
|
@ -43,6 +43,7 @@ import gtk.glade
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
import Utils
|
||||
import GrampsCfg
|
||||
import ListModel
|
||||
import Plugins
|
||||
from gettext import gettext as _
|
||||
@ -136,8 +137,8 @@ class RelCalc:
|
||||
commontext = ""
|
||||
|
||||
text1 = self.glade.get_widget("text1").get_buffer()
|
||||
p1 = self.person.getPrimaryName().getName()
|
||||
p2 = other_person.getPrimaryName().getName()
|
||||
p1 = GrampsCfg.nameof(self.person)
|
||||
p2 = GrampsCfg.nameof(other_person)
|
||||
|
||||
if rel_string == "":
|
||||
rstr = _("%(person)s and %(active_person)s are not related.") % {
|
||||
|
Loading…
Reference in New Issue
Block a user