-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implements export of 43235634 format. Merge branch 'utility_tag2json'.
- Loading branch information
1 parent
4539e75
commit 1f3435d
Showing
12 changed files
with
25,417 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,5 +55,6 @@ Makefile | |
*.qmake.stash | ||
|
||
test_utils/ | ||
build-test_utils-*/ | ||
build-*/ | ||
tests/*.txt | ||
*.txt.user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Экспорт в json | ||
|
||
Для выдачи во внешний формат используется json следующего вида: | ||
|
||
{ | ||
"settings": { | ||
"tagrecordsize": 256, | ||
"maxtags": 64, | ||
"fileblocksize": 256, | ||
}, | ||
"tags": [ | ||
{ | ||
"name": "tagname001" | ||
}, | ||
{ | ||
"name": "tagname002" | ||
} | ||
], | ||
"files": [ | ||
{ | ||
"name": "filename001", | ||
"target": "linktofile001", | ||
"tags": [ | ||
"tagname001", | ||
"tagname002" | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.