From: Magnus H. <leg...@us...> - 2008-10-23 01:23:55
|
Update of /cvsroot/emacs-jabber/emacs-jabber/gconf In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv22140/gconf Added Files: emacs-jabber.schemas.in Makefile.am Log Message: Revision: ma...@fr...--2005/emacs-jabber--cvs-head--0--patch-612 Creator: Magnus Henoch <ma...@fr...> Install GConf schema for XMPP URI handler --- NEW FILE: Makefile.am --- schemadir = $(GCONF_SCHEMA_FILE_DIR) schema_DATA = emacs-jabber.schemas CLEANFILES = $(schema_DATA) EXTRA_DIST = emacs-jabber.schemas.in emacs-jabber.schemas: emacs-jabber.schemas.in Makefile sed -e "s|@""libexecdir@""|$(libexecdir)|" < $(srcdir)/emacs-jabber.schemas.in > emacs-jabber.schemas install-data-local: GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(schema_DATA) uninstall-local: GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-uninstall-rule $(schema_DATA) --- NEW FILE: emacs-jabber.schemas.in --- <?xml version="1.0"?> <gconfschemafile> <schemalist> <schema> <key>/schemas/desktop/gnome/url-handlers/xmpp/enabled</key> <applyto>/desktop/gnome/url-handlers/xmpp/enabled</applyto> <owner>emacs-jabber</owner> <type>bool</type> <default>true</default> <locale name="C"> <short>Whether the specified command should handle "xmpp" URLs</short> <long>True if the command specified in the "command" key should handle "xmpp" URLs.</long> </locale> </schema> <schema> <key>/schemas/desktop/gnome/url-handlers/xmpp/command</key> <applyto>/desktop/gnome/url-handlers/xmpp/command</applyto> <owner>emacs-jabber</owner> <type>string</type> <default>@libexecdir@/xmppuri.sh "%s"</default> <locale name="C"> <short>The handler for "xmpp" URLs</short> <long>The command used to handle "xmpp" URLs, if enabled.</long> </locale> </schema> <schema> <key>/schemas/desktop/gnome/url-handlers/xmpp/needs_terminal</key> <applyto>/desktop/gnome/url-handlers/xmpp/needs_terminal</applyto> <owner>emacs-jabber</owner> <type>bool</type> <default>false</default> <locale name="C"> <short>Run the command in a terminal</short> <long>True if the command used to handle this type of URL should be run in a terminal.</long> </locale> </schema> </schemalist> </gconfschemafile> |