Searched refs:bugId (Results 1 – 5 of 5) sorted by relevance
/web-bugs/src/Utils/ |
H A D | PatchTracker.php | 72 private function getPatchDir(int $bugId, string $name): string argument 74 return $this->uploadsDir.'/p'.$bugId.'/'.$name; 80 private function createPatchDir(int $bugId, string $name): void argument 82 $patchDir = $this->getPatchDir($bugId, $name); 153 $this->uploader->setDir($this->getPatchDir($bugId, $name)); 160 $revision = $this->newPatchFileName($bugId, $name, $developer); 171 $this->createPatchDir($bugId, $name); 175 $this->detach($bugId, $name, $revision); 218 private function detach(int $bugId, string $name, int $revision): void argument 224 $this->dbh->prepare($sql)->execute([$bugId, $name, $revision]); [all …]
|
/web-bugs/src/Repository/ |
H A D | PatchRepository.php | 34 public function findAllByBugId(int $bugId): array argument 43 $statement->execute([$bugId]); 51 public function findDeveloper(int $bugId, string $patch, int $revision): string argument 58 $arguments = [$bugId, $patch, $revision]; 69 public function findRevisions(int $bugId, string $patch): array argument 78 $statement->execute([$bugId, $patch]); 86 public function getPatchContents(int $bugId, string $name, int $revision): string argument 94 $statement->execute([$bugId, $name, $revision]); 97 $contents = @file_get_contents($this->getPatchPath($bugId, $name, $revision)); 112 private function getPatchPath(int $bugId, string $name, int $revision): string argument [all …]
|
H A D | PullRequestRepository.php | 27 * @param int $bugId 30 public function findAllByBugId(int $bugId) argument 39 $statement->execute([$bugId]);
|
H A D | ObsoletePatchRepository.php | 27 public function findObsoletingPatches(int $bugId, string $patch, int $revision): array argument 35 $statement->execute([$bugId, $patch, $revision]); 43 public function findObsoletePatches(int $bugId, string $patch, int $revision): array argument 51 $statement->execute([$bugId, $patch, $revision]);
|
/web-bugs/www/js/ |
H A D | redirect.js | 13 var bugId = location.hash.substr(1) * 1; variable 15 if (bugId > 0) { 17 loc.replace(loc.protocol + '//' + loc.host + (loc.port ? ':' + loc.port : '') + '/' + bugId);
|
Completed in 17 milliseconds