├── .eslintrc.json ├── .gitignore ├── .mocharc.yml ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── app ├── index.dev.js ├── index.html ├── index.js ├── src │ ├── app-editor.js │ ├── app-menu.js │ ├── app-preview.js │ ├── model-concept.js │ └── projection-editor.js ├── style.css └── stylesheets.js ├── assets ├── css │ ├── app │ │ ├── card-selector.css │ │ ├── editor-header.css │ │ ├── editor-home.css │ │ ├── editor-template.css │ │ ├── editor.css │ │ ├── explorer.css │ │ ├── field.css │ │ ├── floating-menu.css │ │ ├── general.css │ │ ├── layout.css │ │ ├── manager.css │ │ ├── note.css │ │ └── styler.css │ ├── backup │ │ ├── autocomplete.css │ │ ├── convo.css │ │ ├── editor_bkp.css │ │ ├── explorer.dark.css │ │ ├── field_bkp.css │ │ └── folder.css │ ├── base.css │ ├── effect.css │ ├── glyphicon.css │ ├── normalize.css │ ├── samples-aurelien │ │ ├── gentleman.css │ │ └── graphic-projection.css │ ├── samples │ │ ├── bracket-choice.css │ │ ├── gentleman.css │ │ ├── graphic-projection.css │ │ ├── projection.css │ │ └── style.css │ └── site │ │ ├── docs.css │ │ ├── home.css │ │ └── site.css └── images │ ├── GitHub-Mark-120px-plus.png │ ├── GitHub-Mark-32px.png │ ├── GitHub-Mark-64px.png │ ├── GitHub-Mark-Light-120px-plus.png │ ├── GitHub-Mark-Light-32px.png │ ├── GitHub-Mark-Light-64px.png │ ├── arrow_down.svg │ ├── background-1789175.png │ ├── demo_cms.gif │ ├── demo_mindmap.gif │ ├── demo_relis.gif │ ├── demo_todo.gif │ ├── demo_traffic_light.gif │ ├── doc_editor_ui.png │ ├── youtube_social_circle_dark.png │ ├── youtube_social_circle_red.png │ ├── youtube_social_circle_white.png │ ├── youtube_social_icon_dark.png │ ├── youtube_social_icon_red.png │ ├── youtube_social_icon_white.png │ ├── youtube_social_square_dark.png │ ├── youtube_social_square_red.png │ ├── youtube_social_square_white.png │ ├── youtube_social_squircle_dark.png │ ├── youtube_social_squircle_red.png │ └── youtube_social_squircle_white.png ├── babel.config.json ├── clean-css-loader.js ├── clean-css-plugin.js ├── config ├── webpack.app.js ├── webpack.aurel.js ├── webpack.cms.js ├── webpack.common.js ├── webpack.demo.js ├── webpack.dev.js └── webpack.prod.js ├── debug.log ├── demo ├── cms │ ├── api.js │ ├── assets │ │ ├── data │ │ │ └── organization.json │ │ ├── images │ │ │ └── geodes.png │ │ └── style.css │ ├── favicon.ico │ ├── index.html │ ├── index.js │ └── models.js ├── dist │ ├── cms.js │ ├── library.js │ ├── mindmap.js │ ├── music.js │ ├── people.js │ ├── petri.js │ ├── relis.js │ ├── sequence.js │ ├── statechart.js │ ├── todo.js │ └── trafficlight.js ├── library │ ├── assets │ │ └── style.css │ ├── data │ │ └── authors.json │ ├── index.html │ └── index.js ├── mindmap │ ├── assets │ │ └── style.css │ ├── index.html │ └── index.js ├── music │ ├── assets │ │ └── style.css │ ├── index.html │ └── index.js ├── petri │ ├── assets │ │ └── style.css │ ├── index.html │ └── index.js ├── relis │ ├── assets │ │ ├── noun_QA_92068.png │ │ ├── noun_QA_92068.svg │ │ ├── noun_classification_582083.png │ │ ├── noun_classification_582083.svg │ │ ├── noun_papers_126101.png │ │ ├── noun_papers_126101.svg │ │ ├── noun_report_67360.png │ │ ├── noun_report_67360.svg │ │ ├── noun_report_67360_84.png │ │ ├── noun_review_3077842.png │ │ ├── noun_review_3077842.svg │ │ └── style.css │ ├── index.html │ └── index.js ├── sequence │ ├── assets │ │ └── style.css │ ├── index.html │ └── index.js ├── statechart │ ├── assets │ │ └── style.css │ ├── index.html │ └── index.js ├── todo │ ├── assets │ │ ├── icon_bullets_checkbox.png │ │ ├── icon_bullets_checkbox.svg │ │ ├── icon_checklist_clipboard_mobile.svg │ │ ├── icon_checklist_clipboard_mobile_128px.png │ │ ├── icon_checklist_clipboard_mobile_256px.png │ │ ├── icon_checklist_clipboard_mobile_512px.png │ │ ├── icon_dot.png │ │ ├── icon_dot.svg │ │ ├── icon_recurring.png │ │ ├── icon_recurring.svg │ │ └── style.css │ ├── index.html │ └── index.js └── traffic-light │ ├── assets │ ├── style.css │ └── traffic-light-icon.jpg │ ├── index.html │ └── index.js ├── dist ├── app.min.css ├── app.min.map ├── gentleman.app.js ├── gentleman.app.js.LICENSE.txt ├── gentleman.core.js ├── gentleman.core.js.LICENSE.txt ├── style.min.css └── style.min.map ├── jsconfig.json ├── models ├── cms-model │ ├── field-projection.json │ ├── organization-concept.json │ ├── organization-projection.json │ ├── organization-projectionalt.json │ ├── person-concept copy.json │ ├── person-concept.json │ ├── person-projection.json │ ├── project-concept.json │ ├── project-projection.json │ ├── tool-concept.json │ └── tool-projection.json ├── concept-model │ ├── concept.json │ ├── config.json │ └── projection.json ├── druide-model │ ├── concept.json │ └── projection.json ├── graphical-model │ ├── concept.json │ ├── config.json │ ├── projection-header.json │ └── projection.json ├── graphical-model_old │ ├── concept.json │ ├── config.json │ └── projection.json ├── library-model │ ├── concept.json │ ├── field-projection.json │ └── projection.json ├── mindmap-model │ ├── concept.json │ ├── config.json │ ├── projection.json │ └── projection_nomarkers.json ├── music-model │ ├── concept.json │ ├── config.json │ └── projection.json ├── petri-model │ ├── concept.json │ ├── config.json │ ├── img │ │ ├── lil_arrow.svg │ │ ├── p-arc copy 2.svg │ │ ├── p-arc copy.svg │ │ ├── p-arc.svg │ │ ├── placeIcon.svg │ │ ├── t-arc.svg │ │ └── transitionIcon.svg │ └── projection.json ├── projection-model │ ├── concept.json │ ├── config.json │ ├── flat-projection.json │ ├── projection-aurelien.json │ ├── projection-old.json │ └── projection.json ├── relis-model │ ├── concept.json │ ├── config.json │ └── projection.json ├── sequence-model │ ├── concept.json │ ├── model.jsoncp │ └── projection.json ├── simple-model │ ├── concept.json │ ├── config.json │ └── projection.json ├── size-model │ ├── concept.json │ └── projection.json ├── state-model │ └── concept.json ├── statechart-model │ ├── concept.json │ ├── config.json │ └── projection.json ├── style-model │ ├── concept.json │ └── projection.json ├── todo-model │ ├── concept.json │ ├── config.json │ └── projection.json ├── trafficlight-model │ ├── concept.json │ ├── config.json │ └── projection.json └── tree-model │ ├── concept.json │ └── projection.json ├── package.json ├── scripts └── build.js ├── src ├── editor │ ├── context │ │ ├── editor-group.js │ │ ├── editor-instance.js │ │ ├── editor-window.js │ │ └── index.js │ ├── core │ │ ├── action-handler.js │ │ ├── fn-handler.js │ │ ├── fn-load.js │ │ ├── fn-projection-element.js │ │ ├── fn-state.js │ │ └── index.js │ ├── creator.js │ ├── editor-core.js │ ├── editor-export.js │ ├── editor-filter.js │ ├── editor-section.js │ ├── editor-style.js │ ├── editor-view.js │ ├── home │ │ ├── editor-config.js │ │ ├── editor-data.js │ │ ├── editor-file.js │ │ ├── editor-home.js │ │ └── editor.build.js │ ├── index.js │ ├── model-selector.js │ └── status │ │ ├── editor-breadcrumb.js │ │ ├── editor-log.js │ │ ├── editor-status.js │ │ └── index.js ├── generator │ ├── build-concept.js │ ├── build-graphical.js │ ├── build-projection.js │ ├── build-style.js │ ├── index.js │ └── utils.js ├── index.dev.js ├── index.js ├── model │ ├── concept-model.js │ ├── concept │ │ ├── base-concept.js │ │ ├── concept.js │ │ ├── factory.js │ │ ├── index.js │ │ ├── meta-concept.js │ │ ├── primitive │ │ │ ├── boolean-concept.js │ │ │ ├── index.js │ │ │ ├── number-concept.js │ │ │ ├── reference-concept.js │ │ │ ├── set-concept.js │ │ │ └── string-concept.js │ │ └── prototype-concept.js │ ├── index.js │ ├── model-manager.js │ └── structure │ │ ├── attribute-handler.js │ │ ├── attribute.js │ │ ├── index.js │ │ ├── observer-handler.js │ │ └── structure.js ├── projection │ ├── algorithm │ │ ├── add.js │ │ ├── algorithm-holder.js │ │ ├── algorithm.js │ │ ├── alt-view.js │ │ ├── anchor-algorithm.js │ │ ├── anchor-handler.js │ │ ├── button.js │ │ ├── decoration-algorithm.js │ │ ├── dimension-handler.js │ │ ├── factory.js │ │ ├── force-algorithm.js │ │ ├── pattern-algorithm.js │ │ ├── temp-tree.js │ │ └── tree-algorithm.js │ ├── arrow │ │ ├── anchor-arrow.js │ │ ├── arrow.js │ │ ├── factory.js │ │ ├── force-arrow.js │ │ └── multi-arrow.js │ ├── container.js │ ├── content-handler.js │ ├── field │ │ ├── add-field.js │ │ ├── arrow.js │ │ ├── binary-field.js │ │ ├── choice-field.js │ │ ├── dynamic-field.js │ │ ├── factory.js │ │ ├── field.js │ │ ├── grid-button.js │ │ ├── index.js │ │ ├── interactive-field.js │ │ ├── list-field.js │ │ ├── note.js │ │ ├── notification.js │ │ ├── static-field.js │ │ ├── svg-choice.js │ │ ├── svg-placeholder.js │ │ ├── svg-switch.js │ │ ├── svg-text.js │ │ ├── table-field.js │ │ ├── text-field.js │ │ └── visualizer-field.js │ ├── index.js │ ├── layout │ │ ├── factory.js │ │ ├── flex-layout.js │ │ ├── holder.js │ │ ├── index.js │ │ ├── layout.js │ │ ├── pattern-svg.js │ │ ├── stack-layout.js │ │ ├── svg-layout.js │ │ ├── table-layout.js │ │ ├── visualizer.js │ │ └── wrap-layout.js │ ├── projection-model.js │ ├── projection.js │ ├── shapes │ │ ├── canvas.js │ │ ├── circle.js │ │ ├── ellipse.js │ │ ├── factory.js │ │ ├── group.js │ │ ├── holder.js │ │ ├── path.js │ │ ├── polygon.js │ │ ├── rect.js │ │ └── shape.js │ ├── simulations │ │ ├── anchor-simulation.js │ │ ├── arrow-simulation.js │ │ ├── content-simulation.js │ │ ├── factory.js │ │ ├── force-simulation.js │ │ ├── marker-simulation.js │ │ ├── multi-simulation.js │ │ ├── pattern-simulation.js │ │ ├── selection-simulation.js │ │ ├── set-simulation.js │ │ ├── simulation.js │ │ ├── sub-path.js │ │ ├── text-simulation.js │ │ └── tree-simulation.js │ ├── size-handler.js │ ├── state-handler.js │ ├── static │ │ ├── audio-static.js │ │ ├── button-static.js │ │ ├── button-svg.js │ │ ├── factory.js │ │ ├── html-static.js │ │ ├── image-static.js │ │ ├── index.js │ │ ├── link-static.js │ │ ├── plink-static.js │ │ ├── static.js │ │ ├── svg-alt.js │ │ ├── svg-static.js │ │ ├── svg-text.js │ │ └── text-static.js │ └── style-handler.js ├── stylesheets.js └── utils │ ├── browser.js │ ├── caret.js │ ├── dom-io.js │ ├── dom.js │ ├── effects.js │ ├── enums.js │ ├── index.js │ ├── object-helpers.js │ ├── pubsub.js │ ├── string-helpers.js │ └── uuid.js └── test ├── environment └── manager.spec.js └── template.html /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/.mocharc.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/README.md -------------------------------------------------------------------------------- /app/index.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/app/index.dev.js -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/app/index.html -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/app/index.js -------------------------------------------------------------------------------- /app/src/app-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/app/src/app-editor.js -------------------------------------------------------------------------------- /app/src/app-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/app/src/app-menu.js -------------------------------------------------------------------------------- /app/src/app-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/app/src/app-preview.js -------------------------------------------------------------------------------- /app/src/model-concept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/app/src/model-concept.js -------------------------------------------------------------------------------- /app/src/projection-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/app/src/projection-editor.js -------------------------------------------------------------------------------- /app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/app/style.css -------------------------------------------------------------------------------- /app/stylesheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/app/stylesheets.js -------------------------------------------------------------------------------- /assets/css/app/card-selector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/app/card-selector.css -------------------------------------------------------------------------------- /assets/css/app/editor-header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/app/editor-header.css -------------------------------------------------------------------------------- /assets/css/app/editor-home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/app/editor-home.css -------------------------------------------------------------------------------- /assets/css/app/editor-template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/app/editor-template.css -------------------------------------------------------------------------------- /assets/css/app/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/app/editor.css -------------------------------------------------------------------------------- /assets/css/app/explorer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/app/explorer.css -------------------------------------------------------------------------------- /assets/css/app/field.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/app/field.css -------------------------------------------------------------------------------- /assets/css/app/floating-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/app/floating-menu.css -------------------------------------------------------------------------------- /assets/css/app/general.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/app/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/app/layout.css -------------------------------------------------------------------------------- /assets/css/app/manager.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/app/note.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/app/note.css -------------------------------------------------------------------------------- /assets/css/app/styler.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/app/styler.css -------------------------------------------------------------------------------- /assets/css/backup/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/backup/autocomplete.css -------------------------------------------------------------------------------- /assets/css/backup/convo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/backup/convo.css -------------------------------------------------------------------------------- /assets/css/backup/editor_bkp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/backup/editor_bkp.css -------------------------------------------------------------------------------- /assets/css/backup/explorer.dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/backup/explorer.dark.css -------------------------------------------------------------------------------- /assets/css/backup/field_bkp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/backup/field_bkp.css -------------------------------------------------------------------------------- /assets/css/backup/folder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/backup/folder.css -------------------------------------------------------------------------------- /assets/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/base.css -------------------------------------------------------------------------------- /assets/css/effect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/effect.css -------------------------------------------------------------------------------- /assets/css/glyphicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/glyphicon.css -------------------------------------------------------------------------------- /assets/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/normalize.css -------------------------------------------------------------------------------- /assets/css/samples-aurelien/gentleman.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/samples-aurelien/gentleman.css -------------------------------------------------------------------------------- /assets/css/samples-aurelien/graphic-projection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/samples-aurelien/graphic-projection.css -------------------------------------------------------------------------------- /assets/css/samples/bracket-choice.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/samples/bracket-choice.css -------------------------------------------------------------------------------- /assets/css/samples/gentleman.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/samples/gentleman.css -------------------------------------------------------------------------------- /assets/css/samples/graphic-projection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/samples/graphic-projection.css -------------------------------------------------------------------------------- /assets/css/samples/projection.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/samples/projection.css -------------------------------------------------------------------------------- /assets/css/samples/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/samples/style.css -------------------------------------------------------------------------------- /assets/css/site/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/site/docs.css -------------------------------------------------------------------------------- /assets/css/site/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/site/home.css -------------------------------------------------------------------------------- /assets/css/site/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/css/site/site.css -------------------------------------------------------------------------------- /assets/images/GitHub-Mark-120px-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/GitHub-Mark-120px-plus.png -------------------------------------------------------------------------------- /assets/images/GitHub-Mark-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/GitHub-Mark-32px.png -------------------------------------------------------------------------------- /assets/images/GitHub-Mark-64px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/GitHub-Mark-64px.png -------------------------------------------------------------------------------- /assets/images/GitHub-Mark-Light-120px-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/GitHub-Mark-Light-120px-plus.png -------------------------------------------------------------------------------- /assets/images/GitHub-Mark-Light-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/GitHub-Mark-Light-32px.png -------------------------------------------------------------------------------- /assets/images/GitHub-Mark-Light-64px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/GitHub-Mark-Light-64px.png -------------------------------------------------------------------------------- /assets/images/arrow_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/arrow_down.svg -------------------------------------------------------------------------------- /assets/images/background-1789175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/background-1789175.png -------------------------------------------------------------------------------- /assets/images/demo_cms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/demo_cms.gif -------------------------------------------------------------------------------- /assets/images/demo_mindmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/demo_mindmap.gif -------------------------------------------------------------------------------- /assets/images/demo_relis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/demo_relis.gif -------------------------------------------------------------------------------- /assets/images/demo_todo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/demo_todo.gif -------------------------------------------------------------------------------- /assets/images/demo_traffic_light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/demo_traffic_light.gif -------------------------------------------------------------------------------- /assets/images/doc_editor_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/doc_editor_ui.png -------------------------------------------------------------------------------- /assets/images/youtube_social_circle_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/youtube_social_circle_dark.png -------------------------------------------------------------------------------- /assets/images/youtube_social_circle_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/youtube_social_circle_red.png -------------------------------------------------------------------------------- /assets/images/youtube_social_circle_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/youtube_social_circle_white.png -------------------------------------------------------------------------------- /assets/images/youtube_social_icon_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/youtube_social_icon_dark.png -------------------------------------------------------------------------------- /assets/images/youtube_social_icon_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/youtube_social_icon_red.png -------------------------------------------------------------------------------- /assets/images/youtube_social_icon_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/youtube_social_icon_white.png -------------------------------------------------------------------------------- /assets/images/youtube_social_square_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/youtube_social_square_dark.png -------------------------------------------------------------------------------- /assets/images/youtube_social_square_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/youtube_social_square_red.png -------------------------------------------------------------------------------- /assets/images/youtube_social_square_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/youtube_social_square_white.png -------------------------------------------------------------------------------- /assets/images/youtube_social_squircle_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/youtube_social_squircle_dark.png -------------------------------------------------------------------------------- /assets/images/youtube_social_squircle_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/youtube_social_squircle_red.png -------------------------------------------------------------------------------- /assets/images/youtube_social_squircle_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/assets/images/youtube_social_squircle_white.png -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/babel.config.json -------------------------------------------------------------------------------- /clean-css-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/clean-css-loader.js -------------------------------------------------------------------------------- /clean-css-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/clean-css-plugin.js -------------------------------------------------------------------------------- /config/webpack.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/config/webpack.app.js -------------------------------------------------------------------------------- /config/webpack.aurel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/config/webpack.aurel.js -------------------------------------------------------------------------------- /config/webpack.cms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/config/webpack.cms.js -------------------------------------------------------------------------------- /config/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/config/webpack.common.js -------------------------------------------------------------------------------- /config/webpack.demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/config/webpack.demo.js -------------------------------------------------------------------------------- /config/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/config/webpack.dev.js -------------------------------------------------------------------------------- /config/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/config/webpack.prod.js -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/debug.log -------------------------------------------------------------------------------- /demo/cms/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/cms/api.js -------------------------------------------------------------------------------- /demo/cms/assets/data/organization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/cms/assets/data/organization.json -------------------------------------------------------------------------------- /demo/cms/assets/images/geodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/cms/assets/images/geodes.png -------------------------------------------------------------------------------- /demo/cms/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/cms/assets/style.css -------------------------------------------------------------------------------- /demo/cms/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/cms/favicon.ico -------------------------------------------------------------------------------- /demo/cms/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/cms/index.html -------------------------------------------------------------------------------- /demo/cms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/cms/index.js -------------------------------------------------------------------------------- /demo/cms/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/cms/models.js -------------------------------------------------------------------------------- /demo/dist/cms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/dist/cms.js -------------------------------------------------------------------------------- /demo/dist/library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/dist/library.js -------------------------------------------------------------------------------- /demo/dist/mindmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/dist/mindmap.js -------------------------------------------------------------------------------- /demo/dist/music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/dist/music.js -------------------------------------------------------------------------------- /demo/dist/people.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/dist/people.js -------------------------------------------------------------------------------- /demo/dist/petri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/dist/petri.js -------------------------------------------------------------------------------- /demo/dist/relis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/dist/relis.js -------------------------------------------------------------------------------- /demo/dist/sequence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/dist/sequence.js -------------------------------------------------------------------------------- /demo/dist/statechart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/dist/statechart.js -------------------------------------------------------------------------------- /demo/dist/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/dist/todo.js -------------------------------------------------------------------------------- /demo/dist/trafficlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/dist/trafficlight.js -------------------------------------------------------------------------------- /demo/library/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/library/assets/style.css -------------------------------------------------------------------------------- /demo/library/data/authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/library/data/authors.json -------------------------------------------------------------------------------- /demo/library/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/library/index.html -------------------------------------------------------------------------------- /demo/library/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/library/index.js -------------------------------------------------------------------------------- /demo/mindmap/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/mindmap/assets/style.css -------------------------------------------------------------------------------- /demo/mindmap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/mindmap/index.html -------------------------------------------------------------------------------- /demo/mindmap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/mindmap/index.js -------------------------------------------------------------------------------- /demo/music/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/music/assets/style.css -------------------------------------------------------------------------------- /demo/music/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/music/index.html -------------------------------------------------------------------------------- /demo/music/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/music/index.js -------------------------------------------------------------------------------- /demo/petri/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/petri/assets/style.css -------------------------------------------------------------------------------- /demo/petri/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/petri/index.html -------------------------------------------------------------------------------- /demo/petri/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/petri/index.js -------------------------------------------------------------------------------- /demo/relis/assets/noun_QA_92068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/relis/assets/noun_QA_92068.png -------------------------------------------------------------------------------- /demo/relis/assets/noun_QA_92068.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/relis/assets/noun_QA_92068.svg -------------------------------------------------------------------------------- /demo/relis/assets/noun_classification_582083.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/relis/assets/noun_classification_582083.png -------------------------------------------------------------------------------- /demo/relis/assets/noun_classification_582083.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/relis/assets/noun_classification_582083.svg -------------------------------------------------------------------------------- /demo/relis/assets/noun_papers_126101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/relis/assets/noun_papers_126101.png -------------------------------------------------------------------------------- /demo/relis/assets/noun_papers_126101.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/relis/assets/noun_papers_126101.svg -------------------------------------------------------------------------------- /demo/relis/assets/noun_report_67360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/relis/assets/noun_report_67360.png -------------------------------------------------------------------------------- /demo/relis/assets/noun_report_67360.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/relis/assets/noun_report_67360.svg -------------------------------------------------------------------------------- /demo/relis/assets/noun_report_67360_84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/relis/assets/noun_report_67360_84.png -------------------------------------------------------------------------------- /demo/relis/assets/noun_review_3077842.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/relis/assets/noun_review_3077842.png -------------------------------------------------------------------------------- /demo/relis/assets/noun_review_3077842.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/relis/assets/noun_review_3077842.svg -------------------------------------------------------------------------------- /demo/relis/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/relis/assets/style.css -------------------------------------------------------------------------------- /demo/relis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/relis/index.html -------------------------------------------------------------------------------- /demo/relis/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/relis/index.js -------------------------------------------------------------------------------- /demo/sequence/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/sequence/assets/style.css -------------------------------------------------------------------------------- /demo/sequence/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/sequence/index.html -------------------------------------------------------------------------------- /demo/sequence/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/sequence/index.js -------------------------------------------------------------------------------- /demo/statechart/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/statechart/assets/style.css -------------------------------------------------------------------------------- /demo/statechart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/statechart/index.html -------------------------------------------------------------------------------- /demo/statechart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/statechart/index.js -------------------------------------------------------------------------------- /demo/todo/assets/icon_bullets_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/todo/assets/icon_bullets_checkbox.png -------------------------------------------------------------------------------- /demo/todo/assets/icon_bullets_checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/todo/assets/icon_bullets_checkbox.svg -------------------------------------------------------------------------------- /demo/todo/assets/icon_checklist_clipboard_mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/todo/assets/icon_checklist_clipboard_mobile.svg -------------------------------------------------------------------------------- /demo/todo/assets/icon_checklist_clipboard_mobile_128px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/todo/assets/icon_checklist_clipboard_mobile_128px.png -------------------------------------------------------------------------------- /demo/todo/assets/icon_checklist_clipboard_mobile_256px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/todo/assets/icon_checklist_clipboard_mobile_256px.png -------------------------------------------------------------------------------- /demo/todo/assets/icon_checklist_clipboard_mobile_512px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/todo/assets/icon_checklist_clipboard_mobile_512px.png -------------------------------------------------------------------------------- /demo/todo/assets/icon_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/todo/assets/icon_dot.png -------------------------------------------------------------------------------- /demo/todo/assets/icon_dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/todo/assets/icon_dot.svg -------------------------------------------------------------------------------- /demo/todo/assets/icon_recurring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/todo/assets/icon_recurring.png -------------------------------------------------------------------------------- /demo/todo/assets/icon_recurring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/todo/assets/icon_recurring.svg -------------------------------------------------------------------------------- /demo/todo/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/todo/assets/style.css -------------------------------------------------------------------------------- /demo/todo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/todo/index.html -------------------------------------------------------------------------------- /demo/todo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/todo/index.js -------------------------------------------------------------------------------- /demo/traffic-light/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/traffic-light/assets/style.css -------------------------------------------------------------------------------- /demo/traffic-light/assets/traffic-light-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/traffic-light/assets/traffic-light-icon.jpg -------------------------------------------------------------------------------- /demo/traffic-light/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/traffic-light/index.html -------------------------------------------------------------------------------- /demo/traffic-light/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/demo/traffic-light/index.js -------------------------------------------------------------------------------- /dist/app.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/dist/app.min.css -------------------------------------------------------------------------------- /dist/app.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/dist/app.min.map -------------------------------------------------------------------------------- /dist/gentleman.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/dist/gentleman.app.js -------------------------------------------------------------------------------- /dist/gentleman.app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/dist/gentleman.app.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/gentleman.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/dist/gentleman.core.js -------------------------------------------------------------------------------- /dist/gentleman.core.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/dist/gentleman.core.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/dist/style.min.css -------------------------------------------------------------------------------- /dist/style.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/dist/style.min.map -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/jsconfig.json -------------------------------------------------------------------------------- /models/cms-model/field-projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/cms-model/field-projection.json -------------------------------------------------------------------------------- /models/cms-model/organization-concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/cms-model/organization-concept.json -------------------------------------------------------------------------------- /models/cms-model/organization-projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/cms-model/organization-projection.json -------------------------------------------------------------------------------- /models/cms-model/organization-projectionalt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/cms-model/organization-projectionalt.json -------------------------------------------------------------------------------- /models/cms-model/person-concept copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/cms-model/person-concept copy.json -------------------------------------------------------------------------------- /models/cms-model/person-concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/cms-model/person-concept.json -------------------------------------------------------------------------------- /models/cms-model/person-projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/cms-model/person-projection.json -------------------------------------------------------------------------------- /models/cms-model/project-concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/cms-model/project-concept.json -------------------------------------------------------------------------------- /models/cms-model/project-projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/cms-model/project-projection.json -------------------------------------------------------------------------------- /models/cms-model/tool-concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/cms-model/tool-concept.json -------------------------------------------------------------------------------- /models/cms-model/tool-projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/cms-model/tool-projection.json -------------------------------------------------------------------------------- /models/concept-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/concept-model/concept.json -------------------------------------------------------------------------------- /models/concept-model/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/concept-model/config.json -------------------------------------------------------------------------------- /models/concept-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/concept-model/projection.json -------------------------------------------------------------------------------- /models/druide-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/druide-model/concept.json -------------------------------------------------------------------------------- /models/druide-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/druide-model/projection.json -------------------------------------------------------------------------------- /models/graphical-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/graphical-model/concept.json -------------------------------------------------------------------------------- /models/graphical-model/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/graphical-model/config.json -------------------------------------------------------------------------------- /models/graphical-model/projection-header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/graphical-model/projection-header.json -------------------------------------------------------------------------------- /models/graphical-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/graphical-model/projection.json -------------------------------------------------------------------------------- /models/graphical-model_old/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/graphical-model_old/concept.json -------------------------------------------------------------------------------- /models/graphical-model_old/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/graphical-model_old/config.json -------------------------------------------------------------------------------- /models/graphical-model_old/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/graphical-model_old/projection.json -------------------------------------------------------------------------------- /models/library-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/library-model/concept.json -------------------------------------------------------------------------------- /models/library-model/field-projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/library-model/field-projection.json -------------------------------------------------------------------------------- /models/library-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/library-model/projection.json -------------------------------------------------------------------------------- /models/mindmap-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/mindmap-model/concept.json -------------------------------------------------------------------------------- /models/mindmap-model/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/mindmap-model/config.json -------------------------------------------------------------------------------- /models/mindmap-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/mindmap-model/projection.json -------------------------------------------------------------------------------- /models/mindmap-model/projection_nomarkers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/mindmap-model/projection_nomarkers.json -------------------------------------------------------------------------------- /models/music-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/music-model/concept.json -------------------------------------------------------------------------------- /models/music-model/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/music-model/config.json -------------------------------------------------------------------------------- /models/music-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/music-model/projection.json -------------------------------------------------------------------------------- /models/petri-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/petri-model/concept.json -------------------------------------------------------------------------------- /models/petri-model/config.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /models/petri-model/img/lil_arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/petri-model/img/p-arc copy 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/petri-model/img/p-arc copy 2.svg -------------------------------------------------------------------------------- /models/petri-model/img/p-arc copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/petri-model/img/p-arc copy.svg -------------------------------------------------------------------------------- /models/petri-model/img/p-arc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/petri-model/img/p-arc.svg -------------------------------------------------------------------------------- /models/petri-model/img/placeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/petri-model/img/placeIcon.svg -------------------------------------------------------------------------------- /models/petri-model/img/t-arc.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/petri-model/img/transitionIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/petri-model/img/transitionIcon.svg -------------------------------------------------------------------------------- /models/petri-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/petri-model/projection.json -------------------------------------------------------------------------------- /models/projection-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/projection-model/concept.json -------------------------------------------------------------------------------- /models/projection-model/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/projection-model/config.json -------------------------------------------------------------------------------- /models/projection-model/flat-projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/projection-model/flat-projection.json -------------------------------------------------------------------------------- /models/projection-model/projection-aurelien.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/projection-model/projection-aurelien.json -------------------------------------------------------------------------------- /models/projection-model/projection-old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/projection-model/projection-old.json -------------------------------------------------------------------------------- /models/projection-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/projection-model/projection.json -------------------------------------------------------------------------------- /models/relis-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/relis-model/concept.json -------------------------------------------------------------------------------- /models/relis-model/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/relis-model/config.json -------------------------------------------------------------------------------- /models/relis-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/relis-model/projection.json -------------------------------------------------------------------------------- /models/sequence-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/sequence-model/concept.json -------------------------------------------------------------------------------- /models/sequence-model/model.jsoncp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/sequence-model/model.jsoncp -------------------------------------------------------------------------------- /models/sequence-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/sequence-model/projection.json -------------------------------------------------------------------------------- /models/simple-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/simple-model/concept.json -------------------------------------------------------------------------------- /models/simple-model/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/simple-model/config.json -------------------------------------------------------------------------------- /models/simple-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/simple-model/projection.json -------------------------------------------------------------------------------- /models/size-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/size-model/concept.json -------------------------------------------------------------------------------- /models/size-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/size-model/projection.json -------------------------------------------------------------------------------- /models/state-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/state-model/concept.json -------------------------------------------------------------------------------- /models/statechart-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/statechart-model/concept.json -------------------------------------------------------------------------------- /models/statechart-model/config.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /models/statechart-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/statechart-model/projection.json -------------------------------------------------------------------------------- /models/style-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/style-model/concept.json -------------------------------------------------------------------------------- /models/style-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/style-model/projection.json -------------------------------------------------------------------------------- /models/todo-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/todo-model/concept.json -------------------------------------------------------------------------------- /models/todo-model/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/todo-model/config.json -------------------------------------------------------------------------------- /models/todo-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/todo-model/projection.json -------------------------------------------------------------------------------- /models/trafficlight-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/trafficlight-model/concept.json -------------------------------------------------------------------------------- /models/trafficlight-model/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/trafficlight-model/config.json -------------------------------------------------------------------------------- /models/trafficlight-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/trafficlight-model/projection.json -------------------------------------------------------------------------------- /models/tree-model/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/tree-model/concept.json -------------------------------------------------------------------------------- /models/tree-model/projection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/models/tree-model/projection.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/scripts/build.js -------------------------------------------------------------------------------- /src/editor/context/editor-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/context/editor-group.js -------------------------------------------------------------------------------- /src/editor/context/editor-instance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/context/editor-instance.js -------------------------------------------------------------------------------- /src/editor/context/editor-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/context/editor-window.js -------------------------------------------------------------------------------- /src/editor/context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/context/index.js -------------------------------------------------------------------------------- /src/editor/core/action-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/core/action-handler.js -------------------------------------------------------------------------------- /src/editor/core/fn-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/core/fn-handler.js -------------------------------------------------------------------------------- /src/editor/core/fn-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/core/fn-load.js -------------------------------------------------------------------------------- /src/editor/core/fn-projection-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/core/fn-projection-element.js -------------------------------------------------------------------------------- /src/editor/core/fn-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/core/fn-state.js -------------------------------------------------------------------------------- /src/editor/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/core/index.js -------------------------------------------------------------------------------- /src/editor/creator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/creator.js -------------------------------------------------------------------------------- /src/editor/editor-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/editor-core.js -------------------------------------------------------------------------------- /src/editor/editor-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/editor-export.js -------------------------------------------------------------------------------- /src/editor/editor-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/editor-filter.js -------------------------------------------------------------------------------- /src/editor/editor-section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/editor-section.js -------------------------------------------------------------------------------- /src/editor/editor-style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/editor-style.js -------------------------------------------------------------------------------- /src/editor/editor-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/editor-view.js -------------------------------------------------------------------------------- /src/editor/home/editor-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/home/editor-config.js -------------------------------------------------------------------------------- /src/editor/home/editor-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/home/editor-data.js -------------------------------------------------------------------------------- /src/editor/home/editor-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/home/editor-file.js -------------------------------------------------------------------------------- /src/editor/home/editor-home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/home/editor-home.js -------------------------------------------------------------------------------- /src/editor/home/editor.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/home/editor.build.js -------------------------------------------------------------------------------- /src/editor/index.js: -------------------------------------------------------------------------------- 1 | export * from './editor-core.js'; 2 | -------------------------------------------------------------------------------- /src/editor/model-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/model-selector.js -------------------------------------------------------------------------------- /src/editor/status/editor-breadcrumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/status/editor-breadcrumb.js -------------------------------------------------------------------------------- /src/editor/status/editor-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/status/editor-log.js -------------------------------------------------------------------------------- /src/editor/status/editor-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/status/editor-status.js -------------------------------------------------------------------------------- /src/editor/status/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/editor/status/index.js -------------------------------------------------------------------------------- /src/generator/build-concept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/generator/build-concept.js -------------------------------------------------------------------------------- /src/generator/build-graphical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/generator/build-graphical.js -------------------------------------------------------------------------------- /src/generator/build-projection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/generator/build-projection.js -------------------------------------------------------------------------------- /src/generator/build-style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/generator/build-style.js -------------------------------------------------------------------------------- /src/generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/generator/index.js -------------------------------------------------------------------------------- /src/generator/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/generator/utils.js -------------------------------------------------------------------------------- /src/index.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/index.dev.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/index.js -------------------------------------------------------------------------------- /src/model/concept-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/concept-model.js -------------------------------------------------------------------------------- /src/model/concept/base-concept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/concept/base-concept.js -------------------------------------------------------------------------------- /src/model/concept/concept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/concept/concept.js -------------------------------------------------------------------------------- /src/model/concept/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/concept/factory.js -------------------------------------------------------------------------------- /src/model/concept/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/concept/index.js -------------------------------------------------------------------------------- /src/model/concept/meta-concept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/concept/meta-concept.js -------------------------------------------------------------------------------- /src/model/concept/primitive/boolean-concept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/concept/primitive/boolean-concept.js -------------------------------------------------------------------------------- /src/model/concept/primitive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/concept/primitive/index.js -------------------------------------------------------------------------------- /src/model/concept/primitive/number-concept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/concept/primitive/number-concept.js -------------------------------------------------------------------------------- /src/model/concept/primitive/reference-concept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/concept/primitive/reference-concept.js -------------------------------------------------------------------------------- /src/model/concept/primitive/set-concept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/concept/primitive/set-concept.js -------------------------------------------------------------------------------- /src/model/concept/primitive/string-concept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/concept/primitive/string-concept.js -------------------------------------------------------------------------------- /src/model/concept/prototype-concept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/concept/prototype-concept.js -------------------------------------------------------------------------------- /src/model/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/index.js -------------------------------------------------------------------------------- /src/model/model-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/model-manager.js -------------------------------------------------------------------------------- /src/model/structure/attribute-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/structure/attribute-handler.js -------------------------------------------------------------------------------- /src/model/structure/attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/structure/attribute.js -------------------------------------------------------------------------------- /src/model/structure/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/structure/index.js -------------------------------------------------------------------------------- /src/model/structure/observer-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/structure/observer-handler.js -------------------------------------------------------------------------------- /src/model/structure/structure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/model/structure/structure.js -------------------------------------------------------------------------------- /src/projection/algorithm/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/algorithm/add.js -------------------------------------------------------------------------------- /src/projection/algorithm/algorithm-holder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/algorithm/algorithm-holder.js -------------------------------------------------------------------------------- /src/projection/algorithm/algorithm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/algorithm/algorithm.js -------------------------------------------------------------------------------- /src/projection/algorithm/alt-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/algorithm/alt-view.js -------------------------------------------------------------------------------- /src/projection/algorithm/anchor-algorithm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/algorithm/anchor-algorithm.js -------------------------------------------------------------------------------- /src/projection/algorithm/anchor-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/algorithm/anchor-handler.js -------------------------------------------------------------------------------- /src/projection/algorithm/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/algorithm/button.js -------------------------------------------------------------------------------- /src/projection/algorithm/decoration-algorithm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/algorithm/decoration-algorithm.js -------------------------------------------------------------------------------- /src/projection/algorithm/dimension-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/algorithm/dimension-handler.js -------------------------------------------------------------------------------- /src/projection/algorithm/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/algorithm/factory.js -------------------------------------------------------------------------------- /src/projection/algorithm/force-algorithm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/algorithm/force-algorithm.js -------------------------------------------------------------------------------- /src/projection/algorithm/pattern-algorithm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/algorithm/pattern-algorithm.js -------------------------------------------------------------------------------- /src/projection/algorithm/temp-tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/algorithm/temp-tree.js -------------------------------------------------------------------------------- /src/projection/algorithm/tree-algorithm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/algorithm/tree-algorithm.js -------------------------------------------------------------------------------- /src/projection/arrow/anchor-arrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/arrow/anchor-arrow.js -------------------------------------------------------------------------------- /src/projection/arrow/arrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/arrow/arrow.js -------------------------------------------------------------------------------- /src/projection/arrow/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/arrow/factory.js -------------------------------------------------------------------------------- /src/projection/arrow/force-arrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/arrow/force-arrow.js -------------------------------------------------------------------------------- /src/projection/arrow/multi-arrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/arrow/multi-arrow.js -------------------------------------------------------------------------------- /src/projection/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/container.js -------------------------------------------------------------------------------- /src/projection/content-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/content-handler.js -------------------------------------------------------------------------------- /src/projection/field/add-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/add-field.js -------------------------------------------------------------------------------- /src/projection/field/arrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/arrow.js -------------------------------------------------------------------------------- /src/projection/field/binary-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/binary-field.js -------------------------------------------------------------------------------- /src/projection/field/choice-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/choice-field.js -------------------------------------------------------------------------------- /src/projection/field/dynamic-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/dynamic-field.js -------------------------------------------------------------------------------- /src/projection/field/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/factory.js -------------------------------------------------------------------------------- /src/projection/field/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/field.js -------------------------------------------------------------------------------- /src/projection/field/grid-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/grid-button.js -------------------------------------------------------------------------------- /src/projection/field/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/index.js -------------------------------------------------------------------------------- /src/projection/field/interactive-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/interactive-field.js -------------------------------------------------------------------------------- /src/projection/field/list-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/list-field.js -------------------------------------------------------------------------------- /src/projection/field/note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/note.js -------------------------------------------------------------------------------- /src/projection/field/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/notification.js -------------------------------------------------------------------------------- /src/projection/field/static-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/static-field.js -------------------------------------------------------------------------------- /src/projection/field/svg-choice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/svg-choice.js -------------------------------------------------------------------------------- /src/projection/field/svg-placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/svg-placeholder.js -------------------------------------------------------------------------------- /src/projection/field/svg-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/svg-switch.js -------------------------------------------------------------------------------- /src/projection/field/svg-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/svg-text.js -------------------------------------------------------------------------------- /src/projection/field/table-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/table-field.js -------------------------------------------------------------------------------- /src/projection/field/text-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/text-field.js -------------------------------------------------------------------------------- /src/projection/field/visualizer-field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/field/visualizer-field.js -------------------------------------------------------------------------------- /src/projection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/index.js -------------------------------------------------------------------------------- /src/projection/layout/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/layout/factory.js -------------------------------------------------------------------------------- /src/projection/layout/flex-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/layout/flex-layout.js -------------------------------------------------------------------------------- /src/projection/layout/holder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/layout/holder.js -------------------------------------------------------------------------------- /src/projection/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/layout/index.js -------------------------------------------------------------------------------- /src/projection/layout/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/layout/layout.js -------------------------------------------------------------------------------- /src/projection/layout/pattern-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/layout/pattern-svg.js -------------------------------------------------------------------------------- /src/projection/layout/stack-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/layout/stack-layout.js -------------------------------------------------------------------------------- /src/projection/layout/svg-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/layout/svg-layout.js -------------------------------------------------------------------------------- /src/projection/layout/table-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/layout/table-layout.js -------------------------------------------------------------------------------- /src/projection/layout/visualizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/layout/visualizer.js -------------------------------------------------------------------------------- /src/projection/layout/wrap-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/layout/wrap-layout.js -------------------------------------------------------------------------------- /src/projection/projection-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/projection-model.js -------------------------------------------------------------------------------- /src/projection/projection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/projection.js -------------------------------------------------------------------------------- /src/projection/shapes/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/shapes/canvas.js -------------------------------------------------------------------------------- /src/projection/shapes/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/shapes/circle.js -------------------------------------------------------------------------------- /src/projection/shapes/ellipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/shapes/ellipse.js -------------------------------------------------------------------------------- /src/projection/shapes/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/shapes/factory.js -------------------------------------------------------------------------------- /src/projection/shapes/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/shapes/group.js -------------------------------------------------------------------------------- /src/projection/shapes/holder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/shapes/holder.js -------------------------------------------------------------------------------- /src/projection/shapes/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/shapes/path.js -------------------------------------------------------------------------------- /src/projection/shapes/polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/shapes/polygon.js -------------------------------------------------------------------------------- /src/projection/shapes/rect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/shapes/rect.js -------------------------------------------------------------------------------- /src/projection/shapes/shape.js: -------------------------------------------------------------------------------- 1 | export const Shape = { 2 | 3 | } -------------------------------------------------------------------------------- /src/projection/simulations/anchor-simulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/simulations/anchor-simulation.js -------------------------------------------------------------------------------- /src/projection/simulations/arrow-simulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/simulations/arrow-simulation.js -------------------------------------------------------------------------------- /src/projection/simulations/content-simulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/simulations/content-simulation.js -------------------------------------------------------------------------------- /src/projection/simulations/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/simulations/factory.js -------------------------------------------------------------------------------- /src/projection/simulations/force-simulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/simulations/force-simulation.js -------------------------------------------------------------------------------- /src/projection/simulations/marker-simulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/simulations/marker-simulation.js -------------------------------------------------------------------------------- /src/projection/simulations/multi-simulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/simulations/multi-simulation.js -------------------------------------------------------------------------------- /src/projection/simulations/pattern-simulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/simulations/pattern-simulation.js -------------------------------------------------------------------------------- /src/projection/simulations/selection-simulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/simulations/selection-simulation.js -------------------------------------------------------------------------------- /src/projection/simulations/set-simulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/simulations/set-simulation.js -------------------------------------------------------------------------------- /src/projection/simulations/simulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/simulations/simulation.js -------------------------------------------------------------------------------- /src/projection/simulations/sub-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/simulations/sub-path.js -------------------------------------------------------------------------------- /src/projection/simulations/text-simulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/simulations/text-simulation.js -------------------------------------------------------------------------------- /src/projection/simulations/tree-simulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/simulations/tree-simulation.js -------------------------------------------------------------------------------- /src/projection/size-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/size-handler.js -------------------------------------------------------------------------------- /src/projection/state-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/state-handler.js -------------------------------------------------------------------------------- /src/projection/static/audio-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/static/audio-static.js -------------------------------------------------------------------------------- /src/projection/static/button-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/static/button-static.js -------------------------------------------------------------------------------- /src/projection/static/button-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/static/button-svg.js -------------------------------------------------------------------------------- /src/projection/static/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/static/factory.js -------------------------------------------------------------------------------- /src/projection/static/html-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/static/html-static.js -------------------------------------------------------------------------------- /src/projection/static/image-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/static/image-static.js -------------------------------------------------------------------------------- /src/projection/static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/static/index.js -------------------------------------------------------------------------------- /src/projection/static/link-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/static/link-static.js -------------------------------------------------------------------------------- /src/projection/static/plink-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/static/plink-static.js -------------------------------------------------------------------------------- /src/projection/static/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/static/static.js -------------------------------------------------------------------------------- /src/projection/static/svg-alt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/static/svg-alt.js -------------------------------------------------------------------------------- /src/projection/static/svg-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/static/svg-static.js -------------------------------------------------------------------------------- /src/projection/static/svg-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/static/svg-text.js -------------------------------------------------------------------------------- /src/projection/static/text-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/static/text-static.js -------------------------------------------------------------------------------- /src/projection/style-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/projection/style-handler.js -------------------------------------------------------------------------------- /src/stylesheets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/stylesheets.js -------------------------------------------------------------------------------- /src/utils/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/utils/browser.js -------------------------------------------------------------------------------- /src/utils/caret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/utils/caret.js -------------------------------------------------------------------------------- /src/utils/dom-io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/utils/dom-io.js -------------------------------------------------------------------------------- /src/utils/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/utils/dom.js -------------------------------------------------------------------------------- /src/utils/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/utils/effects.js -------------------------------------------------------------------------------- /src/utils/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/utils/enums.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/object-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/utils/object-helpers.js -------------------------------------------------------------------------------- /src/utils/pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/utils/pubsub.js -------------------------------------------------------------------------------- /src/utils/string-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/utils/string-helpers.js -------------------------------------------------------------------------------- /src/utils/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/src/utils/uuid.js -------------------------------------------------------------------------------- /test/environment/manager.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/test/environment/manager.spec.js -------------------------------------------------------------------------------- /test/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodes-sms/gentleman/HEAD/test/template.html --------------------------------------------------------------------------------