Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
dc189f1
Generate asciidoc for fields documentation - first draft
Feb 27, 2019
abc8389
Generated asciidoc files for fields
Feb 27, 2019
aadd441
Remove commented debugging code
Feb 27, 2019
1646cb0
Sort fieldsets correctly in asciidoc. Base first, then the rest.
Feb 28, 2019
0908e40
Preserve initial order of fields in key 'order'
Feb 28, 2019
47a2314
Make the sorting function a little more flexible
Mar 1, 2019
3eee172
Restore sort order from files in schemas/* when listing fields.
Mar 1, 2019
0f3bd59
Add a check that short field descriptions are single line
Mar 1, 2019
ed1ee43
Fix one field short description, based on new check
Mar 1, 2019
a0e3148
Default fieldset short desc to full desc, add single line check
Mar 1, 2019
86fa351
Run generator for everything, code format
Mar 1, 2019
955e6f1
Adjust tests. Setting schema defaults now depends on 'description' to…
Mar 1, 2019
375f79e
Simplify summary table, add first draft of field details below table
Mar 1, 2019
1f5b225
Get back to the initial 3 column design
Mar 1, 2019
f9fa10c
Remove unnecessary code for the details section
Mar 1, 2019
c6f2914
Total WIP of what 'can be nested' under a field set
Mar 1, 2019
c66908c
A few renames to make room for the nestings table
Mar 1, 2019
a1084ca
Start structuring the code to display nestings.
Mar 1, 2019
10da069
code format
Mar 4, 2019
6f03efb
Start moving generic helpers to a helper file
Mar 8, 2019
ee81be7
Move more stuff to ecs_helper.py
Mar 18, 2019
053edf3
Make sure make fmt doesn't mess up my imports in tests
Mar 18, 2019
9ffb063
Move another helper to the pile
Mar 18, 2019
6336907
remove sort by original order, sort by flat_name instead
Mar 19, 2019
b9cdebd
Remove leaf reused fields from docs, list fieldsets separately in a t…
Mar 19, 2019
ad4abc3
Incorporate sentences on fieldset reuse like in the readme
Mar 19, 2019
e5ee3b7
Group both sides of field reuse in the same section under main field …
Mar 19, 2019
b1ee4b5
Remove obsolete comment
Mar 20, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ fields_legacy:
# Format code and files in the repo.
.PHONY: fmt
fmt: ve
$(FIND) -name '*.py' -exec build/ve/bin/autopep8 --in-place --max-line-length 120 {} \;
$(FIND) -name '*.py' -exec build/ve/bin/autopep8 --ignore E402 --in-place --max-line-length 120 {} \;
go get golang.org/x/tools/cmd/goimports
goimports -w -l -local github.com/elastic $(shell $(FIND) -name '*.go')

Expand Down
Loading