├── .gitignore ├── LICENSE ├── README.md ├── json ├── PluginIcon.ico ├── common.js ├── edittime.js └── runtime.js └── testing ├── capx ├── Event sheets │ ├── Event sheet 1.uistate.xml │ └── Event sheet 1.xml ├── Files │ ├── complex_json.json │ ├── icon-114.png │ ├── icon-128.png │ ├── icon-16.png │ ├── icon-256.png │ ├── icon-32.png │ ├── linked_list.json │ ├── loading-logo.png │ ├── other_complex_json.json │ └── simple_json.json ├── JSON test.caproj ├── JSON test.uistate.xml ├── Layouts │ ├── Layout 1.uistate.xml │ └── Layout 1.xml └── copy_to_c2.bat └── javascript ├── c2_exporters_html5 ├── common_prelude.js ├── commonace.js ├── eveng.js ├── expressions.js ├── glwrap.js ├── jquery-2.1.1.min.js ├── layout.js ├── modified_preview.js ├── modified_preview_prelude.js ├── objrefs.js └── system.js ├── test.html ├── testing_framework ├── qunit-1.23.1.js └── qunit-parameterize.js └── tests.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/README.md -------------------------------------------------------------------------------- /json/PluginIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/json/PluginIcon.ico -------------------------------------------------------------------------------- /json/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/json/common.js -------------------------------------------------------------------------------- /json/edittime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/json/edittime.js -------------------------------------------------------------------------------- /json/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/json/runtime.js -------------------------------------------------------------------------------- /testing/capx/Event sheets/Event sheet 1.uistate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/Event sheets/Event sheet 1.uistate.xml -------------------------------------------------------------------------------- /testing/capx/Event sheets/Event sheet 1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/Event sheets/Event sheet 1.xml -------------------------------------------------------------------------------- /testing/capx/Files/complex_json.json: -------------------------------------------------------------------------------- 1 | { 2 | "a":true 3 | } -------------------------------------------------------------------------------- /testing/capx/Files/icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/Files/icon-114.png -------------------------------------------------------------------------------- /testing/capx/Files/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/Files/icon-128.png -------------------------------------------------------------------------------- /testing/capx/Files/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/Files/icon-16.png -------------------------------------------------------------------------------- /testing/capx/Files/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/Files/icon-256.png -------------------------------------------------------------------------------- /testing/capx/Files/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/Files/icon-32.png -------------------------------------------------------------------------------- /testing/capx/Files/linked_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/Files/linked_list.json -------------------------------------------------------------------------------- /testing/capx/Files/loading-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/Files/loading-logo.png -------------------------------------------------------------------------------- /testing/capx/Files/other_complex_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/Files/other_complex_json.json -------------------------------------------------------------------------------- /testing/capx/Files/simple_json.json: -------------------------------------------------------------------------------- 1 | {"a":true} -------------------------------------------------------------------------------- /testing/capx/JSON test.caproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/JSON test.caproj -------------------------------------------------------------------------------- /testing/capx/JSON test.uistate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/JSON test.uistate.xml -------------------------------------------------------------------------------- /testing/capx/Layouts/Layout 1.uistate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/Layouts/Layout 1.uistate.xml -------------------------------------------------------------------------------- /testing/capx/Layouts/Layout 1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/Layouts/Layout 1.xml -------------------------------------------------------------------------------- /testing/capx/copy_to_c2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/capx/copy_to_c2.bat -------------------------------------------------------------------------------- /testing/javascript/c2_exporters_html5/common_prelude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/c2_exporters_html5/common_prelude.js -------------------------------------------------------------------------------- /testing/javascript/c2_exporters_html5/commonace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/c2_exporters_html5/commonace.js -------------------------------------------------------------------------------- /testing/javascript/c2_exporters_html5/eveng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/c2_exporters_html5/eveng.js -------------------------------------------------------------------------------- /testing/javascript/c2_exporters_html5/expressions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/c2_exporters_html5/expressions.js -------------------------------------------------------------------------------- /testing/javascript/c2_exporters_html5/glwrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/c2_exporters_html5/glwrap.js -------------------------------------------------------------------------------- /testing/javascript/c2_exporters_html5/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/c2_exporters_html5/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /testing/javascript/c2_exporters_html5/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/c2_exporters_html5/layout.js -------------------------------------------------------------------------------- /testing/javascript/c2_exporters_html5/modified_preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/c2_exporters_html5/modified_preview.js -------------------------------------------------------------------------------- /testing/javascript/c2_exporters_html5/modified_preview_prelude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/c2_exporters_html5/modified_preview_prelude.js -------------------------------------------------------------------------------- /testing/javascript/c2_exporters_html5/objrefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/c2_exporters_html5/objrefs.js -------------------------------------------------------------------------------- /testing/javascript/c2_exporters_html5/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/c2_exporters_html5/system.js -------------------------------------------------------------------------------- /testing/javascript/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/test.html -------------------------------------------------------------------------------- /testing/javascript/testing_framework/qunit-1.23.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/testing_framework/qunit-1.23.1.js -------------------------------------------------------------------------------- /testing/javascript/testing_framework/qunit-parameterize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/testing_framework/qunit-parameterize.js -------------------------------------------------------------------------------- /testing/javascript/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrenchYann/JSON_for_construct2/HEAD/testing/javascript/tests.js --------------------------------------------------------------------------------