summaryrefslogtreecommitdiff
path: root/src/ephy-search-provider-main.c
Commit message (Collapse)AuthorAgeFilesLines
* UncrustifyMichael Catanzaro2016-03-291-1/+1
| | | | | | | | | | | | | | For a better future. Apologies when your 'git blame' resolves to this. I'm actually really impressed how well uncrustify works. This required only a little one-time manual work to avoid extra space in 'else {'. This breaks function prototype alignment, but we should get rid of most of those anyway. We decided to start aligning function parameters, like other GNOME applications. It looks nicer this way, and I couldn't teach uncrustify the previous Epiphany style.
* Remove FSF address from license headersMichael Catanzaro2015-12-071-4/+2
|
* Really fix translations in the search providerMichael Catanzaro2015-06-301-0/+2
| | | | | | We need to call setlocale() manually because we are not a GTK+ application and do not call gtk_init() (which would normally handle this for us).
* Use plain LOCALEDIRMichael Catanzaro2015-06-301-1/+1
| | | | | | The variable rename is itself of no consequence, just to be more standard. But $(localedir) may not necessarily be $(datadir)/locale, so this aspect of the change makes a real difference.
* Make gettext mandatory and stop using glib-gettextMichael Catanzaro2015-06-301-2/+0
| | | | | | | | | | | | | | | It's fighting with intltool and intltool is winning, so no point in keeping it around and making things more complicated. In the future, it would be good to replace intltool with upstream gettext (not glib-gettext), but we still need intltool to translate the appdata file. In the meantime, we'll no longer have two competing applications that both want to create po/Makefile.in.in. The AM_GLIB_GNU_GETTEXT macro was defining ENABLE_NLS if gettext is available, to make i18n optional. But most GNOME programs require gettext nowadays, and it's installed pretty much everywhere, so there is no reason for it to be optional anymore. Note, the only reason we were using glib-gettext before, as far as I see, was to define ENABLE_NLS.
* search-provider: initialize translationsMichael Catanzaro2015-06-141-0/+9
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=737085
* Fix the search providerMichael Catanzaro2015-02-061-0/+4
| | | | | | | | | | | | The search provider is crashing on start since 3806c195d631cc55f2cef64c4be6bc733745e730. EphyEmbedShell needs to create a WebKitWebContext. We could also try to inherit EphySearchProvider from EphyShell and then run EphyEmbedShell as a GApplication, but that is really horrible madness. https://bugzilla.gnome.org/show_bug.cgi?id=741595
* Move the search provider to its own binaryCarlos Garcia Campos2013-12-111-0/+46
https://bugzilla.gnome.org/show_bug.cgi?id=711409