summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Updated Basque languagegnome-2-22Inaki Larranaga Murgoitio2010-03-221-60/+36
|
* Call g_thread_init(NULL) here as libORBit-2 would anyway, and it is bestTor Lillqvist2009-01-272-0/+8
| | | | | | | | | | | 2009-01-27 Tor Lillqvist <tml@novell.com> * gconf/gconfd.c (main): Call g_thread_init(NULL) here as libORBit-2 would anyway, and it is best to call g_thread_init() as early as possible if it will be called at all. svn path=/branches/gnome-2-22/; revision=2749
* Merge changes from my build scripts.Tor Lillqvist2009-01-272-117/+325
| | | | | | | | | | | | | | | | | | | | | | | 2009-01-27 Tor Lillqvist <tml@novell.com> Merge changes from my build scripts. * gconf/gconf-internals.c (create_new_locked_file): Drop the Win9x code path. There is no Win9x support any more lower in the stack anyway. * gconf/gconf-internals.c: Rework locking on Windows. (create_new_locked_file): Don't attempt to use shared open with deny modes on Windows, that never worked correctly here. (gconf_release_lock): Truncate the file to zero size before closing. This is to avoid race conditions, as we don't want the file to exist but with seemingly valid contents between closing and unlinking. svn path=/branches/gnome-2-22/; revision=2748
* Merge from trunk:Tor Lillqvist2009-01-272-21/+14
| | | | | | | | | | | | 2009-01-27 Tor Lillqvist <tml@novell.com> Merge from trunk: * gconf/dllmain.c (setup): Drop the Win9x code path. There is no Win9x support any more lower in the stack anyway. svn path=/branches/gnome-2-22/; revision=2747
* Nah, don't try duping fileno(stdout) to fileno(stderr), won't work if ↵Tor Lillqvist2009-01-271-5/+1
| | | | | | fileno(stderr) is -1. svn path=/branches/gnome-2-22/; revision=2745
* Add a blank line for readability.Tor Lillqvist2009-01-271-0/+1
| | | | svn path=/branches/gnome-2-22/; revision=2744
* Committing this here in the gnome-2-22 branch because this is what isTor Lillqvist2009-01-273-114/+152
| | | | | | | | | | | | | | | | | | | | 2009-01-27 Tor Lillqvist <tml@novell.com> Committing this here in the gnome-2-22 branch because this is what is still used on Windows without dbus. * gconf/Makefile.am (gconfd_2_LDFLAGS): Use the -mwindows flag when linking on Windows, so that we build a "GUI" executable. * gconf/gconfd.c (main): On Windows, with GCONF_DEBUG_OUTPUT set, make sure stdout and stderr go somewhere. Use the parent's console window if possible, otherwise open an own console window. If we had to open an own console window, give the user a chance to read the output when exiting. Same idea that has been successfully used in GIMP for a while. svn path=/branches/gnome-2-22/; revision=2743
* Updated Dzongkha TranslationPema Geyleg2008-10-222-917/+764
| | | | svn path=/branches/gnome-2-22/; revision=2701
* Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>Alexander Shopov2008-07-062-392/+557
| | | | | | | | | 2008-07-06 Alexander Shopov <ash@contact.bg> * bg.po: Updated Bulgarian translation by Alexander Shopov <ash@contact.bg> svn path=/branches/gnome-2-22/; revision=2627
* Translation updated by Ivar SmolinPriit Laes2008-06-102-9/+15
| | | | | | | | 2008-06-10 Priit Laes <plaes at svn dot gnome dot org> * et.po: Translation updated by Ivar Smolin svn path=/branches/gnome-2-22/; revision=2618
* Translation updated by Ivar SmolinPriit Laes2008-05-252-221/+281
| | | | | | | | 2008-05-25 Priit Laes <plaes at svn dot gnome dot org> * et.po: Translation updated by Ivar Smolin svn path=/branches/gnome-2-22/; revision=2608
* bump glib require to 2.14 remove some if 0'd code, and dropRay Strode2008-05-143-53/+8
| | | | | | | | | | | | 2008-05-14 Ray Strode <rstrode@redhat.com> * configure.in: bump glib require to 2.14 * backends/markup-backend.c (cleanup_timeout), (ms_new), (ms_destroy): remove some if 0'd code, and drop g_source_remove on non-existant timeout to prevent warning svn path=/branches/gnome-2-22/; revision=2597
* Tie gconf daemon to session bus and drop use daemon GetIOR() methodRay Strode2008-05-097-346/+244
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-05-09 Ray Strode <rstrode@redhat.com> Tie gconf daemon to session bus and drop use daemon GetIOR() method instead of /tmp/something/ior to tell clients about ior (bugs 141138 and 507310) * configure.in: depend on dbus * gconf/gconfd.c (get_introspection_xml), (bus_message_handler), (get_on_d_bus), (main): Connect to message bus, take org.gnome.GConf name, and export GetIOR() method. Quit, when session quits. * Makefile.am: * gconf/org.gnome.GConf.server.in: new service file to support session bus activation * gconf/gconf-sanity-check.c (offer_delete_locks): Daemon doesn't have a lock anymore, so need to try to blow it away. * gconf/gcon-internals.c (read_current_server_and_set_warning), (read_current_server), (gconf_get_current_lock_holder), (gconf_daemon_blow_away_locks), (set_cloexec), (close_fd_func): dropped functions dealing with files in /tmp (get_ior), (gconf_get_server), (gconf_get_lock_or_current_holder), (gconf_activate_server: call GetIOR method instead of of reading /tmp/gconf-$USER/ior svn path=/trunk/; revision=2589
* Patch from Frederic Crozat to allow override $TMPDIR. Closes bug #497113.Kjartan Maraas2008-05-073-4/+32
| | | | | | | | | | | 2008-05-07 Kjartan Maraas <kmaraas@gnome.org> * gconf/gconf-internals.c: (gconf_get_daemon_dir): * gconf/gconf-sanity-check.c: (check_file_locking): Patch from Frederic Crozat to allow override $TMPDIR. Closes bug #497113. svn path=/trunk/; revision=2588
* Get rid of critical warning (and crash when built with --disable-debug),Richard Hult2008-05-072-4/+10
| | | | | | | | | | | 2008-05-07 Richard Hult <richard@imendio.com> * gconf/gconf-database.c (gconf_database_notify_listeners): Get rid of critical warning (and crash when built with --disable-debug), when unsetting a key that has no writable sources. svn path=/trunk/; revision=2587
* Use new glib api to batch timeouts. Patch from Matthias Clasen. Closes bugKjartan Maraas2008-05-074-11/+21
| | | | | | | | | | | | 2008-05-07 Kjartan Maraas <kmaraas@gnome.org> * backends/markup-backend.c: (cleanup_timeout), (ms_new): * gconf/gconf-database.c: (gconf_database_schedule_sync): * gconf/gconfd.c: (gconf_main), (open_append_handle): Use new glib api to batch timeouts. Patch from Matthias Clasen. Closes bug #531063. svn path=/trunk/; revision=2586
* Add NEWS entryKjartan Maraas2008-05-071-0/+5
| | | | svn path=/trunk/; revision=2585
* Merge the desyslogification patch from Debian. Also used in Fedora now.Kjartan Maraas2008-05-074-159/+40
| | | | | | | | | | | 2008-05-07 Kjartan Maraas <kmaraas@gnome.org> * gconf/gconf-internals.c: (gconf_log): * gconf/gconf-sources.c: (gconf_sources_new_from_addresses): * gconf/gconfd.c: (main): Merge the desyslogification patch from Debian. Also used in Fedora now. Closes bug #126468. svn path=/trunk/; revision=2584
* Update Vietnamese translationNguyễn Thái Ngọc Duy2008-03-232-441/+473
| | | | | | | | | 2008-03-23 Nguyễn Thái Ngọc Duy <pclouds@gmail.com> * vi.po: Update Vietnamese translation svn path=/trunk/; revision=2583
* use AC_HELP_STRING for help strings (so they get proper line breaks andSven Herzberg2008-03-202-4/+13
| | | | | | | | | 2008-03-17 Sven Herzberg <sven@imendio.com> * gconf-2.m4.in: use AC_HELP_STRING for help strings (so they get proper line breaks and consistent indentation) svn path=/trunk/; revision=2582
* Updated TranslationLaurent Dhima2008-03-202-1/+6
| | | | svn path=/trunk/; revision=2581
* Unblock signals when starting gconfd, since we might inherit some blockedVincent Untz2008-03-192-0/+13
| | | | | | | | | | | | | 2008-03-19 Vincent Untz <vuntz@gnome.org> Unblock signals when starting gconfd, since we might inherit some blocked signals from the parent process. Fix bug #505488. Patch by Javier Uruen Val <juruen@warp.es> * gconf/gconfd.c: (main): unblock all signals svn path=/trunk/; revision=2580
* Updated TranslationLaurent Dhima2008-03-182-93/+201
| | | | svn path=/trunk/; revision=2579
* Updated Slovak translation.Marcel Telka2008-03-172-607/+676
| | | | | | | | 2008-03-17 Marcel Telka <marcel@telka.sk> * sk.po: Updated Slovak translation. svn path=/trunk/; revision=2578
* Updated Danish translationKenneth Nielsen2008-03-102-227/+289
| | | | svn path=/trunk/; revision=2577
* Post release version bumpKjartan Maraas2008-03-102-1/+5
| | | | | | | | 2008-03-10 Kjartan Maraas <kmaraas@gnome.org> * configure.in: Post release version bump svn path=/trunk/; revision=2576
* Release 2.22.0GCONF_2_22_0Kjartan Maraas2008-03-104-1/+12
| | | | svn path=/trunk/; revision=2574
* Updated Occitan translationYannig MARCHEGAY2008-03-081-1/+1
| | | | svn path=/trunk/; revision=2573
* *ro.po: Updated Romanian translationMugurel Tudor2008-03-072-217/+218
| | | | | | | | 2008-03-07 Mugurel Tudor <mugurelu@gnome.ro> *ro.po: Updated Romanian translation svn path=/trunk/; revision=2572
* Updated TranslationLaurent Dhima2008-03-072-332/+274
| | | | svn path=/trunk/; revision=2571
* Fixes in Brazilian Portuguese translation.Leonardo Ferreira Fontenelle2008-03-072-530/+847
| | | | | | | | 2008-03-07 Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org> * pt_BR.po: Fixes in Brazilian Portuguese translation. svn path=/trunk/; revision=2570
* Updated Russian translation.Yuri Kozlov2008-03-032-266/+251
| | | | | | | | | 2008-03-03 Yuri Kozlov <kozlov.y@gmail.com> * ru.po: Updated Russian translation. svn path=/trunk/; revision=2569
* Updated Marathi TranslationsRahul Bhalerao2008-03-032-111/+185
| | | | svn path=/trunk/; revision=2568
* Argh, revert bogus change.Tor Lillqvist2008-03-032-5/+0
| | | | svn path=/trunk/; revision=2567
* Include gconfd executable.Tor Lillqvist2008-03-032-0/+5
| | | | | | | | | 2008-03-03 Tor Lillqvist <tml@novell.com> * gconf-zip.in: Include gconfd executable. svn path=/trunk/; revision=2566
* Updated British English translation.Philip Withnall2008-03-022-641/+890
| | | | | | | | | 2008-03-02 Philip Withnall <pwithnall@svn.gnome.org> * en_GB.po: Updated British English translation. svn path=/trunk/; revision=2565
* Updated Spanish translationJorge Gonzalez Gonzalez2008-03-022-21/+31
| | | | svn path=/trunk/; revision=2564
* Updated Lithuanian translation.Gintautas Miliauskas2008-03-022-224/+212
| | | | | | | | | | 2008-03-02 Gintautas Miliauskas <gintas@akl.lt> * lt.po: Updated Lithuanian translation. svn path=/trunk/; revision=2563
* update po-revision-date that had been forgotten to be updatedTimo Jyrinki2008-03-021-1/+1
| | | | svn path=/trunk/; revision=2562
* 2008-03-01 Jovan Naumovski <jovanna@svn.gnome.org> *mk.po: Updated ↵Jovan Naumovski2008-03-012-343/+332
| | | | | | Macedonian translation. svn path=/trunk/; revision=2561
* Updated TranslationAnkitkumar Rameshchandra Patel2008-02-292-241/+221
| | | | svn path=/trunk/; revision=2560
* Updated Portuguese translation.Duarte Loreto2008-02-252-59/+63
| | | | | | | | 2008-02-25 Duarte Loreto <happyguy_pt@hotmail.com> * pt.po: Updated Portuguese translation. svn path=/trunk/; revision=2559
* Updated Italian translation.Luca Ferretti2008-02-252-239/+261
| | | | | | | | 2008-02-25 Luca Ferretti <elle.uca@libero.it> * it.po: Updated Italian translation. svn path=/trunk/; revision=2558
* Translation updated by Ivar SmolinPriit Laes2008-02-242-11/+15
| | | | | | | | 2008-02-24 Priit Laes <plaes at svn dot gnome dot org> * et.po: Translation updated by Ivar Smolin svn path=/trunk/; revision=2557
* Translation updatedGabor Kelemen2008-02-232-417/+391
| | | | | | | | | 2008-02-23 Gabor Kelemen <kelemeng@gnome.hu> * hu.po: Translation updated svn path=/trunk/; revision=2556
* Updated Norwegian Nynorsk translation.Åsmund Skjæveland2008-02-231-67/+36
| | | | | | | | 2008-02-23 Åsmund Skjæveland <aasmunds@ulrik.uio.no> * nn.po: Updated Norwegian Nynorsk translation. svn path=/trunk/; revision=2555
* Updated Norwegian Nynorsk translation.Åsmund Skjæveland2008-02-232-234/+220
| | | | | | | | 2008-02-23 Åsmund Skjæveland <aasmunds@ulrik.uio.no> * nn.po: Updated Norwegian Nynorsk translation. svn path=/trunk/; revision=2554
* cs.po: Updated Czech translation by Jiri Eischmann.Petr Kovář2008-02-222-501/+491
| | | | svn path=/trunk/; revision=2553
* Updated Occitan translationYannig MARCHEGAY2008-02-191-54/+53
| | | | svn path=/trunk/; revision=2551
* reviewed by: Mark McLoughlin.Josselin Mouette2008-02-192-12/+25
| | | | | | | | | | | | | 2008-02-19 Josselin Mouette <joss@malsain.org> reviewed by: Mark McLoughlin. * backends/evoldap-backend.c: (get_variable), (get_ldap_connection), (lookup_values_from_ldap): replace functions that have been deprecated in OpenLDAP 2.4 by up-to-date ones. Closes bug#516877. svn path=/trunk/; revision=2550