changed: #basicRepositoryForPackage: (do no check whether repository exists - takes too long, called too often by browser)
authorJan Vrany <jan.vrany@fit.cvut.cz>
Fri, 17 Aug 2012 19:02:08 +0200
changeset 1120 9b18f8241b3d
parent 1119 0d425b1b26ed
child 1121 58f2f87dd37e
changed: #basicRepositoryForPackage: (do no check whether repository exists - takes too long, called too often by browser)
SVN__RepositoryManager.st
--- a/SVN__RepositoryManager.st	Fri Aug 10 18:19:07 2012 +0200
+++ b/SVN__RepositoryManager.st	Fri Aug 17 19:02:08 2012 +0200
@@ -28,10 +28,10 @@
 "{ NameSpace: SVN }"
 
 Object subclass:#RepositoryManager
-        instanceVariableNames:'configurations repositories workingCopyBase'
-        classVariableNames:'Current WorkingCopyBase'
-        poolDictionaries:''
-        category:'SVN-Core'
+	instanceVariableNames:'configurations repositories workingCopyBase'
+	classVariableNames:'Current WorkingCopyBase'
+	poolDictionaries:''
+	category:'SVN-Core'
 !
 
 !RepositoryManager class methodsFor:'documentation'!
@@ -400,16 +400,16 @@
         SVN::Configuration isLoaded ifFalse:[^nil]."JV: hack for loading issue"
     SVN::Configuration current isNil ifTrue:[^ nil].
     repo := SVN::Configuration current repositoryFor: package.
-    repo ifNil:[^nil].
-    repo exists ifFalse:[^nil].
+    repo isNil ifTrue:[^nil].
+"/    repo exists ifFalse:[^nil].
     repo manager: self.                        
     ^ repo
 
     "Modified: / 01-04-2008 / 19:08:35 / janfrog"
     "Created: / 16-08-2009 / 18:43:39 / Jan Vrany <vranyj1@fel.cvut.cz>"
     "Modified: / 19-08-2009 / 13:07:45 / Jan Vrany <vranyj1@fel.cvut.cz>"
-    "Modified: / 10-04-2010 / 18:27:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 23-08-2011 / 18:38:53 / cg"
+    "Modified: / 17-08-2012 / 11:08:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !RepositoryManager methodsFor:'queries'!