| /plugin/bugzillaint/lang/de/ |
| D | settings.php | 10 $lang['tree_default_extras'] = 'Zusätzliche Infos, die bei Bugs in Abhängigkeits-Bäumen angezeigt w… 11 $lang['list_default_extras'] = 'Zusätzliche Infos, die bei Bugs in Listen angezeigt werden sollen. … 12 $lang['severity_threshold_red'] = 'Bugs rot anzeigen, die mindestens folgende Schwere haben'; 13 $lang['severity_threshold_orange'] = 'Bugs orange anzeigen, die mindestens folgende Schwere haben'; 14 $lang['priority_threshold_red'] = 'Bugs rot anzeigen, die mindestens folgende Priorität haben'; 15 $lang['priority_threshold_orange'] = 'Bugs orange anzeigen, die mindestens folgende Priorität haben… 16 $lang['deadline_threshold_days_red'] = 'Bugs rot anzeigen, deren Deadline in N Tagen abläuft'; 17 $lang['deadline_threshold_days_orange'] = 'Bugs orange anzeigen, deren Deadline in N Tagen abläuft';
|
| D | lang.php | 5 $lang['extra_depends_on'] = 'hängt ab von {0} Bugs'; 6 $lang['extra_blocks'] = 'blockiert {0} Bugs';
|
| /plugin/dokumicrobugtracker/ |
| D | edit.php | 56 // get bugs file contents 57 $pfile = metaFN2(md5($project), '.bugs'); 59 {$bugs = unserialize(@file_get_contents($pfile));} variable 61 {$bugs = array();} variable 71 {unset($bugs[$id_bug]);echo 'Deleted : ' . $id_bug;} 74 …emailForChange($bugs[$id_bug]['author'],$id_bug, $project, $field, $bugs[$id_bug][$field], $value); 75 $bugs[$id_bug][$field]=$value; 79 // Save bugs file contents 81 fwrite($fh, serialize($bugs));
|
| D | syntax.php | 93 // get bugs file contents 94 $pfile = metaFN2(md5($data['project']), '.bugs'); 96 {$bugs = unserialize(@file_get_contents($pfile));} 98 {$bugs = array();} 127 $bug_id=count($bugs); 128 foreach ($bugs as $value) 130 $bugs[$bug_id]['id'] = $bug_id; 131 $bugs[$bug_id]['version'] = htmlspecialchars(stripslashes($_REQUEST['version'])); 132 $bugs[$bug_id]['severity'] = htmlspecialchars(stripslashes($_REQUEST['severity'])); 133 $bugs[$bug_id]['status'] = "New"; [all …]
|
| D | README.md | 22 {{dokumicrobugtracker>project=projectname|status=all|display=bugs}} 28 | [display] | a filter to display only the report form, or only the bugs list, or count the number… 33 Each project have is own data file, which are nammed from an md5 of the project name with the bugs … 38 **Display all bugs of project KhtEditor :** 40 {{dokumicrobugtracker>project=KhtEditor|status=all|display=bugs}} 48 **Display all fixed bugs for project KhtEditor with a report form :** 74 …d title in the form, fix multiple post occurring when displaying multiple bugs list and report in …
|
| /plugin/bugzillaint/docs/ |
| D | bugzillaint.txt | 23 Create complex Buglists, Bugtrees or inline-Links to Bugzilla-Bugs 27 priority Bugs. 81 …Dependency Tree Page. It shows a hierarchy of Bugs blocking the given Bug. By default, only unreso… 98 Bugs can be shown with extra fields. For example, you can show the assignee (''assigned_to'') 109 …* ''dependencies'' - shows the count of open bugs depending on or blocking this bug - links to bug… 110 * ''assigned_to'' - shows assigne login name, links to a list of all bugs assigned to the person 118 …shows the classification the Bug belongs to - links to a list of all open bugs in this classificat… 120 …* ''component'' - shows the component the Bug belongs to - links to a list of all open bugs in thi… 140 === Report Bugs and Issues === 146 * Authentication via Bugzilla would be nice, so that Users only see Bugs they have access to.
|
| /plugin/bugzillaint/lang/en/ |
| D | settings.php | 12 $lang['severity_threshold_red'] = 'Show bugs in red if they have a severity of'; 13 $lang['severity_threshold_orange'] = 'Show bugs in orange if they have a severity of'; 14 $lang['priority_threshold_red'] = 'Show bugs in red if they have a priority of'; 15 $lang['priority_threshold_orange'] = 'Show bugs in orange if they have a priority of'; 16 $lang['deadline_threshold_days_red'] = 'Show bugs in red if their deadline expires in N days'; 17 $lang['deadline_threshold_days_orange'] = 'Show bugs in yellow if their deadline expires in N days';
|
| D | lang.php | 5 $lang['extra_depends_on'] = 'depends on {0} Bugs'; 6 $lang['extra_blocks'] = 'blocks {0} Bugs';
|
| /plugin/bugzillaint/helper/ |
| D | bugzillaclient.php | 34 * @return associative array of bugs, with id as key and an array of bugs 44 foreach ($response['bugs'] as $bug) { 186 …array('dependencies', $extras) ? $this->fetchDependencies( $response['bugs'] ) : $response['bugs']; 205 * Fetch info about several bugs. 210 * @return associative array of bugs, with id as key and an array of bugs 224 foreach ($response['bugs'] as $bug) { 229 // a bug does not exist, but we still need info about all the other bugs 234 $result["$f_id"] = $response['bugs'][0]; 284 * Takes an array of bugs and adds the properties "depends_on_resolved" and "blocks_resolved". 286 * @param array $bugs - associative array with bug id as key [all …]
|
| /plugin/aceeditor/ |
| D | NEWS | 76 * Fixed some minor bugs in table commands 83 * Some minor bugs fixed 91 * Fixed some integration bugs 108 * Fixed some integration bugs
|
| /plugin/bugzillaint/ |
| D | script.js | 47 var bugs = data.lists[index]; 50 master.toggleClass('empty', bugs.length == 0 ); 52 for (var i=0, group=null; i < bugs.length; i++) { 54 if ( groupBy && group != bugs[i][groupBy] ) { 55 group = bugs[i][groupBy]; 63 .append( renderBug( master, bugs[i] ) ) 243 function renderTree( bugs, parent, master, depth ) { argument 248 // created sorted array of bugs 250 for (var k in bugs) { 251 l.push( bugs[k] );
|
| /plugin/bugzillahttp/ |
| D | BzBug.php | 89 $bugs = $xml->bug; 90 //echo "FETCHED ".sizeof($bugs). "BUGS!<br /><br />"; 91 foreach ($bugs as $bug) {
|
| D | plugin.info.txt | 3 desc Gets information about bugs via HTTP (xml view)
|
| /plugin/jplayer/vendor/symfony/process/Pipes/ |
| D | WindowsPipes.php | 20 * @see https://bugs.php.net/51800 21 * @see https://bugs.php.net/65650 46 // @see https://bugs.php.net/51800 111 // We're not using pipe on Windows platform as it hangs (https://bugs.php.net/51800) 112 … // We're not using file handles as it can produce corrupted output https://bugs.php.net/65650
|
| /plugin/combo/vendor/symfony/process/Pipes/ |
| H A D | WindowsPipes.php | 20 * @see https://bugs.php.net/51800 21 * @see https://bugs.php.net/65650 46 // @see https://bugs.php.net/51800 121 // We're not using pipe on Windows platform as it hangs (https://bugs.php.net/51800) 122 … // We're not using file handles as it can produce corrupted output https://bugs.php.net/65650
|
| /plugin/asciidocjs/node_modules/object-assign/ |
| D | index.js | 29 // https://bugs.chromium.org/p/v8/issues/detail?id=4118 36 // https://bugs.chromium.org/p/v8/issues/detail?id=3056 48 // https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
| /plugin/gautoads/ |
| D | README.md | 29 ## Bugs / Feature Requests 31 Please report any bugs or request new features on the [GitHub Issues](https://github.com/youruserna…
|
| /plugin/move/_test/ |
| D | pagemove.test.php | 601 saveWikiText('bugs:start', 'Bug page', 'created'); 602 idx_addPage('bugs:start'); 603 saveWikiText('foo:bugs:test', '[[bugs:start]]', 'created'); 604 idx_addPage('foo:bugs:test'); 609 $this->assertTrue($move->movePage('bugs:start', 'bugs')); 610 $this->assertEquals('[[:bugs]]', rawWiki('foo:bugs:test')); 612 $this->assertTrue($move->movePage('bugs', 'start')); 613 $this->assertEquals('[[:start]]', rawWiki('foo:bugs:test'));
|
| /plugin/pagecss/vendor/csstidy-2.2.1/ |
| H A D | README.md | 56 * fixes minor bugs, mainly on CSS3 properties/units 58 * is PHP 5.4+ compliant, removes use of GLOBALS, fixes some bugs, integrates CSS3 units
|
| /plugin/jplayer/vendor/symfony/process/ |
| D | ProcessUtils.php | 47 //@see https://bugs.php.net/43784 48 //@see https://bugs.php.net/49446
|
| /plugin/bugzillaxmlrpc/ |
| D | syntax.php | 18 * @desc Gets information about bugs (with depends on) via XML-RPC Bugzilla::WebService 52 'desc' => 'Gets information about bugs via XML-RPC Bugzilla::WebService', 110 $v = $response['bugs'][0]; 181 // Get info about dependencies bugs
|
| D | README | 2 desc Gets information about bugs (with depends on) via XML-RPC Bugzilla::WebService
|
| /plugin/mdpage/vendor/cebe/markdown/inline/ |
| D | EmphStrongTrait.php | 32 // https://bugs.php.net/bug.php?id=45735 52 // https://bugs.php.net/bug.php?id=45735
|
| /plugin/farmer/_animal/data/pages/wiki/ |
| H A D | dokuwiki.txt | 53 * [[http://bugs.splitbrain.org/index.php?project=1|Submit bugs and feature wishes]]
|
| /plugin/farm/install/animaltemplate/data/pages/wiki/ |
| D | dokuwiki.txt | 52 * [[http://bugs.splitbrain.org/index.php?project=1|Submit bugs and feature wishes]]
|