attached the new patch.
pavel
Some notions from a happy user (=me).
For using TortoiseSVN, the following commands are needed. (Maybe
something for on a wiki page if it exists):
Commit:
vc-command DS "." "TortoiseProc /command:commit /path:$$p"
Revert:
vc-command DR "." "TortoiseProc /command:revert /path:$$p"
Checkout (does not really work yet):
vc-command R "." "TortoiseProc /command:checkout /path:$$p"
Some general comments on the LFUN:
+ R - Reload - reload the document after command execution \n
...
+ if (buffer && contains(flag, 'R') && !ensureBufferClean(view()))
+ break;
...
+ if (contains(flag, 'R'))
+ reloadBuffer();
I think and prefer that the first of these two should check for a flag 'S' (or
something else different from R).
If you use $$p with no document open, the $$p will end up in the command. Isn't
it possible to open a FileDialog to be able to specify the path then. Or at
least give an error message that there is something wrong.
Besides that, the checkout of course doesn't work as LyX does not know which
doc to open, ... thinking about that.