Home
last modified time | relevance | path

Searched refs:patch (Results 1 – 9 of 9) sorted by relevance

/web-bugs/templates/
H A Daddpatch.php64 <?php foreach ($patches as $patch): ?>
65 … <option value="<?= htmlspecialchars($patch['patch'].'#'.$patch['revision'], ENT_QUOTES); ?>">
66 <?= htmlspecialchars($patch['patch'], ENT_QUOTES); ?>,
67 Revision <?= format_date($patch['revision']); ?>
68 …<?= $patch['developer'] ? '('.spam_protect(htmlspecialchars($patch['developer'], ENT_QUOTES)).')' …
/web-bugs/src/Repository/
H A DObsoletePatchRepository.php27 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]);
H A DPatchRepository.php51 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]);
/web-bugs/src/Utils/
H A DPatchTracker.php109 private function newPatchFileName(int $bugId, string $patch, string $developer): int argument
118 $this->dbh->prepare($sql)->execute([$bugId, $patch, $revision, $developer]);
123 $this->dbh->prepare($sql)->execute([$bugId, $patch, $revision, $developer]);
125 …row new \Exception('Could not get unique patch file name for bug #'.$bugId.', patch "'.$patch.'"');
151 …public function attach(int $bugId, string $patch, string $name, string $developer, array $obsolete… argument
173 $this->uploader->upload($patch);
/web-bugs/include/
H A Dquery.php40 $patch = (!empty($_GET['patch']) && is_string($_GET['patch'])) ? $_GET['patch'] : ''; variable
190 if ($patch != '' || $pull != '') {
193 if ($patch != '') {
199 if ($patch != '' || $pull != '') {
/web-bugs/sql/
H A Dschema.sql48 patch varchar(80) NOT NULL, field
52 PRIMARY KEY (bugdb_id,patch,revision,obsolete_patch,obsolete_revision)
57 patch varchar(80) NOT NULL, field
60 PRIMARY KEY (bugdb_id,patch,revision)
/web-bugs/
H A DREADME.md53 ├─ uploads/ # Uploaded patch files
84 git checkout -b patch-1
87 git push origin patch-1
/web-bugs/www/
H A Dsearch.php82 'patch' => urlencode($patch),
341 …<td><input type="checkbox" name="patch" value="Y" <?php echo $patch == 'Y' ? " checked" : "" ?>></…
H A Dbug.php1088 foreach ($p as $patch) {
1089 $revs[$patch['patch']][] = [$patch['revision'], $patch['developer']];

Completed in 24 milliseconds