├── public
├── less
│ ├── variable.less
│ ├── mixin.less
│ └── base.less
├── images
│ ├── bg.png
│ ├── course.png
│ ├── default.png
│ ├── favicon.ico
│ ├── loading.gif
│ └── monkey.png
├── js
│ ├── index.js
│ ├── state.js
│ ├── chart.js
│ ├── category-list.js
│ ├── course.js
│ ├── login.js
│ ├── utils.js
│ ├── course-add.js
│ ├── config.js
│ ├── common.js
│ ├── settings.js
│ ├── category.js
│ ├── teacher-list.js
│ ├── teacher.js
│ ├── course-basic.js
│ └── course-lesson.js
└── assets
│ ├── ckeditor
│ ├── plugins
│ │ ├── icons.png
│ │ ├── icons_hidpi.png
│ │ ├── image
│ │ │ └── images
│ │ │ │ └── noimage.png
│ │ ├── link
│ │ │ ├── images
│ │ │ │ ├── anchor.png
│ │ │ │ └── hidpi
│ │ │ │ │ └── anchor.png
│ │ │ └── dialogs
│ │ │ │ └── anchor.js
│ │ ├── magicline
│ │ │ └── images
│ │ │ │ ├── icon.png
│ │ │ │ ├── icon-rtl.png
│ │ │ │ └── hidpi
│ │ │ │ ├── icon.png
│ │ │ │ └── icon-rtl.png
│ │ ├── about
│ │ │ └── dialogs
│ │ │ │ ├── logo_ckeditor.png
│ │ │ │ ├── hidpi
│ │ │ │ └── logo_ckeditor.png
│ │ │ │ └── about.js
│ │ ├── dialog
│ │ │ └── dialogDefinition.js
│ │ ├── specialchar
│ │ │ └── dialogs
│ │ │ │ └── lang
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── ja.js
│ │ │ │ ├── zh.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── da.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── no.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── fa.js
│ │ │ │ └── fr.js
│ │ ├── a11yhelp
│ │ │ └── dialogs
│ │ │ │ ├── lang
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── zh-cn.js
│ │ │ │ ├── zh.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── si.js
│ │ │ │ ├── he.js
│ │ │ │ └── gu.js
│ │ │ │ └── a11yhelp.js
│ │ ├── wsc
│ │ │ ├── README.md
│ │ │ ├── dialogs
│ │ │ │ ├── wsc.css
│ │ │ │ ├── ciframe.html
│ │ │ │ ├── tmpFrameset.html
│ │ │ │ └── wsc_ie.js
│ │ │ └── LICENSE.md
│ │ └── scayt
│ │ │ ├── README.md
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE.md
│ │ │ └── dialogs
│ │ │ └── toolbar.css
│ ├── samples
│ │ ├── img
│ │ │ ├── logo.png
│ │ │ ├── github-top.png
│ │ │ ├── header-bg.png
│ │ │ ├── header-separator.png
│ │ │ └── navigation-tip.png
│ │ ├── old
│ │ │ ├── assets
│ │ │ │ ├── sample.jpg
│ │ │ │ ├── inlineall
│ │ │ │ │ └── logo.png
│ │ │ │ ├── uilanguages
│ │ │ │ │ └── languages.js
│ │ │ │ ├── posteddata.php
│ │ │ │ └── outputxhtml
│ │ │ │ │ └── outputxhtml.css
│ │ │ ├── htmlwriter
│ │ │ │ └── assets
│ │ │ │ │ └── outputforflash
│ │ │ │ │ ├── outputforflash.fla
│ │ │ │ │ └── outputforflash.swf
│ │ │ ├── sample_posteddata.php
│ │ │ ├── dialog
│ │ │ │ └── assets
│ │ │ │ │ └── my_dialog.js
│ │ │ ├── sample.js
│ │ │ ├── appendto.html
│ │ │ ├── tabindex.html
│ │ │ ├── uicolor.html
│ │ │ ├── ajax.html
│ │ │ └── readonly.html
│ │ ├── toolbarconfigurator
│ │ │ ├── font
│ │ │ │ ├── fontello.eot
│ │ │ │ ├── fontello.ttf
│ │ │ │ ├── fontello.woff
│ │ │ │ ├── LICENSE.txt
│ │ │ │ ├── config.json
│ │ │ │ └── fontello.svg
│ │ │ ├── lib
│ │ │ │ └── codemirror
│ │ │ │ │ ├── show-hint.css
│ │ │ │ │ ├── neo.css
│ │ │ │ │ └── LICENSE
│ │ │ ├── css
│ │ │ │ └── fontello.css
│ │ │ └── js
│ │ │ │ └── fulltoolbareditor.js
│ │ └── js
│ │ │ └── sample.js
│ ├── skins
│ │ └── moono
│ │ │ ├── icons.png
│ │ │ ├── icons_hidpi.png
│ │ │ ├── images
│ │ │ ├── lock.png
│ │ │ ├── arrow.png
│ │ │ ├── close.png
│ │ │ ├── lock-open.png
│ │ │ ├── refresh.png
│ │ │ ├── spinner.gif
│ │ │ └── hidpi
│ │ │ │ ├── close.png
│ │ │ │ ├── lock.png
│ │ │ │ ├── refresh.png
│ │ │ │ └── lock-open.png
│ │ │ └── readme.md
│ ├── README.md
│ ├── config.js
│ ├── contents.css
│ ├── adapters
│ │ └── jquery.js
│ └── build-config.js
│ ├── jquery-jcrop
│ └── css
│ │ └── Jcrop.gif
│ ├── jquery-uploadify
│ ├── uploadify.swf
│ ├── uploadify-cancel.png
│ ├── check-exists.php
│ ├── Change Log.txt
│ ├── uploadify.php
│ ├── index.php
│ ├── license.txt
│ └── uploadify.css
│ ├── font-awesome
│ └── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ ├── bootstrap
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ ├── js
│ │ └── npm.js
│ └── .bower.json
│ ├── bootstrap-datepicker
│ └── locales
│ │ ├── bootstrap-datepicker.zh-TW.min.js
│ │ └── bootstrap-datepicker.zh-CN.min.js
│ ├── nprogress
│ └── nprogress.css
│ ├── jquery-cookie
│ └── jquery.cookie.js
│ └── jquery-validate
│ └── jquery-validate.min.js
├── uploads
├── demo.png
├── avatar.jpg
├── course.png
├── course_1.jpg
├── course_2.jpg
├── course_3.jpg
├── course_4.jpg
├── default.jpg
└── monkey.png
├── views
├── common
│ ├── script.html
│ ├── style.html
│ ├── header.html
│ └── aside.html
├── index
│ ├── login.html
│ ├── repass.html
│ └── index.html
├── course
│ ├── add.html
│ └── list.html
└── category
│ └── list.html
├── .htaccess
└── index.php
/public/less/variable.less:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/uploads/demo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/uploads/demo.png
--------------------------------------------------------------------------------
/public/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/images/bg.png
--------------------------------------------------------------------------------
/uploads/avatar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/uploads/avatar.jpg
--------------------------------------------------------------------------------
/uploads/course.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/uploads/course.png
--------------------------------------------------------------------------------
/uploads/course_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/uploads/course_1.jpg
--------------------------------------------------------------------------------
/uploads/course_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/uploads/course_2.jpg
--------------------------------------------------------------------------------
/uploads/course_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/uploads/course_3.jpg
--------------------------------------------------------------------------------
/uploads/course_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/uploads/course_4.jpg
--------------------------------------------------------------------------------
/uploads/default.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/uploads/default.jpg
--------------------------------------------------------------------------------
/uploads/monkey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/uploads/monkey.png
--------------------------------------------------------------------------------
/public/less/mixin.less:
--------------------------------------------------------------------------------
1 |
2 | .border-radius (@radius) {
3 | border-radius: @radius;
4 | }
5 |
6 |
--------------------------------------------------------------------------------
/public/images/course.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/images/course.png
--------------------------------------------------------------------------------
/public/images/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/images/default.png
--------------------------------------------------------------------------------
/public/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/images/favicon.ico
--------------------------------------------------------------------------------
/public/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/images/loading.gif
--------------------------------------------------------------------------------
/public/images/monkey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/images/monkey.png
--------------------------------------------------------------------------------
/public/js/index.js:
--------------------------------------------------------------------------------
1 | /*
2 | 主页
3 | */
4 | define(['utils'],function(utils){
5 | utils.setMenu('/');
6 | });
--------------------------------------------------------------------------------
/public/assets/ckeditor/plugins/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/plugins/icons.png
--------------------------------------------------------------------------------
/public/assets/jquery-jcrop/css/Jcrop.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/jquery-jcrop/css/Jcrop.gif
--------------------------------------------------------------------------------
/public/assets/ckeditor/samples/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/samples/img/logo.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/skins/moono/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/skins/moono/icons.png
--------------------------------------------------------------------------------
/public/assets/jquery-uploadify/uploadify.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/jquery-uploadify/uploadify.swf
--------------------------------------------------------------------------------
/public/assets/ckeditor/plugins/icons_hidpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/plugins/icons_hidpi.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/samples/img/github-top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/samples/img/github-top.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/samples/img/header-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/samples/img/header-bg.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/skins/moono/icons_hidpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/skins/moono/icons_hidpi.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/skins/moono/images/lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/skins/moono/images/lock.png
--------------------------------------------------------------------------------
/public/assets/font-awesome/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/font-awesome/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/public/assets/ckeditor/samples/old/assets/sample.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/samples/old/assets/sample.jpg
--------------------------------------------------------------------------------
/public/assets/ckeditor/skins/moono/images/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/skins/moono/images/arrow.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/skins/moono/images/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/skins/moono/images/close.png
--------------------------------------------------------------------------------
/public/assets/jquery-uploadify/uploadify-cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/jquery-uploadify/uploadify-cancel.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/plugins/image/images/noimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/plugins/image/images/noimage.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/plugins/link/images/anchor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/plugins/link/images/anchor.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/samples/img/header-separator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/samples/img/header-separator.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/samples/img/navigation-tip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/samples/img/navigation-tip.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/skins/moono/images/lock-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/skins/moono/images/lock-open.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/skins/moono/images/refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/skins/moono/images/refresh.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/skins/moono/images/spinner.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/skins/moono/images/spinner.gif
--------------------------------------------------------------------------------
/public/assets/ckeditor/plugins/magicline/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/plugins/magicline/images/icon.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/skins/moono/images/hidpi/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/skins/moono/images/hidpi/close.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/skins/moono/images/hidpi/lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/skins/moono/images/hidpi/lock.png
--------------------------------------------------------------------------------
/public/assets/font-awesome/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/font-awesome/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/public/assets/font-awesome/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/font-awesome/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/public/assets/font-awesome/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/font-awesome/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/public/assets/ckeditor/plugins/link/images/hidpi/anchor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/plugins/link/images/hidpi/anchor.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/plugins/magicline/images/icon-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/plugins/magicline/images/icon-rtl.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/samples/old/assets/inlineall/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/samples/old/assets/inlineall/logo.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/skins/moono/images/hidpi/refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/skins/moono/images/hidpi/refresh.png
--------------------------------------------------------------------------------
/public/assets/font-awesome/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/font-awesome/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/public/assets/bootstrap/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/bootstrap/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/public/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/bootstrap/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/public/assets/ckeditor/plugins/about/dialogs/logo_ckeditor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/plugins/about/dialogs/logo_ckeditor.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/plugins/magicline/images/hidpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/plugins/magicline/images/hidpi/icon.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/skins/moono/images/hidpi/lock-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/skins/moono/images/hidpi/lock-open.png
--------------------------------------------------------------------------------
/public/assets/bootstrap/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/bootstrap/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/public/assets/bootstrap/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/bootstrap/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/public/assets/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png
--------------------------------------------------------------------------------
/public/assets/ckeditor/samples/toolbarconfigurator/font/fontello.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/samples/toolbarconfigurator/font/fontello.eot
--------------------------------------------------------------------------------
/public/assets/ckeditor/samples/toolbarconfigurator/font/fontello.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/samples/toolbarconfigurator/font/fontello.ttf
--------------------------------------------------------------------------------
/public/assets/ckeditor/samples/toolbarconfigurator/font/fontello.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/samples/toolbarconfigurator/font/fontello.woff
--------------------------------------------------------------------------------
/public/assets/ckeditor/plugins/dialog/dialogDefinition.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 |
--------------------------------------------------------------------------------
/public/assets/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla
--------------------------------------------------------------------------------
/public/assets/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/byte0/studyit-bxg/HEAD/public/assets/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf
--------------------------------------------------------------------------------
/views/common/script.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | 3 | ------------------------------------------------------------------------------------------- 4 | CKEditor - Posted Data 5 | 6 | We are sorry, but your Web server does not support the PHP language used in this script. 7 | 8 | Please note that CKEditor can be used with any other server-side language than just PHP. 9 | To save the content created with CKEditor you need to read the POST data on the server 10 | side and write it to a file or the database. 11 | 12 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 13 | For licensing, see LICENSE.md or http://ckeditor.com/license 14 | ------------------------------------------------------------------------------------------- 15 | 16 |17 |
*/ include "assets/posteddata.php"; ?> 17 | -------------------------------------------------------------------------------- /public/assets/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-hints { 2 | position: absolute; 3 | z-index: 10; 4 | overflow: hidden; 5 | list-style: none; 6 | 7 | margin: 0; 8 | padding: 2px; 9 | 10 | -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 11 | -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 12 | box-shadow: 2px 3px 5px rgba(0,0,0,.2); 13 | border-radius: 3px; 14 | border: 1px solid silver; 15 | 16 | background: white; 17 | font-size: 90%; 18 | font-family: monospace; 19 | 20 | max-height: 20em; 21 | overflow-y: auto; 22 | } 23 | 24 | .CodeMirror-hint { 25 | margin: 0; 26 | padding: 0 4px; 27 | border-radius: 2px; 28 | max-width: 19em; 29 | overflow: hidden; 30 | white-space: pre; 31 | color: black; 32 | cursor: pointer; 33 | } 34 | 35 | li.CodeMirror-hint-active { 36 | background: #08f; 37 | color: white; 38 | } 39 | -------------------------------------------------------------------------------- /public/assets/jquery-uploadify/uploadify.php: -------------------------------------------------------------------------------- 1 | 6 | */ 7 | 8 | // Define a destination 9 | $targetFolder = '/uploads'; // Relative to the root 10 | 11 | $verifyToken = md5('unique_salt' . $_POST['timestamp']); 12 | 13 | if (!empty($_FILES) && $_POST['token'] == $verifyToken) { 14 | $tempFile = $_FILES['Filedata']['tmp_name']; 15 | $targetPath = $_SERVER['DOCUMENT_ROOT'] . $targetFolder; 16 | $targetFile = rtrim($targetPath,'/') . '/' . $_FILES['Filedata']['name']; 17 | 18 | // Validate the file type 19 | $fileTypes = array('jpg','jpeg','gif','png'); // File extensions 20 | $fileParts = pathinfo($_FILES['Filedata']['name']); 21 | 22 | if (in_array($fileParts['extension'],$fileTypes)) { 23 | move_uploaded_file($tempFile,$targetFile); 24 | echo '1'; 25 | } else { 26 | echo 'Invalid file type.'; 27 | } 28 | } 29 | ?> -------------------------------------------------------------------------------- /public/assets/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 30 Missing: 0 5 | cy.js Found: 30 Missing: 0 6 | da.js Found: 12 Missing: 18 7 | de.js Found: 30 Missing: 0 8 | el.js Found: 25 Missing: 5 9 | eo.js Found: 30 Missing: 0 10 | fa.js Found: 30 Missing: 0 11 | fi.js Found: 30 Missing: 0 12 | fr.js Found: 30 Missing: 0 13 | gu.js Found: 12 Missing: 18 14 | he.js Found: 30 Missing: 0 15 | it.js Found: 30 Missing: 0 16 | mk.js Found: 5 Missing: 25 17 | nb.js Found: 30 Missing: 0 18 | nl.js Found: 30 Missing: 0 19 | no.js Found: 30 Missing: 0 20 | pt-br.js Found: 30 Missing: 0 21 | ro.js Found: 6 Missing: 24 22 | tr.js Found: 30 Missing: 0 23 | ug.js Found: 27 Missing: 3 24 | vi.js Found: 6 Missing: 24 25 | zh-cn.js Found: 30 Missing: 0 26 | -------------------------------------------------------------------------------- /public/assets/ckeditor/samples/toolbarconfigurator/lib/codemirror/neo.css: -------------------------------------------------------------------------------- 1 | /* neo theme for codemirror */ 2 | 3 | /* Color scheme */ 4 | 5 | .cm-s-neo.CodeMirror { 6 | background-color:#ffffff; 7 | color:#2e383c; 8 | line-height:1.4375; 9 | } 10 | .cm-s-neo .cm-comment {color:#75787b} 11 | .cm-s-neo .cm-keyword, .cm-s-neo .cm-property {color:#1d75b3} 12 | .cm-s-neo .cm-atom,.cm-s-neo .cm-number {color:#75438a} 13 | .cm-s-neo .cm-node,.cm-s-neo .cm-tag {color:#9c3328} 14 | .cm-s-neo .cm-string {color:#b35e14} 15 | .cm-s-neo .cm-variable,.cm-s-neo .cm-qualifier {color:#047d65} 16 | 17 | 18 | /* Editor styling */ 19 | 20 | .cm-s-neo pre { 21 | padding:0; 22 | } 23 | 24 | .cm-s-neo .CodeMirror-gutters { 25 | border:none; 26 | border-right:10px solid transparent; 27 | background-color:transparent; 28 | } 29 | 30 | .cm-s-neo .CodeMirror-linenumber { 31 | padding:0; 32 | color:#e0e2e5; 33 | } 34 | 35 | .cm-s-neo .CodeMirror-guttermarker { color: #1d75b3; } 36 | .cm-s-neo .CodeMirror-guttermarker-subtle { color: #e0e2e5; } 37 | -------------------------------------------------------------------------------- /public/assets/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- 1 | CKEditor WebSpellChecker Plugin 2 | =============================== 3 | 4 | This plugin brings Web Spell Checker (WSC) into CKEditor. 5 | 6 | WSC is "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation. 12 | 2. Enable the "wsc" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'wsc'; 15 | 16 | That's all. WSC will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /public/assets/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- 1 | CKEditor SCAYT Plugin 2 | ===================== 3 | 4 | This plugin brings Spell Check As You Type (SCAYT) into up to CKEditor 4+. 5 | 6 | SCAYT is a "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation. 12 | 2. Enable the "scayt" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'scayt'; 15 | 16 | That's all. SCAYT will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /public/assets/ckeditor/samples/old/dialog/assets/my_dialog.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.dialog.add( 'myDialog', function() { 7 | return { 8 | title: 'My Dialog', 9 | minWidth: 400, 10 | minHeight: 200, 11 | contents: [ 12 | { 13 | id: 'tab1', 14 | label: 'First Tab', 15 | title: 'First Tab', 16 | elements: [ 17 | { 18 | id: 'input1', 19 | type: 'text', 20 | label: 'Text Field' 21 | }, 22 | { 23 | id: 'select1', 24 | type: 'select', 25 | label: 'Select Field', 26 | items: [ 27 | [ 'option1', 'value1' ], 28 | [ 'option2', 'value2' ] 29 | ] 30 | } 31 | ] 32 | }, 33 | { 34 | id: 'tab2', 35 | label: 'Second Tab', 36 | title: 'Second Tab', 37 | elements: [ 38 | { 39 | id: 'button1', 40 | type: 'button', 41 | label: 'Button Field' 42 | } 43 | ] 44 | } 45 | ] 46 | }; 47 | } ); 48 | 49 | -------------------------------------------------------------------------------- /public/assets/bootstrap/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap", 3 | "description": "The most popular front-end framework for developing responsive, mobile first projects on the web.", 4 | "keywords": [ 5 | "css", 6 | "js", 7 | "less", 8 | "mobile-first", 9 | "responsive", 10 | "front-end", 11 | "framework", 12 | "web" 13 | ], 14 | "homepage": "http://getbootstrap.com", 15 | "license": "MIT", 16 | "moduleType": "globals", 17 | "main": [ 18 | "less/bootstrap.less", 19 | "dist/js/bootstrap.js" 20 | ], 21 | "ignore": [ 22 | "/.*", 23 | "_config.yml", 24 | "CNAME", 25 | "composer.json", 26 | "CONTRIBUTING.md", 27 | "docs", 28 | "js/tests", 29 | "test-infra" 30 | ], 31 | "dependencies": { 32 | "jquery": "1.9.1 - 3" 33 | }, 34 | "version": "3.3.7", 35 | "_release": "3.3.7", 36 | "_resolution": { 37 | "type": "version", 38 | "tag": "v3.3.7", 39 | "commit": "0b9c4a4007c44201dce9a6cc1a38407005c26c86" 40 | }, 41 | "_source": "https://github.com/twbs/bootstrap.git", 42 | "_target": "^3.3.7", 43 | "_originalSource": "bootstrap", 44 | "_direct": true 45 | } -------------------------------------------------------------------------------- /public/assets/jquery-uploadify/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 | 7 | 8 | 9 | 14 | 15 | 16 |
37 |