]> git.lyx.org Git - lyx.git/blobdiff - src/VCBackend.cpp
This should bring cvs revision control to usable state.
[lyx.git] / src / VCBackend.cpp
index 9e80f4ca274b7fa2fe88d1039ee1944f4caea7ba..1673072797bf8f056fc6860b766a31601968b007 100644 (file)
@@ -163,6 +163,10 @@ void RCS::checkIn(string const & msg)
                    FileName(owner_->filePath()));
 }
 
+bool RCS::checkInEnabled()
+{
+       return owner_ && !owner_->isReadonly();
+}
 
 void RCS::checkOut()
 {
@@ -172,6 +176,12 @@ void RCS::checkOut()
 }
 
 
+bool RCS::checkOutEnabled()
+{
+       return owner_ && owner_->isReadonly();
+}
+
+
 void RCS::revert()
 {
        doVCCommand("co -f -u" + version() + " "
@@ -191,6 +201,12 @@ void RCS::undoLast()
 }
 
 
+bool RCS::undoLastEnabled()
+{
+       return true;
+}
+
+
 void RCS::getLog(FileName const & tmpf)
 {
        doVCCommand("rlog " + quoteName(onlyFilename(owner_->absFileName()))
@@ -219,7 +235,7 @@ FileName const CVS::findFile(FileName const & file)
        // where we have file.
        FileName const entries(onlyPath(file.absFilename()) + "/CVS/Entries");
        string const tmpf = '/' + onlyFilename(file.absFilename()) + '/';
-       LYXERR(Debug::LYXVC, "LyXVC: Checking in `" << entries
+       LYXERR(Debug::LYXVC, "LyXVC: Checking if file is under cvs in `" << entries
                             << "' for `" << tmpf << '\'');
        if (entries.isReadableFile()) {
                // Ok we are at least in a CVS dir. Parse the CVS/Entries
@@ -297,6 +313,12 @@ void CVS::checkIn(string const & msg)
 }
 
 
+bool CVS::checkInEnabled()
+{
+       return true;
+}
+
+
 void CVS::checkOut()
 {
        // cvs update or perhaps for cvs this should be a noop
@@ -304,6 +326,12 @@ void CVS::checkOut()
 }
 
 
+bool CVS::checkOutEnabled()
+{
+       return false;
+}
+
+
 void CVS::revert()
 {
        // Reverts to the version in CVS repository and
@@ -325,6 +353,12 @@ void CVS::undoLast()
 }
 
 
+bool CVS::undoLastEnabled()
+{
+       return false;
+}
+
+
 void CVS::getLog(FileName const & tmpf)
 {
        doVCCommand("cvs log " + quoteName(onlyFilename(owner_->absFileName()))