public GitRepository(String url)
 {
     this.url                = url;
     this.isBusy             = false;
     this.taskDescription    = "";
     this.progress           = 0;
     this.isIndetermerminate = false;
     this._gitHandler        = new GitHandler(this);
     this._zipHandler        = new ZipHandler(this);
     this._webDavHandler     = new WebDavHandler(this);
 }
Example #2
0
 public Options(WebDavHandler handler)
 {
     _handler = handler;
 }
Example #3
0
 public Trace(WebDavHandler handler)
 {
     _handler = handler;
 }
Example #4
0
		public Options(WebDavHandler handler)
		{
			_handler = handler;
		}