Ejemplo n.º 1
0
 /**
  * Provides a list of the tags in this project.
  */
 public function DNTagList()
 {
     if ($this->CVSPath && !$this->repoExists()) {
         $this->cloneRepo();
     }
     return DNReferenceList::create($this, $this->DNData(), null, null, true);
 }
Ejemplo n.º 2
0
 public static function set_refs_dir($refsDir)
 {
     self::$refs_dir = $refsDir;
 }
Ejemplo n.º 3
0
 /**
  * Provides a DNBuildList of builds found in this project.
  */
 public function DNBuildList()
 {
     $blockBranch = $this->branch->getName() == 'master' ? null : 'master';
     return DNReferenceList::create($this->project, $this->data, $this->branch, $blockBranch);
 }