Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-daemon.c
Commit message (Collapse)AuthorAgeFilesLines
* [ev-daemon] Add FindDocument method to the daemon DBus interfaceJose Aliste2010-07-091-1/+24
| | | | | It returns the name owner of the evince process for the given document URI.
* Use g_bus_own_name and register object on bus acquired callbackCarlos Garcia Campos2010-05-251-59/+60
| | | | | It simplifies the code and we don't need to take care about connection refcount
* Use always the session bus instead of starterCarlos Garcia Campos2010-05-251-1/+1
| | | | I'm not sure it makes sense using the system bus
* Update to current GDBus APICarlos Garcia Campos2010-05-251-1/+0
|
* [shell] Use g_bus_watch_name_on_connection()Christian Persch2010-05-251-6/+6
| | | | We already have the bus connection here, so just pass it along.
* [daemon] Add debug output to name watcherChristian Persch2010-05-251-0/+5
|
* [daemon] Return "" from RegisterDocument on new documentsChristian Persch2010-05-251-19/+21
| | | | So we can distinguish this case in ev_application_register_uri().
* [daemon] Add some debug logging to the daemonChristian Persch2010-05-251-0/+13
|
* [daemon] Fix RegisterDocumentChristian Persch2010-05-251-6/+4
| | | | | Was returning the wrong type. Also use g_set_prgname() in main().
* [shell] Plug refcount leaksChristian Persch2010-05-251-0/+1
|
* [daemon] Port to GDBusChristian Persch2010-05-251-264/+219
|
* [ev-daemon] Respect GNOME22_USER_DIR env variableCarlos Garcia Campos2010-05-031-8/+14
|
* Update FSF address everywhere.Arun Persaud2010-04-051-1/+1
| | | | | | | | updated where 'git grep Temple' showed an old address, not including po-files. Fixes bug# 514607. Signed-off-by: Arun Persaud <arun@nubati.net>
* daemon: Use g_spawn_sync, and correctly test exit codeChristian Persch2009-10-201-9/+13
| | | | | Use g_spawn_sync() to launch the migration script, and test the exit code using WIFEXITSTATUS.
* Run evince instances in different processes instead of single instanceCarlos Garcia Campos2009-10-201-0/+442
- When built with DBus support a daemon is used to keep track of opened documents and reload them when reopened. - Crash recovery code has been removed. - Metadata migration code has been moved from main.c to ev-daemon.c, so that it's only run once on daemon startup. Fixes bgo#583680, bgo#434966, bgo#497388, bgo#524633 and bgo#586087.