allow to specify the location of the index files independently from the

2004-08-14  Sven Neumann  <sven@gimp.org>

	* plug-ins/help/domain.[ch]: allow to specify the location of the
	index files independently from the base URL.

	* plug-ins/help/help.c: changed accordingly.

	* plug-ins/help/gimp-help-lookup.c: added command-line options to
	specify base URI and root directory for index files.
This commit is contained in:
Sven Neumann
2004-08-14 17:53:40 +00:00
committed by Sven Neumann
parent dba01430e9
commit 1d669a5b4e
8 changed files with 172 additions and 75 deletions

View File

@ -157,11 +157,11 @@ run (const gchar *name,
{
gint i;
domain_register (GIMP_HELP_DEFAULT_DOMAIN, default_domain_uri);
domain_register (GIMP_HELP_DEFAULT_DOMAIN, default_domain_uri, NULL);
for (i = 0; i < num_domain_names; i++)
{
domain_register (domain_names[i], domain_uris[i]);
domain_register (domain_names[i], domain_uris[i], NULL);
}
}
else