I did this with a dumb editor macro, so some comments changed too.
Also rename root package from platform to influxdb.
In interest of minimizing risk, anyone importing the root package has
now aliased it to "platform" so that no changes beyond imports were
necessary in those files.
Lastly, replace the old platform module to local path /dev/null so that
nobody can accidentally reintroduce a platform dependency while
migrating platform code to influxdb.
This reduces the likelihood that anyone who previously developed on
influxdb will accidentally check in a file that was generated and
previously ignored.
* remove skip button from header
* Add fancy scroll bars and other styles
* copy button appears on hover, add fancy scrollbars
* add space between tab words
* Update Snapshots
* Remove Import/Export buttons from dashboards index
* Reduce max label chars to 50
* Change format of dashboard "modified" column to relative time
Absolute time is included as a tooltip
* Redistribute column widths in dashboards table
Optimzied for long names
* Improve component spacer
Now supports more fine grained "stretch to fit" controls
* Introduce editable description component
Intended mainly for use in index list views
* Allow dashboard descriptions to be editable in place
* Give modified column a tad more space
* Standardize empty states of tabs in organization view
* Update test
* Add helpful tooltip to download CSV button
* Expose settings and tokens in navbar
* Remove gap around auto refresh dropdown
* Refactor Empty state styles
* Standardize tasks and dashboards empty states
* Standardize resource empty states in home page
* Refactor dashboard empty state
* Amend
* Standardize name and appearance of new dashboards and cells
* Ensure pause button doesn't press up against dropdown
CreateTasks now check that the user has the write permission to the
tasks resource belonging to an organization. This change comes after
https://github.com/influxdata/platform/pull/2157 modified the structure
of authorization.
feat(http): add http handler for proto service
feat(mock): add mock proto service
test(http): add proto handler tests
fix(platform): add view as option when adding a cell
feat(platform): add dashboard to proto struct
feat(fs): add filesystem implementation of proto
feat(http): add protos endpoints to api handler
feat(cmd/influxd/launcher): add protos path to server
doc(http): add protos to swagger
test(cmd/influxd/launcher): add --protos-path to launcher tests
fix(fs): remove unused args from test
fix(http): use platform.Error where appropriate