summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* NEWS for fd.o #24779.telepathy-mission-control-5.6Will Thompson2010-12-011-1/+4
|
* Merge branch 'fd.o-24779-CurrentPresence-incorrect' into ↵Will Thompson2010-12-012-37/+80
|\ | | | | | | | | | | | | telepathy-mission-control-5.6 Fixes: <https://bugs.freedesktop.org/show_bug.cgi?id=24779> Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
| * Clean up SimplePresence-building code.Will Thompson2010-09-161-9/+7
| |
| * Set CurrentPresence to Unset if online without SimplePresenceWill Thompson2010-09-162-14/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The spec says: If the connection is online but does not support the SimplePresence interface, this should be (Connection_Presence_Type_Unset, "", ""). But previously we only updated CurrentPresence in response to PresencesChanged being emitted for our self handle, which it obviously never is by connections which don't implement SimplePresence. (Actually, this was right by accident until my previous commit, because CurrentPresence was initialized to (0, NULL, NULL).) Fixes: <https://bugs.freedesktop.org/show_bug.cgi?id=24779>
| * Correctly initialize Account.CurrentPresenceWill Thompson2010-09-162-14/+27
| | | | | | | | | | | | The spec says that CurrentPresence being 'Unset' (which is value 0, hence the default if we don't change it) means that the connection is online, but doesn't support SimplePresence.
* | Nano versionSimon McVittie2010-11-172-1/+6
| |
* | Version 5.6.1telepathy-mission-control-5.6.1Simon McVittie2010-11-172-2/+4
| |
* | Update NEWSSimon McVittie2010-11-171-1/+15
| |
* | Use the new AG_SERVICE macro instead of hardiwring "IM" everywhere.Vivek Dasmohapatra2010-10-271-5/+5
| |
* | Register for the IM service type specifically: no wakeups for non-IM changesVivek Dasmohapatra2010-10-271-1/+2
| |
* | Implement the "list" operation in the libaccounts backendVivek Dasmohapatra2010-10-122-0/+82
| |
* | Obsolete functions no longer used by the libaccounts get/set implementationsVivek Dasmohapatra2010-10-121-50/+0
| |
* | Update the libaccounts "set" implementation to use the new helpersVivek Dasmohapatra2010-10-121-16/+16
| |
* | Update libaccounts "get" implementation to use the new helper functionsVivek Dasmohapatra2010-10-121-20/+33
| |
* | Helper function to save settings in the SSOVivek Dasmohapatra2010-10-121-0/+34
| |
* | Helper functions to map the enabled flag to the enabled tri-state in SSOVivek Dasmohapatra2010-10-121-0/+55
| |
* | Implement the same AG <-> MC setting mapping functions as the SSO storage pluginVivek Dasmohapatra2010-10-121-8/+107
| |
* | Fix up g_log related helpers so they build (bad comparison, bad func signature)Vivek Dasmohapatra2010-10-121-3/+6
| |
* | Implement the "list" operation in the default account store tool backendVivek Dasmohapatra2010-10-122-0/+8
| |
* | Implement the "list" operation in tha account store toolVivek Dasmohapatra2010-10-121-7/+25
| |
* | Missing includesVivek Dasmohapatra2010-10-122-0/+2
| |
* | Let ag parameters/account shadow the ag 'username'/mc 'param-account' mappingVivek Dasmohapatra2010-10-111-2/+40
| | | | | | | | | | New convention introduced to meet the requirements of a libaccounts platform: Normally the account parameter is mapped from the global 'username' setting.
* | Merge branch 'mc-tool-types' into telepathy-mission-control-5.6Will Thompson2010-10-071-4/+15
|\ \ | | | | | | | | | | | | | | | | | | Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk> Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk> Reviewed-by: Vivek Dasmohapatra <vivek@collabora.co.uk> Reviewed-by: Vivek Dasmohapatra <vivek@collabora.co.uk>
| * | mc-tool: support object path parametersWill Thompson2010-10-071-1/+11
| | |
| * | mc-tool: make help consistent about supported typesWill Thompson2010-10-071-4/+5
|/ / | | | | | | Also, make it a bit more readable, and avoid the lines wrapping.
* | fd.o #30448: make type of mcp_account_storage_get_restrictions consistent ↵Simon McVittie2010-10-061-4/+6
| | | | | | | | | | | | | | | | | | | | | | with the header It seems we changed the implementation but not the header, and Solaris CC is stricter about this than gcc. Since the header defines our API, it seems better to fix this in the implementation for the moment. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=30448 Reviewed-by: Vivek Dasmohapatra <vivek@collabora.co.uk>
* | mcd-manager.c: don't define _POSIX_C_SOURCE for strtok_r, which we don't useSimon McVittie2010-09-291-1/+0
| |
* | fd.o #30447: don't use "return x()", where x returns void, in void functionsSimon McVittie2010-09-292-2/+2
| | | | | | | | | | | | | | | | | | Solaris CC doesn't allow this. [In fact, neither does ISO C99 --smcv] Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk> Bug: https://bugs.freedesktop.org/show_bug.cgi?id=30447
* | Must include config.h when using AC_DEFINE'd macrosVivek Dasmohapatra2010-09-291-0/+1
| |
* | Nano version 5.6.0+Simon McVittie2010-09-162-1/+6
|/
* Prepare MC 5.6.0telepathy-mission-control-5.6.0Simon McVittie2010-09-162-2/+2
|
* Don't warn about deprecated declarationsSimon McVittie2010-09-161-1/+2
| | | | | | | This is about to be a stable branch, so we're not going to fix any uses of newly-deprecated functions in future. (To be reverted in master after branching for 5.6.)
* Update NEWSSimon McVittie2010-09-161-2/+34
|
* If keyring support is off, we define stubroutines, we dn't #if them outVivek Dasmohapatra2010-09-161-2/+0
| | | | | The unused definition warning -> error will bite us if we both define a noop stubroutine _and_ #if the use of that name out as well.
* Superfluous includeVivek Dasmohapatra2010-09-161-1/+0
|
* Install mcd-storage.h [needed by mcd-account-manager.h]Vivek Dasmohapatra2010-09-161-1/+2
|
* test/account-store: fix one more build warningSimon McVittie2010-09-151-1/+6
| | | | Reviewed-by: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
* Fix various build warningsVincent Untz2010-09-153-5/+11
| | | | Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
* Nano versionSimon McVittie2010-09-142-1/+6
|
* Prepare version 5.5.4upstream/5.5.4telepathy-mission-control-5.5.4Simon McVittie2010-09-142-4/+9
|
* test/Makefile.am: simplify CFLAGSSimon McVittie2010-09-141-4/+1
|
* Knock out the account-storage/libaccounts-sso-storage test for 5.6Simon McVittie2010-09-142-5/+2
| | | | I'm unable to test it and it looks unfinished.
* Run account storage tests in their own session, and not in installcheckSimon McVittie2010-09-141-11/+14
| | | | | | | | | | The gnome-keyring test assumes that it's talking to a MC instance configured to use the temporary keyring, which won't be true unless we run it in its own instance; the diverted-storage test makes assumptions about account naming that aren't necessarily true in a non-new MC instance. Similarly, these tests use Abort() which isn't in the real MC.
* Move keyfile_read() to mctest, fixing distcheck in a simple waySimon McVittie2010-09-144-30/+25
| | | | There seems little point in separating out such a small utility function.
* Add keyring-manipulation stuff to .gitignoreSimon McVittie2010-09-141-0/+2
|
* Compile test/. before test/twistedSimon McVittie2010-09-141-1/+1
| | | | | Otherwise, 'make check' in a clean tree won't work: account-store and keyring-command won't have been compiled yet when test/twisted is entered.
* Merge branch 'master' into storage-testsSimon McVittie2010-09-1416-983/+1634
|\
| * Generate a GError in the "unsupported type" case of the dup_value methodVivek Dasmohapatra2010-09-141-2/+9
| |
| * Tidy up the GError logic in dup_value, and document the value+error behaviourVivek Dasmohapatra2010-09-142-6/+19
| |
| * Make sure the type of the passed in value matches the type from McdStorageVivek Dasmohapatra2010-09-141-17/+20
| |