Changeset 2059572
- Timestamp:
- 03/29/2019 10:51:13 AM (7 years ago)
- Location:
- korean-spell-checker/trunk
- Files:
-
- 36 added
- 4 deleted
- 3 edited
-
. (modified) (1 prop)
-
.babelrc (added)
-
.dockerignore (added)
-
.editorconfig (added)
-
.eslintrc.json (added)
-
README.md (added)
-
assets/css (deleted)
-
assets/dist (added)
-
assets/dist/ba4447d15b5c5d8d200284c248b385a4.gif (added)
-
assets/dist/gutenberg.js (added)
-
assets/dist/gutenberg.js.gz (added)
-
assets/dist/script.js (added)
-
assets/dist/script.js.gz (added)
-
assets/dist/style.css (added)
-
assets/script (deleted)
-
assets/scripts (added)
-
assets/scripts/gutenberg.js (added)
-
assets/scripts/icon.jsx (added)
-
assets/scripts/korean-spell-checker.js (added)
-
assets/scss (added)
-
assets/scss/style.scss (added)
-
classes/class-base.php (added)
-
classes/class-editor.php (added)
-
classes/class-gutenberg.php (added)
-
classes/init.php (deleted)
-
classes/mce.php (deleted)
-
composer.json (added)
-
composer.lock (added)
-
docker-compose.yml (added)
-
korean-spell-checker.php (modified) (3 diffs)
-
package-lock.json (added)
-
package.json (added)
-
phpcs.xml (added)
-
phpunit.xml (added)
-
readme.txt (modified) (2 diffs)
-
tests (added)
-
tests/bootstrap.php (added)
-
tests/install-wp-tests.sh (added)
-
tests/test-base.php (added)
-
tests/test-editor.php (added)
-
tests/wp-config.php (added)
-
webpack.config.babel.js (added)
-
webpack.config.parts.js (added)
Legend:
- Unmodified
- Added
- Removed
-
korean-spell-checker/trunk
-
Property
svn:ignore
set to
.git
.gitignore
node_modules
vendor
-
Property
svn:ignore
set to
-
korean-spell-checker/trunk/korean-spell-checker.php
r1315991 r2059572 4 4 * Plugin URI: http://www.sujinc.com/ 5 5 * Description: 워드프레스 리치 에디터에 한글 맞춤법 검사기로 바로 가는 버튼을 삽입합니다. 이제 쪽팔리게 맞춤법 틀리지 마세요. (저도 못하지만) 6 * Version: 3.16 * Version: 4.0 7 7 * Author: Sujin 수진 Choi 8 8 * Author URI: http://www.sujinc.com/ … … 11 11 */ 12 12 13 if ( ! defined( 'ABSPATH' ) ) {13 if ( ! defined( 'ABSPATH' ) ) { 14 14 header( 'Status: 403 Forbidden' ); 15 15 header( 'HTTP/1.1 403 Forbidden' ); … … 17 17 } 18 18 19 # Definitions 20 if ( !defined( 'KSC_PLUGIN_NAME' ) ) { 21 $basename = trim( dirname( plugin_basename( __FILE__ ) ), '/' ); 22 if ( !is_dir( WP_PLUGIN_DIR . '/' . $basename ) ) { 23 $basename = explode( '/', $basename ); 24 $basename = array_pop( $basename ); 25 } 19 include_once( plugin_dir_path( __FILE__ ) . 'classes/class-base.php' ); 20 include_once( plugin_dir_path( __FILE__ ) . 'classes/class-editor.php' ); 21 include_once( plugin_dir_path( __FILE__ ) . 'classes/class-gutenberg.php' ); 26 22 27 define( 'KSC_PLUGIN_NAME', $basename ); 28 29 if ( !defined( 'KSC_PLUGIN_BASE' ) ) 30 define( 'KSC_PLUGIN_BASE', WP_PLUGIN_DIR . '/' . KSC_PLUGIN_NAME . '/' . basename(__FILE__) ); 31 32 if ( !defined( 'KSC_PLUGIN_DIR' ) ) 33 define( 'KSC_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . KSC_PLUGIN_NAME ); 34 35 if ( !defined( 'KSC_CLASS_DIR' ) ) 36 define( 'KSC_CLASS_DIR', WP_PLUGIN_DIR . '/' . KSC_PLUGIN_NAME . '/classes/' ); 37 38 if ( !defined( 'KSC_VIEW_DIR' ) ) 39 define( 'KSC_VIEW_DIR', WP_PLUGIN_DIR . '/' . KSC_PLUGIN_NAME . '/views/' ); 40 41 if ( !defined( 'KSC_ASSETS_URL' ) ) 42 define( 'KSC_ASSETS_URL', plugin_dir_url( __FILE__ ) . 'assets/' ); 43 } 44 45 # Load Classes 46 include_once( KSC_CLASS_DIR . 'mce.php'); 47 include_once( KSC_CLASS_DIR . 'init.php'); 48 49 KSC::initialize(); 23 Sujin\Wordpress\Plugin\Korean_Spell_Checker::get_instance(); -
korean-spell-checker/trunk/readme.txt
r1315991 r2059572 1 1 === 한글 맞춤법 검사기 - Korean Spell Checker! === 2 2 Contributors: sujin2f 3 Donate link: http:// www.sujinc.com/lab/korean-spell-checker/3 Donate link: http://sujinc.com/donation 4 4 Tags: korean, spell, tinymce, 한글 5 5 Requires at least: 2.8 6 6 Tested up to: 4.4 7 Stable tag: 3.17 Stable tag: 4.0.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 28 28 29 29 == Changelog == 30 = 4.0.0 = 31 * 부산대 API 주소 수정 32 * SCSS, ES6, PHPCS 적용 33 * Gutenberg 지원 34 30 35 = 3.1 = 31 36 * 에러 수정
Note: See TracChangeset
for help on using the changeset viewer.