]> git.lyx.org Git - lyx.git/blobdiff - src/lyxvc.C
oh well
[lyx.git] / src / lyxvc.C
index b8980d6f6eb4d9a95f69843ae42299201e53c98f..4431b6d30f67e0f43d819539375e580cad3c77aa 100644 (file)
@@ -4,20 +4,22 @@
 #pragma implementation
 #endif
 
-#include <unistd.h>
-
-#include "frontends/Alert.h"
 #include "lyxvc.h"
 #include "vc-backend.h"
 #include "debug.h"
 #include "buffer.h"
 #include "BufferView.h"
 #include "gettext.h"
-#include "support/filetools.h"
-#include "support/lyxlib.h"
 #include "LyXView.h"
 #include "lyxfunc.h"
 
+#include "frontends/Alert.h"
+
+#include "support/filetools.h"
+#include "support/lyxlib.h"
+
+#include <unistd.h>
+
 using std::endl;
 using std::pair;
 
@@ -74,10 +76,24 @@ void LyXVC::buffer(Buffer * buf)
 void LyXVC::registrer()
 {
        // it is very likely here that the vcs is not created yet...
-       // so... we use RCS as default, later this should perhaps be
-       // a lyxrc option.
        if (!vcs) {
-               vcs = new RCS(owner_->fileName());
+               string const cvs_entries = "CVS/Entries";
+
+               if (IsFileReadable(cvs_entries)) {
+                       lyxerr[Debug::LYXVC]
+                               << "LyXVC: registering "
+                               << MakeDisplayPath(owner_->fileName())
+                               << " with CVS" << endl;
+                       vcs = new CVS(cvs_entries, owner_->fileName());
+
+               } else {
+                       lyxerr[Debug::LYXVC]
+                               << "LyXVC: registering "
+                               << MakeDisplayPath(owner_->fileName())
+                               << " with RCS" << endl;
+                       vcs = new RCS(owner_->fileName());
+               }
+
                vcs->owner(owner_);
        }