lazarus/tools/jsonviewer
2017-05-10 22:40:23 +00:00
..
languages Translations: Ukrainian translation update by Olexandr Pylypchuk, bug #31783 2017-05-10 22:40:23 +00:00
frmmain.lfm * Made quoting of strings optional (bug ID #31741) 2017-05-01 18:51:27 +00:00
frmmain.lrj * Made quoting of strings optional (bug ID #31741) 2017-05-01 18:51:27 +00:00
frmmain.pp * Made quoting of strings optional, also when saving (bug ID #31741) 2017-05-01 18:55:33 +00:00
frmnewboolean.lfm JsonViewer tool: Minor visual improvements. Issue #28458, patch from Alexey Torgashin. 2015-08-05 21:58:21 +00:00
frmnewboolean.lrj Tools, JSONViewer: 2016-09-14 23:43:52 +00:00
frmnewboolean.pp general: Updated address of the Free Software Foundation in copyright messages 2017-01-29 21:04:32 +00:00
frmnewinteger.lfm JsonViewer tool: Minor visual improvements. Issue #28458, patch from Alexey Torgashin. 2015-08-05 21:58:21 +00:00
frmnewinteger.lrj Tools, JSONViewer: 2016-09-14 23:43:52 +00:00
frmnewinteger.pp general: Updated address of the Free Software Foundation in copyright messages 2017-01-29 21:04:32 +00:00
frmnewstring.lfm JsonViewer tool: Minor visual improvements. Issue #28458, patch from Alexey Torgashin. 2015-08-05 21:58:21 +00:00
frmnewstring.lrj Tools, JSONViewer: 2016-09-14 23:43:52 +00:00
frmnewstring.pp general: Updated address of the Free Software Foundation in copyright messages 2017-01-29 21:04:32 +00:00
jsonviewer.ico
jsonviewer.lpi * New strings appeared after adding new options 2017-05-01 18:45:10 +00:00
jsonviewer.lpr
jsonviewer.res * New strings appeared after adding new options 2017-05-01 18:45:10 +00:00
mainform.ico
msgjsonviewer.pp Tools: Reorder and clean uses sections. Prevent "deprecated" warnings. 2015-08-08 21:06:51 +00:00
README.txt fixed spelling mistakes, found by lintian 2014-02-05 12:07:46 +00:00

This little application allows one to view JSON data in a graphical tree.
Each array and object is represented in the tree with the members (or
elements) below them.

It should be compilable with FPC version 2.4.0 and up.

The data can be loaded from a file, or can be pasted from the clipboard.
(Edit|Paste as new document)

It is possible to edit the JSON (change member names, values), add items,
and save the data. It is also possible to copy&paste parts of the structure.

Options menu:

When compiled with FPC 2.5.1 or higher, the 'Strict JSON' option appears
under the 'Options' menu. This option will be off by default (matching
TJSONParser's behaviour). See fpc/packages/fcl-json/src/README.txt 
for an explanation of the Strict JSON property.

The 'Start new document with Object' option will cause the application to
create an object as root object when File-New is chosen.

The 'Sort member names' will sort the member names in an object
alphabetically.