Changeset 2033
- Timestamp:
- 01/28/10 19:21:16 (14 years ago)
- Location:
- plugins/tinyMce
- Files:
-
- 2 added
- 6 deleted
- 3 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
plugins/tinyMce/_define.php
r2026 r2033 26 26 /* Description */ 'TinyMCE editor', 27 27 /* Author */ 'Moe (http://gniark.net/)', 28 /* Version */ '0.1 ',28 /* Version */ '0.1.1', 29 29 /* Permissions */ 'usage,contentadmin' 30 30 ); -
plugins/tinyMce/admin/post.php
r2026 r2033 218 218 } 219 219 } 220 /*else221 {222 $cur->user_id = $core->auth->userID();223 224 try225 {226 # --BEHAVIOR-- adminBeforePostCreate227 $core->callBehavior('adminBeforePostCreate',$cur);228 229 $return_id = $core->blog->addPost($cur);230 231 # --BEHAVIOR-- adminAfterPostCreate232 $core->callBehavior('adminAfterPostCreate',$cur,$return_id);233 234 http::redirect('plugin.php?p=tinyMce&id='.$return_id.'&crea=1');235 }236 catch (Exception $e)237 {238 $core->error->add($e->getMessage());239 }240 }*/241 220 } 242 221 … … 320 299 form::hidden('post_dt',$post_dt). 321 300 form::hidden('post_format',$post_format). 301 302 form::hidden('post_open_comment',(integer) $post_open_comment). 303 form::hidden('post_open_tb',(integer) $post_open_tb). 304 form::hidden('post_selected',(integer) $post_selected). 322 305 form::hidden('post_lang',$post_lang). 323 306 form::hidden('post_password',html::escapeHTML($post_password)). -
plugins/tinyMce/js/init_jquery.js
r2026 r2033 7 7 // use the editor_template_src.js file automatically 8 8 suffix : '_src', 9 // don't convert the URLs 10 convert_urls : 0, 9 11 10 12 // General options -
plugins/tinyMce/make/adapt.sh
r2026 r2033 1 1 #!/bin/sh 2 2 3 cd tiny_mce_jquery/themes/advanced/3 cd ../js/tiny_mce_jquery/themes/advanced/ 4 4 5 5 # http://www.cyberciti.biz/faq/bash-loop-over-file/ -
plugins/tinyMce/make/revert.sh
r2026 r2033 1 1 #!/bin/sh 2 2 3 cd tiny_mce_jquery/themes/advanced/3 cd ../js/tiny_mce_jquery/themes/advanced/ 4 4 5 5 # http://www.cyberciti.biz/faq/bash-loop-over-file/
Note: See TracChangeset
for help on using the changeset viewer.