Home
last modified time | relevance | path

Searched refs:issue (Results 1 – 25 of 278) sorted by relevance

12345678910>>...12

/plugin/asciidocjs/node_modules/clean-css/
DHistory.md10 * Fixed issue [#1106](https://github.com/jakubpawlowicz/clean-css/issues/1106) - regression in hand…
16 * Fixed issue [#1077](https://github.com/jakubpawlowicz/clean-css/issues/1077) - local fonts with c…
17 * Fixed issue [#1082](https://github.com/jakubpawlowicz/clean-css/issues/1082) - correctly convert …
18 * Fixed issue [#1085](https://github.com/jakubpawlowicz/clean-css/issues/1085) - prevent unquoting …
29 * Fixed issue [#861](https://github.com/jakubpawlowicz/clean-css/issues/861) - new `transition` pro…
30 * Fixed issue [#895](https://github.com/jakubpawlowicz/clean-css/issues/895) - ignoring specific st…
31 * Fixed issue [#947](https://github.com/jakubpawlowicz/clean-css/issues/947) - selector based filte…
32 * Fixed issue [#964](https://github.com/jakubpawlowicz/clean-css/issues/964) - adds configurable li…
33 * Fixed issue [#986](https://github.com/jakubpawlowicz/clean-css/issues/986) - level 2 optimization…
34 * Fixed issue [#1000](https://github.com/jakubpawlowicz/clean-css/issues/1000) - carriage return ha…
[all …]
/plugin/issuelinks/services/
DGitLab.service.php39 * @param Issue $issue
43 public static function isIssueValid(Issue $issue) argument
45 $summary = $issue->getSummary();
47 $status = $issue->getStatus();
305 $issue = Issue::getInstance('gitlab', $projectKey, $issueId, $isMergeRequest);
306 $issue->getFromDB();
307 return $issue;
310 public function retrieveIssue(Issue $issue) argument
312 $notable = $issue->isMergeRequest() ? 'merge_requests' : 'issues';
313 $repoUrlEnc = rawurlencode($issue->getProject());
[all …]
DGitHub.service.php46 public static function isIssueValid(Issue $issue) argument
48 $summary = $issue->getSummary();
50 $status = $issue->getStatus();
52 $type = $issue->getType();
67 $issue = Issue::getInstance('github', $projectKey, $issueId, true);
68 $isPullRequest = $issue->getFromDB();
71 return $issue;
75 $issue = Issue::getInstance('github', $projectKey, $issueId, false);
76 $issue->getFromDB();
78 return $issue;
[all …]
DJira.service.php47 * @param Issue $issue
51 public static function isIssueValid(Issue $issue) argument
53 $summary = $issue->getSummary();
55 $status = $issue->getStatus();
57 $type = $issue->getType();
108 $issue = Issue::getInstance('jira', $projectKey, $issueNumber, false);
109 $issue->getFromDB();
111 return $issue;
473 list($projectKey, $issueId) = explode('-', $data['issue']['key']);
492 $issueData = $data['issue'];
/plugin/bez/tpl/cron/
Dweekly-message.php42 <?php foreach ($tpl->get('issues') as $issue): ?>
44 switch($issue->priority) {
57 <td><a href="<?php echo $tpl->url('thread', 'id', $issue->id) ?>">
58 #<?php echo $issue->id ?>
60 <td><?php echo $issue->label_name ?></td>
61 <td><?php echo $issue->title ?></td>
62 …<td><?php echo $issue->create_date ?> (<?php echo $tpl->date_fuzzy_age($issue->create_date) ?>)</t…
63 <td><?php echo $issue->task_count_closed ?>/<?php echo $issue->task_count ?></td>
/plugin/issuetracker/
Dedit.php19 function _emailForIssueMod($currentID, $project, $issue, $old_value, $column, $new_value, $usr) argument
40 … $subject = sprintf($lang['issuemod_subject'], $issue['id'], $project, $lang['th_'.$column]);
42 … $pstring = sprintf("showid=%s&project=%s", urlencode($issue['id']), urlencode($project));
49 $lang['issuemod_title'].$issue['title'].chr(10).
50 $lang['issuemod_issueid'].$issue['id'].chr(10).
51 $lang['issuemod_product'].$issue['product'].chr(10).
52 $lang['issuemod_version'].$issue['version'].chr(10).
53 $lang['issuemod_severity'].$issue['severity'].chr(10).
54 $lang['issuemod_status'].$issue['status'].chr(10).
55 $lang['issuemod_creator'].$issue['user_name'].chr(10).
[all …]
Daction.php297 foreach($issues as $issue) {
298 if($issue['id']==$issue_id) {
299 $tmp[] = $issue;
300 …$pstring = sprintf("showid=%s&amp;project=%s", urlencode($issue['id']), urlencode($issue['project'…
303 … $itl_item_title .= '<label for="'.$referrer.'">'.$issue['project'].': </label>&nbsp'.
304 …f="doku.php?id='.$ID.'&do=showcaselink&'.$pstring.'" title="'.$issue['title'].'">'.$issue['title']…
316 $project = $issue['project'];
1108 $issue = $issues[$i];
1109 $a_project = strtolower($this->_get_one_value($issue,'project'));
1110 $a_status = strtolower($this->_get_one_value($issue,'status'));
[all …]
Dsyntax.php413 foreach ($issues as $issue)
415 if(($issue['project'] !== $project) && ($this->getConf('multi_projects')==0)) {
418 …oductfilter,'ALL')===0) || (stristr($productfilter,$this->_get_one_value($issue,'product'))!= fals…
419 { $status = trim($this->_get_one_value($issue,'status'));
601 $issue = $issues[$i];
603 $a_status = strtolower($this->_get_one_value($issue,'status'));
604 $a_severity = strtolower($this->_get_one_value($issue,'severity'));
605 $a_product = strtoupper($this->_get_one_value($issue,'product'));
606 $a_version = strtoupper($this->_get_one_value($issue,'version'));
607 $a_component = strtoupper($this->_get_one_value($issue,'component'));
[all …]
DREADME2 * IssueTracker Plugin: allows to create simple issue tracker
10 Simply spoken a user can easily report an issue for defined products which will
11 be added to an issue log (project). Some checks are implemented to prove if
13 if the issue was added successfully to the log file or a red one with details
14 to provide missing information. The issue will be stored to a file of issues
16 new entry to the issue list. The complete issue list delivers a detailed
21 Members of configured 'assign' groups are able to edit the entries of the issue
22 list and see the complete set of details. The issue list is sortable on all
24 into the lists select box to be easily set as issue related contact.
65 about issue mod
[all …]
Ditsearch.php60 foreach($issues as &$issue) {
61 $issue['project'] = $project;
73 foreach($issues as &$issue) {
74 $issue_string = implode($issue);
76 …'it_data']==false) $comments_file = DOKU_CONF."../data/meta/".$issue['project']."_".$issue['id']. …
77 …= DOKU_CONF."../". $conf['plugin']['issuetracker']['it_data'].$issue['project']."_".$issue['id']. …
92 $ref_findings['issues'][$cnt_i_findings] = $issue;
104 $ref_findings['comment'][$cnt_c_findings] = $issue;
/plugin/bez/tpl/
Dreport.php26 <?php foreach ($tpl->get('issues') as $issue): ?>
29 <?php if (empty($issue['label_name'])) : ?>
32 <?php echo $issue['label_name'] ?>
35 <td><?php echo $issue['proposal'] ?></td>
36 <td><?php echo $issue['opened'] ?></td>
37 <td><?php echo $issue['done'] ?></td>
38 <td><?php echo $issue['closed'] ?></td>
39 <td><?php echo $issue['rejected'] ?></td>
40 <td><?php echo $issue['count_all'] ?></td>
61 <?php foreach ($tpl->get('issues') as $issue): ?>
[all …]
/plugin/issuelinks/
Dsyntax.php68 $issue = $serviceClass->parseIssueSyntax($issueSyntax);
70 if (null === $issue) {
78 $issue->getServiceName(),
79 $issue->getProject(),
80 $issue->getKey(),
81 $issue->isMergeRequest()
86 'service' => $issue->getServiceName(),
87 'project' => $issue->getProject(),
88 'issueId' => $issue->getKey(),
89 'isMergeRequest' => $issue->isMergeRequest(),
[all …]
/plugin/issuelinks/helper/
Ddb.php253 * @param Issue $issue
257 public function saveIssue(Issue $issue) argument
260 'service' => $issue->getServiceName(),
261 'project' => $issue->getProject(),
262 'id' => $issue->getKey(),
263 'is_mergerequest' => $issue->isMergeRequest() ? '1' : '0',
264 'summary' => $issue->getSummary(),
265 'description' => $issue->getDescription(),
266 'type' => $issue->getType(),
267 'status' => $issue->getStatus(),
[all …]
Ddata.php216 $issue = Issue::getInstance($pmServiceName, $project, $issueid, $isMergeRequest);
217 if (!$issue->isValid()) {
219 $issue->getFromService();
220 $issue->saveToDB();
225 return $issue;
234 $issue = Issue::getInstance(
240 $issue->getFromDB();
241 $issueData['summary'] = $issue->getSummary();
242 $issueData['status'] = $issue->getStatus();
243 $issueData['url'] = $issue->getIssueURL();
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Contactcenterinsights/
DGoogleCloudContactcenterinsightsV1IssueAssignment.php29 public $issue; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1IssueAssignment
49 public function setIssue($issue) argument
51 $this->issue = $issue;
58 return $this->issue;
DGoogleCloudContactcenterinsightsV1IssueModelLabelStatsIssueStats.php29 public $issue; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1IssueModelLabelStatsIssueStats
52 public function setIssue($issue) argument
54 $this->issue = $issue;
61 return $this->issue;
DGoogleCloudContactcenterinsightsV1alpha1IssueModelLabelStatsIssueStats.php29 public $issue; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1alpha1IssueModelLabelStatsIssueStats
52 public function setIssue($issue) argument
54 $this->issue = $issue;
61 return $this->issue;
/plugin/redissue/
Dsyntax.php163 $issues = $redmine->client->issue->all([
232 $issue = $redmine->getIssue($data['id']);
235 if($issue == 'Syntax error') {
238 } elseif (isset($issue['issue'])) {
240 $project = $issue['issue']['project'];
242 $tracker = $issue['issue']['tracker'];
243 $status = $issue['issue']['status']['name'];
244 $author = $issue['issue']['author'];
246 $assigned = $issue['issue']['assigned_to'];
248 $subject = $issue['issue']['subject'];
[all …]
/plugin/asciidocjs/node_modules/pug-filters/node_modules/source-map/
DCHANGELOG.md27 issue #212.
43 explicitly start with the source root. See issue #199.
47 * Fix an issue where using a `SourceMapGenerator` after having created a
49 issue #191.
51 * Fix an issue with where `SourceMapGenerator` would mistakenly consider
53 issue #192.
62 searching in the presence of a column option. See issue #177.
65 the root. See issue #182.
69 issue #190.
112 * Performance improvements for `SourceMapGenerator` and `SourceNode`. See issue
[all …]
/plugin/asciidocjs/node_modules/source-map/
DCHANGELOG.md27 issue #212.
43 explicitly start with the source root. See issue #199.
47 * Fix an issue where using a `SourceMapGenerator` after having created a
49 issue #191.
51 * Fix an issue with where `SourceMapGenerator` would mistakenly consider
53 issue #192.
62 searching in the presence of a column option. See issue #177.
65 the root. See issue #182.
69 issue #190.
112 * Performance improvements for `SourceMapGenerator` and `SourceNode`. See issue
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Books/
DVolumeseriesinfoVolumeSeries.php41 public function setIssue($issue) argument
43 $this->issue = $issue;
50 return $this->issue;
/plugin/youtracklinks/
Dhelper.php119 function generateLinkForIssue($issue) { argument
121 if ($issue == null || $issue['0'] == "You are not logged in.") {
130 $id = $issue->attributes()->id;
131 foreach($issue as $key => $field) {
142 foreach($issue as $key => $field) {
Dsyntax.php88 $issue = $my->fetchYouTrackIssue($match);
89 if (!$issue || $issue == 'Issue not found.')
91 $link = $my->generateLinkForIssue($issue);
/plugin/redissue/redmine/
Dredmine.php30 return $this->client->issue->show($issue_id);
53 function getDatesTimesIssue($issue){ argument
54 $created = $issue['issue']['created_on'];
55 $updated = $issue['issue']['updated_on'];
56 $closed = $issue['issue']['closed_on'];
/plugin/issuelinks/action/
Dajax.php297 $issue = Issue::getInstance($pmServiceName, $projectKey, $issueId, $isMergeRequest);
298 $issue->getFromDB();
302 if (!$issue->isValid()) {
306 return [200, $issue->buildTooltipHTML()];
312 $issue = Issue::getInstance($pmServiceName, $projectKey, $issueId, $isMergeRequest);
313 $issue->getFromDB();
317 if (!$issue->isValid()) {
321 return [200, $issue->getAdditionalDataHTML()];

12345678910>>...12