lazarus/tools/jsonviewer
2011-01-29 12:23:02 +00:00
..
languages Translations: changed Brazilian Portuguese language code according to ISO/IANA language and region codes 2011-01-29 12:23:02 +00:00
frmmain.lfm Tools, JSON viewer: enabled localization. 2010-09-22 16:33:54 +00:00
frmmain.pp Tools, JSON viewer: enabled localization. 2010-09-22 16:33:54 +00:00
frmnewboolean.lfm * Initial implementation of JSON viewer 2010-09-18 09:56:29 +00:00
frmnewboolean.pp * Initial implementation of JSON viewer 2010-09-18 09:56:29 +00:00
frmnewinteger.lfm * Initial implementation of JSON viewer 2010-09-18 09:56:29 +00:00
frmnewinteger.pp * Initial implementation of JSON viewer 2010-09-18 09:56:29 +00:00
frmnewstring.lfm * Initial implementation of JSON viewer 2010-09-18 09:56:29 +00:00
frmnewstring.pp * Initial implementation of JSON viewer 2010-09-18 09:56:29 +00:00
jsonviewer.ico * Initial implementation of JSON viewer 2010-09-18 09:56:29 +00:00
jsonviewer.lpi Tools, JSON viewer: enabled localization. 2010-09-22 16:33:54 +00:00
jsonviewer.lpr * Initial implementation of JSON viewer 2010-09-18 09:56:29 +00:00
jsonviewer.res * Initial implementation of JSON viewer 2010-09-18 09:56:29 +00:00
mainform.ico * Initial implementation of JSON viewer 2010-09-18 09:56:29 +00:00
msgjsonviewer.pp * Implemented search featured 2010-09-18 10:52:23 +00:00
README.txt * Implemented search featured 2010-09-18 10:52:23 +00:00

This little application allows 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.