├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature_request.md └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── apps ├── __init__.py ├── activity │ ├── __init__.py │ ├── activity_type │ │ ├── __init__.py │ │ ├── activity_type.py │ │ ├── base.py │ │ ├── course.py │ │ ├── examen.py │ │ ├── exceptions.py │ │ ├── pltp.py │ │ ├── section.py │ │ ├── survey_utils.py │ │ └── utils.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ └── __init__.py │ ├── mixins.py │ ├── models.py │ ├── static │ │ └── activity │ │ │ ├── css │ │ │ └── courses.css │ │ │ └── images │ │ │ ├── course.png │ │ │ └── pltp.png │ ├── templates │ │ └── activity │ │ │ └── activity_type │ │ │ ├── base │ │ │ └── index.html │ │ │ ├── course │ │ │ ├── index.html │ │ │ ├── load_csv.html │ │ │ ├── small.html │ │ │ ├── student_summary.html │ │ │ └── teacher_dashboard.html │ │ │ ├── default_small.html │ │ │ ├── pltp │ │ │ ├── exercise.html │ │ │ ├── learning_path.html │ │ │ ├── navigation.html │ │ │ ├── pltp.html │ │ │ ├── small.html │ │ │ ├── survey_dashboard.html │ │ │ └── teacher_dashboard.html │ │ │ └── section │ │ │ ├── section.html │ │ │ └── small.html │ ├── tests │ │ ├── activity_test_views.py │ │ ├── data │ │ │ ├── eleve_data.csv │ │ │ ├── eleve_data_change_group.csv │ │ │ ├── eleve_data_incomplet_file.csv │ │ │ ├── eleve_data_no_in_course.csv │ │ │ ├── eleve_data_with_faults.csv │ │ │ ├── list_email_in_activity.txt │ │ │ └── list_email_not_in_activity.txt │ │ └── tests.py │ ├── urls.py │ └── views.py ├── cas_app │ ├── __init__.py │ ├── apps.py │ ├── backends.py │ ├── urls.py │ └── views.py ├── components │ ├── __init__.py │ ├── apps.py │ ├── components.py │ ├── migrations │ │ └── __init__.py │ ├── static │ │ └── components │ │ │ ├── 3rdpartylicenses.txt │ │ │ ├── KaTeX_AMS-Regular.woff │ │ │ ├── KaTeX_AMS-Regular.woff2 │ │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ │ ├── KaTeX_Fraktur-Bold.woff │ │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ │ ├── KaTeX_Fraktur-Regular.woff │ │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ │ ├── KaTeX_Main-Bold.woff │ │ │ ├── KaTeX_Main-Bold.woff2 │ │ │ ├── KaTeX_Main-BoldItalic.woff │ │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ │ ├── KaTeX_Main-Italic.woff │ │ │ ├── KaTeX_Main-Italic.woff2 │ │ │ ├── KaTeX_Main-Regular.woff │ │ │ ├── KaTeX_Main-Regular.woff2 │ │ │ ├── KaTeX_Math-BoldItalic.woff │ │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ │ ├── KaTeX_Math-Italic.woff │ │ │ ├── KaTeX_Math-Italic.woff2 │ │ │ ├── KaTeX_SansSerif-Bold.woff │ │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ │ ├── KaTeX_SansSerif-Italic.woff │ │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ │ ├── KaTeX_SansSerif-Regular.woff │ │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ │ ├── KaTeX_Script-Regular.woff │ │ │ ├── KaTeX_Script-Regular.woff2 │ │ │ ├── KaTeX_Size1-Regular.woff │ │ │ ├── KaTeX_Size1-Regular.woff2 │ │ │ ├── KaTeX_Size2-Regular.woff │ │ │ ├── KaTeX_Size2-Regular.woff2 │ │ │ ├── KaTeX_Size3-Regular.woff │ │ │ ├── KaTeX_Size3-Regular.woff2 │ │ │ ├── KaTeX_Size4-Regular.woff │ │ │ ├── KaTeX_Size4-Regular.woff2 │ │ │ ├── KaTeX_Typewriter-Regular.woff │ │ │ ├── KaTeX_Typewriter-Regular.woff2 │ │ │ ├── Symbola.eot │ │ │ ├── Symbola.svg │ │ │ ├── Symbola.ttf │ │ │ ├── Symbola.woff │ │ │ ├── Symbola.woff2 │ │ │ ├── assets │ │ │ ├── controllers │ │ │ │ └── controllers.py │ │ │ ├── docs │ │ │ │ ├── automaton-editor.html │ │ │ │ ├── automaton-viewer.html │ │ │ │ ├── checkbox-group.html │ │ │ │ ├── code-editor.html │ │ │ │ ├── countdown.html │ │ │ │ ├── drag-drop.html │ │ │ │ ├── eval-grid.html │ │ │ │ ├── graph-viewer.html │ │ │ │ ├── hint.html │ │ │ │ ├── input.html │ │ │ │ ├── jsxgraph.html │ │ │ │ ├── match-list.html │ │ │ │ ├── math-input-quill.html │ │ │ │ ├── math-input.html │ │ │ │ ├── math-matrix.html │ │ │ │ ├── radio-group.html │ │ │ │ ├── reveal-viewer.html │ │ │ │ ├── sort-list.html │ │ │ │ └── text-select.html │ │ │ ├── highlight │ │ │ │ ├── monokai.css │ │ │ │ └── zenburn.css │ │ │ ├── images │ │ │ │ ├── automaton.svg │ │ │ │ ├── checkbox-group.svg │ │ │ │ ├── code-editor.svg │ │ │ │ ├── countdown.svg │ │ │ │ ├── drag-drop.svg │ │ │ │ ├── eval-grid.svg │ │ │ │ ├── graph.svg │ │ │ │ ├── hint.svg │ │ │ │ ├── input.svg │ │ │ │ ├── jsxgraph.svg │ │ │ │ ├── match-list.svg │ │ │ │ ├── math-input.svg │ │ │ │ ├── math-matrix.svg │ │ │ │ ├── radio-group.svg │ │ │ │ ├── sort-list.svg │ │ │ │ └── text-select.svg │ │ │ ├── min-maps │ │ │ │ └── vs │ │ │ │ │ ├── base │ │ │ │ │ └── worker │ │ │ │ │ │ └── workerMain.js.map │ │ │ │ │ ├── editor │ │ │ │ │ ├── editor.main.js.map │ │ │ │ │ ├── editor.main.nls.de.js.map │ │ │ │ │ ├── editor.main.nls.es.js.map │ │ │ │ │ ├── editor.main.nls.fr.js.map │ │ │ │ │ ├── editor.main.nls.it.js.map │ │ │ │ │ ├── editor.main.nls.ja.js.map │ │ │ │ │ ├── editor.main.nls.js.map │ │ │ │ │ ├── editor.main.nls.ko.js.map │ │ │ │ │ ├── editor.main.nls.ru.js.map │ │ │ │ │ ├── editor.main.nls.zh-cn.js.map │ │ │ │ │ └── editor.main.nls.zh-tw.js.map │ │ │ │ │ └── loader.js.map │ │ │ ├── monaco │ │ │ │ └── vs │ │ │ │ │ ├── base │ │ │ │ │ └── worker │ │ │ │ │ │ └── workerMain.js │ │ │ │ │ ├── basic-languages │ │ │ │ │ ├── bat │ │ │ │ │ │ └── bat.js │ │ │ │ │ ├── coffee │ │ │ │ │ │ └── coffee.js │ │ │ │ │ ├── cpp │ │ │ │ │ │ └── cpp.js │ │ │ │ │ ├── csharp │ │ │ │ │ │ └── csharp.js │ │ │ │ │ ├── csp │ │ │ │ │ │ └── csp.js │ │ │ │ │ ├── css │ │ │ │ │ │ └── css.js │ │ │ │ │ ├── dockerfile │ │ │ │ │ │ └── dockerfile.js │ │ │ │ │ ├── fsharp │ │ │ │ │ │ └── fsharp.js │ │ │ │ │ ├── go │ │ │ │ │ │ └── go.js │ │ │ │ │ ├── handlebars │ │ │ │ │ │ └── handlebars.js │ │ │ │ │ ├── html │ │ │ │ │ │ └── html.js │ │ │ │ │ ├── ini │ │ │ │ │ │ └── ini.js │ │ │ │ │ ├── java │ │ │ │ │ │ └── java.js │ │ │ │ │ ├── less │ │ │ │ │ │ └── less.js │ │ │ │ │ ├── lua │ │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown │ │ │ │ │ │ └── markdown.js │ │ │ │ │ ├── msdax │ │ │ │ │ │ └── msdax.js │ │ │ │ │ ├── mysql │ │ │ │ │ │ └── mysql.js │ │ │ │ │ ├── objective-c │ │ │ │ │ │ └── objective-c.js │ │ │ │ │ ├── pgsql │ │ │ │ │ │ └── pgsql.js │ │ │ │ │ ├── php │ │ │ │ │ │ └── php.js │ │ │ │ │ ├── postiats │ │ │ │ │ │ └── postiats.js │ │ │ │ │ ├── powershell │ │ │ │ │ │ └── powershell.js │ │ │ │ │ ├── pug │ │ │ │ │ │ └── pug.js │ │ │ │ │ ├── python │ │ │ │ │ │ └── python.js │ │ │ │ │ ├── r │ │ │ │ │ │ └── r.js │ │ │ │ │ ├── razor │ │ │ │ │ │ └── razor.js │ │ │ │ │ ├── redis │ │ │ │ │ │ └── redis.js │ │ │ │ │ ├── redshift │ │ │ │ │ │ └── redshift.js │ │ │ │ │ ├── ruby │ │ │ │ │ │ └── ruby.js │ │ │ │ │ ├── rust │ │ │ │ │ │ └── rust.js │ │ │ │ │ ├── sb │ │ │ │ │ │ └── sb.js │ │ │ │ │ ├── scss │ │ │ │ │ │ └── scss.js │ │ │ │ │ ├── solidity │ │ │ │ │ │ └── solidity.js │ │ │ │ │ ├── sql │ │ │ │ │ │ └── sql.js │ │ │ │ │ ├── st │ │ │ │ │ │ └── st.js │ │ │ │ │ ├── swift │ │ │ │ │ │ └── swift.js │ │ │ │ │ ├── vb │ │ │ │ │ │ └── vb.js │ │ │ │ │ ├── xml │ │ │ │ │ │ └── xml.js │ │ │ │ │ └── yaml │ │ │ │ │ │ └── yaml.js │ │ │ │ │ ├── editor │ │ │ │ │ ├── contrib │ │ │ │ │ │ └── suggest │ │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── String_16x.svg │ │ │ │ │ │ │ └── String_inverse_16x.svg │ │ │ │ │ ├── editor.main.css │ │ │ │ │ ├── editor.main.js │ │ │ │ │ ├── editor.main.nls.de.js │ │ │ │ │ ├── editor.main.nls.es.js │ │ │ │ │ ├── editor.main.nls.fr.js │ │ │ │ │ ├── editor.main.nls.it.js │ │ │ │ │ ├── editor.main.nls.ja.js │ │ │ │ │ ├── editor.main.nls.js │ │ │ │ │ ├── editor.main.nls.ko.js │ │ │ │ │ ├── editor.main.nls.ru.js │ │ │ │ │ ├── editor.main.nls.zh-cn.js │ │ │ │ │ ├── editor.main.nls.zh-tw.js │ │ │ │ │ └── standalone │ │ │ │ │ │ └── browser │ │ │ │ │ │ └── quickOpen │ │ │ │ │ │ └── symbol-sprite.svg │ │ │ │ │ ├── language │ │ │ │ │ ├── css │ │ │ │ │ │ ├── cssMode.js │ │ │ │ │ │ └── cssWorker.js │ │ │ │ │ ├── html │ │ │ │ │ │ ├── htmlMode.js │ │ │ │ │ │ └── htmlWorker.js │ │ │ │ │ ├── json │ │ │ │ │ │ ├── jsonMode.js │ │ │ │ │ │ └── jsonWorker.js │ │ │ │ │ └── typescript │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── typescriptServices.js │ │ │ │ │ │ ├── tsMode.js │ │ │ │ │ │ └── tsWorker.js │ │ │ │ │ └── loader.js │ │ │ ├── playground │ │ │ │ ├── automaton-editor.pl │ │ │ │ ├── automaton-viewer.pl │ │ │ │ ├── checkbox-group.pl │ │ │ │ ├── code-editor-multi-language.pl │ │ │ │ ├── code-editor.pl │ │ │ │ ├── countdown.pl │ │ │ │ ├── css-api.pl │ │ │ │ ├── decorator.pl │ │ │ │ ├── drag-drop.pl │ │ │ │ ├── eval-grid.pl │ │ │ │ ├── graph-viewer.pl │ │ │ │ ├── hint-basic.pl │ │ │ │ ├── hint-dynamic.pl │ │ │ │ ├── input-autocomplete.pl │ │ │ │ ├── input.pl │ │ │ │ ├── jsxgraph.pl │ │ │ │ ├── match-list.pl │ │ │ │ ├── math-input-quill.pl │ │ │ │ ├── math-input.pl │ │ │ │ ├── math-matrix.pl │ │ │ │ ├── radio-group.pl │ │ │ │ ├── reveal-viewer.pl │ │ │ │ ├── sort-list-auto-grade.pl │ │ │ │ ├── sort-list.pl │ │ │ │ ├── text-select-free.pl │ │ │ │ └── text-select.pl │ │ │ ├── reveal │ │ │ │ └── theme │ │ │ │ │ ├── beige.css │ │ │ │ │ ├── black-contrast.css │ │ │ │ │ ├── black.css │ │ │ │ │ ├── blood.css │ │ │ │ │ ├── dracula.css │ │ │ │ │ ├── fonts │ │ │ │ │ ├── league-gothic │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── league-gothic.css │ │ │ │ │ │ ├── league-gothic.eot │ │ │ │ │ │ ├── league-gothic.ttf │ │ │ │ │ │ └── league-gothic.woff │ │ │ │ │ └── source-sans-pro │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ │ │ └── source-sans-pro.css │ │ │ │ │ ├── league.css │ │ │ │ │ ├── moon.css │ │ │ │ │ ├── night.css │ │ │ │ │ ├── serif.css │ │ │ │ │ ├── simple.css │ │ │ │ │ ├── sky.css │ │ │ │ │ ├── solarized.css │ │ │ │ │ ├── white-contrast.css │ │ │ │ │ ├── white.css │ │ │ │ │ └── white_contrast_compact_verbatim_headers.css │ │ │ ├── scripts │ │ │ │ └── components.js │ │ │ └── styles │ │ │ │ └── animations.scss │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main-es2015.js │ │ │ ├── main-es2015.js.LICENSE.txt │ │ │ ├── main-es5.js │ │ │ ├── polyfills-es2015.js │ │ │ ├── polyfills-es2015.js.LICENSE.txt │ │ │ ├── polyfills-es5-es2015.js.LICENSE.txt │ │ │ ├── polyfills-es5.js │ │ │ ├── runtime-es2015.js │ │ │ ├── runtime-es5.js │ │ │ ├── scripts.js │ │ │ ├── scripts.js.LICENSE.txt │ │ │ └── styles.css │ ├── templates │ │ └── components │ │ │ ├── index.html │ │ │ └── statics.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── editor │ ├── __init__.py │ ├── apps.py │ ├── compilers │ │ └── pl │ │ │ ├── errors.py │ │ │ ├── parsetab.py │ │ │ ├── pl_lexer.py │ │ │ └── pl_parser.py │ ├── migrations │ │ └── __init__.py │ ├── static │ │ └── editor │ │ │ ├── 3rdpartylicenses.txt │ │ │ ├── 5-es2015.js │ │ │ ├── 5-es5.js │ │ │ ├── assets │ │ │ ├── icons │ │ │ │ ├── explorer │ │ │ │ │ ├── 3d.svg │ │ │ │ │ ├── actionscript.svg │ │ │ │ │ ├── android.svg │ │ │ │ │ ├── angular-component.svg │ │ │ │ │ ├── angular-directive.svg │ │ │ │ │ ├── angular-guard.svg │ │ │ │ │ ├── angular-pipe.svg │ │ │ │ │ ├── angular-resolver.svg │ │ │ │ │ ├── angular-service.svg │ │ │ │ │ ├── angular.svg │ │ │ │ │ ├── apiblueprint.svg │ │ │ │ │ ├── applescript.svg │ │ │ │ │ ├── appveyor.svg │ │ │ │ │ ├── arduino.svg │ │ │ │ │ ├── asciidoc.svg │ │ │ │ │ ├── assembly.svg │ │ │ │ │ ├── audio.svg │ │ │ │ │ ├── aurelia.svg │ │ │ │ │ ├── authors.svg │ │ │ │ │ ├── autohotkey.svg │ │ │ │ │ ├── autoit.svg │ │ │ │ │ ├── azure-pipelines.svg │ │ │ │ │ ├── azure.svg │ │ │ │ │ ├── babel.svg │ │ │ │ │ ├── ballerina.svg │ │ │ │ │ ├── bazel.svg │ │ │ │ │ ├── bitbucket.svg │ │ │ │ │ ├── bithound.svg │ │ │ │ │ ├── blink.svg │ │ │ │ │ ├── blink_light.svg │ │ │ │ │ ├── bower.svg │ │ │ │ │ ├── browserlist.svg │ │ │ │ │ ├── browserlist_light.svg │ │ │ │ │ ├── bucklescript.svg │ │ │ │ │ ├── buildkite.svg │ │ │ │ │ ├── c.svg │ │ │ │ │ ├── cabal.svg │ │ │ │ │ ├── cake.svg │ │ │ │ │ ├── certificate.svg │ │ │ │ │ ├── changelog.svg │ │ │ │ │ ├── circleci.svg │ │ │ │ │ ├── circleci_light.svg │ │ │ │ │ ├── clojure.svg │ │ │ │ │ ├── cloudfoundry.svg │ │ │ │ │ ├── cmake.svg │ │ │ │ │ ├── code-climate.svg │ │ │ │ │ ├── code-climate_light.svg │ │ │ │ │ ├── coffee.svg │ │ │ │ │ ├── coldfusion.svg │ │ │ │ │ ├── conduct.svg │ │ │ │ │ ├── console.svg │ │ │ │ │ ├── contributing.svg │ │ │ │ │ ├── cpp.svg │ │ │ │ │ ├── credits.svg │ │ │ │ │ ├── crystal.svg │ │ │ │ │ ├── crystal_light.svg │ │ │ │ │ ├── csharp.svg │ │ │ │ │ ├── css-map.svg │ │ │ │ │ ├── css.svg │ │ │ │ │ ├── cucumber.svg │ │ │ │ │ ├── cuda.svg │ │ │ │ │ ├── d.svg │ │ │ │ │ ├── dart.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── diff.svg │ │ │ │ │ ├── django.svg │ │ │ │ │ ├── docker.svg │ │ │ │ │ ├── document.svg │ │ │ │ │ ├── dotjs.svg │ │ │ │ │ ├── drone.svg │ │ │ │ │ ├── drone_light.svg │ │ │ │ │ ├── edge.svg │ │ │ │ │ ├── editorconfig.svg │ │ │ │ │ ├── ejs.svg │ │ │ │ │ ├── elixir.svg │ │ │ │ │ ├── elm.svg │ │ │ │ │ ├── email.svg │ │ │ │ │ ├── erlang.svg │ │ │ │ │ ├── eslint.svg │ │ │ │ │ ├── exe.svg │ │ │ │ │ ├── fastlane.svg │ │ │ │ │ ├── favicon.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── firebase.svg │ │ │ │ │ ├── flash.svg │ │ │ │ │ ├── flow.svg │ │ │ │ │ ├── folder-android-open.svg │ │ │ │ │ ├── folder-android.svg │ │ │ │ │ ├── folder-animation-open.svg │ │ │ │ │ ├── folder-animation.svg │ │ │ │ │ ├── folder-ansible-open.svg │ │ │ │ │ ├── folder-ansible.svg │ │ │ │ │ ├── folder-api-open.svg │ │ │ │ │ ├── folder-api.svg │ │ │ │ │ ├── folder-app-open.svg │ │ │ │ │ ├── folder-app.svg │ │ │ │ │ ├── folder-archive-open.svg │ │ │ │ │ ├── folder-archive.svg │ │ │ │ │ ├── folder-audio-open.svg │ │ │ │ │ ├── folder-audio.svg │ │ │ │ │ ├── folder-aurelia-open.svg │ │ │ │ │ ├── folder-aurelia.svg │ │ │ │ │ ├── folder-aws-open.svg │ │ │ │ │ ├── folder-aws.svg │ │ │ │ │ ├── folder-batch-open.svg │ │ │ │ │ ├── folder-batch.svg │ │ │ │ │ ├── folder-benchmark-open.svg │ │ │ │ │ ├── folder-benchmark.svg │ │ │ │ │ ├── folder-bower-open.svg │ │ │ │ │ ├── folder-bower.svg │ │ │ │ │ ├── folder-ci-open.svg │ │ │ │ │ ├── folder-ci.svg │ │ │ │ │ ├── folder-circleci-open.svg │ │ │ │ │ ├── folder-circleci.svg │ │ │ │ │ ├── folder-class-open.svg │ │ │ │ │ ├── folder-class.svg │ │ │ │ │ ├── folder-client-open.svg │ │ │ │ │ ├── folder-client.svg │ │ │ │ │ ├── folder-cluster-open.svg │ │ │ │ │ ├── folder-cluster.svg │ │ │ │ │ ├── folder-command-open.svg │ │ │ │ │ ├── folder-command.svg │ │ │ │ │ ├── folder-components-open.svg │ │ │ │ │ ├── folder-components.svg │ │ │ │ │ ├── folder-config-open.svg │ │ │ │ │ ├── folder-config.svg │ │ │ │ │ ├── folder-constant-open.svg │ │ │ │ │ ├── folder-constant.svg │ │ │ │ │ ├── folder-container-open.svg │ │ │ │ │ ├── folder-container.svg │ │ │ │ │ ├── folder-content-open.svg │ │ │ │ │ ├── folder-content.svg │ │ │ │ │ ├── folder-controller-open.svg │ │ │ │ │ ├── folder-controller.svg │ │ │ │ │ ├── folder-core-open.svg │ │ │ │ │ ├── folder-core.svg │ │ │ │ │ ├── folder-coverage-open.svg │ │ │ │ │ ├── folder-coverage.svg │ │ │ │ │ ├── folder-css-open.svg │ │ │ │ │ ├── folder-css.svg │ │ │ │ │ ├── folder-custom-open.svg │ │ │ │ │ ├── folder-custom.svg │ │ │ │ │ ├── folder-database-open.svg │ │ │ │ │ ├── folder-database.svg │ │ │ │ │ ├── folder-debug-open.svg │ │ │ │ │ ├── folder-debug.svg │ │ │ │ │ ├── folder-delta-open.svg │ │ │ │ │ ├── folder-delta.svg │ │ │ │ │ ├── folder-dist-open.svg │ │ │ │ │ ├── folder-dist.svg │ │ │ │ │ ├── folder-docker-open.svg │ │ │ │ │ ├── folder-docker.svg │ │ │ │ │ ├── folder-docs-open.svg │ │ │ │ │ ├── folder-docs.svg │ │ │ │ │ ├── folder-download-open.svg │ │ │ │ │ ├── folder-download.svg │ │ │ │ │ ├── folder-dump-open.svg │ │ │ │ │ ├── folder-dump.svg │ │ │ │ │ ├── folder-environment-open.svg │ │ │ │ │ ├── folder-environment.svg │ │ │ │ │ ├── folder-examples-open.svg │ │ │ │ │ ├── folder-examples.svg │ │ │ │ │ ├── folder-expo-open.svg │ │ │ │ │ ├── folder-expo.svg │ │ │ │ │ ├── folder-export-open.svg │ │ │ │ │ ├── folder-export.svg │ │ │ │ │ ├── folder-fastlane-open.svg │ │ │ │ │ ├── folder-fastlane.svg │ │ │ │ │ ├── folder-flow-open.svg │ │ │ │ │ ├── folder-flow.svg │ │ │ │ │ ├── folder-font-open.svg │ │ │ │ │ ├── folder-font.svg │ │ │ │ │ ├── folder-functions-open.svg │ │ │ │ │ ├── folder-functions.svg │ │ │ │ │ ├── folder-generator-open.svg │ │ │ │ │ ├── folder-generator.svg │ │ │ │ │ ├── folder-git-open.svg │ │ │ │ │ ├── folder-git.svg │ │ │ │ │ ├── folder-github-open.svg │ │ │ │ │ ├── folder-github.svg │ │ │ │ │ ├── folder-gitlab-open.svg │ │ │ │ │ ├── folder-gitlab.svg │ │ │ │ │ ├── folder-global-open.svg │ │ │ │ │ ├── folder-global.svg │ │ │ │ │ ├── folder-gradle-open.svg │ │ │ │ │ ├── folder-gradle.svg │ │ │ │ │ ├── folder-graphql-open.svg │ │ │ │ │ ├── folder-graphql.svg │ │ │ │ │ ├── folder-guard-open.svg │ │ │ │ │ ├── folder-guard.svg │ │ │ │ │ ├── folder-helper-open.svg │ │ │ │ │ ├── folder-helper.svg │ │ │ │ │ ├── folder-hook-open.svg │ │ │ │ │ ├── folder-hook.svg │ │ │ │ │ ├── folder-i18n-open.svg │ │ │ │ │ ├── folder-i18n.svg │ │ │ │ │ ├── folder-images-open.svg │ │ │ │ │ ├── folder-images.svg │ │ │ │ │ ├── folder-import-open.svg │ │ │ │ │ ├── folder-import.svg │ │ │ │ │ ├── folder-include-open.svg │ │ │ │ │ ├── folder-include.svg │ │ │ │ │ ├── folder-ios-open.svg │ │ │ │ │ ├── folder-ios.svg │ │ │ │ │ ├── folder-javascript-open.svg │ │ │ │ │ ├── folder-javascript.svg │ │ │ │ │ ├── folder-jinja-open.svg │ │ │ │ │ ├── folder-jinja-open_light.svg │ │ │ │ │ ├── folder-jinja.svg │ │ │ │ │ ├── folder-jinja_light.svg │ │ │ │ │ ├── folder-job-open.svg │ │ │ │ │ ├── folder-job.svg │ │ │ │ │ ├── folder-keys-open.svg │ │ │ │ │ ├── folder-keys.svg │ │ │ │ │ ├── folder-kubernetes-open.svg │ │ │ │ │ ├── folder-kubernetes.svg │ │ │ │ │ ├── folder-layout-open.svg │ │ │ │ │ ├── folder-layout.svg │ │ │ │ │ ├── folder-less-open.svg │ │ │ │ │ ├── folder-less.svg │ │ │ │ │ ├── folder-lib-open.svg │ │ │ │ │ ├── folder-lib.svg │ │ │ │ │ ├── folder-log-open.svg │ │ │ │ │ ├── folder-log.svg │ │ │ │ │ ├── folder-mail-open.svg │ │ │ │ │ ├── folder-mail.svg │ │ │ │ │ ├── folder-mappings-open.svg │ │ │ │ │ ├── folder-mappings.svg │ │ │ │ │ ├── folder-markdown-open.svg │ │ │ │ │ ├── folder-markdown.svg │ │ │ │ │ ├── folder-messages-open.svg │ │ │ │ │ ├── folder-messages.svg │ │ │ │ │ ├── folder-meta-open.svg │ │ │ │ │ ├── folder-meta.svg │ │ │ │ │ ├── folder-middleware-open.svg │ │ │ │ │ ├── folder-middleware.svg │ │ │ │ │ ├── folder-mock-open.svg │ │ │ │ │ ├── folder-mock.svg │ │ │ │ │ ├── folder-ngrx-actions-open.svg │ │ │ │ │ ├── folder-ngrx-actions.svg │ │ │ │ │ ├── folder-ngrx-effects-open.svg │ │ │ │ │ ├── folder-ngrx-effects.svg │ │ │ │ │ ├── folder-ngrx-entities-open.svg │ │ │ │ │ ├── folder-ngrx-entities.svg │ │ │ │ │ ├── folder-ngrx-reducer-open.svg │ │ │ │ │ ├── folder-ngrx-reducer.svg │ │ │ │ │ ├── folder-ngrx-state-open.svg │ │ │ │ │ ├── folder-ngrx-state.svg │ │ │ │ │ ├── folder-ngrx-store-open.svg │ │ │ │ │ ├── folder-ngrx-store.svg │ │ │ │ │ ├── folder-node-open.svg │ │ │ │ │ ├── folder-node.svg │ │ │ │ │ ├── folder-nuxt-open.svg │ │ │ │ │ ├── folder-nuxt.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder-other-open.svg │ │ │ │ │ ├── folder-other.svg │ │ │ │ │ ├── folder-packages-open.svg │ │ │ │ │ ├── folder-packages.svg │ │ │ │ │ ├── folder-php-open.svg │ │ │ │ │ ├── folder-php.svg │ │ │ │ │ ├── folder-phpmailer-open.svg │ │ │ │ │ ├── folder-phpmailer.svg │ │ │ │ │ ├── folder-pipe-open.svg │ │ │ │ │ ├── folder-pipe.svg │ │ │ │ │ ├── folder-plugin-open.svg │ │ │ │ │ ├── folder-plugin.svg │ │ │ │ │ ├── folder-prisma-open.svg │ │ │ │ │ ├── folder-prisma.svg │ │ │ │ │ ├── folder-private-open.svg │ │ │ │ │ ├── folder-private.svg │ │ │ │ │ ├── folder-public-open.svg │ │ │ │ │ ├── folder-public.svg │ │ │ │ │ ├── folder-python-open.svg │ │ │ │ │ ├── folder-python.svg │ │ │ │ │ ├── folder-react-components-open.svg │ │ │ │ │ ├── folder-react-components.svg │ │ │ │ │ ├── folder-redux-actions-open.svg │ │ │ │ │ ├── folder-redux-actions.svg │ │ │ │ │ ├── folder-redux-reducer-open.svg │ │ │ │ │ ├── folder-redux-reducer.svg │ │ │ │ │ ├── folder-redux-store-open.svg │ │ │ │ │ ├── folder-redux-store.svg │ │ │ │ │ ├── folder-resource-open.svg │ │ │ │ │ ├── folder-resource.svg │ │ │ │ │ ├── folder-review-open.svg │ │ │ │ │ ├── folder-review.svg │ │ │ │ │ ├── folder-root-open.svg │ │ │ │ │ ├── folder-root.svg │ │ │ │ │ ├── folder-routes-open.svg │ │ │ │ │ ├── folder-routes.svg │ │ │ │ │ ├── folder-rules-open.svg │ │ │ │ │ ├── folder-rules.svg │ │ │ │ │ ├── folder-sass-open.svg │ │ │ │ │ ├── folder-sass.svg │ │ │ │ │ ├── folder-scripts-open.svg │ │ │ │ │ ├── folder-scripts.svg │ │ │ │ │ ├── folder-secure-open.svg │ │ │ │ │ ├── folder-secure.svg │ │ │ │ │ ├── folder-server-open.svg │ │ │ │ │ ├── folder-server.svg │ │ │ │ │ ├── folder-serverless-open.svg │ │ │ │ │ ├── folder-serverless.svg │ │ │ │ │ ├── folder-shared-open.svg │ │ │ │ │ ├── folder-shared.svg │ │ │ │ │ ├── folder-src-open.svg │ │ │ │ │ ├── folder-src.svg │ │ │ │ │ ├── folder-stack-open.svg │ │ │ │ │ ├── folder-stack.svg │ │ │ │ │ ├── folder-stylus-open.svg │ │ │ │ │ ├── folder-stylus.svg │ │ │ │ │ ├── folder-sublime-open.svg │ │ │ │ │ ├── folder-sublime.svg │ │ │ │ │ ├── folder-svg-open.svg │ │ │ │ │ ├── folder-svg.svg │ │ │ │ │ ├── folder-syntax-open.svg │ │ │ │ │ ├── folder-syntax.svg │ │ │ │ │ ├── folder-tasks-open.svg │ │ │ │ │ ├── folder-tasks.svg │ │ │ │ │ ├── folder-temp-open.svg │ │ │ │ │ ├── folder-temp.svg │ │ │ │ │ ├── folder-template-open.svg │ │ │ │ │ ├── folder-template.svg │ │ │ │ │ ├── folder-test-open.svg │ │ │ │ │ ├── folder-test.svg │ │ │ │ │ ├── folder-theme-open.svg │ │ │ │ │ ├── folder-theme.svg │ │ │ │ │ ├── folder-tools-open.svg │ │ │ │ │ ├── folder-tools.svg │ │ │ │ │ ├── folder-typescript-open.svg │ │ │ │ │ ├── folder-typescript.svg │ │ │ │ │ ├── folder-upload-open.svg │ │ │ │ │ ├── folder-upload.svg │ │ │ │ │ ├── folder-utils-open.svg │ │ │ │ │ ├── folder-utils.svg │ │ │ │ │ ├── folder-video-open.svg │ │ │ │ │ ├── folder-video.svg │ │ │ │ │ ├── folder-views-open.svg │ │ │ │ │ ├── folder-views.svg │ │ │ │ │ ├── folder-vm-open.svg │ │ │ │ │ ├── folder-vm.svg │ │ │ │ │ ├── folder-vscode-open.svg │ │ │ │ │ ├── folder-vscode.svg │ │ │ │ │ ├── folder-vue-directives-open.svg │ │ │ │ │ ├── folder-vue-directives.svg │ │ │ │ │ ├── folder-vue-open.svg │ │ │ │ │ ├── folder-vue.svg │ │ │ │ │ ├── folder-vuex-store-open.svg │ │ │ │ │ ├── folder-vuex-store.svg │ │ │ │ │ ├── folder-wakatime-open.svg │ │ │ │ │ ├── folder-wakatime.svg │ │ │ │ │ ├── folder-webpack-open.svg │ │ │ │ │ ├── folder-webpack.svg │ │ │ │ │ ├── folder-wordpress-open.svg │ │ │ │ │ ├── folder-wordpress.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── font.svg │ │ │ │ │ ├── foxpro.svg │ │ │ │ │ ├── fsharp.svg │ │ │ │ │ ├── fusebox.svg │ │ │ │ │ ├── gatsby.svg │ │ │ │ │ ├── gemfile.svg │ │ │ │ │ ├── git.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── go.svg │ │ │ │ │ ├── go_gopher.svg │ │ │ │ │ ├── godot-assets.svg │ │ │ │ │ ├── godot.svg │ │ │ │ │ ├── gradle.svg │ │ │ │ │ ├── graphcool.svg │ │ │ │ │ ├── graphql.svg │ │ │ │ │ ├── groovy.svg │ │ │ │ │ ├── grunt.svg │ │ │ │ │ ├── gulp.svg │ │ │ │ │ ├── h.svg │ │ │ │ │ ├── hack.svg │ │ │ │ │ ├── haml.svg │ │ │ │ │ ├── handlebars.svg │ │ │ │ │ ├── haskell.svg │ │ │ │ │ ├── haxe.svg │ │ │ │ │ ├── hcl.svg │ │ │ │ │ ├── hcl_light.svg │ │ │ │ │ ├── helm.svg │ │ │ │ │ ├── heroku.svg │ │ │ │ │ ├── hpp.svg │ │ │ │ │ ├── html.svg │ │ │ │ │ ├── http.svg │ │ │ │ │ ├── i18n.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── ionic.svg │ │ │ │ │ ├── istanbul.svg │ │ │ │ │ ├── java.svg │ │ │ │ │ ├── javascript-map.svg │ │ │ │ │ ├── javascript.svg │ │ │ │ │ ├── jenkins.svg │ │ │ │ │ ├── jest.svg │ │ │ │ │ ├── jinja.svg │ │ │ │ │ ├── jinja_light.svg │ │ │ │ │ ├── json.svg │ │ │ │ │ ├── julia.svg │ │ │ │ │ ├── jupyter.svg │ │ │ │ │ ├── karma.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── kivy.svg │ │ │ │ │ ├── kl.svg │ │ │ │ │ ├── kotlin.svg │ │ │ │ │ ├── laravel.svg │ │ │ │ │ ├── less.svg │ │ │ │ │ ├── lib.svg │ │ │ │ │ ├── licence.md │ │ │ │ │ ├── livescript.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── log.svg │ │ │ │ │ ├── lua.svg │ │ │ │ │ ├── makefile.svg │ │ │ │ │ ├── markdown.svg │ │ │ │ │ ├── markojs.svg │ │ │ │ │ ├── mathematica.svg │ │ │ │ │ ├── matlab.svg │ │ │ │ │ ├── mdx.svg │ │ │ │ │ ├── merlin.svg │ │ │ │ │ ├── mint.svg │ │ │ │ │ ├── mjml.svg │ │ │ │ │ ├── mocha.svg │ │ │ │ │ ├── mxml.svg │ │ │ │ │ ├── netlify.svg │ │ │ │ │ ├── ngrx-actions.svg │ │ │ │ │ ├── ngrx-effects.svg │ │ │ │ │ ├── ngrx-entity.svg │ │ │ │ │ ├── ngrx-reducer.svg │ │ │ │ │ ├── ngrx-state.svg │ │ │ │ │ ├── nim.svg │ │ │ │ │ ├── nix.svg │ │ │ │ │ ├── nodejs.svg │ │ │ │ │ ├── nodejs_alt.svg │ │ │ │ │ ├── nodemon.svg │ │ │ │ │ ├── npm.svg │ │ │ │ │ ├── nunjucks.svg │ │ │ │ │ ├── nuxt.svg │ │ │ │ │ ├── ocaml.svg │ │ │ │ │ ├── pdf.svg │ │ │ │ │ ├── perl.svg │ │ │ │ │ ├── php.svg │ │ │ │ │ ├── php_elephant.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── pltp.svg │ │ │ │ │ ├── postcss.svg │ │ │ │ │ ├── powerpoint.svg │ │ │ │ │ ├── powershell.svg │ │ │ │ │ ├── prettier.svg │ │ │ │ │ ├── prisma.svg │ │ │ │ │ ├── processing.svg │ │ │ │ │ ├── processing_light.svg │ │ │ │ │ ├── protractor.svg │ │ │ │ │ ├── pug.svg │ │ │ │ │ ├── puppet.svg │ │ │ │ │ ├── purescript.svg │ │ │ │ │ ├── python-misc.svg │ │ │ │ │ ├── python.svg │ │ │ │ │ ├── r.svg │ │ │ │ │ ├── racket.svg │ │ │ │ │ ├── raml.svg │ │ │ │ │ ├── razor.svg │ │ │ │ │ ├── react.svg │ │ │ │ │ ├── react_ts.svg │ │ │ │ │ ├── readme.svg │ │ │ │ │ ├── reason.svg │ │ │ │ │ ├── red.svg │ │ │ │ │ ├── redux-action.svg │ │ │ │ │ ├── redux-reducer.svg │ │ │ │ │ ├── redux-store.svg │ │ │ │ │ ├── restql.svg │ │ │ │ │ ├── riot.svg │ │ │ │ │ ├── robot.svg │ │ │ │ │ ├── rollup.svg │ │ │ │ │ ├── routing.svg │ │ │ │ │ ├── ruby.svg │ │ │ │ │ ├── rust.svg │ │ │ │ │ ├── san.svg │ │ │ │ │ ├── sass.svg │ │ │ │ │ ├── sbt.svg │ │ │ │ │ ├── scala.svg │ │ │ │ │ ├── scheme.svg │ │ │ │ │ ├── semantic-release.svg │ │ │ │ │ ├── semantic-release_light.svg │ │ │ │ │ ├── sequelize.svg │ │ │ │ │ ├── settings.svg │ │ │ │ │ ├── shaderlab.svg │ │ │ │ │ ├── silverstripe.svg │ │ │ │ │ ├── slim.svg │ │ │ │ │ ├── smarty.svg │ │ │ │ │ ├── snyk.svg │ │ │ │ │ ├── solidity.svg │ │ │ │ │ ├── stencil.svg │ │ │ │ │ ├── stencil_light.svg │ │ │ │ │ ├── storybook.svg │ │ │ │ │ ├── stylelint.svg │ │ │ │ │ ├── stylelint_light.svg │ │ │ │ │ ├── stylus.svg │ │ │ │ │ ├── sublime.svg │ │ │ │ │ ├── svelte.svg │ │ │ │ │ ├── svg.svg │ │ │ │ │ ├── swc.svg │ │ │ │ │ ├── swift.svg │ │ │ │ │ ├── table.svg │ │ │ │ │ ├── tailwindcss.svg │ │ │ │ │ ├── terraform.svg │ │ │ │ │ ├── test-js.svg │ │ │ │ │ ├── test-jsx.svg │ │ │ │ │ ├── test-ts.svg │ │ │ │ │ ├── tex.svg │ │ │ │ │ ├── todo.svg │ │ │ │ │ ├── travis.svg │ │ │ │ │ ├── tune.svg │ │ │ │ │ ├── twig.svg │ │ │ │ │ ├── typescript-def.svg │ │ │ │ │ ├── typescript.svg │ │ │ │ │ ├── url.svg │ │ │ │ │ ├── vagrant.svg │ │ │ │ │ ├── velocity.svg │ │ │ │ │ ├── verilog.svg │ │ │ │ │ ├── vfl.svg │ │ │ │ │ ├── video.svg │ │ │ │ │ ├── virtual.svg │ │ │ │ │ ├── visualstudio.svg │ │ │ │ │ ├── vscode.svg │ │ │ │ │ ├── vue-config.svg │ │ │ │ │ ├── vue.svg │ │ │ │ │ ├── vuex-store.svg │ │ │ │ │ ├── wakatime.svg │ │ │ │ │ ├── wakatime_light.svg │ │ │ │ │ ├── wallaby.svg │ │ │ │ │ ├── watchman.svg │ │ │ │ │ ├── webassembly.svg │ │ │ │ │ ├── webhint.svg │ │ │ │ │ ├── webpack.svg │ │ │ │ │ ├── wepy.svg │ │ │ │ │ ├── wolframlanguage.svg │ │ │ │ │ ├── word.svg │ │ │ │ │ ├── xaml.svg │ │ │ │ │ ├── xml.svg │ │ │ │ │ ├── yaml.svg │ │ │ │ │ ├── yang.svg │ │ │ │ │ ├── yarn.svg │ │ │ │ │ └── zip.svg │ │ │ │ └── vscode │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── dark │ │ │ │ │ ├── activate-breakpoints.svg │ │ │ │ │ ├── add.svg │ │ │ │ │ ├── array.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── boolean.svg │ │ │ │ │ ├── breakpoint-conditional-unverified.svg │ │ │ │ │ ├── breakpoint-conditional.svg │ │ │ │ │ ├── breakpoint-log-unverified.svg │ │ │ │ │ ├── breakpoint-log.svg │ │ │ │ │ ├── case-sensitive.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── circle-filled.svg │ │ │ │ │ ├── circle-outline.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── clear-all.svg │ │ │ │ │ ├── close-all.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ ├── color.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── compare-changes.svg │ │ │ │ │ ├── console.svg │ │ │ │ │ ├── constant.svg │ │ │ │ │ ├── continue.svg │ │ │ │ │ ├── current-and-breakpoint.svg │ │ │ │ │ ├── current.svg │ │ │ │ │ ├── debug.svg │ │ │ │ │ ├── discard.svg │ │ │ │ │ ├── disconnect-.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── editor-layout.svg │ │ │ │ │ ├── ellipsis.svg │ │ │ │ │ ├── empty-window.svg │ │ │ │ │ ├── enumerator-member.svg │ │ │ │ │ ├── enumerator.svg │ │ │ │ │ ├── error.svg │ │ │ │ │ ├── event.svg │ │ │ │ │ ├── exclude.svg │ │ │ │ │ ├── extensions.svg │ │ │ │ │ ├── field.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── files.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── folder-active.svg │ │ │ │ │ ├── folder-opened.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── gear.svg │ │ │ │ │ ├── go-to-file.svg │ │ │ │ │ ├── gripper.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── issues.svg │ │ │ │ │ ├── json.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── keyword.svg │ │ │ │ │ ├── lightbulb-autofix.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── loading.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── method.svg │ │ │ │ │ ├── misc.svg │ │ │ │ │ ├── more.svg │ │ │ │ │ ├── move.svg │ │ │ │ │ ├── multiple-windows.svg │ │ │ │ │ ├── namespace.svg │ │ │ │ │ ├── new-file.svg │ │ │ │ │ ├── new-folder.svg │ │ │ │ │ ├── numeric.svg │ │ │ │ │ ├── open-preview.svg │ │ │ │ │ ├── operator.svg │ │ │ │ │ ├── parameter.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── preserve-case.svg │ │ │ │ │ ├── preview.svg │ │ │ │ │ ├── property.svg │ │ │ │ │ ├── reactions.svg │ │ │ │ │ ├── record-keys.svg │ │ │ │ │ ├── references.svg │ │ │ │ │ ├── refresh.svg │ │ │ │ │ ├── regex.svg │ │ │ │ │ ├── remove.svg │ │ │ │ │ ├── replace-all.svg │ │ │ │ │ ├── replace.svg │ │ │ │ │ ├── restart.svg │ │ │ │ │ ├── root-folder-opened.svg │ │ │ │ │ ├── root-folder.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── save-all.svg │ │ │ │ │ ├── save-as.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── search-stop.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── selection.svg │ │ │ │ │ ├── settings.svg │ │ │ │ │ ├── snippet.svg │ │ │ │ │ ├── sort-precedence.svg │ │ │ │ │ ├── source-control.svg │ │ │ │ │ ├── split-horizontal.svg │ │ │ │ │ ├── split-vertical.svg │ │ │ │ │ ├── star-empty.svg │ │ │ │ │ ├── star-full.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── start.svg │ │ │ │ │ ├── step-into.svg │ │ │ │ │ ├── step-out.svg │ │ │ │ │ ├── step-over.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── string.svg │ │ │ │ │ ├── structure.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── variable.svg │ │ │ │ │ ├── vm-active.svg │ │ │ │ │ ├── vm-running.svg │ │ │ │ │ ├── vm-stopped.svg │ │ │ │ │ ├── vm.svg │ │ │ │ │ ├── warning.svg │ │ │ │ │ ├── whitespace.svg │ │ │ │ │ ├── whole-word.svg │ │ │ │ │ ├── window.svg │ │ │ │ │ ├── word-wrap.svg │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ └── zoom-out.svg │ │ │ │ │ └── light │ │ │ │ │ ├── activate-breakpoints.svg │ │ │ │ │ ├── add.svg │ │ │ │ │ ├── array.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── boolean.svg │ │ │ │ │ ├── breakpoint-conditional-unverified.svg │ │ │ │ │ ├── breakpoint-conditional.svg │ │ │ │ │ ├── breakpoint-log-unverified.svg │ │ │ │ │ ├── breakpoint-log.svg │ │ │ │ │ ├── case-sensitive.svg │ │ │ │ │ ├── check.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── circle-filled.svg │ │ │ │ │ ├── circle-outline.svg │ │ │ │ │ ├── class.svg │ │ │ │ │ ├── clear-all.svg │ │ │ │ │ ├── close-all.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── collapse-all.svg │ │ │ │ │ ├── color.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── compare-changes.svg │ │ │ │ │ ├── console.svg │ │ │ │ │ ├── constant.svg │ │ │ │ │ ├── continue.svg │ │ │ │ │ ├── current-and-breakpoint.svg │ │ │ │ │ ├── current.svg │ │ │ │ │ ├── debug.svg │ │ │ │ │ ├── discard.svg │ │ │ │ │ ├── disconnect-.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── editor-layout.svg │ │ │ │ │ ├── ellipsis.svg │ │ │ │ │ ├── empty-window.svg │ │ │ │ │ ├── enumerator-member.svg │ │ │ │ │ ├── enumerator.svg │ │ │ │ │ ├── error.svg │ │ │ │ │ ├── event.svg │ │ │ │ │ ├── exclude.svg │ │ │ │ │ ├── extensions.svg │ │ │ │ │ ├── field.svg │ │ │ │ │ ├── file.svg │ │ │ │ │ ├── files.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── folder-active.svg │ │ │ │ │ ├── folder-opened.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── gear.svg │ │ │ │ │ ├── go-to-file.svg │ │ │ │ │ ├── gripper.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── interface.svg │ │ │ │ │ ├── issues.svg │ │ │ │ │ ├── json.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── keyword.svg │ │ │ │ │ ├── lightbulb-autofix.svg │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ ├── loading.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── method.svg │ │ │ │ │ ├── misc.svg │ │ │ │ │ ├── more.svg │ │ │ │ │ ├── move.svg │ │ │ │ │ ├── multiple-windows.svg │ │ │ │ │ ├── namespace.svg │ │ │ │ │ ├── new-file.svg │ │ │ │ │ ├── new-folder.svg │ │ │ │ │ ├── numeric.svg │ │ │ │ │ ├── open-preview.svg │ │ │ │ │ ├── operator.svg │ │ │ │ │ ├── parameter.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── preserve-case.svg │ │ │ │ │ ├── preview.svg │ │ │ │ │ ├── property.svg │ │ │ │ │ ├── reactions.svg │ │ │ │ │ ├── record-keys.svg │ │ │ │ │ ├── references.svg │ │ │ │ │ ├── refresh.svg │ │ │ │ │ ├── regex.svg │ │ │ │ │ ├── remove.svg │ │ │ │ │ ├── replace-all.svg │ │ │ │ │ ├── replace.svg │ │ │ │ │ ├── restart.svg │ │ │ │ │ ├── root-folder-opened.svg │ │ │ │ │ ├── root-folder.svg │ │ │ │ │ ├── ruler.svg │ │ │ │ │ ├── save-all.svg │ │ │ │ │ ├── save-as.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── search-stop.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── selection.svg │ │ │ │ │ ├── settings.svg │ │ │ │ │ ├── snippet.svg │ │ │ │ │ ├── sort-precedence.svg │ │ │ │ │ ├── source-control.svg │ │ │ │ │ ├── split-horizontal.svg │ │ │ │ │ ├── split-vertical.svg │ │ │ │ │ ├── star-empty.svg │ │ │ │ │ ├── star-full.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── start.svg │ │ │ │ │ ├── step-into.svg │ │ │ │ │ ├── step-out.svg │ │ │ │ │ ├── step-over.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── string.svg │ │ │ │ │ ├── structure.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── unlock.svg │ │ │ │ │ ├── variable.svg │ │ │ │ │ ├── vm-active.svg │ │ │ │ │ ├── vm-running.svg │ │ │ │ │ ├── vm-stopped.svg │ │ │ │ │ ├── vm.svg │ │ │ │ │ ├── warning.svg │ │ │ │ │ ├── whitespace.svg │ │ │ │ │ ├── whole-word.svg │ │ │ │ │ ├── window.svg │ │ │ │ │ ├── word-wrap.svg │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ └── zoom-out.svg │ │ │ ├── images │ │ │ │ ├── embed-style.png │ │ │ │ └── interface.png │ │ │ ├── min-maps │ │ │ │ └── vs │ │ │ │ │ ├── base │ │ │ │ │ └── worker │ │ │ │ │ │ └── workerMain.js.map │ │ │ │ │ ├── editor │ │ │ │ │ ├── editor.main.js.map │ │ │ │ │ ├── editor.main.nls.de.js.map │ │ │ │ │ ├── editor.main.nls.es.js.map │ │ │ │ │ ├── editor.main.nls.fr.js.map │ │ │ │ │ ├── editor.main.nls.it.js.map │ │ │ │ │ ├── editor.main.nls.ja.js.map │ │ │ │ │ ├── editor.main.nls.js.map │ │ │ │ │ ├── editor.main.nls.ko.js.map │ │ │ │ │ ├── editor.main.nls.ru.js.map │ │ │ │ │ ├── editor.main.nls.zh-cn.js.map │ │ │ │ │ └── editor.main.nls.zh-tw.js.map │ │ │ │ │ └── loader.js.map │ │ │ ├── monaco │ │ │ │ └── vs │ │ │ │ │ ├── base │ │ │ │ │ └── worker │ │ │ │ │ │ └── workerMain.js │ │ │ │ │ ├── basic-languages │ │ │ │ │ ├── bat │ │ │ │ │ │ └── bat.js │ │ │ │ │ ├── coffee │ │ │ │ │ │ └── coffee.js │ │ │ │ │ ├── cpp │ │ │ │ │ │ └── cpp.js │ │ │ │ │ ├── csharp │ │ │ │ │ │ └── csharp.js │ │ │ │ │ ├── csp │ │ │ │ │ │ └── csp.js │ │ │ │ │ ├── css │ │ │ │ │ │ └── css.js │ │ │ │ │ ├── dockerfile │ │ │ │ │ │ └── dockerfile.js │ │ │ │ │ ├── fsharp │ │ │ │ │ │ └── fsharp.js │ │ │ │ │ ├── go │ │ │ │ │ │ └── go.js │ │ │ │ │ ├── handlebars │ │ │ │ │ │ └── handlebars.js │ │ │ │ │ ├── html │ │ │ │ │ │ └── html.js │ │ │ │ │ ├── ini │ │ │ │ │ │ └── ini.js │ │ │ │ │ ├── java │ │ │ │ │ │ └── java.js │ │ │ │ │ ├── less │ │ │ │ │ │ └── less.js │ │ │ │ │ ├── lua │ │ │ │ │ │ └── lua.js │ │ │ │ │ ├── markdown │ │ │ │ │ │ └── markdown.js │ │ │ │ │ ├── msdax │ │ │ │ │ │ └── msdax.js │ │ │ │ │ ├── mysql │ │ │ │ │ │ └── mysql.js │ │ │ │ │ ├── objective-c │ │ │ │ │ │ └── objective-c.js │ │ │ │ │ ├── pgsql │ │ │ │ │ │ └── pgsql.js │ │ │ │ │ ├── php │ │ │ │ │ │ └── php.js │ │ │ │ │ ├── postiats │ │ │ │ │ │ └── postiats.js │ │ │ │ │ ├── powershell │ │ │ │ │ │ └── powershell.js │ │ │ │ │ ├── pug │ │ │ │ │ │ └── pug.js │ │ │ │ │ ├── python │ │ │ │ │ │ └── python.js │ │ │ │ │ ├── r │ │ │ │ │ │ └── r.js │ │ │ │ │ ├── razor │ │ │ │ │ │ └── razor.js │ │ │ │ │ ├── redis │ │ │ │ │ │ └── redis.js │ │ │ │ │ ├── redshift │ │ │ │ │ │ └── redshift.js │ │ │ │ │ ├── ruby │ │ │ │ │ │ └── ruby.js │ │ │ │ │ ├── rust │ │ │ │ │ │ └── rust.js │ │ │ │ │ ├── sb │ │ │ │ │ │ └── sb.js │ │ │ │ │ ├── scss │ │ │ │ │ │ └── scss.js │ │ │ │ │ ├── solidity │ │ │ │ │ │ └── solidity.js │ │ │ │ │ ├── sql │ │ │ │ │ │ └── sql.js │ │ │ │ │ ├── st │ │ │ │ │ │ └── st.js │ │ │ │ │ ├── swift │ │ │ │ │ │ └── swift.js │ │ │ │ │ ├── vb │ │ │ │ │ │ └── vb.js │ │ │ │ │ ├── xml │ │ │ │ │ │ └── xml.js │ │ │ │ │ └── yaml │ │ │ │ │ │ └── yaml.js │ │ │ │ │ ├── editor │ │ │ │ │ ├── contrib │ │ │ │ │ │ └── suggest │ │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── String_16x.svg │ │ │ │ │ │ │ └── String_inverse_16x.svg │ │ │ │ │ ├── editor.main.css │ │ │ │ │ ├── editor.main.js │ │ │ │ │ ├── editor.main.nls.de.js │ │ │ │ │ ├── editor.main.nls.es.js │ │ │ │ │ ├── editor.main.nls.fr.js │ │ │ │ │ ├── editor.main.nls.it.js │ │ │ │ │ ├── editor.main.nls.ja.js │ │ │ │ │ ├── editor.main.nls.js │ │ │ │ │ ├── editor.main.nls.ko.js │ │ │ │ │ ├── editor.main.nls.ru.js │ │ │ │ │ ├── editor.main.nls.zh-cn.js │ │ │ │ │ ├── editor.main.nls.zh-tw.js │ │ │ │ │ └── standalone │ │ │ │ │ │ └── browser │ │ │ │ │ │ └── quickOpen │ │ │ │ │ │ └── symbol-sprite.svg │ │ │ │ │ ├── language │ │ │ │ │ ├── css │ │ │ │ │ │ ├── cssMode.js │ │ │ │ │ │ └── cssWorker.js │ │ │ │ │ ├── html │ │ │ │ │ │ ├── htmlMode.js │ │ │ │ │ │ └── htmlWorker.js │ │ │ │ │ ├── json │ │ │ │ │ │ ├── jsonMode.js │ │ │ │ │ │ └── jsonWorker.js │ │ │ │ │ └── typescript │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── typescriptServices.js │ │ │ │ │ │ ├── tsMode.js │ │ │ │ │ │ └── tsWorker.js │ │ │ │ │ └── loader.js │ │ │ └── snippets │ │ │ │ └── new-pl.txt │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main-es2015.js │ │ │ ├── main-es2015.js.LICENSE.txt │ │ │ ├── main-es5.js │ │ │ ├── polyfills-es2015.js │ │ │ ├── polyfills-es2015.js.LICENSE.txt │ │ │ ├── polyfills-es5-es2015.js.LICENSE.txt │ │ │ ├── polyfills-es5.js │ │ │ ├── runtime-es2015.js │ │ │ ├── runtime-es5.js │ │ │ └── styles.css │ ├── templates │ │ └── editor │ │ │ ├── index.html │ │ │ └── statics.html │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ └── views.py ├── filebrowser │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── filter.py │ ├── form.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── filebrowser │ │ │ ├── preview.html │ │ │ └── test.html │ ├── templatetags │ │ └── __init__.py │ ├── tests │ │ ├── __init__.py │ │ ├── ressources │ │ │ ├── fake_filebrowser_data │ │ │ │ ├── TPE │ │ │ │ │ ├── Dir_test │ │ │ │ │ │ └── test.txt │ │ │ │ │ ├── function001.pl │ │ │ │ │ └── operator001.pl │ │ │ │ ├── __init__.py │ │ │ │ ├── builder │ │ │ │ │ ├── before.py │ │ │ │ │ ├── build.py │ │ │ │ │ └── none.py │ │ │ │ ├── carre.pl │ │ │ │ ├── editorform.html │ │ │ │ ├── feedback.py │ │ │ │ ├── grader │ │ │ │ │ ├── evalfunc.py │ │ │ │ │ └── evaluator.py │ │ │ │ ├── image.png │ │ │ │ ├── pldoctest.py │ │ │ │ ├── plgrader.pltp │ │ │ │ ├── plgrader.py │ │ │ │ ├── plgrader2.pltp │ │ │ │ ├── plutils.py │ │ │ │ ├── soluce.pl │ │ │ │ ├── template.html │ │ │ │ ├── template.pl │ │ │ │ ├── truc.pl │ │ │ │ ├── truc2.pltp │ │ │ │ ├── utils │ │ │ │ │ └── sandboxio.py │ │ │ │ ├── warning.pl │ │ │ │ ├── working.pl │ │ │ │ ├── working.pla │ │ │ │ └── working.pltp │ │ │ ├── filter │ │ │ │ ├── application.zip │ │ │ │ ├── audio.mp3 │ │ │ │ ├── directory │ │ │ │ │ └── file │ │ │ │ ├── file.docx │ │ │ │ ├── file.pdf │ │ │ │ ├── file.pptx │ │ │ │ ├── file.xls │ │ │ │ ├── image.png │ │ │ │ ├── pl.pl │ │ │ │ ├── pltp.pltp │ │ │ │ ├── text.txt │ │ │ │ └── video.mp4 │ │ │ └── walkdir │ │ │ │ ├── directory │ │ │ │ └── file │ │ │ │ └── text.txt │ │ ├── test_filter.py │ │ ├── test_models.py │ │ ├── test_utils.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── test_create.py │ │ │ ├── test_delete.py │ │ │ ├── test_load_pltp.py │ │ │ ├── test_misc.py │ │ │ ├── test_move.py │ │ │ ├── test_preview.py │ │ │ ├── test_rename.py │ │ │ └── test_resource_get_update.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── git │ ├── __init__.py │ ├── apps.py │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── loader │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── exceptions.py │ ├── loader.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── parser.py │ ├── parsers │ │ ├── __init__.py │ │ ├── gift.py │ │ ├── pl.py │ │ ├── pla.py │ │ └── pltp.py │ ├── tests │ │ ├── __init__.py │ │ ├── fake_gift │ │ │ ├── demo.gift │ │ │ ├── missing-title.gift │ │ │ └── syntax-error.gift │ │ ├── fake_parser_pltp.py │ │ ├── fake_parsers │ │ │ ├── __init__.py │ │ │ ├── fake_fail_parser.py │ │ │ ├── fake_gift.py │ │ │ ├── fake_parser_pl.py │ │ │ ├── fake_parser_pl2.py │ │ │ ├── fake_parser_pla.py │ │ │ ├── fake_parser_pltp.py │ │ │ ├── value_error_key_parser.py │ │ │ ├── value_error_return_type_parser.py │ │ │ └── value_error_type_parser.py │ │ ├── fake_pl │ │ │ ├── append_no_key.pl │ │ │ ├── builder │ │ │ │ ├── before.py │ │ │ │ ├── build.py │ │ │ │ └── none.py │ │ │ ├── extend.pl │ │ │ ├── extend_no_dir.pl │ │ │ ├── extend_unknown.pl │ │ │ ├── extends_no_lib.pl │ │ │ ├── full.pl │ │ │ ├── grader │ │ │ │ ├── evalfunc.py │ │ │ │ └── evaluator.py │ │ │ ├── image.pl │ │ │ ├── image.png │ │ │ ├── invalid_multiline_json.pl │ │ │ ├── invalid_one_line_json.pl │ │ │ ├── missing_pl.pltp │ │ │ ├── no_file_from.pl │ │ │ ├── no_file_sandbox.pl │ │ │ ├── no_image.pl │ │ │ ├── no_string_in_sub_key.pl │ │ │ ├── open_multiline.pl │ │ │ ├── pl.unknown │ │ │ ├── prepend_no_key.pl │ │ │ ├── reference_binary.pl │ │ │ ├── syntax_error.pl │ │ │ ├── syntax_extends.pl │ │ │ ├── syntax_file.pl │ │ │ ├── syntax_sandbox.pl │ │ │ ├── test_missing_key.pl │ │ │ ├── test_missing_key.pltp │ │ │ ├── test_no_builder.pl │ │ │ ├── test_no_grader.pl │ │ │ ├── test_not_string_key.pl │ │ │ ├── utils │ │ │ │ └── sandboxio.py │ │ │ ├── working.pl │ │ │ ├── working.pla │ │ │ ├── working.pltp │ │ │ ├── working2.pl │ │ │ └── working2.pltp │ │ ├── fake_pltp │ │ │ ├── full.pltp │ │ │ ├── invalid_file.pltp │ │ │ ├── no_file.pltp │ │ │ ├── syntax_error.pltp │ │ │ ├── working.pla │ │ │ └── working.pltp │ │ ├── test_exceptions.py │ │ ├── test_loader.py │ │ ├── test_models.py │ │ ├── test_parser.py │ │ ├── test_parser_gift.py │ │ ├── test_parser_pl.py │ │ ├── test_parser_pltp.py │ │ ├── test_utils.py │ │ └── utils.py │ └── utils.py ├── lti_app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── backends.py │ ├── middleware.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── outcome.py │ ├── request_validator.py │ ├── ressources │ │ ├── delete.xml │ │ ├── readResult.xml │ │ └── result.xml │ └── tests.py ├── misc_tests │ ├── __init__.py │ ├── activity_base_test_mixin.py │ ├── local_storage.py │ ├── resources │ │ ├── fake_filebrowser_data │ │ │ └── cbank │ │ │ │ ├── recursion │ │ │ │ ├── ackermann.pl │ │ │ │ ├── area_matrix.pl │ │ │ │ ├── div_by_seven.pl │ │ │ │ ├── down_up_number.pl │ │ │ │ ├── exp_by_squaring.pl │ │ │ │ ├── factorial.pl │ │ │ │ ├── fibonacci_rec.pl │ │ │ │ ├── knapsack.pl │ │ │ │ ├── pascal_rec.pl │ │ │ │ ├── pgcd_soustrac.pl │ │ │ │ ├── pied_nickeles_sort.pl │ │ │ │ ├── sum_number.pl │ │ │ │ └── working_exercice.pltp │ │ │ │ ├── template │ │ │ │ ├── __init__.py │ │ │ │ ├── basic.c │ │ │ │ ├── evaluatorC.py │ │ │ │ ├── feedbackC.py │ │ │ │ ├── graderC.py │ │ │ │ ├── inspector.py │ │ │ │ ├── stdsandboxC.pl │ │ │ │ ├── templateC.html │ │ │ │ └── templateConglet.html │ │ │ │ └── tools │ │ │ │ ├── code_generations.py │ │ │ │ ├── prog_alea │ │ │ │ ├── source.c │ │ │ │ └── values │ │ └── lib │ │ │ ├── builder │ │ │ ├── before.py │ │ │ ├── build.py │ │ │ └── none.py │ │ │ ├── demo │ │ │ ├── all │ │ │ │ ├── Description.pl │ │ │ │ ├── Filltheblank.pl │ │ │ │ ├── Match.pl │ │ │ │ ├── MultipleGoodAnswers.pl │ │ │ │ ├── MultipleNumeric.pl │ │ │ │ ├── RangeAvecIntervalle.pl │ │ │ │ ├── RangeAvecTolerance.pl │ │ │ │ ├── SelectSet.pl │ │ │ │ ├── SelectWithFeedback.pl │ │ │ │ ├── Short.pl │ │ │ │ ├── TruFalse2.pl │ │ │ │ ├── TrueFalse1.pl │ │ │ │ └── all.pltp │ │ │ ├── random_add.pl │ │ │ ├── random_add_eval_func.pl │ │ │ ├── random_all.pltp │ │ │ ├── static_add.pl │ │ │ ├── template │ │ │ │ ├── aleaQCM__template.pl │ │ │ │ ├── blank_deroulant_template.pl │ │ │ │ ├── fill_the_blank_template.pl │ │ │ │ ├── match_template.pl │ │ │ │ ├── multiple_blank_template.pl │ │ │ │ ├── multiplechoices_template.pl │ │ │ │ ├── numeric_template.pl │ │ │ │ ├── select_template.pl │ │ │ │ ├── short_template.pl │ │ │ │ └── truefalse_template.pl │ │ │ └── wims │ │ │ │ ├── demo.pl │ │ │ │ ├── demo_upem.pl │ │ │ │ └── template.pl │ │ │ ├── example │ │ │ └── java │ │ │ │ ├── junit.pl │ │ │ │ └── stdout_tests.pl │ │ │ ├── form │ │ │ ├── simplenumeric.html │ │ │ ├── simpletextform.html │ │ │ └── text_editor.html │ │ │ ├── grader │ │ │ ├── evalfunc.py │ │ │ ├── evaluator.py │ │ │ └── java.py │ │ │ ├── python │ │ │ ├── 0PLG │ │ │ │ ├── TPE │ │ │ │ │ ├── empty.pl │ │ │ │ │ ├── error.pl │ │ │ │ │ ├── function001.pl │ │ │ │ │ ├── functionalea.pl │ │ │ │ │ ├── identificateurs.pl │ │ │ │ │ ├── names.py │ │ │ │ │ ├── operatorModulo.pl │ │ │ │ │ ├── test.html │ │ │ │ │ └── variableAkiki.pl │ │ │ │ ├── bjr.pltp │ │ │ │ ├── deux-concept.pltp │ │ │ │ ├── missingkey.pltp │ │ │ │ ├── plgrader.pltp │ │ │ │ ├── soluce.pl │ │ │ │ └── template.pl │ │ │ ├── AP1 │ │ │ │ └── TP1 │ │ │ │ │ ├── corrigemoi_1.pl │ │ │ │ │ ├── corrigemoi_2.pl │ │ │ │ │ ├── corrigemoi_3.pl │ │ │ │ │ ├── corrigemoi_4.pl │ │ │ │ │ ├── corrigemoi_5.pl │ │ │ │ │ ├── corrigemoi_6.pl │ │ │ │ │ ├── corrigemoi_7.pl │ │ │ │ │ └── firsterrors.pltp │ │ │ ├── IUT │ │ │ │ ├── TP1 │ │ │ │ │ ├── CodeCogsEqn.gif │ │ │ │ │ ├── constantestypes.pl │ │ │ │ │ ├── error.pl │ │ │ │ │ ├── errorindent.pl │ │ │ │ │ ├── errorsyntax.pl │ │ │ │ │ ├── errortype.pl │ │ │ │ │ ├── identificateurs.pl │ │ │ │ │ ├── ififif.pl │ │ │ │ │ ├── operator001.pl │ │ │ │ │ ├── operator002.pl │ │ │ │ │ ├── operator003.pl │ │ │ │ │ ├── printbonjour.pl │ │ │ │ │ ├── printinput.pl │ │ │ │ │ ├── tp1.pltp │ │ │ │ │ └── variabletypes.pl │ │ │ │ └── template.pl │ │ │ ├── PLTP │ │ │ │ ├── L1 │ │ │ │ │ ├── L1mathinfotp01.pltp │ │ │ │ │ └── L1mathinfotp02.pltp │ │ │ │ ├── func1.pltp │ │ │ │ ├── func2.pltp │ │ │ │ ├── iut_tp1.pltp │ │ │ │ ├── old │ │ │ │ │ ├── basic.pltp │ │ │ │ │ ├── debug.pltp │ │ │ │ │ ├── demo1.pltp │ │ │ │ │ ├── errorinclude.pltp │ │ │ │ │ ├── functions.pltp │ │ │ │ │ ├── maynooth-2.pltp │ │ │ │ │ ├── maynooth.pltp │ │ │ │ │ ├── testF1.pltp │ │ │ │ │ ├── testFonctionnel.pltp │ │ │ │ │ ├── testOutFormat.pltp │ │ │ │ │ ├── testlignevide.pltp │ │ │ │ │ └── toto.pltp │ │ │ │ └── premiers.pltp │ │ │ ├── TP1 │ │ │ │ ├── nuitsdamour.pl │ │ │ │ ├── soluce.py │ │ │ │ └── valeurs.pl │ │ │ ├── all.pltp │ │ │ ├── bool │ │ │ │ ├── bonlcond.pl │ │ │ │ ├── sisi01.pl │ │ │ │ ├── sisi02.pl │ │ │ │ ├── sisi03.pl │ │ │ │ ├── sisi04.pl │ │ │ │ └── tridetrois.pl │ │ │ ├── conversion │ │ │ │ └── str_and_int.pl │ │ │ ├── dynamic │ │ │ │ ├── direct.pl │ │ │ │ ├── dyna.pltp │ │ │ │ ├── dyna1.pl │ │ │ │ ├── dyna2.pl │ │ │ │ ├── dyna3.pl │ │ │ │ ├── dyna4.pl │ │ │ │ ├── dyna5.pl │ │ │ │ ├── dyna6.pl │ │ │ │ ├── dyna7.pl │ │ │ │ ├── dyna8.pl │ │ │ │ ├── dyna9.pl │ │ │ │ ├── dynaexemple.py │ │ │ │ ├── dynamic.pl │ │ │ │ ├── idee.md │ │ │ │ └── readme.md │ │ │ ├── exemple │ │ │ │ ├── pldicjson.py │ │ │ │ ├── plgrader │ │ │ │ │ ├── error.pl │ │ │ │ │ ├── function001.pl │ │ │ │ │ ├── identificateurs.pl │ │ │ │ │ ├── nav.html │ │ │ │ │ ├── one.pls │ │ │ │ │ ├── one_with_code.pls │ │ │ │ │ ├── operator001.pl │ │ │ │ │ └── plgrader.pltp │ │ │ │ ├── variadic.pl │ │ │ │ └── writeinbase.py │ │ │ ├── form │ │ │ │ └── editorform.html │ │ │ ├── function │ │ │ │ ├── Sundaram.pl │ │ │ │ ├── autosubsets.pl │ │ │ │ ├── carre.pl │ │ │ │ ├── carrecube.pl │ │ │ │ ├── decomposition.pl │ │ │ │ ├── estpremier.pl │ │ │ │ ├── estpremier2.pl │ │ │ │ ├── funcpuis.pl │ │ │ │ ├── functiongrader.py │ │ │ │ ├── funcvoyelle.pl │ │ │ │ ├── gragra.py │ │ │ │ ├── histogramme1.pl │ │ │ │ ├── jumeaux.pl │ │ │ │ ├── pim.pl │ │ │ │ ├── pimret.pl │ │ │ │ ├── pom.pl │ │ │ │ ├── racinecarre.pl │ │ │ │ ├── randomcolor1.pl │ │ │ │ ├── romains.pl │ │ │ │ ├── romcode.pl │ │ │ │ ├── simplefunc1.pl │ │ │ │ ├── simplefunc2.pl │ │ │ │ ├── simplefunc3.pl │ │ │ │ ├── simplefunc4.pl │ │ │ │ ├── subsets.pl │ │ │ │ ├── testsimplefuncgrader.py │ │ │ │ ├── voyelles.py │ │ │ │ └── writebase.pl │ │ │ ├── input │ │ │ │ ├── ageCapitaine.pl │ │ │ │ ├── egalegal.pl │ │ │ │ ├── generator.py │ │ │ │ ├── plusmoins.pl │ │ │ │ ├── print1.pl │ │ │ │ ├── print2.pl │ │ │ │ └── quelage.pl │ │ │ ├── list │ │ │ │ ├── commonelementsist.pl │ │ │ │ ├── lireuneliste.pl │ │ │ │ ├── lireunelisteint.pl │ │ │ │ └── soussuite.pl │ │ │ ├── search │ │ │ │ ├── jumeaux.pl │ │ │ │ └── soluce.py │ │ │ ├── stack │ │ │ │ ├── stack.md │ │ │ │ ├── stackbasic.pl │ │ │ │ └── undopile.pl │ │ │ ├── string │ │ │ │ ├── Kolakoski.pl │ │ │ │ ├── capitalize.pl │ │ │ │ ├── conway.pl │ │ │ │ └── sort.pl │ │ │ ├── template │ │ │ │ └── tools │ │ │ │ │ └── makedescrp │ │ │ ├── test │ │ │ │ ├── template.pl │ │ │ │ └── test.pltp │ │ │ ├── test_editor.pl │ │ │ └── tuples │ │ │ │ ├── initlist1.pl │ │ │ │ ├── tuple1.pl │ │ │ │ └── tuple_template.pl │ │ │ ├── template │ │ │ └── java.pl │ │ │ └── utils │ │ │ └── sandboxio.py │ ├── test_selenium.py │ └── utils.py ├── playexo │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── enums.py │ ├── exception.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── request.py │ ├── static │ │ └── playexo │ │ │ ├── css │ │ │ └── playexo.css │ │ │ └── js │ │ │ └── playexo.js │ ├── templates │ │ └── playexo │ │ │ ├── download_answers.html │ │ │ ├── error.html │ │ │ ├── not_authenticated.html │ │ │ ├── pl.html │ │ │ ├── preview.html │ │ │ ├── statics.html │ │ │ └── test_pl.html │ ├── templatetags │ │ ├── __init__.py │ │ └── playexo_tags.py │ ├── tests │ │ ├── __init__.py │ │ ├── fake_pl │ │ │ ├── before.pl │ │ │ ├── broken_grader.pl │ │ │ ├── builder │ │ │ │ ├── before.py │ │ │ │ ├── before_broken.py │ │ │ │ ├── before_no_context.py │ │ │ │ ├── build.py │ │ │ │ └── none.py │ │ │ ├── failing_tests.pl │ │ │ ├── grader │ │ │ │ ├── broken_evaluator.py │ │ │ │ ├── evalfunc.py │ │ │ │ └── evaluator.py │ │ │ ├── invalid_value_grader.pl │ │ │ ├── no_context.pl │ │ │ ├── notworking.pl │ │ │ ├── random_add.pl │ │ │ ├── random_add_eval_func.pl │ │ │ ├── random_all.pltp │ │ │ ├── static_add.pl │ │ │ ├── utils │ │ │ │ ├── broken_sandboxio.py │ │ │ │ └── sandboxio.py │ │ │ └── working.pl │ │ ├── test_enums.py │ │ ├── test_models.py │ │ ├── test_request.py │ │ ├── test_templatetags.py │ │ ├── test_utils.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── progress │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── static │ │ └── progress │ │ │ └── css │ │ │ └── dashboard.css │ ├── templates │ │ └── progress │ │ │ ├── index.html │ │ │ └── student_list.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── qa │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── mixins.py │ ├── models.py │ ├── static │ │ ├── css │ │ │ ├── qa.css │ │ │ └── tagsinput.css │ │ └── js │ │ │ └── tagsinput.js │ ├── templates │ │ └── qa │ │ │ ├── base.html │ │ │ ├── detail_question.html │ │ │ ├── index.html │ │ │ ├── list_questions.html │ │ │ └── paginator.html │ ├── templatetags │ │ ├── __init__.py │ │ └── qa_tags.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_mixins.py │ │ ├── test_model.py │ │ ├── test_qa_tags.py │ │ ├── test_utils.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── shared │ ├── __init__.py │ ├── django_markdown │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── fields.py │ │ ├── flatpages.py │ │ ├── models.py │ │ ├── pypandoc.py │ │ ├── settings.py │ │ ├── static │ │ │ └── django_markdown │ │ │ │ ├── jquery.init.js │ │ │ │ ├── jquery.markitup.js │ │ │ │ ├── preview.css │ │ │ │ ├── sets │ │ │ │ ├── markdown │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bold.png │ │ │ │ │ │ ├── clean.png │ │ │ │ │ │ ├── code.png │ │ │ │ │ │ ├── h1.png │ │ │ │ │ │ ├── h2.png │ │ │ │ │ │ ├── h3.png │ │ │ │ │ │ ├── h4.png │ │ │ │ │ │ ├── h5.png │ │ │ │ │ │ ├── h6.png │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── italic.png │ │ │ │ │ │ ├── link.png │ │ │ │ │ │ ├── list-bullet.png │ │ │ │ │ │ ├── list-numeric.png │ │ │ │ │ │ ├── picture.png │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ ├── quotes.png │ │ │ │ │ │ └── stroke.png │ │ │ │ │ ├── set.js │ │ │ │ │ └── style.css │ │ │ │ └── markdownextra │ │ │ │ │ ├── images │ │ │ │ │ ├── bold.png │ │ │ │ │ ├── book_open.png │ │ │ │ │ ├── code.png │ │ │ │ │ ├── h1.png │ │ │ │ │ ├── h2.png │ │ │ │ │ ├── h3.png │ │ │ │ │ ├── h4.png │ │ │ │ │ ├── h5.png │ │ │ │ │ ├── h6.png │ │ │ │ │ ├── italic.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── list-bullet.png │ │ │ │ │ ├── list-numeric.png │ │ │ │ │ ├── picture.png │ │ │ │ │ ├── preview.png │ │ │ │ │ ├── quotes.png │ │ │ │ │ └── table.png │ │ │ │ │ ├── set.js │ │ │ │ │ └── style.css │ │ │ │ └── skins │ │ │ │ ├── markitup │ │ │ │ ├── images │ │ │ │ │ ├── bg-container.png │ │ │ │ │ ├── bg-editor-bbcode.png │ │ │ │ │ ├── bg-editor-dotclear.png │ │ │ │ │ ├── bg-editor-html.png │ │ │ │ │ ├── bg-editor-json.png │ │ │ │ │ ├── bg-editor-markdown.png │ │ │ │ │ ├── bg-editor-textile.png │ │ │ │ │ ├── bg-editor-wiki.png │ │ │ │ │ ├── bg-editor-xml.png │ │ │ │ │ ├── bg-editor.png │ │ │ │ │ ├── handle.png │ │ │ │ │ ├── menu.png │ │ │ │ │ └── submenu.png │ │ │ │ └── style.css │ │ │ │ └── simple │ │ │ │ ├── images │ │ │ │ ├── handle.png │ │ │ │ ├── menu.png │ │ │ │ └── submenu.png │ │ │ │ └── style.css │ │ ├── templates │ │ │ └── django_markdown │ │ │ │ ├── editor_init.html │ │ │ │ ├── media_all.html │ │ │ │ ├── media_css.html │ │ │ │ ├── media_js.html │ │ │ │ └── preview.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ ├── django_markdown.py │ │ │ └── django_markdown_static.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── utils.py │ │ ├── views.py │ │ └── widgets.py │ ├── enumfields │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── drf │ │ │ ├── __init__.py │ │ │ ├── fields.py │ │ │ └── serializers.py │ │ ├── enums.py │ │ ├── fields.py │ │ └── forms.py │ ├── gitcmd.py │ ├── graphic_utils.py │ ├── htmlprint.py │ └── utils.py └── user_profile │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── enums.py │ ├── forms.py │ ├── migrations │ └── __init__.py │ ├── models.py │ ├── templates │ └── user_profile │ │ ├── edit_profile.html │ │ └── editor_preview.html │ ├── tests │ ├── __init__.py │ ├── test_models.py │ └── test_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── common_static ├── css │ ├── app.css │ ├── block_chart.css │ ├── theme.css │ ├── theme.dark.css │ └── theme.light.css ├── favicon.ico └── js │ ├── ace │ ├── ace.js │ ├── ext-beautify.js │ ├── ext-elastic_tabstops_lite.js │ ├── ext-emmet.js │ ├── ext-error_marker.js │ ├── ext-keybinding_menu.js │ ├── ext-language_tools.js │ ├── ext-linking.js │ ├── ext-modelist.js │ ├── ext-options.js │ ├── ext-rtl.js │ ├── ext-searchbox.js │ ├── ext-settings_menu.js │ ├── ext-spellcheck.js │ ├── ext-split.js │ ├── ext-static_highlight.js │ ├── ext-statusbar.js │ ├── ext-textarea.js │ ├── ext-themelist.js │ ├── ext-whitespace.js │ ├── keybinding-emacs.js │ ├── keybinding-vim.js │ ├── mode-abap.js │ ├── mode-abc.js │ ├── mode-actionscript.js │ ├── mode-ada.js │ ├── mode-apache_conf.js │ ├── mode-applescript.js │ ├── mode-asciidoc.js │ ├── mode-asl.js │ ├── mode-assembly_x86.js │ ├── mode-autohotkey.js │ ├── mode-batchfile.js │ ├── mode-bro.js │ ├── mode-c9search.js │ ├── mode-c_cpp.js │ ├── mode-cirru.js │ ├── mode-clojure.js │ ├── mode-cobol.js │ ├── mode-coffee.js │ ├── mode-coldfusion.js │ ├── mode-csharp.js │ ├── mode-csound_document.js │ ├── mode-csound_orchestra.js │ ├── mode-csound_score.js │ ├── mode-csp.js │ ├── mode-css.js │ ├── mode-curly.js │ ├── mode-d.js │ ├── mode-dart.js │ ├── mode-diff.js │ ├── mode-django.js │ ├── mode-dockerfile.js │ ├── mode-dot.js │ ├── mode-drools.js │ ├── mode-edifact.js │ ├── mode-eiffel.js │ ├── mode-ejs.js │ ├── mode-elixir.js │ ├── mode-elm.js │ ├── mode-erlang.js │ ├── mode-forth.js │ ├── mode-fortran.js │ ├── mode-fsharp.js │ ├── mode-ftl.js │ ├── mode-gcode.js │ ├── mode-gherkin.js │ ├── mode-gitignore.js │ ├── mode-glsl.js │ ├── mode-gobstones.js │ ├── mode-golang.js │ ├── mode-graphqlschema.js │ ├── mode-groovy.js │ ├── mode-haml.js │ ├── mode-handlebars.js │ ├── mode-haskell.js │ ├── mode-haskell_cabal.js │ ├── mode-haxe.js │ ├── mode-hjson.js │ ├── mode-html.js │ ├── mode-html_elixir.js │ ├── mode-html_ruby.js │ ├── mode-ini.js │ ├── mode-io.js │ ├── mode-jack.js │ ├── mode-jade.js │ ├── mode-java.js │ ├── mode-javascript.js │ ├── mode-json.js │ ├── mode-jsoniq.js │ ├── mode-jsp.js │ ├── mode-jssm.js │ ├── mode-jsx.js │ ├── mode-julia.js │ ├── mode-kotlin.js │ ├── mode-latex.js │ ├── mode-less.js │ ├── mode-liquid.js │ ├── mode-lisp.js │ ├── mode-livescript.js │ ├── mode-logiql.js │ ├── mode-lsl.js │ ├── mode-lua.js │ ├── mode-luapage.js │ ├── mode-lucene.js │ ├── mode-makefile.js │ ├── mode-markdown.js │ ├── mode-mask.js │ ├── mode-matlab.js │ ├── mode-maze.js │ ├── mode-mel.js │ ├── mode-mixal.js │ ├── mode-mushcode.js │ ├── mode-mysql.js │ ├── mode-nix.js │ ├── mode-nsis.js │ ├── mode-objectivec.js │ ├── mode-ocaml.js │ ├── mode-pascal.js │ ├── mode-perl.js │ ├── mode-pgsql.js │ ├── mode-php.js │ ├── mode-php_laravel_blade.js │ ├── mode-pig.js │ ├── mode-plain_text.js │ ├── mode-powershell.js │ ├── mode-praat.js │ ├── mode-prolog.js │ ├── mode-properties.js │ ├── mode-protobuf.js │ ├── mode-puppet.js │ ├── mode-python.js │ ├── mode-r.js │ ├── mode-razor.js │ ├── mode-rdoc.js │ ├── mode-red.js │ ├── mode-redshift.js │ ├── mode-rhtml.js │ ├── mode-rst.js │ ├── mode-ruby.js │ ├── mode-rust.js │ ├── mode-sass.js │ ├── mode-scad.js │ ├── mode-scala.js │ ├── mode-scheme.js │ ├── mode-scss.js │ ├── mode-sh.js │ ├── mode-sjs.js │ ├── mode-slim.js │ ├── mode-smarty.js │ ├── mode-snippets.js │ ├── mode-soy_template.js │ ├── mode-space.js │ ├── mode-sparql.js │ ├── mode-sql.js │ ├── mode-sqlserver.js │ ├── mode-stylus.js │ ├── mode-svg.js │ ├── mode-swift.js │ ├── mode-tcl.js │ ├── mode-terraform.js │ ├── mode-tex.js │ ├── mode-text.js │ ├── mode-textile.js │ ├── mode-toml.js │ ├── mode-tsx.js │ ├── mode-turtle.js │ ├── mode-twig.js │ ├── mode-typescript.js │ ├── mode-vala.js │ ├── mode-vbscript.js │ ├── mode-velocity.js │ ├── mode-verilog.js │ ├── mode-vhdl.js │ ├── mode-wollok.js │ ├── mode-xml.js │ ├── mode-xquery.js │ ├── mode-yaml.js │ ├── theme-ambiance.js │ ├── theme-chaos.js │ ├── theme-chrome.js │ ├── theme-clouds.js │ ├── theme-clouds_midnight.js │ ├── theme-cobalt.js │ ├── theme-crimson_editor.js │ ├── theme-dawn.js │ ├── theme-dracula.js │ ├── theme-dreamweaver.js │ ├── theme-eclipse.js │ ├── theme-github.js │ ├── theme-gob.js │ ├── theme-gruvbox.js │ ├── theme-idle_fingers.js │ ├── theme-iplastic.js │ ├── theme-katzenmilch.js │ ├── theme-kr_theme.js │ ├── theme-kuroir.js │ ├── theme-merbivore.js │ ├── theme-merbivore_soft.js │ ├── theme-mono_industrial.js │ ├── theme-monokai.js │ ├── theme-pastel_on_dark.js │ ├── theme-solarized_dark.js │ ├── theme-solarized_light.js │ ├── theme-sqlserver.js │ ├── theme-terminal.js │ ├── theme-textmate.js │ ├── theme-tomorrow.js │ ├── theme-tomorrow_night.js │ ├── theme-tomorrow_night_blue.js │ ├── theme-tomorrow_night_bright.js │ ├── theme-tomorrow_night_eighties.js │ ├── theme-twilight.js │ ├── theme-vibrant_ink.js │ ├── theme-xcode.js │ ├── worker-coffee.js │ ├── worker-css.js │ ├── worker-html.js │ ├── worker-javascript.js │ ├── worker-json.js │ ├── worker-lua.js │ ├── worker-php.js │ ├── worker-xml.js │ └── worker-xquery.js │ └── app.js ├── default_file ├── builder.sh ├── clean.sh ├── feedback.html └── grader.sh ├── docs ├── 1.png ├── 2.png ├── 3.png ├── README-FR.md ├── install.md └── lti_tutorial.md ├── external_libs ├── django-enumfields │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.rst │ ├── enumfields │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── drf │ │ │ ├── __init__.py │ │ │ ├── fields.py │ │ │ └── serializers.py │ │ ├── enums.py │ │ ├── fields.py │ │ └── forms.py │ ├── setup.py │ ├── tests │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── enums.py │ │ ├── models.py │ │ ├── settings.py │ │ ├── test_django_admin.py │ │ ├── test_django_models.py │ │ ├── test_enums.py │ │ ├── test_form_fields.py │ │ ├── test_issue_60.py │ │ ├── test_serializers.py │ │ └── urls.py │ └── tox.ini ├── django-markdown │ ├── .bumpversion.cfg │ ├── .coveragerc │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTORS │ ├── Changelog │ ├── DESCRIPTION │ ├── LICENSE │ ├── MANIFEST.in │ ├── Makefile │ ├── README.rst │ ├── django_markdown │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── fields.py │ │ ├── flatpages.py │ │ ├── models.py │ │ ├── pypandoc.py │ │ ├── settings.py │ │ ├── static │ │ │ └── django_markdown │ │ │ │ ├── jquery.init.js │ │ │ │ ├── jquery.markitup.js │ │ │ │ ├── preview.css │ │ │ │ ├── sets │ │ │ │ ├── markdown │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bold.png │ │ │ │ │ │ ├── clean.png │ │ │ │ │ │ ├── code.png │ │ │ │ │ │ ├── h1.png │ │ │ │ │ │ ├── h2.png │ │ │ │ │ │ ├── h3.png │ │ │ │ │ │ ├── h4.png │ │ │ │ │ │ ├── h5.png │ │ │ │ │ │ ├── h6.png │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── italic.png │ │ │ │ │ │ ├── link.png │ │ │ │ │ │ ├── list-bullet.png │ │ │ │ │ │ ├── list-numeric.png │ │ │ │ │ │ ├── picture.png │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ ├── quotes.png │ │ │ │ │ │ └── stroke.png │ │ │ │ │ ├── set.js │ │ │ │ │ └── style.css │ │ │ │ └── markdownextra │ │ │ │ │ ├── images │ │ │ │ │ ├── bold.png │ │ │ │ │ ├── book_open.png │ │ │ │ │ ├── code.png │ │ │ │ │ ├── h1.png │ │ │ │ │ ├── h2.png │ │ │ │ │ ├── h3.png │ │ │ │ │ ├── h4.png │ │ │ │ │ ├── h5.png │ │ │ │ │ ├── h6.png │ │ │ │ │ ├── italic.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── list-bullet.png │ │ │ │ │ ├── list-numeric.png │ │ │ │ │ ├── picture.png │ │ │ │ │ ├── preview.png │ │ │ │ │ ├── quotes.png │ │ │ │ │ └── table.png │ │ │ │ │ ├── set.js │ │ │ │ │ └── style.css │ │ │ │ └── skins │ │ │ │ ├── markitup │ │ │ │ ├── images │ │ │ │ │ ├── bg-container.png │ │ │ │ │ ├── bg-editor-bbcode.png │ │ │ │ │ ├── bg-editor-dotclear.png │ │ │ │ │ ├── bg-editor-html.png │ │ │ │ │ ├── bg-editor-json.png │ │ │ │ │ ├── bg-editor-markdown.png │ │ │ │ │ ├── bg-editor-textile.png │ │ │ │ │ ├── bg-editor-wiki.png │ │ │ │ │ ├── bg-editor-xml.png │ │ │ │ │ ├── bg-editor.png │ │ │ │ │ ├── handle.png │ │ │ │ │ ├── menu.png │ │ │ │ │ └── submenu.png │ │ │ │ └── style.css │ │ │ │ └── simple │ │ │ │ ├── images │ │ │ │ ├── handle.png │ │ │ │ ├── menu.png │ │ │ │ └── submenu.png │ │ │ │ └── style.css │ │ ├── templates │ │ │ └── django_markdown │ │ │ │ ├── editor_init.html │ │ │ │ ├── media_all.html │ │ │ │ ├── media_css.html │ │ │ │ ├── media_js.html │ │ │ │ └── preview.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ ├── django_markdown.py │ │ │ └── django_markdown_static.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── utils.py │ │ ├── views.py │ │ └── widgets.py │ ├── docs │ │ ├── Makefile │ │ ├── changes.rst │ │ ├── conf.py │ │ ├── index.rst │ │ └── make.bat │ ├── example.py │ ├── example │ │ ├── manage.py │ │ └── project │ │ │ ├── __init__.py │ │ │ ├── md │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── fixtures │ │ │ │ └── initial_data.json │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── md │ │ │ │ │ └── home.html │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ ├── views.py │ │ │ └── wsgi.py │ ├── requirements-tests.txt │ ├── requirements.txt │ ├── setup.cfg │ ├── setup.py │ ├── tests │ │ ├── __init__.py │ │ ├── models.py │ │ ├── settings.py │ │ └── urls.py │ └── tox.ini ├── gitcmd │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGES.rst │ ├── LICENSE │ ├── MANIFEST.in │ ├── Makefile │ ├── README.md │ ├── gitcmd │ │ ├── __init__.py │ │ └── gitcmd.py │ ├── setup.py │ ├── tests │ │ ├── __init__.py │ │ └── test_gitcmd.py │ └── tox.ini └── htmlprint │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGES.rst │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── Makefile │ ├── README.md │ ├── htmlprint │ ├── __init__.py │ └── htmlprint.py │ ├── setup.py │ ├── tests │ ├── __init__.py │ └── test_htmlprint.py │ └── tox.ini ├── frontend ├── components │ ├── .editorconfig │ ├── .github │ │ └── ISSUE_TEMPLATE │ │ │ ├── bug.md │ │ │ ├── component.md │ │ │ └── feature.md │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── build-dev.sh │ ├── build-prod.sh │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.e2e.json │ ├── install.sh │ ├── package-lock.json │ ├── package.json │ ├── post-build.js │ ├── src │ │ ├── app │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── app.routing.module.ts │ │ │ ├── components │ │ │ │ ├── automaton-editor │ │ │ │ │ ├── automaton-editor.component.html │ │ │ │ │ ├── automaton-editor.component.scss │ │ │ │ │ └── automaton-editor.component.ts │ │ │ │ ├── automaton-viewer │ │ │ │ │ ├── automaton-viewer.component.html │ │ │ │ │ ├── automaton-viewer.component.scss │ │ │ │ │ └── automaton-viewer.component.ts │ │ │ │ ├── checkbox-group │ │ │ │ │ ├── checkbox-group.component.html │ │ │ │ │ ├── checkbox-group.component.scss │ │ │ │ │ └── checkbox-group.component.ts │ │ │ │ ├── code-editor │ │ │ │ │ ├── code-editor.component.html │ │ │ │ │ ├── code-editor.component.scss │ │ │ │ │ └── code-editor.component.ts │ │ │ │ ├── countdown │ │ │ │ │ ├── countdown.component.html │ │ │ │ │ ├── countdown.component.scss │ │ │ │ │ └── countdown.component.ts │ │ │ │ ├── drag-drop │ │ │ │ │ ├── drag-drop.component.html │ │ │ │ │ ├── drag-drop.component.scss │ │ │ │ │ └── drag-drop.component.ts │ │ │ │ ├── eval-grid │ │ │ │ │ ├── eval-grid.component.html │ │ │ │ │ ├── eval-grid.component.scss │ │ │ │ │ └── eval-grid.component.ts │ │ │ │ ├── graph-viewer │ │ │ │ │ ├── graph-viewer.component.html │ │ │ │ │ ├── graph-viewer.component.scss │ │ │ │ │ └── graph-viewer.component.ts │ │ │ │ ├── hint │ │ │ │ │ ├── hint.component.html │ │ │ │ │ ├── hint.component.scss │ │ │ │ │ └── hint.component.ts │ │ │ │ ├── input │ │ │ │ │ ├── input.component.html │ │ │ │ │ ├── input.component.scss │ │ │ │ │ ├── input.component.spec.ts │ │ │ │ │ └── input.component.ts │ │ │ │ ├── jsxgraph │ │ │ │ │ ├── jsxgraph.component.html │ │ │ │ │ ├── jsxgraph.component.scss │ │ │ │ │ └── jsxgraph.component.ts │ │ │ │ ├── match-list │ │ │ │ │ ├── match-list.component.html │ │ │ │ │ ├── match-list.component.scss │ │ │ │ │ └── match-list.component.ts │ │ │ │ ├── math-input-quill │ │ │ │ │ ├── math-input-quill.component.html │ │ │ │ │ ├── math-input-quill.component.scss │ │ │ │ │ └── math-input-quill.component.ts │ │ │ │ ├── math-input │ │ │ │ │ ├── math-input.component.html │ │ │ │ │ ├── math-input.component.scss │ │ │ │ │ └── math-input.component.ts │ │ │ │ ├── math-matrix │ │ │ │ │ ├── math-matrix.component.html │ │ │ │ │ ├── math-matrix.component.scss │ │ │ │ │ └── math-matrix.component.ts │ │ │ │ ├── radio-group │ │ │ │ │ ├── radio-group.component.html │ │ │ │ │ ├── radio-group.component.scss │ │ │ │ │ └── radio-group.component.ts │ │ │ │ ├── reveal-viewer │ │ │ │ │ ├── reveal-viewer.component.html │ │ │ │ │ ├── reveal-viewer.component.scss │ │ │ │ │ └── reveal-viewer.component.ts │ │ │ │ ├── sort-list │ │ │ │ │ ├── sort-list.component.html │ │ │ │ │ ├── sort-list.component.scss │ │ │ │ │ └── sort-list.component.ts │ │ │ │ └── text-select │ │ │ │ │ ├── text-select.component.html │ │ │ │ │ ├── text-select.component.scss │ │ │ │ │ └── text-select.component.ts │ │ │ ├── docs │ │ │ │ ├── advanced-usage │ │ │ │ │ ├── advanced-usage.component.css │ │ │ │ │ ├── advanced-usage.component.html │ │ │ │ │ └── advanced-usage.component.ts │ │ │ │ ├── api-doc │ │ │ │ │ ├── api-doc.component.html │ │ │ │ │ ├── api-doc.component.scss │ │ │ │ │ └── api-doc.component.ts │ │ │ │ ├── css-doc │ │ │ │ │ ├── css-doc.component.html │ │ │ │ │ ├── css-doc.component.scss │ │ │ │ │ └── css-doc.component.ts │ │ │ │ ├── docs.component.html │ │ │ │ ├── docs.component.scss │ │ │ │ ├── docs.component.ts │ │ │ │ ├── intro │ │ │ │ │ ├── intro.component.html │ │ │ │ │ ├── intro.component.scss │ │ │ │ │ └── intro.component.ts │ │ │ │ ├── next-prev │ │ │ │ │ ├── next-prev.component.html │ │ │ │ │ ├── next-prev.component.scss │ │ │ │ │ └── next-prev.component.ts │ │ │ │ ├── playground │ │ │ │ │ ├── playground.component.html │ │ │ │ │ ├── playground.component.scss │ │ │ │ │ └── playground.component.ts │ │ │ │ └── simple-usage │ │ │ │ │ ├── simple-usage.component.html │ │ │ │ │ ├── simple-usage.component.scss │ │ │ │ │ └── simple-usage.component.ts │ │ │ └── shared │ │ │ │ ├── components │ │ │ │ ├── confirm │ │ │ │ │ ├── confirm.component.html │ │ │ │ │ ├── confirm.component.scss │ │ │ │ │ └── confirm.component.ts │ │ │ │ └── prompt │ │ │ │ │ ├── prompt.component.html │ │ │ │ │ ├── prompt.component.scss │ │ │ │ │ └── prompt.component.ts │ │ │ │ ├── directives │ │ │ │ ├── dom-change.directive.ts │ │ │ │ ├── drag-drop.directive.ts │ │ │ │ ├── graphviz.directive.ts │ │ │ │ └── numeric.directive.ts │ │ │ │ ├── material.module.ts │ │ │ │ ├── models │ │ │ │ ├── abstract-component.model.ts │ │ │ │ ├── automaton.model.ts │ │ │ │ ├── checkbox-item.model.ts │ │ │ │ ├── code-editor.model.ts │ │ │ │ ├── definition.model.ts │ │ │ │ ├── eval-grid-item.model.ts │ │ │ │ ├── hint.model.ts │ │ │ │ ├── list-item.model.ts │ │ │ │ ├── radio-item.model.ts │ │ │ │ └── text-select.model.ts │ │ │ │ ├── pipes │ │ │ │ ├── asset-data.pipe.spec.ts │ │ │ │ ├── asset-data.pipe.ts │ │ │ │ ├── asset-path.pipe.spec.ts │ │ │ │ ├── asset-path.pipe.ts │ │ │ │ ├── escape-html.pipe.spec.ts │ │ │ │ ├── escape-html.pipe.ts │ │ │ │ ├── pretty-print.pipe.ts │ │ │ │ ├── pretty-print.spec.ts │ │ │ │ ├── split.pipe.ts │ │ │ │ ├── text-select-split.pipe.spec.ts │ │ │ │ ├── text-select-split.pipe.ts │ │ │ │ ├── trust-html.pipe.spec.ts │ │ │ │ ├── trust-html.pipe.ts │ │ │ │ ├── trust-resource-url.pipe.spec.ts │ │ │ │ ├── trust-resource-url.pipe.ts │ │ │ │ ├── trust-script.pipe.spec.ts │ │ │ │ ├── trust-script.pipe.ts │ │ │ │ ├── trust-style.pipe.spec.ts │ │ │ │ ├── trust-style.pipe.ts │ │ │ │ ├── trust-url.pipe.spec.ts │ │ │ │ ├── trust-url.pipe.ts │ │ │ │ ├── typography.pipe.spec.ts │ │ │ │ └── typography.pipe.ts │ │ │ │ ├── services │ │ │ │ ├── alert.service.ts │ │ │ │ ├── ask.service.ts │ │ │ │ ├── clipboard.service.ts │ │ │ │ ├── definition.service.ts │ │ │ │ ├── drag-drop.service.ts │ │ │ │ └── http.service.ts │ │ │ │ └── shared.module.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── controllers │ │ │ │ └── controllers.py │ │ │ ├── docs │ │ │ │ ├── automaton-editor.html │ │ │ │ ├── automaton-viewer.html │ │ │ │ ├── checkbox-group.html │ │ │ │ ├── code-editor.html │ │ │ │ ├── countdown.html │ │ │ │ ├── drag-drop.html │ │ │ │ ├── eval-grid.html │ │ │ │ ├── graph-viewer.html │ │ │ │ ├── hint.html │ │ │ │ ├── input.html │ │ │ │ ├── jsxgraph.html │ │ │ │ ├── match-list.html │ │ │ │ ├── math-input-quill.html │ │ │ │ ├── math-input.html │ │ │ │ ├── math-matrix.html │ │ │ │ ├── radio-group.html │ │ │ │ ├── reveal-viewer.html │ │ │ │ ├── sort-list.html │ │ │ │ └── text-select.html │ │ │ ├── images │ │ │ │ ├── automaton.svg │ │ │ │ ├── checkbox-group.svg │ │ │ │ ├── code-editor.svg │ │ │ │ ├── countdown.svg │ │ │ │ ├── drag-drop.svg │ │ │ │ ├── eval-grid.svg │ │ │ │ ├── graph.svg │ │ │ │ ├── hint.svg │ │ │ │ ├── input.svg │ │ │ │ ├── jsxgraph.svg │ │ │ │ ├── match-list.svg │ │ │ │ ├── math-input.svg │ │ │ │ ├── math-matrix.svg │ │ │ │ ├── radio-group.svg │ │ │ │ ├── sort-list.svg │ │ │ │ └── text-select.svg │ │ │ ├── min-maps │ │ │ │ └── vs │ │ │ │ │ ├── base │ │ │ │ │ └── worker │ │ │ │ │ │ └── workerMain.js.map │ │ │ │ │ ├── editor │ │ │ │ │ ├── editor.main.js.map │ │ │ │ │ ├── editor.main.nls.de.js.map │ │ │ │ │ ├── editor.main.nls.es.js.map │ │ │ │ │ ├── editor.main.nls.fr.js.map │ │ │ │ │ ├── editor.main.nls.it.js.map │ │ │ │ │ ├── editor.main.nls.ja.js.map │ │ │ │ │ ├── editor.main.nls.js.map │ │ │ │ │ ├── editor.main.nls.ko.js.map │ │ │ │ │ ├── editor.main.nls.ru.js.map │ │ │ │ │ ├── editor.main.nls.zh-cn.js.map │ │ │ │ │ └── editor.main.nls.zh-tw.js.map │ │ │ │ │ └── loader.js.map │ │ │ ├── playground │ │ │ │ ├── automaton-editor.pl │ │ │ │ ├── automaton-viewer.pl │ │ │ │ ├── checkbox-group.pl │ │ │ │ ├── code-editor-multi-language.pl │ │ │ │ ├── code-editor.pl │ │ │ │ ├── countdown.pl │ │ │ │ ├── css-api.pl │ │ │ │ ├── decorator.pl │ │ │ │ ├── drag-drop.pl │ │ │ │ ├── eval-grid.pl │ │ │ │ ├── graph-viewer.pl │ │ │ │ ├── hint-basic.pl │ │ │ │ ├── hint-dynamic.pl │ │ │ │ ├── input-autocomplete.pl │ │ │ │ ├── input.pl │ │ │ │ ├── jsxgraph.pl │ │ │ │ ├── match-list.pl │ │ │ │ ├── math-input-quill.pl │ │ │ │ ├── math-input.pl │ │ │ │ ├── math-matrix.pl │ │ │ │ ├── radio-group.pl │ │ │ │ ├── reveal-viewer.pl │ │ │ │ ├── sort-list-auto-grade.pl │ │ │ │ ├── sort-list.pl │ │ │ │ ├── text-select-free.pl │ │ │ │ └── text-select.pl │ │ │ ├── scripts │ │ │ │ └── components.js │ │ │ └── styles │ │ │ │ └── animations.scss │ │ ├── browserslist │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── karma.conf.js │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ ├── tslint.json │ │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json └── editor │ ├── .editorconfig │ ├── .gitignore │ ├── .travis.yml │ ├── README.md │ ├── angular.json │ ├── build-dev.sh │ ├── build-prod.sh │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json │ ├── install.sh │ ├── package-lock.json │ ├── package.json │ ├── post-build.js │ ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── core │ │ │ ├── auth.service.ts │ │ │ ├── menu.service.ts │ │ │ ├── notification.service.ts │ │ │ └── task.service.ts │ │ ├── pages │ │ │ └── editor │ │ │ │ ├── debugging │ │ │ │ ├── debugging.component.html │ │ │ │ ├── debugging.component.scss │ │ │ │ ├── debugging.component.ts │ │ │ │ ├── logging │ │ │ │ │ ├── logging.component.html │ │ │ │ │ ├── logging.component.scss │ │ │ │ │ └── logging.component.ts │ │ │ │ └── problems │ │ │ │ │ ├── problems.component.html │ │ │ │ │ ├── problems.component.scss │ │ │ │ │ └── problems.component.ts │ │ │ │ ├── editor-routing.module.ts │ │ │ │ ├── editor.component.html │ │ │ │ ├── editor.component.scss │ │ │ │ ├── editor.component.ts │ │ │ │ ├── editor.module.ts │ │ │ │ ├── editor.resolver.ts │ │ │ │ ├── navigation │ │ │ │ ├── explorer │ │ │ │ │ ├── explorer.component.html │ │ │ │ │ ├── explorer.component.scss │ │ │ │ │ └── explorer.component.ts │ │ │ │ ├── git │ │ │ │ │ ├── git.component.html │ │ │ │ │ ├── git.component.scss │ │ │ │ │ └── git.component.ts │ │ │ │ ├── navigation.component.html │ │ │ │ ├── navigation.component.scss │ │ │ │ ├── navigation.component.ts │ │ │ │ ├── navigation.service.ts │ │ │ │ └── search │ │ │ │ │ ├── search.component.html │ │ │ │ │ ├── search.component.scss │ │ │ │ │ └── search.component.ts │ │ │ │ ├── quick-open │ │ │ │ ├── quick-open.component.html │ │ │ │ ├── quick-open.component.scss │ │ │ │ └── quick-open.component.ts │ │ │ │ ├── shared │ │ │ │ ├── directives │ │ │ │ │ ├── file-icon.directive.spec.ts │ │ │ │ │ └── file-icon.directive.ts │ │ │ │ ├── languages │ │ │ │ │ ├── language.ts │ │ │ │ │ └── premierlangage.ts │ │ │ │ ├── models │ │ │ │ │ ├── editor-actions.model.ts │ │ │ │ │ ├── editor-group.model.spec.ts │ │ │ │ │ ├── editor-groups.model.ts │ │ │ │ │ ├── editors.model.spec.ts │ │ │ │ │ ├── editors.model.ts │ │ │ │ │ ├── filters.model.spec.ts │ │ │ │ │ ├── filters.model.ts │ │ │ │ │ ├── git.model.ts │ │ │ │ │ ├── icons.model.ts │ │ │ │ │ ├── monaco.model.ts │ │ │ │ │ ├── resources.model.spec.ts │ │ │ │ │ ├── resources.model.ts │ │ │ │ │ └── settings.model.ts │ │ │ │ ├── pipes │ │ │ │ │ ├── file-icon.pipe.ts │ │ │ │ │ ├── nicify-name.pipe.ts │ │ │ │ │ └── path.pipe.ts │ │ │ │ └── services │ │ │ │ │ ├── compiler.service.ts │ │ │ │ │ ├── editor.service.ts │ │ │ │ │ ├── git.service.ts │ │ │ │ │ ├── monaco.service.ts │ │ │ │ │ ├── opener.service.ts │ │ │ │ │ ├── preview.service.ts │ │ │ │ │ ├── resource.service.ts │ │ │ │ │ └── settings.service.ts │ │ │ │ ├── status-bar │ │ │ │ ├── status-bar.component.html │ │ │ │ ├── status-bar.component.scss │ │ │ │ └── status-bar.component.ts │ │ │ │ └── workspace │ │ │ │ ├── code-editor │ │ │ │ ├── code-editor.component.html │ │ │ │ ├── code-editor.component.scss │ │ │ │ └── code-editor.component.ts │ │ │ │ ├── image-editor │ │ │ │ ├── image-editor.component.html │ │ │ │ ├── image-editor.component.scss │ │ │ │ └── image-editor.component.ts │ │ │ │ ├── preview-editor │ │ │ │ ├── preview-editor.component.html │ │ │ │ ├── preview-editor.component.scss │ │ │ │ └── preview-editor.component.ts │ │ │ │ ├── setting-editor │ │ │ │ ├── setting-editor.component.html │ │ │ │ ├── setting-editor.component.scss │ │ │ │ └── setting-editor.component.ts │ │ │ │ ├── welcome │ │ │ │ ├── welcome.component.html │ │ │ │ ├── welcome.component.scss │ │ │ │ └── welcome.component.ts │ │ │ │ ├── workspace.component.html │ │ │ │ ├── workspace.component.scss │ │ │ │ └── workspace.component.ts │ │ └── shared │ │ │ ├── components │ │ │ ├── confirm │ │ │ │ ├── confirm.component.html │ │ │ │ ├── confirm.component.scss │ │ │ │ └── confirm.component.ts │ │ │ ├── loading │ │ │ │ ├── loading.component.html │ │ │ │ ├── loading.component.scss │ │ │ │ └── loading.component.ts │ │ │ ├── prompt │ │ │ │ ├── prompt.component.html │ │ │ │ ├── prompt.component.scss │ │ │ │ └── prompt.component.ts │ │ │ └── tree │ │ │ │ ├── tree.component.html │ │ │ │ ├── tree.component.scss │ │ │ │ ├── tree.component.spec.ts │ │ │ │ └── tree.component.ts │ │ │ ├── directives │ │ │ ├── autofocus.directive.spec.ts │ │ │ ├── autofocus.directive.ts │ │ │ ├── dnd.directive.spec.ts │ │ │ ├── dnd.directive.ts │ │ │ ├── highlight-words.directive.spec.ts │ │ │ ├── highlight-words.directive.ts │ │ │ ├── run-scripts.directive.spec.ts │ │ │ ├── run-scripts.directive.ts │ │ │ ├── tree-node.directive.spec.ts │ │ │ └── tree-node.directive.ts │ │ │ ├── material.module.ts │ │ │ ├── models │ │ │ └── tree.model.ts │ │ │ ├── pipes │ │ │ ├── asset.pipe.spec.ts │ │ │ ├── asset.pipe.ts │ │ │ ├── trust-html.pipe.spec.ts │ │ │ ├── trust-html.pipe.ts │ │ │ ├── trust-resource-url.pipe.spec.ts │ │ │ ├── trust-resource-url.pipe.ts │ │ │ ├── trust-script.pipe.spec.ts │ │ │ ├── trust-script.pipe.ts │ │ │ ├── trust-style.pipe.spec.ts │ │ │ ├── trust-style.pipe.ts │ │ │ ├── trust-url.pipe.spec.ts │ │ │ └── trust-url.pipe.ts │ │ │ ├── shared.module.ts │ │ │ ├── themes │ │ │ ├── theme.dark.ts │ │ │ ├── theme.files.ts │ │ │ ├── theme.folders.ts │ │ │ ├── theme.light.ts │ │ │ └── theme.ts │ │ │ └── utils │ │ │ ├── contracts.spec.ts │ │ │ ├── contracts.ts │ │ │ ├── http-encoder.model.ts │ │ │ ├── paths.spec.ts │ │ │ └── paths.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── icons │ │ │ ├── explorer │ │ │ │ ├── 3d.svg │ │ │ │ ├── actionscript.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angular-component.svg │ │ │ │ ├── angular-directive.svg │ │ │ │ ├── angular-guard.svg │ │ │ │ ├── angular-pipe.svg │ │ │ │ ├── angular-resolver.svg │ │ │ │ ├── angular-service.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── apiblueprint.svg │ │ │ │ ├── applescript.svg │ │ │ │ ├── appveyor.svg │ │ │ │ ├── arduino.svg │ │ │ │ ├── asciidoc.svg │ │ │ │ ├── assembly.svg │ │ │ │ ├── audio.svg │ │ │ │ ├── aurelia.svg │ │ │ │ ├── authors.svg │ │ │ │ ├── autohotkey.svg │ │ │ │ ├── autoit.svg │ │ │ │ ├── azure-pipelines.svg │ │ │ │ ├── azure.svg │ │ │ │ ├── babel.svg │ │ │ │ ├── ballerina.svg │ │ │ │ ├── bazel.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bithound.svg │ │ │ │ ├── blink.svg │ │ │ │ ├── blink_light.svg │ │ │ │ ├── bower.svg │ │ │ │ ├── browserlist.svg │ │ │ │ ├── browserlist_light.svg │ │ │ │ ├── bucklescript.svg │ │ │ │ ├── buildkite.svg │ │ │ │ ├── c.svg │ │ │ │ ├── cabal.svg │ │ │ │ ├── cake.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── changelog.svg │ │ │ │ ├── circleci.svg │ │ │ │ ├── circleci_light.svg │ │ │ │ ├── clojure.svg │ │ │ │ ├── cloudfoundry.svg │ │ │ │ ├── cmake.svg │ │ │ │ ├── code-climate.svg │ │ │ │ ├── code-climate_light.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── coldfusion.svg │ │ │ │ ├── conduct.svg │ │ │ │ ├── console.svg │ │ │ │ ├── contributing.svg │ │ │ │ ├── cpp.svg │ │ │ │ ├── credits.svg │ │ │ │ ├── crystal.svg │ │ │ │ ├── crystal_light.svg │ │ │ │ ├── csharp.svg │ │ │ │ ├── css-map.svg │ │ │ │ ├── css.svg │ │ │ │ ├── cucumber.svg │ │ │ │ ├── cuda.svg │ │ │ │ ├── d.svg │ │ │ │ ├── dart.svg │ │ │ │ ├── database.svg │ │ │ │ ├── diff.svg │ │ │ │ ├── django.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── document.svg │ │ │ │ ├── dotjs.svg │ │ │ │ ├── drone.svg │ │ │ │ ├── drone_light.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── editorconfig.svg │ │ │ │ ├── ejs.svg │ │ │ │ ├── elixir.svg │ │ │ │ ├── elm.svg │ │ │ │ ├── email.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── eslint.svg │ │ │ │ ├── exe.svg │ │ │ │ ├── fastlane.svg │ │ │ │ ├── favicon.svg │ │ │ │ ├── file.svg │ │ │ │ ├── firebase.svg │ │ │ │ ├── flash.svg │ │ │ │ ├── flow.svg │ │ │ │ ├── folder-android-open.svg │ │ │ │ ├── folder-android.svg │ │ │ │ ├── folder-animation-open.svg │ │ │ │ ├── folder-animation.svg │ │ │ │ ├── folder-ansible-open.svg │ │ │ │ ├── folder-ansible.svg │ │ │ │ ├── folder-api-open.svg │ │ │ │ ├── folder-api.svg │ │ │ │ ├── folder-app-open.svg │ │ │ │ ├── folder-app.svg │ │ │ │ ├── folder-archive-open.svg │ │ │ │ ├── folder-archive.svg │ │ │ │ ├── folder-audio-open.svg │ │ │ │ ├── folder-audio.svg │ │ │ │ ├── folder-aurelia-open.svg │ │ │ │ ├── folder-aurelia.svg │ │ │ │ ├── folder-aws-open.svg │ │ │ │ ├── folder-aws.svg │ │ │ │ ├── folder-batch-open.svg │ │ │ │ ├── folder-batch.svg │ │ │ │ ├── folder-benchmark-open.svg │ │ │ │ ├── folder-benchmark.svg │ │ │ │ ├── folder-bower-open.svg │ │ │ │ ├── folder-bower.svg │ │ │ │ ├── folder-ci-open.svg │ │ │ │ ├── folder-ci.svg │ │ │ │ ├── folder-circleci-open.svg │ │ │ │ ├── folder-circleci.svg │ │ │ │ ├── folder-class-open.svg │ │ │ │ ├── folder-class.svg │ │ │ │ ├── folder-client-open.svg │ │ │ │ ├── folder-client.svg │ │ │ │ ├── folder-cluster-open.svg │ │ │ │ ├── folder-cluster.svg │ │ │ │ ├── folder-command-open.svg │ │ │ │ ├── folder-command.svg │ │ │ │ ├── folder-components-open.svg │ │ │ │ ├── folder-components.svg │ │ │ │ ├── folder-config-open.svg │ │ │ │ ├── folder-config.svg │ │ │ │ ├── folder-constant-open.svg │ │ │ │ ├── folder-constant.svg │ │ │ │ ├── folder-container-open.svg │ │ │ │ ├── folder-container.svg │ │ │ │ ├── folder-content-open.svg │ │ │ │ ├── folder-content.svg │ │ │ │ ├── folder-controller-open.svg │ │ │ │ ├── folder-controller.svg │ │ │ │ ├── folder-core-open.svg │ │ │ │ ├── folder-core.svg │ │ │ │ ├── folder-coverage-open.svg │ │ │ │ ├── folder-coverage.svg │ │ │ │ ├── folder-css-open.svg │ │ │ │ ├── folder-css.svg │ │ │ │ ├── folder-custom-open.svg │ │ │ │ ├── folder-custom.svg │ │ │ │ ├── folder-database-open.svg │ │ │ │ ├── folder-database.svg │ │ │ │ ├── folder-debug-open.svg │ │ │ │ ├── folder-debug.svg │ │ │ │ ├── folder-delta-open.svg │ │ │ │ ├── folder-delta.svg │ │ │ │ ├── folder-dist-open.svg │ │ │ │ ├── folder-dist.svg │ │ │ │ ├── folder-docker-open.svg │ │ │ │ ├── folder-docker.svg │ │ │ │ ├── folder-docs-open.svg │ │ │ │ ├── folder-docs.svg │ │ │ │ ├── folder-download-open.svg │ │ │ │ ├── folder-download.svg │ │ │ │ ├── folder-dump-open.svg │ │ │ │ ├── folder-dump.svg │ │ │ │ ├── folder-environment-open.svg │ │ │ │ ├── folder-environment.svg │ │ │ │ ├── folder-examples-open.svg │ │ │ │ ├── folder-examples.svg │ │ │ │ ├── folder-expo-open.svg │ │ │ │ ├── folder-expo.svg │ │ │ │ ├── folder-export-open.svg │ │ │ │ ├── folder-export.svg │ │ │ │ ├── folder-fastlane-open.svg │ │ │ │ ├── folder-fastlane.svg │ │ │ │ ├── folder-flow-open.svg │ │ │ │ ├── folder-flow.svg │ │ │ │ ├── folder-font-open.svg │ │ │ │ ├── folder-font.svg │ │ │ │ ├── folder-functions-open.svg │ │ │ │ ├── folder-functions.svg │ │ │ │ ├── folder-generator-open.svg │ │ │ │ ├── folder-generator.svg │ │ │ │ ├── folder-git-open.svg │ │ │ │ ├── folder-git.svg │ │ │ │ ├── folder-github-open.svg │ │ │ │ ├── folder-github.svg │ │ │ │ ├── folder-gitlab-open.svg │ │ │ │ ├── folder-gitlab.svg │ │ │ │ ├── folder-global-open.svg │ │ │ │ ├── folder-global.svg │ │ │ │ ├── folder-gradle-open.svg │ │ │ │ ├── folder-gradle.svg │ │ │ │ ├── folder-graphql-open.svg │ │ │ │ ├── folder-graphql.svg │ │ │ │ ├── folder-guard-open.svg │ │ │ │ ├── folder-guard.svg │ │ │ │ ├── folder-helper-open.svg │ │ │ │ ├── folder-helper.svg │ │ │ │ ├── folder-hook-open.svg │ │ │ │ ├── folder-hook.svg │ │ │ │ ├── folder-i18n-open.svg │ │ │ │ ├── folder-i18n.svg │ │ │ │ ├── folder-images-open.svg │ │ │ │ ├── folder-images.svg │ │ │ │ ├── folder-import-open.svg │ │ │ │ ├── folder-import.svg │ │ │ │ ├── folder-include-open.svg │ │ │ │ ├── folder-include.svg │ │ │ │ ├── folder-ios-open.svg │ │ │ │ ├── folder-ios.svg │ │ │ │ ├── folder-javascript-open.svg │ │ │ │ ├── folder-javascript.svg │ │ │ │ ├── folder-jinja-open.svg │ │ │ │ ├── folder-jinja-open_light.svg │ │ │ │ ├── folder-jinja.svg │ │ │ │ ├── folder-jinja_light.svg │ │ │ │ ├── folder-job-open.svg │ │ │ │ ├── folder-job.svg │ │ │ │ ├── folder-keys-open.svg │ │ │ │ ├── folder-keys.svg │ │ │ │ ├── folder-kubernetes-open.svg │ │ │ │ ├── folder-kubernetes.svg │ │ │ │ ├── folder-layout-open.svg │ │ │ │ ├── folder-layout.svg │ │ │ │ ├── folder-less-open.svg │ │ │ │ ├── folder-less.svg │ │ │ │ ├── folder-lib-open.svg │ │ │ │ ├── folder-lib.svg │ │ │ │ ├── folder-log-open.svg │ │ │ │ ├── folder-log.svg │ │ │ │ ├── folder-mail-open.svg │ │ │ │ ├── folder-mail.svg │ │ │ │ ├── folder-mappings-open.svg │ │ │ │ ├── folder-mappings.svg │ │ │ │ ├── folder-markdown-open.svg │ │ │ │ ├── folder-markdown.svg │ │ │ │ ├── folder-messages-open.svg │ │ │ │ ├── folder-messages.svg │ │ │ │ ├── folder-meta-open.svg │ │ │ │ ├── folder-meta.svg │ │ │ │ ├── folder-middleware-open.svg │ │ │ │ ├── folder-middleware.svg │ │ │ │ ├── folder-mock-open.svg │ │ │ │ ├── folder-mock.svg │ │ │ │ ├── folder-ngrx-actions-open.svg │ │ │ │ ├── folder-ngrx-actions.svg │ │ │ │ ├── folder-ngrx-effects-open.svg │ │ │ │ ├── folder-ngrx-effects.svg │ │ │ │ ├── folder-ngrx-entities-open.svg │ │ │ │ ├── folder-ngrx-entities.svg │ │ │ │ ├── folder-ngrx-reducer-open.svg │ │ │ │ ├── folder-ngrx-reducer.svg │ │ │ │ ├── folder-ngrx-state-open.svg │ │ │ │ ├── folder-ngrx-state.svg │ │ │ │ ├── folder-ngrx-store-open.svg │ │ │ │ ├── folder-ngrx-store.svg │ │ │ │ ├── folder-node-open.svg │ │ │ │ ├── folder-node.svg │ │ │ │ ├── folder-nuxt-open.svg │ │ │ │ ├── folder-nuxt.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-other-open.svg │ │ │ │ ├── folder-other.svg │ │ │ │ ├── folder-packages-open.svg │ │ │ │ ├── folder-packages.svg │ │ │ │ ├── folder-php-open.svg │ │ │ │ ├── folder-php.svg │ │ │ │ ├── folder-phpmailer-open.svg │ │ │ │ ├── folder-phpmailer.svg │ │ │ │ ├── folder-pipe-open.svg │ │ │ │ ├── folder-pipe.svg │ │ │ │ ├── folder-plugin-open.svg │ │ │ │ ├── folder-plugin.svg │ │ │ │ ├── folder-prisma-open.svg │ │ │ │ ├── folder-prisma.svg │ │ │ │ ├── folder-private-open.svg │ │ │ │ ├── folder-private.svg │ │ │ │ ├── folder-public-open.svg │ │ │ │ ├── folder-public.svg │ │ │ │ ├── folder-python-open.svg │ │ │ │ ├── folder-python.svg │ │ │ │ ├── folder-react-components-open.svg │ │ │ │ ├── folder-react-components.svg │ │ │ │ ├── folder-redux-actions-open.svg │ │ │ │ ├── folder-redux-actions.svg │ │ │ │ ├── folder-redux-reducer-open.svg │ │ │ │ ├── folder-redux-reducer.svg │ │ │ │ ├── folder-redux-store-open.svg │ │ │ │ ├── folder-redux-store.svg │ │ │ │ ├── folder-resource-open.svg │ │ │ │ ├── folder-resource.svg │ │ │ │ ├── folder-review-open.svg │ │ │ │ ├── folder-review.svg │ │ │ │ ├── folder-root-open.svg │ │ │ │ ├── folder-root.svg │ │ │ │ ├── folder-routes-open.svg │ │ │ │ ├── folder-routes.svg │ │ │ │ ├── folder-rules-open.svg │ │ │ │ ├── folder-rules.svg │ │ │ │ ├── folder-sass-open.svg │ │ │ │ ├── folder-sass.svg │ │ │ │ ├── folder-scripts-open.svg │ │ │ │ ├── folder-scripts.svg │ │ │ │ ├── folder-secure-open.svg │ │ │ │ ├── folder-secure.svg │ │ │ │ ├── folder-server-open.svg │ │ │ │ ├── folder-server.svg │ │ │ │ ├── folder-serverless-open.svg │ │ │ │ ├── folder-serverless.svg │ │ │ │ ├── folder-shared-open.svg │ │ │ │ ├── folder-shared.svg │ │ │ │ ├── folder-src-open.svg │ │ │ │ ├── folder-src.svg │ │ │ │ ├── folder-stack-open.svg │ │ │ │ ├── folder-stack.svg │ │ │ │ ├── folder-stylus-open.svg │ │ │ │ ├── folder-stylus.svg │ │ │ │ ├── folder-sublime-open.svg │ │ │ │ ├── folder-sublime.svg │ │ │ │ ├── folder-svg-open.svg │ │ │ │ ├── folder-svg.svg │ │ │ │ ├── folder-syntax-open.svg │ │ │ │ ├── folder-syntax.svg │ │ │ │ ├── folder-tasks-open.svg │ │ │ │ ├── folder-tasks.svg │ │ │ │ ├── folder-temp-open.svg │ │ │ │ ├── folder-temp.svg │ │ │ │ ├── folder-template-open.svg │ │ │ │ ├── folder-template.svg │ │ │ │ ├── folder-test-open.svg │ │ │ │ ├── folder-test.svg │ │ │ │ ├── folder-theme-open.svg │ │ │ │ ├── folder-theme.svg │ │ │ │ ├── folder-tools-open.svg │ │ │ │ ├── folder-tools.svg │ │ │ │ ├── folder-typescript-open.svg │ │ │ │ ├── folder-typescript.svg │ │ │ │ ├── folder-upload-open.svg │ │ │ │ ├── folder-upload.svg │ │ │ │ ├── folder-utils-open.svg │ │ │ │ ├── folder-utils.svg │ │ │ │ ├── folder-video-open.svg │ │ │ │ ├── folder-video.svg │ │ │ │ ├── folder-views-open.svg │ │ │ │ ├── folder-views.svg │ │ │ │ ├── folder-vm-open.svg │ │ │ │ ├── folder-vm.svg │ │ │ │ ├── folder-vscode-open.svg │ │ │ │ ├── folder-vscode.svg │ │ │ │ ├── folder-vue-directives-open.svg │ │ │ │ ├── folder-vue-directives.svg │ │ │ │ ├── folder-vue-open.svg │ │ │ │ ├── folder-vue.svg │ │ │ │ ├── folder-vuex-store-open.svg │ │ │ │ ├── folder-vuex-store.svg │ │ │ │ ├── folder-wakatime-open.svg │ │ │ │ ├── folder-wakatime.svg │ │ │ │ ├── folder-webpack-open.svg │ │ │ │ ├── folder-webpack.svg │ │ │ │ ├── folder-wordpress-open.svg │ │ │ │ ├── folder-wordpress.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font.svg │ │ │ │ ├── foxpro.svg │ │ │ │ ├── fsharp.svg │ │ │ │ ├── fusebox.svg │ │ │ │ ├── gatsby.svg │ │ │ │ ├── gemfile.svg │ │ │ │ ├── git.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── go.svg │ │ │ │ ├── go_gopher.svg │ │ │ │ ├── godot-assets.svg │ │ │ │ ├── godot.svg │ │ │ │ ├── gradle.svg │ │ │ │ ├── graphcool.svg │ │ │ │ ├── graphql.svg │ │ │ │ ├── groovy.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── h.svg │ │ │ │ ├── hack.svg │ │ │ │ ├── haml.svg │ │ │ │ ├── handlebars.svg │ │ │ │ ├── haskell.svg │ │ │ │ ├── haxe.svg │ │ │ │ ├── hcl.svg │ │ │ │ ├── hcl_light.svg │ │ │ │ ├── helm.svg │ │ │ │ ├── heroku.svg │ │ │ │ ├── hpp.svg │ │ │ │ ├── html.svg │ │ │ │ ├── http.svg │ │ │ │ ├── i18n.svg │ │ │ │ ├── image.svg │ │ │ │ ├── ionic.svg │ │ │ │ ├── istanbul.svg │ │ │ │ ├── java.svg │ │ │ │ ├── javascript-map.svg │ │ │ │ ├── javascript.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jest.svg │ │ │ │ ├── jinja.svg │ │ │ │ ├── jinja_light.svg │ │ │ │ ├── json.svg │ │ │ │ ├── julia.svg │ │ │ │ ├── jupyter.svg │ │ │ │ ├── karma.svg │ │ │ │ ├── key.svg │ │ │ │ ├── kivy.svg │ │ │ │ ├── kl.svg │ │ │ │ ├── kotlin.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── less.svg │ │ │ │ ├── lib.svg │ │ │ │ ├── licence.md │ │ │ │ ├── livescript.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── log.svg │ │ │ │ ├── lua.svg │ │ │ │ ├── makefile.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── markojs.svg │ │ │ │ ├── mathematica.svg │ │ │ │ ├── matlab.svg │ │ │ │ ├── mdx.svg │ │ │ │ ├── merlin.svg │ │ │ │ ├── mint.svg │ │ │ │ ├── mjml.svg │ │ │ │ ├── mocha.svg │ │ │ │ ├── mxml.svg │ │ │ │ ├── netlify.svg │ │ │ │ ├── ngrx-actions.svg │ │ │ │ ├── ngrx-effects.svg │ │ │ │ ├── ngrx-entity.svg │ │ │ │ ├── ngrx-reducer.svg │ │ │ │ ├── ngrx-state.svg │ │ │ │ ├── nim.svg │ │ │ │ ├── nix.svg │ │ │ │ ├── nodejs.svg │ │ │ │ ├── nodejs_alt.svg │ │ │ │ ├── nodemon.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── nunjucks.svg │ │ │ │ ├── nuxt.svg │ │ │ │ ├── ocaml.svg │ │ │ │ ├── pdf.svg │ │ │ │ ├── perl.svg │ │ │ │ ├── php.svg │ │ │ │ ├── php_elephant.svg │ │ │ │ ├── pl.svg │ │ │ │ ├── pltp.svg │ │ │ │ ├── postcss.svg │ │ │ │ ├── powerpoint.svg │ │ │ │ ├── powershell.svg │ │ │ │ ├── prettier.svg │ │ │ │ ├── prisma.svg │ │ │ │ ├── processing.svg │ │ │ │ ├── processing_light.svg │ │ │ │ ├── protractor.svg │ │ │ │ ├── pug.svg │ │ │ │ ├── puppet.svg │ │ │ │ ├── purescript.svg │ │ │ │ ├── python-misc.svg │ │ │ │ ├── python.svg │ │ │ │ ├── r.svg │ │ │ │ ├── racket.svg │ │ │ │ ├── raml.svg │ │ │ │ ├── razor.svg │ │ │ │ ├── react.svg │ │ │ │ ├── react_ts.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── reason.svg │ │ │ │ ├── red.svg │ │ │ │ ├── redux-action.svg │ │ │ │ ├── redux-reducer.svg │ │ │ │ ├── redux-store.svg │ │ │ │ ├── restql.svg │ │ │ │ ├── riot.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rollup.svg │ │ │ │ ├── routing.svg │ │ │ │ ├── ruby.svg │ │ │ │ ├── rust.svg │ │ │ │ ├── san.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── sbt.svg │ │ │ │ ├── scala.svg │ │ │ │ ├── scheme.svg │ │ │ │ ├── semantic-release.svg │ │ │ │ ├── semantic-release_light.svg │ │ │ │ ├── sequelize.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── shaderlab.svg │ │ │ │ ├── silverstripe.svg │ │ │ │ ├── slim.svg │ │ │ │ ├── smarty.svg │ │ │ │ ├── snyk.svg │ │ │ │ ├── solidity.svg │ │ │ │ ├── stencil.svg │ │ │ │ ├── stencil_light.svg │ │ │ │ ├── storybook.svg │ │ │ │ ├── stylelint.svg │ │ │ │ ├── stylelint_light.svg │ │ │ │ ├── stylus.svg │ │ │ │ ├── sublime.svg │ │ │ │ ├── svelte.svg │ │ │ │ ├── svg.svg │ │ │ │ ├── swc.svg │ │ │ │ ├── swift.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tailwindcss.svg │ │ │ │ ├── terraform.svg │ │ │ │ ├── test-js.svg │ │ │ │ ├── test-jsx.svg │ │ │ │ ├── test-ts.svg │ │ │ │ ├── tex.svg │ │ │ │ ├── todo.svg │ │ │ │ ├── travis.svg │ │ │ │ ├── tune.svg │ │ │ │ ├── twig.svg │ │ │ │ ├── typescript-def.svg │ │ │ │ ├── typescript.svg │ │ │ │ ├── url.svg │ │ │ │ ├── vagrant.svg │ │ │ │ ├── velocity.svg │ │ │ │ ├── verilog.svg │ │ │ │ ├── vfl.svg │ │ │ │ ├── video.svg │ │ │ │ ├── virtual.svg │ │ │ │ ├── visualstudio.svg │ │ │ │ ├── vscode.svg │ │ │ │ ├── vue-config.svg │ │ │ │ ├── vue.svg │ │ │ │ ├── vuex-store.svg │ │ │ │ ├── wakatime.svg │ │ │ │ ├── wakatime_light.svg │ │ │ │ ├── wallaby.svg │ │ │ │ ├── watchman.svg │ │ │ │ ├── webassembly.svg │ │ │ │ ├── webhint.svg │ │ │ │ ├── webpack.svg │ │ │ │ ├── wepy.svg │ │ │ │ ├── wolframlanguage.svg │ │ │ │ ├── word.svg │ │ │ │ ├── xaml.svg │ │ │ │ ├── xml.svg │ │ │ │ ├── yaml.svg │ │ │ │ ├── yang.svg │ │ │ │ ├── yarn.svg │ │ │ │ └── zip.svg │ │ │ └── vscode │ │ │ │ ├── LICENSE │ │ │ │ ├── dark │ │ │ │ ├── activate-breakpoints.svg │ │ │ │ ├── add.svg │ │ │ │ ├── array.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── book.svg │ │ │ │ ├── boolean.svg │ │ │ │ ├── breakpoint-conditional-unverified.svg │ │ │ │ ├── breakpoint-conditional.svg │ │ │ │ ├── breakpoint-log-unverified.svg │ │ │ │ ├── breakpoint-log.svg │ │ │ │ ├── case-sensitive.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── circle-filled.svg │ │ │ │ ├── circle-outline.svg │ │ │ │ ├── class.svg │ │ │ │ ├── clear-all.svg │ │ │ │ ├── close-all.svg │ │ │ │ ├── close.svg │ │ │ │ ├── collapse-all.svg │ │ │ │ ├── color.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── compare-changes.svg │ │ │ │ ├── console.svg │ │ │ │ ├── constant.svg │ │ │ │ ├── continue.svg │ │ │ │ ├── current-and-breakpoint.svg │ │ │ │ ├── current.svg │ │ │ │ ├── debug.svg │ │ │ │ ├── discard.svg │ │ │ │ ├── disconnect-.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── editor-layout.svg │ │ │ │ ├── ellipsis.svg │ │ │ │ ├── empty-window.svg │ │ │ │ ├── enumerator-member.svg │ │ │ │ ├── enumerator.svg │ │ │ │ ├── error.svg │ │ │ │ ├── event.svg │ │ │ │ ├── exclude.svg │ │ │ │ ├── extensions.svg │ │ │ │ ├── field.svg │ │ │ │ ├── file.svg │ │ │ │ ├── files.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── folder-active.svg │ │ │ │ ├── folder-opened.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── gear.svg │ │ │ │ ├── go-to-file.svg │ │ │ │ ├── gripper.svg │ │ │ │ ├── info.svg │ │ │ │ ├── interface.svg │ │ │ │ ├── issues.svg │ │ │ │ ├── json.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyword.svg │ │ │ │ ├── lightbulb-autofix.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── loading.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── method.svg │ │ │ │ ├── misc.svg │ │ │ │ ├── more.svg │ │ │ │ ├── move.svg │ │ │ │ ├── multiple-windows.svg │ │ │ │ ├── namespace.svg │ │ │ │ ├── new-file.svg │ │ │ │ ├── new-folder.svg │ │ │ │ ├── numeric.svg │ │ │ │ ├── open-preview.svg │ │ │ │ ├── operator.svg │ │ │ │ ├── parameter.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── play.svg │ │ │ │ ├── preserve-case.svg │ │ │ │ ├── preview.svg │ │ │ │ ├── property.svg │ │ │ │ ├── reactions.svg │ │ │ │ ├── record-keys.svg │ │ │ │ ├── references.svg │ │ │ │ ├── refresh.svg │ │ │ │ ├── regex.svg │ │ │ │ ├── remove.svg │ │ │ │ ├── replace-all.svg │ │ │ │ ├── replace.svg │ │ │ │ ├── restart.svg │ │ │ │ ├── root-folder-opened.svg │ │ │ │ ├── root-folder.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── save-all.svg │ │ │ │ ├── save-as.svg │ │ │ │ ├── save.svg │ │ │ │ ├── search-stop.svg │ │ │ │ ├── search.svg │ │ │ │ ├── selection.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── snippet.svg │ │ │ │ ├── sort-precedence.svg │ │ │ │ ├── source-control.svg │ │ │ │ ├── split-horizontal.svg │ │ │ │ ├── split-vertical.svg │ │ │ │ ├── star-empty.svg │ │ │ │ ├── star-full.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── start.svg │ │ │ │ ├── step-into.svg │ │ │ │ ├── step-out.svg │ │ │ │ ├── step-over.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── string.svg │ │ │ │ ├── structure.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── variable.svg │ │ │ │ ├── vm-active.svg │ │ │ │ ├── vm-running.svg │ │ │ │ ├── vm-stopped.svg │ │ │ │ ├── vm.svg │ │ │ │ ├── warning.svg │ │ │ │ ├── whitespace.svg │ │ │ │ ├── whole-word.svg │ │ │ │ ├── window.svg │ │ │ │ ├── word-wrap.svg │ │ │ │ ├── zoom-in.svg │ │ │ │ └── zoom-out.svg │ │ │ │ └── light │ │ │ │ ├── activate-breakpoints.svg │ │ │ │ ├── add.svg │ │ │ │ ├── array.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── book.svg │ │ │ │ ├── boolean.svg │ │ │ │ ├── breakpoint-conditional-unverified.svg │ │ │ │ ├── breakpoint-conditional.svg │ │ │ │ ├── breakpoint-log-unverified.svg │ │ │ │ ├── breakpoint-log.svg │ │ │ │ ├── case-sensitive.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── circle-filled.svg │ │ │ │ ├── circle-outline.svg │ │ │ │ ├── class.svg │ │ │ │ ├── clear-all.svg │ │ │ │ ├── close-all.svg │ │ │ │ ├── close.svg │ │ │ │ ├── collapse-all.svg │ │ │ │ ├── color.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── compare-changes.svg │ │ │ │ ├── console.svg │ │ │ │ ├── constant.svg │ │ │ │ ├── continue.svg │ │ │ │ ├── current-and-breakpoint.svg │ │ │ │ ├── current.svg │ │ │ │ ├── debug.svg │ │ │ │ ├── discard.svg │ │ │ │ ├── disconnect-.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── editor-layout.svg │ │ │ │ ├── ellipsis.svg │ │ │ │ ├── empty-window.svg │ │ │ │ ├── enumerator-member.svg │ │ │ │ ├── enumerator.svg │ │ │ │ ├── error.svg │ │ │ │ ├── event.svg │ │ │ │ ├── exclude.svg │ │ │ │ ├── extensions.svg │ │ │ │ ├── field.svg │ │ │ │ ├── file.svg │ │ │ │ ├── files.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── folder-active.svg │ │ │ │ ├── folder-opened.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── gear.svg │ │ │ │ ├── go-to-file.svg │ │ │ │ ├── gripper.svg │ │ │ │ ├── info.svg │ │ │ │ ├── interface.svg │ │ │ │ ├── issues.svg │ │ │ │ ├── json.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyword.svg │ │ │ │ ├── lightbulb-autofix.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── loading.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── method.svg │ │ │ │ ├── misc.svg │ │ │ │ ├── more.svg │ │ │ │ ├── move.svg │ │ │ │ ├── multiple-windows.svg │ │ │ │ ├── namespace.svg │ │ │ │ ├── new-file.svg │ │ │ │ ├── new-folder.svg │ │ │ │ ├── numeric.svg │ │ │ │ ├── open-preview.svg │ │ │ │ ├── operator.svg │ │ │ │ ├── parameter.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── play.svg │ │ │ │ ├── preserve-case.svg │ │ │ │ ├── preview.svg │ │ │ │ ├── property.svg │ │ │ │ ├── reactions.svg │ │ │ │ ├── record-keys.svg │ │ │ │ ├── references.svg │ │ │ │ ├── refresh.svg │ │ │ │ ├── regex.svg │ │ │ │ ├── remove.svg │ │ │ │ ├── replace-all.svg │ │ │ │ ├── replace.svg │ │ │ │ ├── restart.svg │ │ │ │ ├── root-folder-opened.svg │ │ │ │ ├── root-folder.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── save-all.svg │ │ │ │ ├── save-as.svg │ │ │ │ ├── save.svg │ │ │ │ ├── search-stop.svg │ │ │ │ ├── search.svg │ │ │ │ ├── selection.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── snippet.svg │ │ │ │ ├── sort-precedence.svg │ │ │ │ ├── source-control.svg │ │ │ │ ├── split-horizontal.svg │ │ │ │ ├── split-vertical.svg │ │ │ │ ├── star-empty.svg │ │ │ │ ├── star-full.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── start.svg │ │ │ │ ├── step-into.svg │ │ │ │ ├── step-out.svg │ │ │ │ ├── step-over.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── string.svg │ │ │ │ ├── structure.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── variable.svg │ │ │ │ ├── vm-active.svg │ │ │ │ ├── vm-running.svg │ │ │ │ ├── vm-stopped.svg │ │ │ │ ├── vm.svg │ │ │ │ ├── warning.svg │ │ │ │ ├── whitespace.svg │ │ │ │ ├── whole-word.svg │ │ │ │ ├── window.svg │ │ │ │ ├── word-wrap.svg │ │ │ │ ├── zoom-in.svg │ │ │ │ └── zoom-out.svg │ │ ├── images │ │ │ ├── embed-style.png │ │ │ └── interface.png │ │ ├── min-maps │ │ │ └── vs │ │ │ │ ├── base │ │ │ │ └── worker │ │ │ │ │ └── workerMain.js.map │ │ │ │ ├── editor │ │ │ │ ├── editor.main.js.map │ │ │ │ ├── editor.main.nls.de.js.map │ │ │ │ ├── editor.main.nls.es.js.map │ │ │ │ ├── editor.main.nls.fr.js.map │ │ │ │ ├── editor.main.nls.it.js.map │ │ │ │ ├── editor.main.nls.ja.js.map │ │ │ │ ├── editor.main.nls.js.map │ │ │ │ ├── editor.main.nls.ko.js.map │ │ │ │ ├── editor.main.nls.ru.js.map │ │ │ │ ├── editor.main.nls.zh-cn.js.map │ │ │ │ └── editor.main.nls.zh-tw.js.map │ │ │ │ └── loader.js.map │ │ └── snippets │ │ │ └── new-pl.txt │ ├── browserslist │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── karma.conf.js │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ ├── test.ts │ ├── theme │ │ ├── theme.editor.scss │ │ ├── theme.loading.scss │ │ ├── theme.material.scss │ │ └── theme.scss │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── tslint.json │ ├── tsconfig.json │ └── tslint.json ├── home └── lib │ ├── builder │ ├── before.py │ ├── build.py │ └── none.py │ ├── demo │ ├── all │ │ ├── Description.pl │ │ ├── Filltheblank.pl │ │ ├── Match.pl │ │ ├── MultipleGoodAnswers.pl │ │ ├── MultipleNumeric.pl │ │ ├── RangeAvecIntervalle.pl │ │ ├── RangeAvecTolerance.pl │ │ ├── SelectSet.pl │ │ ├── SelectWithFeedback.pl │ │ ├── Short.pl │ │ ├── TruFalse2.pl │ │ ├── TrueFalse1.pl │ │ └── all.pltp │ ├── random_add.pl │ ├── random_add_eval_func.pl │ ├── random_all.pltp │ ├── static_add.pl │ ├── template │ │ ├── aleaQCM__template.pl │ │ ├── blank_deroulant_template.pl │ │ ├── fill_the_blank_template.pl │ │ ├── match_template.pl │ │ ├── multiple_blank_template.pl │ │ ├── multiplechoices_template.pl │ │ ├── numeric_template.pl │ │ ├── select_template.pl │ │ ├── short_template.pl │ │ └── truefalse_template.pl │ └── wims │ │ ├── demo.pl │ │ ├── demo_upem.pl │ │ └── template.pl │ ├── example │ ├── java │ │ ├── junit.pl │ │ └── stdout_tests.pl │ └── python │ │ ├── condition.pl │ │ ├── enigma_decode.pl │ │ ├── enigma_encode.pl │ │ ├── fibonacci.pl │ │ ├── narc.pl │ │ ├── non_divisibles.pl │ │ ├── pyramide.pl │ │ ├── stack.pl │ │ ├── stdout_tests.pl │ │ ├── title_string.pl │ │ └── unittest.pl │ ├── form │ ├── simplenumeric.html │ ├── simpletextform.html │ ├── text_editor.html │ └── textarea.html │ ├── gift │ ├── demo.gift │ ├── demo │ │ ├── Q1.pl │ │ ├── Q2.pl │ │ ├── Q3.pl │ │ ├── Q4.pl │ │ ├── Q5.pl │ │ └── Q6.pl │ └── templates │ │ ├── qessay.pl │ │ ├── qmatch.pl │ │ ├── qmultichoice.pl │ │ ├── qnumericset.pl │ │ ├── qselectset.pl │ │ ├── qshortset.pl │ │ └── qtruefalse.pl │ ├── grader │ ├── evalfunc.py │ ├── evaluator.py │ ├── java.py │ └── python.py │ ├── python │ ├── 0PLG │ │ ├── TPE │ │ │ ├── empty.pl │ │ │ ├── error.pl │ │ │ ├── function001.pl │ │ │ ├── functionalea.pl │ │ │ ├── identificateurs.pl │ │ │ ├── names.py │ │ │ ├── operatorModulo.pl │ │ │ ├── test.html │ │ │ └── variableAkiki.pl │ │ ├── bjr.pltp │ │ ├── deux-concept.pltp │ │ ├── missingkey.pltp │ │ ├── plgrader.pltp │ │ ├── soluce.pl │ │ └── template.pl │ ├── AP1 │ │ └── TP1 │ │ │ ├── corrigemoi_1.pl │ │ │ ├── corrigemoi_2.pl │ │ │ ├── corrigemoi_3.pl │ │ │ ├── corrigemoi_4.pl │ │ │ ├── corrigemoi_5.pl │ │ │ ├── corrigemoi_6.pl │ │ │ ├── corrigemoi_7.pl │ │ │ └── firsterrors.pltp │ ├── IUT │ │ ├── TP1 │ │ │ ├── CodeCogsEqn.gif │ │ │ ├── constantestypes.pl │ │ │ ├── error.pl │ │ │ ├── errorindent.pl │ │ │ ├── errorsyntax.pl │ │ │ ├── errortype.pl │ │ │ ├── identificateurs.pl │ │ │ ├── ififif.pl │ │ │ ├── operator001.pl │ │ │ ├── operator002.pl │ │ │ ├── operator003.pl │ │ │ ├── printbonjour.pl │ │ │ ├── printinput.pl │ │ │ ├── tp1.pltp │ │ │ └── variabletypes.pl │ │ └── template.pl │ ├── PLTP │ │ ├── L1 │ │ │ ├── L1mathinfotp01.pltp │ │ │ └── L1mathinfotp02.pltp │ │ ├── func1.pltp │ │ ├── func2.pltp │ │ ├── iut_tp1.pltp │ │ ├── old │ │ │ ├── basic.pltp │ │ │ ├── debug.pltp │ │ │ ├── demo1.pltp │ │ │ ├── errorinclude.pltp │ │ │ ├── functions.pltp │ │ │ ├── maynooth-2.pltp │ │ │ ├── maynooth.pltp │ │ │ ├── testF1.pltp │ │ │ ├── testFonctionnel.pltp │ │ │ ├── testOutFormat.pltp │ │ │ ├── testlignevide.pltp │ │ │ └── toto.pltp │ │ └── premiers.pltp │ ├── TP1 │ │ ├── nuitsdamour.pl │ │ ├── soluce.py │ │ └── valeurs.pl │ ├── all.pltp │ ├── bool │ │ ├── bonlcond.pl │ │ ├── sisi01.pl │ │ ├── sisi02.pl │ │ ├── sisi03.pl │ │ ├── sisi04.pl │ │ └── tridetrois.pl │ ├── conversion │ │ └── str_and_int.pl │ ├── dynamic │ │ ├── direct.pl │ │ ├── dyna.pltp │ │ ├── dyna1.pl │ │ ├── dyna2.pl │ │ ├── dyna3.pl │ │ ├── dyna4.pl │ │ ├── dyna5.pl │ │ ├── dyna6.pl │ │ ├── dyna7.pl │ │ ├── dyna8.pl │ │ ├── dyna9.pl │ │ ├── dynaexemple.py │ │ ├── dynamic.pl │ │ ├── idee.md │ │ └── readme.md │ ├── exemple │ │ ├── pldicjson.py │ │ ├── plgrader │ │ │ ├── error.pl │ │ │ ├── function001.pl │ │ │ ├── identificateurs.pl │ │ │ ├── nav.html │ │ │ ├── one.pls │ │ │ ├── one_with_code.pls │ │ │ ├── operator001.pl │ │ │ └── plgrader.pltp │ │ ├── variadic.pl │ │ └── writeinbase.py │ ├── form │ │ └── editorform.html │ ├── function │ │ ├── Sundaram.pl │ │ ├── autosubsets.pl │ │ ├── carre.pl │ │ ├── carrecube.pl │ │ ├── decomposition.pl │ │ ├── estpremier.pl │ │ ├── estpremier2.pl │ │ ├── funcpuis.pl │ │ ├── functiongrader.py │ │ ├── funcvoyelle.pl │ │ ├── gragra.py │ │ ├── histogramme1.pl │ │ ├── jumeaux.pl │ │ ├── pim.pl │ │ ├── pimret.pl │ │ ├── pom.pl │ │ ├── racinecarre.pl │ │ ├── randomcolor1.pl │ │ ├── romains.pl │ │ ├── romcode.pl │ │ ├── simplefunc1.pl │ │ ├── simplefunc2.pl │ │ ├── simplefunc3.pl │ │ ├── simplefunc4.pl │ │ ├── subsets.pl │ │ ├── testsimplefuncgrader.py │ │ ├── voyelles.py │ │ └── writebase.pl │ ├── input │ │ ├── ageCapitaine.pl │ │ ├── egalegal.pl │ │ ├── generator.py │ │ ├── plusmoins.pl │ │ ├── print1.pl │ │ ├── print2.pl │ │ └── quelage.pl │ ├── list │ │ ├── commonelementsist.pl │ │ ├── lireuneliste.pl │ │ ├── lireunelisteint.pl │ │ └── soussuite.pl │ ├── search │ │ ├── jumeaux.pl │ │ └── soluce.py │ ├── stack │ │ ├── stack.md │ │ ├── stackbasic.pl │ │ └── undopile.pl │ ├── string │ │ ├── Kolakoski.pl │ │ ├── capitalize.pl │ │ ├── conway.pl │ │ └── sort.pl │ ├── template │ │ └── tools │ │ │ └── makedescrp │ ├── test │ │ ├── template.pl │ │ └── test.pltp │ ├── test_editor.pl │ └── tuples │ │ ├── initlist1.pl │ │ ├── tuple1.pl │ │ └── tuple_template.pl │ ├── template │ ├── java.pl │ └── python.pl │ └── utils │ └── sandboxio.py ├── index_files.py ├── manage.py ├── premierlangage ├── __init__.py ├── jinja2_custom.py ├── settings.py ├── urls.py └── wsgi.py ├── requirements.txt ├── script ├── fill_database_local.py ├── fill_database_release.py ├── fill_local.py ├── index.py ├── install_apache.sh ├── install_local.sh ├── install_release.sh ├── reindex.py ├── run_database.sh └── stop_database.sh ├── setup.cfg ├── templates ├── 403.html ├── 404.html ├── alert.html ├── base.html ├── head.html └── header.html └── test └── config_test_pgsql.py /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/README.md -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/activity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/__init__.py -------------------------------------------------------------------------------- /apps/activity/activity_type/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/activity/activity_type/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/activity_type/base.py -------------------------------------------------------------------------------- /apps/activity/activity_type/course.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/activity_type/course.py -------------------------------------------------------------------------------- /apps/activity/activity_type/examen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/activity_type/examen.py -------------------------------------------------------------------------------- /apps/activity/activity_type/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/activity_type/exceptions.py -------------------------------------------------------------------------------- /apps/activity/activity_type/pltp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/activity_type/pltp.py -------------------------------------------------------------------------------- /apps/activity/activity_type/section.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/activity_type/section.py -------------------------------------------------------------------------------- /apps/activity/activity_type/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/activity_type/utils.py -------------------------------------------------------------------------------- /apps/activity/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/admin.py -------------------------------------------------------------------------------- /apps/activity/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/apps.py -------------------------------------------------------------------------------- /apps/activity/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/forms.py -------------------------------------------------------------------------------- /apps/activity/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/activity/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/mixins.py -------------------------------------------------------------------------------- /apps/activity/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/models.py -------------------------------------------------------------------------------- /apps/activity/templates/activity/activity_type/section/section.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/activity/tests/data/eleve_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/tests/data/eleve_data.csv -------------------------------------------------------------------------------- /apps/activity/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/tests/tests.py -------------------------------------------------------------------------------- /apps/activity/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/urls.py -------------------------------------------------------------------------------- /apps/activity/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/activity/views.py -------------------------------------------------------------------------------- /apps/cas_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/cas_app/__init__.py -------------------------------------------------------------------------------- /apps/cas_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/cas_app/apps.py -------------------------------------------------------------------------------- /apps/cas_app/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/cas_app/backends.py -------------------------------------------------------------------------------- /apps/cas_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/cas_app/urls.py -------------------------------------------------------------------------------- /apps/cas_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/cas_app/views.py -------------------------------------------------------------------------------- /apps/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/components/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/components/apps.py -------------------------------------------------------------------------------- /apps/components/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/components/components.py -------------------------------------------------------------------------------- /apps/components/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/components/static/components/assets/docs/automaton-viewer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/components/static/components/assets/docs/code-editor.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/components/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/components/tests.py -------------------------------------------------------------------------------- /apps/components/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/components/urls.py -------------------------------------------------------------------------------- /apps/components/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/components/views.py -------------------------------------------------------------------------------- /apps/editor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/editor/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/apps.py -------------------------------------------------------------------------------- /apps/editor/compilers/pl/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/compilers/pl/errors.py -------------------------------------------------------------------------------- /apps/editor/compilers/pl/parsetab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/compilers/pl/parsetab.py -------------------------------------------------------------------------------- /apps/editor/compilers/pl/pl_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/compilers/pl/pl_lexer.py -------------------------------------------------------------------------------- /apps/editor/compilers/pl/pl_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/compilers/pl/pl_parser.py -------------------------------------------------------------------------------- /apps/editor/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/editor/static/editor/5-es2015.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/static/editor/5-es2015.js -------------------------------------------------------------------------------- /apps/editor/static/editor/5-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/static/editor/5-es5.js -------------------------------------------------------------------------------- /apps/editor/static/editor/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/static/editor/favicon.ico -------------------------------------------------------------------------------- /apps/editor/static/editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/static/editor/index.html -------------------------------------------------------------------------------- /apps/editor/static/editor/main-es2015.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/static/editor/main-es2015.js -------------------------------------------------------------------------------- /apps/editor/static/editor/main-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/static/editor/main-es5.js -------------------------------------------------------------------------------- /apps/editor/static/editor/runtime-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/static/editor/runtime-es5.js -------------------------------------------------------------------------------- /apps/editor/static/editor/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/static/editor/styles.css -------------------------------------------------------------------------------- /apps/editor/templates/editor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/templates/editor/index.html -------------------------------------------------------------------------------- /apps/editor/templates/editor/statics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/templates/editor/statics.html -------------------------------------------------------------------------------- /apps/editor/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/editor/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/tests/test_views.py -------------------------------------------------------------------------------- /apps/editor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/urls.py -------------------------------------------------------------------------------- /apps/editor/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/editor/views.py -------------------------------------------------------------------------------- /apps/filebrowser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/__init__.py -------------------------------------------------------------------------------- /apps/filebrowser/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/admin.py -------------------------------------------------------------------------------- /apps/filebrowser/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/apps.py -------------------------------------------------------------------------------- /apps/filebrowser/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/filter.py -------------------------------------------------------------------------------- /apps/filebrowser/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/form.py -------------------------------------------------------------------------------- /apps/filebrowser/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/filebrowser/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/models.py -------------------------------------------------------------------------------- /apps/filebrowser/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/templatetags/__init__.py -------------------------------------------------------------------------------- /apps/filebrowser/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/filebrowser/tests/ressources/fake_filebrowser_data/TPE/Dir_test/test.txt: -------------------------------------------------------------------------------- 1 | test -------------------------------------------------------------------------------- /apps/filebrowser/tests/ressources/fake_filebrowser_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/filebrowser/tests/ressources/fake_filebrowser_data/truc.pl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/filebrowser/tests/ressources/fake_filebrowser_data/truc2.pltp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/filebrowser/tests/ressources/filter/directory/file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /apps/filebrowser/tests/ressources/filter/file.docx: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /apps/filebrowser/tests/ressources/filter/file.pdf: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /apps/filebrowser/tests/ressources/filter/file.pptx: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /apps/filebrowser/tests/ressources/filter/file.xls: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /apps/filebrowser/tests/ressources/filter/pl.pl: -------------------------------------------------------------------------------- 1 | is_pl 2 | -------------------------------------------------------------------------------- /apps/filebrowser/tests/ressources/filter/pltp.pltp: -------------------------------------------------------------------------------- 1 | is_pltp 2 | -------------------------------------------------------------------------------- /apps/filebrowser/tests/ressources/filter/text.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /apps/filebrowser/tests/ressources/walkdir/directory/file: -------------------------------------------------------------------------------- 1 | Text -------------------------------------------------------------------------------- /apps/filebrowser/tests/ressources/walkdir/text.txt: -------------------------------------------------------------------------------- 1 | text 2 | -------------------------------------------------------------------------------- /apps/filebrowser/tests/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/tests/test_filter.py -------------------------------------------------------------------------------- /apps/filebrowser/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/tests/test_models.py -------------------------------------------------------------------------------- /apps/filebrowser/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/tests/test_utils.py -------------------------------------------------------------------------------- /apps/filebrowser/tests/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/filebrowser/tests/views/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/tests/views/test_misc.py -------------------------------------------------------------------------------- /apps/filebrowser/tests/views/test_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/tests/views/test_move.py -------------------------------------------------------------------------------- /apps/filebrowser/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/urls.py -------------------------------------------------------------------------------- /apps/filebrowser/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/utils.py -------------------------------------------------------------------------------- /apps/filebrowser/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/filebrowser/views.py -------------------------------------------------------------------------------- /apps/git/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/git/__init__.py -------------------------------------------------------------------------------- /apps/git/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/git/apps.py -------------------------------------------------------------------------------- /apps/git/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/git/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/git/tests/test_views.py -------------------------------------------------------------------------------- /apps/git/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/git/urls.py -------------------------------------------------------------------------------- /apps/git/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/git/utils.py -------------------------------------------------------------------------------- /apps/git/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/git/views.py -------------------------------------------------------------------------------- /apps/loader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/__init__.py -------------------------------------------------------------------------------- /apps/loader/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/admin.py -------------------------------------------------------------------------------- /apps/loader/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/apps.py -------------------------------------------------------------------------------- /apps/loader/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/exceptions.py -------------------------------------------------------------------------------- /apps/loader/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/loader.py -------------------------------------------------------------------------------- /apps/loader/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/loader/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/models.py -------------------------------------------------------------------------------- /apps/loader/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/parser.py -------------------------------------------------------------------------------- /apps/loader/parsers/__init__.py: -------------------------------------------------------------------------------- 1 | # DO not erase 2 | -------------------------------------------------------------------------------- /apps/loader/parsers/gift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/parsers/gift.py -------------------------------------------------------------------------------- /apps/loader/parsers/pl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/parsers/pl.py -------------------------------------------------------------------------------- /apps/loader/parsers/pla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/parsers/pla.py -------------------------------------------------------------------------------- /apps/loader/parsers/pltp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/parsers/pltp.py -------------------------------------------------------------------------------- /apps/loader/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py 2 | -------------------------------------------------------------------------------- /apps/loader/tests/fake_gift/demo.gift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/fake_gift/demo.gift -------------------------------------------------------------------------------- /apps/loader/tests/fake_parser_pltp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/fake_parser_pltp.py -------------------------------------------------------------------------------- /apps/loader/tests/fake_parsers/__init__.py: -------------------------------------------------------------------------------- 1 | # k 2 | -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/append_no_key.pl: -------------------------------------------------------------------------------- 1 | a += 2 | b 3 | == -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/builder/none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/fake_pl/builder/none.py -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/extend.pl: -------------------------------------------------------------------------------- 1 | extends=working.pl 2 | c=c 3 | a=d -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/extend_no_dir.pl: -------------------------------------------------------------------------------- 1 | extends=working.pl -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/extend_unknown.pl: -------------------------------------------------------------------------------- 1 | extends=pl.unknown -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/extends_no_lib.pl: -------------------------------------------------------------------------------- 1 | extends=~/blabla -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/full.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/fake_pl/full.pl -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/image.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/fake_pl/image.pl -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/fake_pl/image.png -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/invalid_multiline_json.pl: -------------------------------------------------------------------------------- 1 | a%= 2 | {a:a} 3 | == -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/invalid_one_line_json.pl: -------------------------------------------------------------------------------- 1 | a%{a:a} -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/missing_pl.pltp: -------------------------------------------------------------------------------- 1 | title=missing pltp 2 | 3 | @ unknown.pl 4 | 5 | introduction== 6 | tests 7 | == 8 | 9 | -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/no_file_from.pl: -------------------------------------------------------------------------------- 1 | a=@~/__ -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/no_file_sandbox.pl: -------------------------------------------------------------------------------- 1 | @ ~/unknown.pl -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/no_image.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/fake_pl/no_image.pl -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/no_string_in_sub_key.pl: -------------------------------------------------------------------------------- 1 | a.=a -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/open_multiline.pl: -------------------------------------------------------------------------------- 1 | a== 2 | test -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/pl.unknown: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/prepend_no_key.pl: -------------------------------------------------------------------------------- 1 | a -= 2 | b 3 | == -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/reference_binary.pl: -------------------------------------------------------------------------------- 1 | @ image.png 2 | -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/syntax_error.pl: -------------------------------------------------------------------------------- 1 | a= -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/syntax_extends.pl: -------------------------------------------------------------------------------- 1 | extends=blabla:a -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/syntax_file.pl: -------------------------------------------------------------------------------- 1 | file=@blabla:a -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/syntax_sandbox.pl: -------------------------------------------------------------------------------- 1 | @ blabla:a -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/test_missing_key.pl: -------------------------------------------------------------------------------- 1 | a=a 2 | b=b -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/test_missing_key.pltp: -------------------------------------------------------------------------------- 1 | title= 2 | 3 | -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/working.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/fake_pl/working.pl -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/working.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/fake_pl/working.pla -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/working.pltp: -------------------------------------------------------------------------------- 1 | title=Random pltp 2 | 3 | @ working.pl 4 | 5 | introduction== 6 | Des tests 7 | == 8 | 9 | -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/working2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/fake_pl/working2.pl -------------------------------------------------------------------------------- /apps/loader/tests/fake_pl/working2.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/fake_pl/working2.pltp -------------------------------------------------------------------------------- /apps/loader/tests/fake_pltp/full.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/fake_pltp/full.pltp -------------------------------------------------------------------------------- /apps/loader/tests/fake_pltp/invalid_file.pltp: -------------------------------------------------------------------------------- 1 | @ blabla:a -------------------------------------------------------------------------------- /apps/loader/tests/fake_pltp/no_file.pltp: -------------------------------------------------------------------------------- 1 | @ ~/unknown.pltp -------------------------------------------------------------------------------- /apps/loader/tests/fake_pltp/syntax_error.pltp: -------------------------------------------------------------------------------- 1 | a= -------------------------------------------------------------------------------- /apps/loader/tests/fake_pltp/working.pla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/fake_pltp/working.pla -------------------------------------------------------------------------------- /apps/loader/tests/fake_pltp/working.pltp: -------------------------------------------------------------------------------- 1 | title=Random pltp 2 | 3 | introduction== 4 | Des tests 5 | == 6 | 7 | -------------------------------------------------------------------------------- /apps/loader/tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/test_exceptions.py -------------------------------------------------------------------------------- /apps/loader/tests/test_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/test_loader.py -------------------------------------------------------------------------------- /apps/loader/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/test_models.py -------------------------------------------------------------------------------- /apps/loader/tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/test_parser.py -------------------------------------------------------------------------------- /apps/loader/tests/test_parser_gift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/test_parser_gift.py -------------------------------------------------------------------------------- /apps/loader/tests/test_parser_pl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/test_parser_pl.py -------------------------------------------------------------------------------- /apps/loader/tests/test_parser_pltp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/test_parser_pltp.py -------------------------------------------------------------------------------- /apps/loader/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/test_utils.py -------------------------------------------------------------------------------- /apps/loader/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/tests/utils.py -------------------------------------------------------------------------------- /apps/loader/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/loader/utils.py -------------------------------------------------------------------------------- /apps/lti_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/lti_app/__init__.py -------------------------------------------------------------------------------- /apps/lti_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/lti_app/admin.py -------------------------------------------------------------------------------- /apps/lti_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/lti_app/apps.py -------------------------------------------------------------------------------- /apps/lti_app/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/lti_app/backends.py -------------------------------------------------------------------------------- /apps/lti_app/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/lti_app/middleware.py -------------------------------------------------------------------------------- /apps/lti_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/lti_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/lti_app/models.py -------------------------------------------------------------------------------- /apps/lti_app/outcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/lti_app/outcome.py -------------------------------------------------------------------------------- /apps/lti_app/request_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/lti_app/request_validator.py -------------------------------------------------------------------------------- /apps/lti_app/ressources/delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/lti_app/ressources/delete.xml -------------------------------------------------------------------------------- /apps/lti_app/ressources/readResult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/lti_app/ressources/readResult.xml -------------------------------------------------------------------------------- /apps/lti_app/ressources/result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/lti_app/ressources/result.xml -------------------------------------------------------------------------------- /apps/lti_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/lti_app/tests.py -------------------------------------------------------------------------------- /apps/misc_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/misc_tests/local_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/misc_tests/local_storage.py -------------------------------------------------------------------------------- /apps/misc_tests/resources/fake_filebrowser_data/cbank/template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/misc_tests/resources/fake_filebrowser_data/cbank/template/basic.c: -------------------------------------------------------------------------------- 1 | #include "student" 2 | 3 | -------------------------------------------------------------------------------- /apps/misc_tests/resources/fake_filebrowser_data/cbank/tools/values: -------------------------------------------------------------------------------- 1 | 400 2 20 -------------------------------------------------------------------------------- /apps/misc_tests/resources/lib/python/test_editor.pl: -------------------------------------------------------------------------------- 1 | L'éditeur crée-t-il e fichier? 2 | -------------------------------------------------------------------------------- /apps/misc_tests/test_selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/misc_tests/test_selenium.py -------------------------------------------------------------------------------- /apps/misc_tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/misc_tests/utils.py -------------------------------------------------------------------------------- /apps/playexo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/__init__.py -------------------------------------------------------------------------------- /apps/playexo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/admin.py -------------------------------------------------------------------------------- /apps/playexo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/apps.py -------------------------------------------------------------------------------- /apps/playexo/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/enums.py -------------------------------------------------------------------------------- /apps/playexo/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/exception.py -------------------------------------------------------------------------------- /apps/playexo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/playexo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/models.py -------------------------------------------------------------------------------- /apps/playexo/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/request.py -------------------------------------------------------------------------------- /apps/playexo/static/playexo/js/playexo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/static/playexo/js/playexo.js -------------------------------------------------------------------------------- /apps/playexo/templates/playexo/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/templates/playexo/error.html -------------------------------------------------------------------------------- /apps/playexo/templates/playexo/pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/templates/playexo/pl.html -------------------------------------------------------------------------------- /apps/playexo/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/playexo/templatetags/playexo_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/templatetags/playexo_tags.py -------------------------------------------------------------------------------- /apps/playexo/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/playexo/tests/fake_pl/before.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/tests/fake_pl/before.pl -------------------------------------------------------------------------------- /apps/playexo/tests/fake_pl/no_context.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/tests/fake_pl/no_context.pl -------------------------------------------------------------------------------- /apps/playexo/tests/fake_pl/notworking.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/tests/fake_pl/notworking.pl -------------------------------------------------------------------------------- /apps/playexo/tests/fake_pl/random_add.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/tests/fake_pl/random_add.pl -------------------------------------------------------------------------------- /apps/playexo/tests/fake_pl/static_add.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/tests/fake_pl/static_add.pl -------------------------------------------------------------------------------- /apps/playexo/tests/fake_pl/working.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/tests/fake_pl/working.pl -------------------------------------------------------------------------------- /apps/playexo/tests/test_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/tests/test_enums.py -------------------------------------------------------------------------------- /apps/playexo/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/tests/test_models.py -------------------------------------------------------------------------------- /apps/playexo/tests/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/tests/test_request.py -------------------------------------------------------------------------------- /apps/playexo/tests/test_templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/tests/test_templatetags.py -------------------------------------------------------------------------------- /apps/playexo/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/tests/test_utils.py -------------------------------------------------------------------------------- /apps/playexo/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/tests/test_views.py -------------------------------------------------------------------------------- /apps/playexo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/urls.py -------------------------------------------------------------------------------- /apps/playexo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/utils.py -------------------------------------------------------------------------------- /apps/playexo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/playexo/views.py -------------------------------------------------------------------------------- /apps/progress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/progress/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/progress/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/progress/apps.py -------------------------------------------------------------------------------- /apps/progress/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/progress/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/progress/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/progress/tests.py -------------------------------------------------------------------------------- /apps/progress/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/progress/urls.py -------------------------------------------------------------------------------- /apps/progress/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/progress/views.py -------------------------------------------------------------------------------- /apps/qa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/__init__.py -------------------------------------------------------------------------------- /apps/qa/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/admin.py -------------------------------------------------------------------------------- /apps/qa/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/apps.py -------------------------------------------------------------------------------- /apps/qa/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/qa/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/mixins.py -------------------------------------------------------------------------------- /apps/qa/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/models.py -------------------------------------------------------------------------------- /apps/qa/static/css/qa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/static/css/qa.css -------------------------------------------------------------------------------- /apps/qa/static/css/tagsinput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/static/css/tagsinput.css -------------------------------------------------------------------------------- /apps/qa/static/js/tagsinput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/static/js/tagsinput.js -------------------------------------------------------------------------------- /apps/qa/templates/qa/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/templates/qa/base.html -------------------------------------------------------------------------------- /apps/qa/templates/qa/detail_question.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/templates/qa/detail_question.html -------------------------------------------------------------------------------- /apps/qa/templates/qa/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/templates/qa/index.html -------------------------------------------------------------------------------- /apps/qa/templates/qa/list_questions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/templates/qa/list_questions.html -------------------------------------------------------------------------------- /apps/qa/templates/qa/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/templates/qa/paginator.html -------------------------------------------------------------------------------- /apps/qa/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/qa/templatetags/qa_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/templatetags/qa_tags.py -------------------------------------------------------------------------------- /apps/qa/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # init 2 | -------------------------------------------------------------------------------- /apps/qa/tests/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/tests/test_mixins.py -------------------------------------------------------------------------------- /apps/qa/tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/tests/test_model.py -------------------------------------------------------------------------------- /apps/qa/tests/test_qa_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/tests/test_qa_tags.py -------------------------------------------------------------------------------- /apps/qa/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/tests/test_utils.py -------------------------------------------------------------------------------- /apps/qa/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/tests/test_views.py -------------------------------------------------------------------------------- /apps/qa/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/urls.py -------------------------------------------------------------------------------- /apps/qa/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/utils.py -------------------------------------------------------------------------------- /apps/qa/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/qa/views.py -------------------------------------------------------------------------------- /apps/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/shared/django_markdown/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/django_markdown/__init__.py -------------------------------------------------------------------------------- /apps/shared/django_markdown/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/django_markdown/admin.py -------------------------------------------------------------------------------- /apps/shared/django_markdown/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/django_markdown/fields.py -------------------------------------------------------------------------------- /apps/shared/django_markdown/flatpages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/django_markdown/flatpages.py -------------------------------------------------------------------------------- /apps/shared/django_markdown/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/django_markdown/models.py -------------------------------------------------------------------------------- /apps/shared/django_markdown/pypandoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/django_markdown/pypandoc.py -------------------------------------------------------------------------------- /apps/shared/django_markdown/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/django_markdown/settings.py -------------------------------------------------------------------------------- /apps/shared/django_markdown/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/shared/django_markdown/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/django_markdown/tests.py -------------------------------------------------------------------------------- /apps/shared/django_markdown/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/django_markdown/urls.py -------------------------------------------------------------------------------- /apps/shared/django_markdown/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/django_markdown/utils.py -------------------------------------------------------------------------------- /apps/shared/django_markdown/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/django_markdown/views.py -------------------------------------------------------------------------------- /apps/shared/django_markdown/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/django_markdown/widgets.py -------------------------------------------------------------------------------- /apps/shared/enumfields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/enumfields/__init__.py -------------------------------------------------------------------------------- /apps/shared/enumfields/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/enumfields/admin.py -------------------------------------------------------------------------------- /apps/shared/enumfields/drf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/enumfields/drf/__init__.py -------------------------------------------------------------------------------- /apps/shared/enumfields/drf/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/enumfields/drf/fields.py -------------------------------------------------------------------------------- /apps/shared/enumfields/drf/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/enumfields/drf/serializers.py -------------------------------------------------------------------------------- /apps/shared/enumfields/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/enumfields/enums.py -------------------------------------------------------------------------------- /apps/shared/enumfields/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/enumfields/fields.py -------------------------------------------------------------------------------- /apps/shared/enumfields/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/enumfields/forms.py -------------------------------------------------------------------------------- /apps/shared/gitcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/gitcmd.py -------------------------------------------------------------------------------- /apps/shared/graphic_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/graphic_utils.py -------------------------------------------------------------------------------- /apps/shared/htmlprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/htmlprint.py -------------------------------------------------------------------------------- /apps/shared/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/shared/utils.py -------------------------------------------------------------------------------- /apps/user_profile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/user_profile/__init__.py -------------------------------------------------------------------------------- /apps/user_profile/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/user_profile/admin.py -------------------------------------------------------------------------------- /apps/user_profile/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/user_profile/apps.py -------------------------------------------------------------------------------- /apps/user_profile/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/user_profile/enums.py -------------------------------------------------------------------------------- /apps/user_profile/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/user_profile/forms.py -------------------------------------------------------------------------------- /apps/user_profile/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user_profile/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/user_profile/models.py -------------------------------------------------------------------------------- /apps/user_profile/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user_profile/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/user_profile/tests/test_models.py -------------------------------------------------------------------------------- /apps/user_profile/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/user_profile/tests/test_views.py -------------------------------------------------------------------------------- /apps/user_profile/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/user_profile/urls.py -------------------------------------------------------------------------------- /apps/user_profile/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/user_profile/utils.py -------------------------------------------------------------------------------- /apps/user_profile/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/apps/user_profile/views.py -------------------------------------------------------------------------------- /common_static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/css/app.css -------------------------------------------------------------------------------- /common_static/css/block_chart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/css/block_chart.css -------------------------------------------------------------------------------- /common_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/css/theme.css -------------------------------------------------------------------------------- /common_static/css/theme.dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/css/theme.dark.css -------------------------------------------------------------------------------- /common_static/css/theme.light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/css/theme.light.css -------------------------------------------------------------------------------- /common_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/favicon.ico -------------------------------------------------------------------------------- /common_static/js/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ace.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-beautify.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-emmet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-emmet.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-error_marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-error_marker.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-linking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-linking.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-modelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-modelist.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-options.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-rtl.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-searchbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-searchbox.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-settings_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-settings_menu.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-spellcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-spellcheck.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-split.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-statusbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-statusbar.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-textarea.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-themelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-themelist.js -------------------------------------------------------------------------------- /common_static/js/ace/ext-whitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/ext-whitespace.js -------------------------------------------------------------------------------- /common_static/js/ace/keybinding-emacs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/keybinding-emacs.js -------------------------------------------------------------------------------- /common_static/js/ace/keybinding-vim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/keybinding-vim.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-abap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-abap.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-abc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-abc.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-actionscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-actionscript.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-ada.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-ada.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-apache_conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-apache_conf.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-applescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-applescript.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-asciidoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-asciidoc.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-asl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-asl.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-assembly_x86.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-assembly_x86.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-autohotkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-autohotkey.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-batchfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-batchfile.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-bro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-bro.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-c9search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-c9search.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-c_cpp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-c_cpp.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-cirru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-cirru.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-clojure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-clojure.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-cobol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-cobol.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-coffee.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-coldfusion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-coldfusion.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-csharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-csharp.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-csound_score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-csound_score.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-csp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-csp.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-css.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-curly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-curly.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-d.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-dart.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-diff.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-django.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-django.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-dockerfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-dockerfile.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-dot.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-drools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-drools.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-edifact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-edifact.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-eiffel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-eiffel.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-ejs.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-elixir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-elixir.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-elm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-elm.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-erlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-erlang.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-forth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-forth.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-fortran.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-fortran.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-fsharp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-fsharp.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-ftl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-ftl.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-gcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-gcode.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-gherkin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-gherkin.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-gitignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-gitignore.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-glsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-glsl.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-gobstones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-gobstones.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-golang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-golang.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-groovy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-groovy.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-haml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-haml.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-handlebars.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-haskell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-haskell.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-haxe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-haxe.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-hjson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-hjson.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-html.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-html_elixir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-html_elixir.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-html_ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-html_ruby.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-ini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-ini.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-io.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-jack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-jack.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-jade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-jade.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-java.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-java.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-javascript.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-json.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-jsoniq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-jsoniq.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-jsp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-jsp.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-jssm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-jssm.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-jsx.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-julia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-julia.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-kotlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-kotlin.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-latex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-latex.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-less.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-liquid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-liquid.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-lisp.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-livescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-livescript.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-logiql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-logiql.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-lsl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-lsl.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-lua.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-luapage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-luapage.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-lucene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-lucene.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-makefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-makefile.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-markdown.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-mask.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-matlab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-matlab.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-maze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-maze.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-mel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-mel.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-mixal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-mixal.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-mushcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-mushcode.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-mysql.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-nix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-nix.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-nsis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-nsis.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-objectivec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-objectivec.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-ocaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-ocaml.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-pascal.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-perl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-perl.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-pgsql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-pgsql.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-php.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-pig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-pig.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-plain_text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-plain_text.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-powershell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-powershell.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-praat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-praat.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-prolog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-prolog.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-properties.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-protobuf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-protobuf.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-puppet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-puppet.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-python.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-r.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-razor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-razor.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-rdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-rdoc.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-red.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-red.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-redshift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-redshift.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-rhtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-rhtml.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-rst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-rst.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-ruby.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-rust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-rust.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-sass.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-scad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-scad.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-scala.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-scheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-scheme.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-scss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-scss.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-sh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-sh.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-sjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-sjs.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-slim.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-smarty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-smarty.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-snippets.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-soy_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-soy_template.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-space.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-space.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-sparql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-sparql.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-sql.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-sqlserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-sqlserver.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-stylus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-stylus.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-svg.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-swift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-swift.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-tcl.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-terraform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-terraform.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-tex.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-text.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-textile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-textile.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-toml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-toml.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-tsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-tsx.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-turtle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-turtle.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-twig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-twig.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-typescript.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-vala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-vala.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-vbscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-vbscript.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-velocity.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-verilog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-verilog.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-vhdl.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-wollok.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-wollok.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-xml.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-xquery.js -------------------------------------------------------------------------------- /common_static/js/ace/mode-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/mode-yaml.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-ambiance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-ambiance.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-chaos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-chaos.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-chrome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-chrome.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-clouds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-clouds.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-cobalt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-cobalt.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-dawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-dawn.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-dracula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-dracula.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-dreamweaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-dreamweaver.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-eclipse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-eclipse.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-github.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-gob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-gob.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-gruvbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-gruvbox.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-iplastic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-iplastic.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-katzenmilch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-katzenmilch.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-kr_theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-kr_theme.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-kuroir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-kuroir.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-merbivore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-merbivore.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-monokai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-monokai.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-sqlserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-sqlserver.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-terminal.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-textmate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-textmate.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-tomorrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-tomorrow.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-twilight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-twilight.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-vibrant_ink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-vibrant_ink.js -------------------------------------------------------------------------------- /common_static/js/ace/theme-xcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/theme-xcode.js -------------------------------------------------------------------------------- /common_static/js/ace/worker-coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/worker-coffee.js -------------------------------------------------------------------------------- /common_static/js/ace/worker-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/worker-css.js -------------------------------------------------------------------------------- /common_static/js/ace/worker-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/worker-html.js -------------------------------------------------------------------------------- /common_static/js/ace/worker-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/worker-javascript.js -------------------------------------------------------------------------------- /common_static/js/ace/worker-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/worker-json.js -------------------------------------------------------------------------------- /common_static/js/ace/worker-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/worker-lua.js -------------------------------------------------------------------------------- /common_static/js/ace/worker-php.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/worker-php.js -------------------------------------------------------------------------------- /common_static/js/ace/worker-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/worker-xml.js -------------------------------------------------------------------------------- /common_static/js/ace/worker-xquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/ace/worker-xquery.js -------------------------------------------------------------------------------- /common_static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/common_static/js/app.js -------------------------------------------------------------------------------- /default_file/builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/default_file/builder.sh -------------------------------------------------------------------------------- /default_file/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/default_file/clean.sh -------------------------------------------------------------------------------- /default_file/feedback.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /default_file/grader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/default_file/grader.sh -------------------------------------------------------------------------------- /docs/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/docs/1.png -------------------------------------------------------------------------------- /docs/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/docs/2.png -------------------------------------------------------------------------------- /docs/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/docs/3.png -------------------------------------------------------------------------------- /docs/README-FR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/docs/README-FR.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/lti_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/docs/lti_tutorial.md -------------------------------------------------------------------------------- /external_libs/django-enumfields/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-enumfields/LICENSE -------------------------------------------------------------------------------- /external_libs/django-enumfields/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-enumfields/setup.py -------------------------------------------------------------------------------- /external_libs/django-enumfields/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external_libs/django-enumfields/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-enumfields/tox.ini -------------------------------------------------------------------------------- /external_libs/django-markdown/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-markdown/.coveragerc -------------------------------------------------------------------------------- /external_libs/django-markdown/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-markdown/.gitignore -------------------------------------------------------------------------------- /external_libs/django-markdown/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-markdown/.travis.yml -------------------------------------------------------------------------------- /external_libs/django-markdown/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-markdown/Changelog -------------------------------------------------------------------------------- /external_libs/django-markdown/DESCRIPTION: -------------------------------------------------------------------------------- 1 | Django markdown support and wysiwyg. 2 | -------------------------------------------------------------------------------- /external_libs/django-markdown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-markdown/LICENSE -------------------------------------------------------------------------------- /external_libs/django-markdown/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-markdown/MANIFEST.in -------------------------------------------------------------------------------- /external_libs/django-markdown/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-markdown/Makefile -------------------------------------------------------------------------------- /external_libs/django-markdown/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-markdown/README.rst -------------------------------------------------------------------------------- /external_libs/django-markdown/django_markdown/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external_libs/django-markdown/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-markdown/example.py -------------------------------------------------------------------------------- /external_libs/django-markdown/example/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external_libs/django-markdown/example/project/md/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external_libs/django-markdown/example/project/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external_libs/django-markdown/requirements.txt: -------------------------------------------------------------------------------- 1 | django 2 | markdown 3 | -------------------------------------------------------------------------------- /external_libs/django-markdown/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-markdown/setup.cfg -------------------------------------------------------------------------------- /external_libs/django-markdown/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-markdown/setup.py -------------------------------------------------------------------------------- /external_libs/django-markdown/tests/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external_libs/django-markdown/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/django-markdown/tox.ini -------------------------------------------------------------------------------- /external_libs/gitcmd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/gitcmd/.gitignore -------------------------------------------------------------------------------- /external_libs/gitcmd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/gitcmd/.travis.yml -------------------------------------------------------------------------------- /external_libs/gitcmd/CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/gitcmd/CHANGES.rst -------------------------------------------------------------------------------- /external_libs/gitcmd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/gitcmd/LICENSE -------------------------------------------------------------------------------- /external_libs/gitcmd/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.rst 2 | -------------------------------------------------------------------------------- /external_libs/gitcmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/gitcmd/Makefile -------------------------------------------------------------------------------- /external_libs/gitcmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/gitcmd/README.md -------------------------------------------------------------------------------- /external_libs/gitcmd/gitcmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/gitcmd/gitcmd/__init__.py -------------------------------------------------------------------------------- /external_libs/gitcmd/gitcmd/gitcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/gitcmd/gitcmd/gitcmd.py -------------------------------------------------------------------------------- /external_libs/gitcmd/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/gitcmd/setup.py -------------------------------------------------------------------------------- /external_libs/gitcmd/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external_libs/gitcmd/tests/test_gitcmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/gitcmd/tests/test_gitcmd.py -------------------------------------------------------------------------------- /external_libs/gitcmd/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/gitcmd/tox.ini -------------------------------------------------------------------------------- /external_libs/htmlprint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/htmlprint/.gitignore -------------------------------------------------------------------------------- /external_libs/htmlprint/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/htmlprint/.travis.yml -------------------------------------------------------------------------------- /external_libs/htmlprint/CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/htmlprint/CHANGES.rst -------------------------------------------------------------------------------- /external_libs/htmlprint/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/htmlprint/LICENSE.txt -------------------------------------------------------------------------------- /external_libs/htmlprint/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.rst 2 | -------------------------------------------------------------------------------- /external_libs/htmlprint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/htmlprint/Makefile -------------------------------------------------------------------------------- /external_libs/htmlprint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/htmlprint/README.md -------------------------------------------------------------------------------- /external_libs/htmlprint/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/htmlprint/setup.py -------------------------------------------------------------------------------- /external_libs/htmlprint/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external_libs/htmlprint/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/external_libs/htmlprint/tox.ini -------------------------------------------------------------------------------- /frontend/components/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/.editorconfig -------------------------------------------------------------------------------- /frontend/components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/.gitignore -------------------------------------------------------------------------------- /frontend/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/README.md -------------------------------------------------------------------------------- /frontend/components/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/angular.json -------------------------------------------------------------------------------- /frontend/components/build-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/build-dev.sh -------------------------------------------------------------------------------- /frontend/components/build-prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/build-prod.sh -------------------------------------------------------------------------------- /frontend/components/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/e2e/src/app.po.ts -------------------------------------------------------------------------------- /frontend/components/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /frontend/components/install.sh: -------------------------------------------------------------------------------- 1 | rm -rf node_modules package-lock.json 2 | npm i 3 | -------------------------------------------------------------------------------- /frontend/components/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/package-lock.json -------------------------------------------------------------------------------- /frontend/components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/package.json -------------------------------------------------------------------------------- /frontend/components/post-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/post-build.js -------------------------------------------------------------------------------- /frontend/components/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/src/app/app.module.ts -------------------------------------------------------------------------------- /frontend/components/src/app/components/automaton-viewer/automaton-viewer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/app/components/graph-viewer/graph-viewer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/app/components/input/input.component.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /frontend/components/src/app/components/reveal-viewer/reveal-viewer.component.scss: -------------------------------------------------------------------------------- 1 | .reveal-viewer-component { 2 | height: 80vh; 3 | } 4 | -------------------------------------------------------------------------------- /frontend/components/src/app/docs/advanced-usage/advanced-usage.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/app/docs/api-doc/api-doc.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/app/docs/simple-usage/simple-usage.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/app/shared/components/confirm/confirm.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/app/shared/pipes/asset-data.pipe.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/app/shared/pipes/asset-path.pipe.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/app/shared/pipes/escape-html.pipe.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/app/shared/pipes/pretty-print.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/app/shared/pipes/text-select-split.pipe.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/app/shared/pipes/typography.pipe.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/assets/docs/automaton-viewer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/assets/docs/code-editor.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/components/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/src/browserslist -------------------------------------------------------------------------------- /frontend/components/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/src/favicon.ico -------------------------------------------------------------------------------- /frontend/components/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/src/index.html -------------------------------------------------------------------------------- /frontend/components/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/src/karma.conf.js -------------------------------------------------------------------------------- /frontend/components/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/src/main.ts -------------------------------------------------------------------------------- /frontend/components/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/src/polyfills.ts -------------------------------------------------------------------------------- /frontend/components/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/src/styles.scss -------------------------------------------------------------------------------- /frontend/components/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/src/test.ts -------------------------------------------------------------------------------- /frontend/components/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/src/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/components/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/src/tslint.json -------------------------------------------------------------------------------- /frontend/components/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/src/typings.d.ts -------------------------------------------------------------------------------- /frontend/components/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/tsconfig.json -------------------------------------------------------------------------------- /frontend/components/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/components/tslint.json -------------------------------------------------------------------------------- /frontend/editor/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/.editorconfig -------------------------------------------------------------------------------- /frontend/editor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/.gitignore -------------------------------------------------------------------------------- /frontend/editor/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/.travis.yml -------------------------------------------------------------------------------- /frontend/editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/README.md -------------------------------------------------------------------------------- /frontend/editor/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/angular.json -------------------------------------------------------------------------------- /frontend/editor/build-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/build-dev.sh -------------------------------------------------------------------------------- /frontend/editor/build-prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/build-prod.sh -------------------------------------------------------------------------------- /frontend/editor/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/e2e/protractor.conf.js -------------------------------------------------------------------------------- /frontend/editor/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /frontend/editor/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/e2e/src/app.po.ts -------------------------------------------------------------------------------- /frontend/editor/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /frontend/editor/install.sh: -------------------------------------------------------------------------------- 1 | rm -rf node_modules package-lock.json 2 | npm i 3 | -------------------------------------------------------------------------------- /frontend/editor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/package-lock.json -------------------------------------------------------------------------------- /frontend/editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/package.json -------------------------------------------------------------------------------- /frontend/editor/post-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/post-build.js -------------------------------------------------------------------------------- /frontend/editor/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/editor/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/src/app/app.component.ts -------------------------------------------------------------------------------- /frontend/editor/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/src/app/app.module.ts -------------------------------------------------------------------------------- /frontend/editor/src/app/pages/editor/navigation/explorer/explorer.component.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /frontend/editor/src/app/pages/editor/shared/directives/file-icon.directive.spec.ts: -------------------------------------------------------------------------------- 1 | // TODO add tests 2 | -------------------------------------------------------------------------------- /frontend/editor/src/app/pages/editor/shared/models/editor-group.model.spec.ts: -------------------------------------------------------------------------------- 1 | // TODO add tests 2 | -------------------------------------------------------------------------------- /frontend/editor/src/app/pages/editor/shared/models/editors.model.spec.ts: -------------------------------------------------------------------------------- 1 | // TODO add tests 2 | -------------------------------------------------------------------------------- /frontend/editor/src/app/shared/components/confirm/confirm.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/editor/src/app/shared/components/loading/loading.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/editor/src/app/shared/components/tree/tree.component.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/editor/src/app/shared/directives/autofocus.directive.spec.ts: -------------------------------------------------------------------------------- 1 | // TODO add tests 2 | -------------------------------------------------------------------------------- /frontend/editor/src/app/shared/directives/dnd.directive.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/editor/src/app/shared/directives/highlight-words.directive.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/editor/src/app/shared/directives/run-scripts.directive.spec.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/editor/src/app/shared/directives/tree-node.directive.spec.ts: -------------------------------------------------------------------------------- 1 | // TODO add tests 2 | -------------------------------------------------------------------------------- /frontend/editor/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/editor/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/src/browserslist -------------------------------------------------------------------------------- /frontend/editor/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/src/favicon.ico -------------------------------------------------------------------------------- /frontend/editor/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/src/index.html -------------------------------------------------------------------------------- /frontend/editor/src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/src/karma.conf.js -------------------------------------------------------------------------------- /frontend/editor/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/src/main.ts -------------------------------------------------------------------------------- /frontend/editor/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/src/polyfills.ts -------------------------------------------------------------------------------- /frontend/editor/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/src/styles.scss -------------------------------------------------------------------------------- /frontend/editor/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/src/test.ts -------------------------------------------------------------------------------- /frontend/editor/src/theme/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/src/theme/theme.scss -------------------------------------------------------------------------------- /frontend/editor/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/src/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/editor/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/src/tsconfig.spec.json -------------------------------------------------------------------------------- /frontend/editor/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/src/tslint.json -------------------------------------------------------------------------------- /frontend/editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/tsconfig.json -------------------------------------------------------------------------------- /frontend/editor/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/frontend/editor/tslint.json -------------------------------------------------------------------------------- /home/lib/builder/before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/builder/before.py -------------------------------------------------------------------------------- /home/lib/builder/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/builder/build.py -------------------------------------------------------------------------------- /home/lib/builder/none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/builder/none.py -------------------------------------------------------------------------------- /home/lib/demo/all/Description.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/all/Description.pl -------------------------------------------------------------------------------- /home/lib/demo/all/Filltheblank.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/all/Filltheblank.pl -------------------------------------------------------------------------------- /home/lib/demo/all/Match.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/all/Match.pl -------------------------------------------------------------------------------- /home/lib/demo/all/MultipleGoodAnswers.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/all/MultipleGoodAnswers.pl -------------------------------------------------------------------------------- /home/lib/demo/all/MultipleNumeric.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/all/MultipleNumeric.pl -------------------------------------------------------------------------------- /home/lib/demo/all/RangeAvecIntervalle.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/all/RangeAvecIntervalle.pl -------------------------------------------------------------------------------- /home/lib/demo/all/RangeAvecTolerance.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/all/RangeAvecTolerance.pl -------------------------------------------------------------------------------- /home/lib/demo/all/SelectSet.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/all/SelectSet.pl -------------------------------------------------------------------------------- /home/lib/demo/all/SelectWithFeedback.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/all/SelectWithFeedback.pl -------------------------------------------------------------------------------- /home/lib/demo/all/Short.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/all/Short.pl -------------------------------------------------------------------------------- /home/lib/demo/all/TruFalse2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/all/TruFalse2.pl -------------------------------------------------------------------------------- /home/lib/demo/all/TrueFalse1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/all/TrueFalse1.pl -------------------------------------------------------------------------------- /home/lib/demo/all/all.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/all/all.pltp -------------------------------------------------------------------------------- /home/lib/demo/random_add.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/random_add.pl -------------------------------------------------------------------------------- /home/lib/demo/random_add_eval_func.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/random_add_eval_func.pl -------------------------------------------------------------------------------- /home/lib/demo/random_all.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/random_all.pltp -------------------------------------------------------------------------------- /home/lib/demo/static_add.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/static_add.pl -------------------------------------------------------------------------------- /home/lib/demo/template/match_template.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/template/match_template.pl -------------------------------------------------------------------------------- /home/lib/demo/template/select_template.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/template/select_template.pl -------------------------------------------------------------------------------- /home/lib/demo/template/short_template.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/template/short_template.pl -------------------------------------------------------------------------------- /home/lib/demo/wims/demo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/wims/demo.pl -------------------------------------------------------------------------------- /home/lib/demo/wims/demo_upem.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/wims/demo_upem.pl -------------------------------------------------------------------------------- /home/lib/demo/wims/template.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/demo/wims/template.pl -------------------------------------------------------------------------------- /home/lib/example/java/junit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/example/java/junit.pl -------------------------------------------------------------------------------- /home/lib/example/java/stdout_tests.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/example/java/stdout_tests.pl -------------------------------------------------------------------------------- /home/lib/example/python/condition.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/example/python/condition.pl -------------------------------------------------------------------------------- /home/lib/example/python/enigma_decode.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/example/python/enigma_decode.pl -------------------------------------------------------------------------------- /home/lib/example/python/enigma_encode.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/example/python/enigma_encode.pl -------------------------------------------------------------------------------- /home/lib/example/python/fibonacci.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/example/python/fibonacci.pl -------------------------------------------------------------------------------- /home/lib/example/python/narc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/example/python/narc.pl -------------------------------------------------------------------------------- /home/lib/example/python/non_divisibles.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/example/python/non_divisibles.pl -------------------------------------------------------------------------------- /home/lib/example/python/pyramide.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/example/python/pyramide.pl -------------------------------------------------------------------------------- /home/lib/example/python/stack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/example/python/stack.pl -------------------------------------------------------------------------------- /home/lib/example/python/stdout_tests.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/example/python/stdout_tests.pl -------------------------------------------------------------------------------- /home/lib/example/python/title_string.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/example/python/title_string.pl -------------------------------------------------------------------------------- /home/lib/example/python/unittest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/example/python/unittest.pl -------------------------------------------------------------------------------- /home/lib/form/simplenumeric.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/form/simplenumeric.html -------------------------------------------------------------------------------- /home/lib/form/simpletextform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/form/simpletextform.html -------------------------------------------------------------------------------- /home/lib/form/text_editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/form/text_editor.html -------------------------------------------------------------------------------- /home/lib/form/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/form/textarea.html -------------------------------------------------------------------------------- /home/lib/gift/demo.gift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/gift/demo.gift -------------------------------------------------------------------------------- /home/lib/gift/demo/Q1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/gift/demo/Q1.pl -------------------------------------------------------------------------------- /home/lib/gift/demo/Q2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/gift/demo/Q2.pl -------------------------------------------------------------------------------- /home/lib/gift/demo/Q3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/gift/demo/Q3.pl -------------------------------------------------------------------------------- /home/lib/gift/demo/Q4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/gift/demo/Q4.pl -------------------------------------------------------------------------------- /home/lib/gift/demo/Q5.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/gift/demo/Q5.pl -------------------------------------------------------------------------------- /home/lib/gift/demo/Q6.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/gift/demo/Q6.pl -------------------------------------------------------------------------------- /home/lib/gift/templates/qessay.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/gift/templates/qessay.pl -------------------------------------------------------------------------------- /home/lib/gift/templates/qmatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/gift/templates/qmatch.pl -------------------------------------------------------------------------------- /home/lib/gift/templates/qmultichoice.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/gift/templates/qmultichoice.pl -------------------------------------------------------------------------------- /home/lib/gift/templates/qnumericset.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/gift/templates/qnumericset.pl -------------------------------------------------------------------------------- /home/lib/gift/templates/qselectset.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/gift/templates/qselectset.pl -------------------------------------------------------------------------------- /home/lib/gift/templates/qshortset.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/gift/templates/qshortset.pl -------------------------------------------------------------------------------- /home/lib/gift/templates/qtruefalse.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/gift/templates/qtruefalse.pl -------------------------------------------------------------------------------- /home/lib/grader/evalfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/grader/evalfunc.py -------------------------------------------------------------------------------- /home/lib/grader/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/grader/evaluator.py -------------------------------------------------------------------------------- /home/lib/grader/java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/grader/java.py -------------------------------------------------------------------------------- /home/lib/grader/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/grader/python.py -------------------------------------------------------------------------------- /home/lib/python/0PLG/TPE/empty.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/0PLG/TPE/empty.pl -------------------------------------------------------------------------------- /home/lib/python/0PLG/TPE/error.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/0PLG/TPE/error.pl -------------------------------------------------------------------------------- /home/lib/python/0PLG/TPE/function001.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/0PLG/TPE/function001.pl -------------------------------------------------------------------------------- /home/lib/python/0PLG/TPE/functionalea.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/0PLG/TPE/functionalea.pl -------------------------------------------------------------------------------- /home/lib/python/0PLG/TPE/names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/0PLG/TPE/names.py -------------------------------------------------------------------------------- /home/lib/python/0PLG/TPE/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/0PLG/TPE/test.html -------------------------------------------------------------------------------- /home/lib/python/0PLG/TPE/variableAkiki.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/0PLG/TPE/variableAkiki.pl -------------------------------------------------------------------------------- /home/lib/python/0PLG/bjr.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/0PLG/bjr.pltp -------------------------------------------------------------------------------- /home/lib/python/0PLG/deux-concept.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/0PLG/deux-concept.pltp -------------------------------------------------------------------------------- /home/lib/python/0PLG/missingkey.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/0PLG/missingkey.pltp -------------------------------------------------------------------------------- /home/lib/python/0PLG/plgrader.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/0PLG/plgrader.pltp -------------------------------------------------------------------------------- /home/lib/python/0PLG/soluce.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/0PLG/soluce.pl -------------------------------------------------------------------------------- /home/lib/python/0PLG/template.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/0PLG/template.pl -------------------------------------------------------------------------------- /home/lib/python/AP1/TP1/corrigemoi_1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/AP1/TP1/corrigemoi_1.pl -------------------------------------------------------------------------------- /home/lib/python/AP1/TP1/corrigemoi_2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/AP1/TP1/corrigemoi_2.pl -------------------------------------------------------------------------------- /home/lib/python/AP1/TP1/corrigemoi_3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/AP1/TP1/corrigemoi_3.pl -------------------------------------------------------------------------------- /home/lib/python/AP1/TP1/corrigemoi_4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/AP1/TP1/corrigemoi_4.pl -------------------------------------------------------------------------------- /home/lib/python/AP1/TP1/corrigemoi_5.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/AP1/TP1/corrigemoi_5.pl -------------------------------------------------------------------------------- /home/lib/python/AP1/TP1/corrigemoi_6.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/AP1/TP1/corrigemoi_6.pl -------------------------------------------------------------------------------- /home/lib/python/AP1/TP1/corrigemoi_7.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/AP1/TP1/corrigemoi_7.pl -------------------------------------------------------------------------------- /home/lib/python/AP1/TP1/firsterrors.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/AP1/TP1/firsterrors.pltp -------------------------------------------------------------------------------- /home/lib/python/IUT/TP1/CodeCogsEqn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/IUT/TP1/CodeCogsEqn.gif -------------------------------------------------------------------------------- /home/lib/python/IUT/TP1/error.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/IUT/TP1/error.pl -------------------------------------------------------------------------------- /home/lib/python/IUT/TP1/errorindent.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/IUT/TP1/errorindent.pl -------------------------------------------------------------------------------- /home/lib/python/IUT/TP1/errorsyntax.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/IUT/TP1/errorsyntax.pl -------------------------------------------------------------------------------- /home/lib/python/IUT/TP1/errortype.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/IUT/TP1/errortype.pl -------------------------------------------------------------------------------- /home/lib/python/IUT/TP1/ififif.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/IUT/TP1/ififif.pl -------------------------------------------------------------------------------- /home/lib/python/IUT/TP1/operator001.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/IUT/TP1/operator001.pl -------------------------------------------------------------------------------- /home/lib/python/IUT/TP1/operator002.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/IUT/TP1/operator002.pl -------------------------------------------------------------------------------- /home/lib/python/IUT/TP1/operator003.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/IUT/TP1/operator003.pl -------------------------------------------------------------------------------- /home/lib/python/IUT/TP1/printbonjour.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/IUT/TP1/printbonjour.pl -------------------------------------------------------------------------------- /home/lib/python/IUT/TP1/printinput.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/IUT/TP1/printinput.pl -------------------------------------------------------------------------------- /home/lib/python/IUT/TP1/tp1.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/IUT/TP1/tp1.pltp -------------------------------------------------------------------------------- /home/lib/python/IUT/TP1/variabletypes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/IUT/TP1/variabletypes.pl -------------------------------------------------------------------------------- /home/lib/python/IUT/template.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/IUT/template.pl -------------------------------------------------------------------------------- /home/lib/python/PLTP/func1.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/PLTP/func1.pltp -------------------------------------------------------------------------------- /home/lib/python/PLTP/func2.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/PLTP/func2.pltp -------------------------------------------------------------------------------- /home/lib/python/PLTP/iut_tp1.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/PLTP/iut_tp1.pltp -------------------------------------------------------------------------------- /home/lib/python/PLTP/old/basic.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/PLTP/old/basic.pltp -------------------------------------------------------------------------------- /home/lib/python/PLTP/old/debug.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/PLTP/old/debug.pltp -------------------------------------------------------------------------------- /home/lib/python/PLTP/old/demo1.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/PLTP/old/demo1.pltp -------------------------------------------------------------------------------- /home/lib/python/PLTP/old/functions.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/PLTP/old/functions.pltp -------------------------------------------------------------------------------- /home/lib/python/PLTP/old/maynooth.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/PLTP/old/maynooth.pltp -------------------------------------------------------------------------------- /home/lib/python/PLTP/old/testF1.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/PLTP/old/testF1.pltp -------------------------------------------------------------------------------- /home/lib/python/PLTP/old/toto.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/PLTP/old/toto.pltp -------------------------------------------------------------------------------- /home/lib/python/PLTP/premiers.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/PLTP/premiers.pltp -------------------------------------------------------------------------------- /home/lib/python/TP1/nuitsdamour.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/TP1/nuitsdamour.pl -------------------------------------------------------------------------------- /home/lib/python/TP1/soluce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/TP1/soluce.py -------------------------------------------------------------------------------- /home/lib/python/TP1/valeurs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/TP1/valeurs.pl -------------------------------------------------------------------------------- /home/lib/python/all.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/all.pltp -------------------------------------------------------------------------------- /home/lib/python/bool/bonlcond.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/bool/bonlcond.pl -------------------------------------------------------------------------------- /home/lib/python/bool/sisi01.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/bool/sisi01.pl -------------------------------------------------------------------------------- /home/lib/python/bool/sisi02.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/bool/sisi02.pl -------------------------------------------------------------------------------- /home/lib/python/bool/sisi03.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/bool/sisi03.pl -------------------------------------------------------------------------------- /home/lib/python/bool/sisi04.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/bool/sisi04.pl -------------------------------------------------------------------------------- /home/lib/python/bool/tridetrois.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/bool/tridetrois.pl -------------------------------------------------------------------------------- /home/lib/python/dynamic/direct.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/direct.pl -------------------------------------------------------------------------------- /home/lib/python/dynamic/dyna.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/dyna.pltp -------------------------------------------------------------------------------- /home/lib/python/dynamic/dyna1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/dyna1.pl -------------------------------------------------------------------------------- /home/lib/python/dynamic/dyna2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/dyna2.pl -------------------------------------------------------------------------------- /home/lib/python/dynamic/dyna3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/dyna3.pl -------------------------------------------------------------------------------- /home/lib/python/dynamic/dyna4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/dyna4.pl -------------------------------------------------------------------------------- /home/lib/python/dynamic/dyna5.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/dyna5.pl -------------------------------------------------------------------------------- /home/lib/python/dynamic/dyna6.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/dyna6.pl -------------------------------------------------------------------------------- /home/lib/python/dynamic/dyna7.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/dyna7.pl -------------------------------------------------------------------------------- /home/lib/python/dynamic/dyna8.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/dyna8.pl -------------------------------------------------------------------------------- /home/lib/python/dynamic/dyna9.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/dyna9.pl -------------------------------------------------------------------------------- /home/lib/python/dynamic/dynaexemple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/dynaexemple.py -------------------------------------------------------------------------------- /home/lib/python/dynamic/dynamic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/dynamic.pl -------------------------------------------------------------------------------- /home/lib/python/dynamic/idee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/idee.md -------------------------------------------------------------------------------- /home/lib/python/dynamic/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/dynamic/readme.md -------------------------------------------------------------------------------- /home/lib/python/exemple/pldicjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/exemple/pldicjson.py -------------------------------------------------------------------------------- /home/lib/python/exemple/variadic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/exemple/variadic.pl -------------------------------------------------------------------------------- /home/lib/python/exemple/writeinbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/exemple/writeinbase.py -------------------------------------------------------------------------------- /home/lib/python/form/editorform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/form/editorform.html -------------------------------------------------------------------------------- /home/lib/python/function/Sundaram.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/Sundaram.pl -------------------------------------------------------------------------------- /home/lib/python/function/autosubsets.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/autosubsets.pl -------------------------------------------------------------------------------- /home/lib/python/function/carre.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/carre.pl -------------------------------------------------------------------------------- /home/lib/python/function/carrecube.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/carrecube.pl -------------------------------------------------------------------------------- /home/lib/python/function/estpremier.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/estpremier.pl -------------------------------------------------------------------------------- /home/lib/python/function/estpremier2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/estpremier2.pl -------------------------------------------------------------------------------- /home/lib/python/function/funcpuis.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/funcpuis.pl -------------------------------------------------------------------------------- /home/lib/python/function/funcvoyelle.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/funcvoyelle.pl -------------------------------------------------------------------------------- /home/lib/python/function/gragra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/gragra.py -------------------------------------------------------------------------------- /home/lib/python/function/jumeaux.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/jumeaux.pl -------------------------------------------------------------------------------- /home/lib/python/function/pim.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/pim.pl -------------------------------------------------------------------------------- /home/lib/python/function/pimret.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/pimret.pl -------------------------------------------------------------------------------- /home/lib/python/function/pom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/pom.pl -------------------------------------------------------------------------------- /home/lib/python/function/racinecarre.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/racinecarre.pl -------------------------------------------------------------------------------- /home/lib/python/function/romains.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/romains.pl -------------------------------------------------------------------------------- /home/lib/python/function/romcode.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/romcode.pl -------------------------------------------------------------------------------- /home/lib/python/function/simplefunc1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/simplefunc1.pl -------------------------------------------------------------------------------- /home/lib/python/function/simplefunc2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/simplefunc2.pl -------------------------------------------------------------------------------- /home/lib/python/function/simplefunc3.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/simplefunc3.pl -------------------------------------------------------------------------------- /home/lib/python/function/simplefunc4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/simplefunc4.pl -------------------------------------------------------------------------------- /home/lib/python/function/subsets.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/subsets.pl -------------------------------------------------------------------------------- /home/lib/python/function/voyelles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/voyelles.py -------------------------------------------------------------------------------- /home/lib/python/function/writebase.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/function/writebase.pl -------------------------------------------------------------------------------- /home/lib/python/input/ageCapitaine.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/input/ageCapitaine.pl -------------------------------------------------------------------------------- /home/lib/python/input/egalegal.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/input/egalegal.pl -------------------------------------------------------------------------------- /home/lib/python/input/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/input/generator.py -------------------------------------------------------------------------------- /home/lib/python/input/plusmoins.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/input/plusmoins.pl -------------------------------------------------------------------------------- /home/lib/python/input/print1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/input/print1.pl -------------------------------------------------------------------------------- /home/lib/python/input/print2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/input/print2.pl -------------------------------------------------------------------------------- /home/lib/python/input/quelage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/input/quelage.pl -------------------------------------------------------------------------------- /home/lib/python/list/lireuneliste.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/list/lireuneliste.pl -------------------------------------------------------------------------------- /home/lib/python/list/lireunelisteint.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/list/lireunelisteint.pl -------------------------------------------------------------------------------- /home/lib/python/list/soussuite.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/list/soussuite.pl -------------------------------------------------------------------------------- /home/lib/python/search/jumeaux.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/search/jumeaux.pl -------------------------------------------------------------------------------- /home/lib/python/search/soluce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/search/soluce.py -------------------------------------------------------------------------------- /home/lib/python/stack/stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/stack/stack.md -------------------------------------------------------------------------------- /home/lib/python/stack/stackbasic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/stack/stackbasic.pl -------------------------------------------------------------------------------- /home/lib/python/stack/undopile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/stack/undopile.pl -------------------------------------------------------------------------------- /home/lib/python/string/Kolakoski.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/string/Kolakoski.pl -------------------------------------------------------------------------------- /home/lib/python/string/capitalize.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/string/capitalize.pl -------------------------------------------------------------------------------- /home/lib/python/string/conway.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/string/conway.pl -------------------------------------------------------------------------------- /home/lib/python/string/sort.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/string/sort.pl -------------------------------------------------------------------------------- /home/lib/python/test/template.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/test/template.pl -------------------------------------------------------------------------------- /home/lib/python/test/test.pltp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/test/test.pltp -------------------------------------------------------------------------------- /home/lib/python/test_editor.pl: -------------------------------------------------------------------------------- 1 | L'éditeur crée-t-il e fichier? 2 | -------------------------------------------------------------------------------- /home/lib/python/tuples/initlist1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/tuples/initlist1.pl -------------------------------------------------------------------------------- /home/lib/python/tuples/tuple1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/python/tuples/tuple1.pl -------------------------------------------------------------------------------- /home/lib/template/java.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/template/java.pl -------------------------------------------------------------------------------- /home/lib/template/python.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/template/python.pl -------------------------------------------------------------------------------- /home/lib/utils/sandboxio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/home/lib/utils/sandboxio.py -------------------------------------------------------------------------------- /index_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/index_files.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/manage.py -------------------------------------------------------------------------------- /premierlangage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/premierlangage/__init__.py -------------------------------------------------------------------------------- /premierlangage/jinja2_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/premierlangage/jinja2_custom.py -------------------------------------------------------------------------------- /premierlangage/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/premierlangage/settings.py -------------------------------------------------------------------------------- /premierlangage/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/premierlangage/urls.py -------------------------------------------------------------------------------- /premierlangage/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/premierlangage/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/requirements.txt -------------------------------------------------------------------------------- /script/fill_database_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/script/fill_database_local.py -------------------------------------------------------------------------------- /script/fill_database_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/script/fill_database_release.py -------------------------------------------------------------------------------- /script/fill_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/script/fill_local.py -------------------------------------------------------------------------------- /script/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/script/index.py -------------------------------------------------------------------------------- /script/install_apache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/script/install_apache.sh -------------------------------------------------------------------------------- /script/install_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/script/install_local.sh -------------------------------------------------------------------------------- /script/install_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/script/install_release.sh -------------------------------------------------------------------------------- /script/reindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/script/reindex.py -------------------------------------------------------------------------------- /script/run_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/script/run_database.sh -------------------------------------------------------------------------------- /script/stop_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/script/stop_database.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/setup.cfg -------------------------------------------------------------------------------- /templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/templates/403.html -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/templates/alert.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/templates/head.html -------------------------------------------------------------------------------- /templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/templates/header.html -------------------------------------------------------------------------------- /test/config_test_pgsql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PremierLangage/premierlangage/HEAD/test/config_test_pgsql.py --------------------------------------------------------------------------------