├── .gitignore ├── README.md ├── To_Do_List ├── css └── v1.css ├── examplefull.json ├── html ├── contactUs.html ├── contactUs2.html ├── contactus3.html └── demo1.html ├── index.html ├── inject-coga ├── readme.md ├── sample │ ├── mappings │ │ ├── dir.json │ │ └── mapping01.json │ └── sample-page.html └── src │ ├── inject-coga.js │ ├── jquery-3.1.1.min.js │ ├── manifest.json │ └── personalisation_script.js ├── js ├── cogapersonalization.js ├── foo.js ├── personalisation1.js └── personalisation_script.js ├── json ├── coga.json ├── json_attributes.json ├── json_profile_1.json ├── json_skin.json ├── json_template.json ├── profile_exmaple_1.json ├── profile_exmaple_2.json ├── profile_test_3.json ├── readme.md ├── sample.json └── skin1.json └── license.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/README.md -------------------------------------------------------------------------------- /To_Do_List: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/To_Do_List -------------------------------------------------------------------------------- /css/v1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/css/v1.css -------------------------------------------------------------------------------- /examplefull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/examplefull.json -------------------------------------------------------------------------------- /html/contactUs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/html/contactUs.html -------------------------------------------------------------------------------- /html/contactUs2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/html/contactUs2.html -------------------------------------------------------------------------------- /html/contactus3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/html/contactus3.html -------------------------------------------------------------------------------- /html/demo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/html/demo1.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/index.html -------------------------------------------------------------------------------- /inject-coga/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/inject-coga/readme.md -------------------------------------------------------------------------------- /inject-coga/sample/mappings/dir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/inject-coga/sample/mappings/dir.json -------------------------------------------------------------------------------- /inject-coga/sample/mappings/mapping01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/inject-coga/sample/mappings/mapping01.json -------------------------------------------------------------------------------- /inject-coga/sample/sample-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/inject-coga/sample/sample-page.html -------------------------------------------------------------------------------- /inject-coga/src/inject-coga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/inject-coga/src/inject-coga.js -------------------------------------------------------------------------------- /inject-coga/src/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/inject-coga/src/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /inject-coga/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/inject-coga/src/manifest.json -------------------------------------------------------------------------------- /inject-coga/src/personalisation_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/inject-coga/src/personalisation_script.js -------------------------------------------------------------------------------- /js/cogapersonalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/js/cogapersonalization.js -------------------------------------------------------------------------------- /js/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/js/foo.js -------------------------------------------------------------------------------- /js/personalisation1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/js/personalisation1.js -------------------------------------------------------------------------------- /js/personalisation_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/js/personalisation_script.js -------------------------------------------------------------------------------- /json/coga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/json/coga.json -------------------------------------------------------------------------------- /json/json_attributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/json/json_attributes.json -------------------------------------------------------------------------------- /json/json_profile_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/json/json_profile_1.json -------------------------------------------------------------------------------- /json/json_skin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/json/json_skin.json -------------------------------------------------------------------------------- /json/json_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/json/json_template.json -------------------------------------------------------------------------------- /json/profile_exmaple_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/json/profile_exmaple_1.json -------------------------------------------------------------------------------- /json/profile_exmaple_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/json/profile_exmaple_2.json -------------------------------------------------------------------------------- /json/profile_test_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/json/profile_test_3.json -------------------------------------------------------------------------------- /json/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/json/readme.md -------------------------------------------------------------------------------- /json/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/json/sample.json -------------------------------------------------------------------------------- /json/skin1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/json/skin1.json -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayelet-seeman/coga.personalisation/HEAD/license.md --------------------------------------------------------------------------------