Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#10922 - Unable to Synchronize Tomboy 0.10.1 via WebDAV
Attached to Project:
Arch Linux
Opened by Manuel Faux (faux_at) - Tuesday, 15 July 2008, 19:16 GMT
Last edited by Greg (dolby) - Thursday, 17 July 2008, 11:28 GMT
Opened by Manuel Faux (faux_at) - Tuesday, 15 July 2008, 19:16 GMT
Last edited by Greg (dolby) - Thursday, 17 July 2008, 11:28 GMT
|
DetailsDescription:
Synchronization via WebDAV in Tomboy 0.10.1 does not work. Additional info: * Using package version 0.10.1-1. * Last error of ~/.tomboy.log: 7/15/2008 7:37:26 PM [WARN]: Getting configuration from the GNOME keyring failed with the following message: Unknown error Steps to reproduce: Enable WebDAV synchronization plugin and try to synchronize with an WebDAV server. |
This task depends upon
Patch for Tomboy/Gnome.Keyring/Ring.cs:
268c268
< if (ke.ResultCode == ResultCode.Denied)
---
> if ((ke.ResultCode == ResultCode.Denied) || (ke.ResultCode == ResultCode.NoMatch))
311c311
< if (ke.ResultCode == ResultCode.Denied)
---
> if ((ke.ResultCode == ResultCode.Denied) || (ke.ResultCode == ResultCode.NoMatch))
Patch for Tomboy/Gnome.Keyring/ResultCode.cs:
40c40,41
< AlreadyExists
---
> AlreadyExists,
> NoMatch