Fixed the IMPORT command to overwrite an existing node of the same
[pwmd.git] / TODO
blobf4bd2b2918253955bd29ec7a434cdc403b2f4846
1 Add "OPTION TIMEOUT=N" to specify a pinentry timeout. Need to wait for
2 pinentry to support this option itself because assuan_pipe_connect() calls
3 execv() to execute pinentry, which replaces the PID from pth_fork().
5 Instead of returning an error when a file is modified by another connected
6 client, use a rwlock for the in memory document which is a pointer stored in
7 the file cache. This way updates to the document by another client are visible
8 to the current client immediately. The 'shared' branch has some code that does
9 this but contains a few bugs and isn't up-to-date with the current version.
10 I'm also not sure whether to include this because the SAVE command is used to
11 commit any changes. When this feature is added, changes are visible
12 immediately, even without saving.