updated todos template

This commit is contained in:
Spencer Alger 2014-08-22 16:44:24 -07:00
parent 5bdb9cb0a2
commit c20dac0b42
2 changed files with 30 additions and 27 deletions

View file

@ -1,26 +1,26 @@
# TODO items
> Automatically extracted
- **src/kibana/apps/dashboard/directives/grid.js**
- change this from event based to calling a method on dashboardApp (https://github.com/elasticsearch/kibana4/blob/master/src/kibana/apps/dashboard/directives/grid.js)
- **src/kibana/apps/discover/controllers/discover.js**
- On array fields, negating does not negate the combination, rather all terms (https://github.com/elasticsearch/kibana4/blob/master/src/kibana/apps/discover/controllers/discover.js)
- Move to utility class (https://github.com/elasticsearch/kibana4/blob/master/src/kibana/apps/discover/controllers/discover.js)
- Move to utility class (https://github.com/elasticsearch/kibana4/blob/master/src/kibana/apps/discover/controllers/discover.js)
- a legit way to update the index pattern (https://github.com/elasticsearch/kibana4/blob/master/src/kibana/apps/discover/controllers/discover.js)
- **src/kibana/apps/settings/sections/indices/_create.js**
- we should probably display a message of some kind (https://github.com/elasticsearch/kibana4/blob/master/src/kibana/apps/settings/sections/indices/_create.js)
- **src/kibana/components/agg_types/buckets/terms.js**
- We need more than just _count here. (https://github.com/elasticsearch/kibana4/blob/master/src/kibana/components/agg_types/buckets/terms.js)
- **src/kibana/components/index_patterns/_mapper.js**
- Change index to be the resolved in some way, last three months, last hour, last year, whatever (https://github.com/elasticsearch/kibana4/blob/master/src/kibana/components/index_patterns/_mapper.js)
- **src/kibana/components/visualize/visualize.js**
- we need to have some way to clean up result requests (https://github.com/elasticsearch/kibana4/blob/master/src/kibana/components/visualize/visualize.js)
- **src/kibana/directives/rows.js**
- It would be better to actually check the type of the field, but we don't have (https://github.com/elasticsearch/kibana4/blob/master/src/kibana/directives/rows.js)
- **test/unit/specs/apps/dashboard/directives/panel.js**
- This should not be needed, timefilter is only included here (https://github.com/elasticsearch/kibana4/blob/master/test/unit/specs/apps/dashboard/directives/panel.js)
- **test/unit/specs/directives/timepicker.js**
- This should not be needed, timefilter is only included here, it should move (https://github.com/elasticsearch/kibana4/blob/master/test/unit/specs/directives/timepicker.js)
- **test/unit/specs/directives/typeahead.js**
- This should not be needed, timefilter is only included here, it should move (https://github.com/elasticsearch/kibana4/blob/master/test/unit/specs/directives/typeahead.js)
- **[src/kibana/apps/dashboard/directives/grid.js](https://github.com/elasticsearch/kibana4/blob/master/src/kibana/apps/dashboard/directives/grid.js)**
- change this from event based to calling a method on dashboardApp
- **[src/kibana/apps/discover/controllers/discover.js](https://github.com/elasticsearch/kibana4/blob/master/src/kibana/apps/discover/controllers/discover.js)**
- On array fields, negating does not negate the combination, rather all terms
- Move to utility class
- Move to utility class
- a legit way to update the index pattern
- **[src/kibana/apps/settings/sections/indices/_create.js](https://github.com/elasticsearch/kibana4/blob/master/src/kibana/apps/settings/sections/indices/_create.js)**
- we should probably display a message of some kind
- **[src/kibana/components/agg_types/buckets/terms.js](https://github.com/elasticsearch/kibana4/blob/master/src/kibana/components/agg_types/buckets/terms.js)**
- We need more than just _count here.
- **[src/kibana/components/index_patterns/_mapper.js](https://github.com/elasticsearch/kibana4/blob/master/src/kibana/components/index_patterns/_mapper.js)**
- Change index to be the resolved in some way, last three months, last hour, last year, whatever
- **[src/kibana/components/visualize/visualize.js](https://github.com/elasticsearch/kibana4/blob/master/src/kibana/components/visualize/visualize.js)**
- we need to have some way to clean up result requests
- **[src/kibana/directives/rows.js](https://github.com/elasticsearch/kibana4/blob/master/src/kibana/directives/rows.js)**
- It would be better to actually check the type of the field, but we don't have
- **[test/unit/specs/apps/dashboard/directives/panel.js](https://github.com/elasticsearch/kibana4/blob/master/test/unit/specs/apps/dashboard/directives/panel.js)**
- This should not be needed, timefilter is only included here
- **[test/unit/specs/directives/timepicker.js](https://github.com/elasticsearch/kibana4/blob/master/test/unit/specs/directives/timepicker.js)**
- This should not be needed, timefilter is only included here, it should move
- **[test/unit/specs/directives/typeahead.js](https://github.com/elasticsearch/kibana4/blob/master/test/unit/specs/directives/typeahead.js)**
- This should not be needed, timefilter is only included here, it should move

View file

@ -67,7 +67,12 @@ module.exports = function (grunt) {
}
})
.forEach(function (path) {
newFileLines.push(' - **' + path + '**');
newFileLines.push(
' - **' +
'[' + path + ']' +
'(https://github.com/elasticsearch/kibana4/blob/master/' + path + ')' +
'**'
);
_(groupedByPath[path])
.sortBy(function (match) {
@ -77,9 +82,7 @@ module.exports = function (grunt) {
var priority = TYPE_PRIORITIES[match.type] || 0;
newFileLines.push(
' - ' + (priority ? match.type + ' ' : '') +
match.msg + ' ' +
'(https://github.com/elasticsearch/kibana4/blob/master/' + match.path + ')'
' - ' + (priority ? match.type + ' [ ] ' : '') + match.msg
);
});
});