Mercurial > pidgin.yaz
view doc/certificate-signals.dox @ 20640:ecfc73719334
When running stats.pl, just update the po files in place rather than
creating a temporary file which is later deleted. This changes causes
the po files to show up as modified in your workspace, but I don't
think many people care.
There are two benefits to this:
1. When this script is run on pidgin.im it will always only have to
account for strings that have changed in the last day, which means
it'll run a lot faster
2. The msgmerge'd po files will be put online at
http://developer.pidgin.im/l10n/ for the convenience of the
translators
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Tue, 25 Sep 2007 08:54:29 +0000 |
parents | c0ccfe389b23 |
children | e0613cf8c493 |
line wrap: on
line source
/** @page certificate-signals Certificate Signals @signals @signal certificate-stored @signal certificate-deleted @endsignals <hr> @signaldef certificate-stored @signalproto void (*certificate_stored)(PurpleCertificatePool *pool, const gchar *id, gpointer data); @endsignalproto @signaldesc Emitted when a pool stores a certificate. Connect to the pool instance. @param pool Pool the certificate has been stored into @param id Key the certificate was stored under @endsignaldef @signaldef certificate-deleted @signalproto void (*certificate_deleted)(PurpleCertificatePool *pool, const gchar *id, gpointer data); @endsignalproto @signaldesc Emitted when a pool deletes a certificate. Connect to the pool instance. @param pool Pool the certificate was deleted from @param id Key that was deleted @endsignaldef */ // vim: syntax=c tw=75 et