From f625f3e0dc48feb1f63ddfff13bdec4079829702 Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Tue, 22 Jul 2008 09:00:41 +0000 Subject: [PATCH] Implement checkout for svn. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25788 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/LyXFunc.cpp | 3 +-- src/VCBackend.cpp | 5 +++-- src/VCBackend.h | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/LyXFunc.cpp b/src/LyXFunc.cpp index 2a8bcb3dbc..f69f5f8882 100644 --- a/src/LyXFunc.cpp +++ b/src/LyXFunc.cpp @@ -1061,8 +1061,7 @@ void LyXFunc::dispatch(FuncRequest const & cmd) LASSERT(lyx_view_ && lyx_view_->buffer(), /**/); if (!ensureBufferClean(view())) break; - if (lyx_view_->buffer()->lyxvc().inUse() - && lyx_view_->buffer()->isReadonly()) { + if (lyx_view_->buffer()->lyxvc().inUse()) { lyx_view_->buffer()->lyxvc().checkOut(); reloadBuffer(); } diff --git a/src/VCBackend.cpp b/src/VCBackend.cpp index 829b291ca6..8b9b7a1ade 100644 --- a/src/VCBackend.cpp +++ b/src/VCBackend.cpp @@ -464,13 +464,14 @@ bool SVN::checkInEnabled() void SVN::checkOut() { - lyxerr << "Sorry not implemented." << endl; + doVCCommand("svn update " + quoteName(onlyFilename(owner_->absFileName())), + FileName(owner_->filePath())); } bool SVN::checkOutEnabled() { - return false; + return true; } diff --git a/src/VCBackend.h b/src/VCBackend.h index 402a723399..d44bb045f9 100644 --- a/src/VCBackend.h +++ b/src/VCBackend.h @@ -66,6 +66,7 @@ public: /// return the lock status of this file VCStatus status() const { return vcstatus; } /// do we need special handling for read-only toggling? + /// (also used for check-out operation) virtual bool toggleReadOnlyEnabled() = 0; protected: /// parse information from the version file -- 2.39.2