--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-includes/js/tinymce/plugins/wpgallery/editor_plugin.dev.js Fri Mar 12 13:29:04 2010 +0000
@@ -0,0 +1,119 @@
+
+(function() {
+ tinymce.create('tinymce.plugins.wpGallery', {
+
+ init : function(ed, url) {
+ var t = this;
+
+ t.url = url;
+ t._createButtons();
+
+ // Register the command so that it can be invoked by using tinyMCE.activeEditor.execCommand('...');
+ ed.addCommand('WP_Gallery', function() {
+ var el = ed.selection.getNode(), post_id, vp = tinymce.DOM.getViewPort(),
+ H = vp.h - 80, W = ( 640 < vp.w ) ? 640 : vp.w;
+
+ if ( el.nodeName != 'IMG' ) return;
+ if ( ed.dom.getAttrib(el, 'class').indexOf('wpGallery') == -1 ) return;
+
+ post_id = tinymce.DOM.get('post_ID').value;
+ tb_show('', tinymce.documentBaseURL + '/media-upload.php?post_id='+post_id+'&tab=gallery&TB_iframe=true&width='+W+'&height='+H);
+
+ tinymce.DOM.setStyle( ['TB_overlay','TB_window','TB_load'], 'z-index', '999999' );
+ });
+
+ ed.onMouseDown.add(function(ed, e) {
+ if ( e.target.nodeName == 'IMG' && ed.dom.hasClass(e.target, 'wpGallery') )
+ ed.plugins.wordpress._showButtons(e.target, 'wp_gallerybtns');
+ });
+
+ ed.onBeforeSetContent.add(function(ed, o) {
+ o.content = t._do_gallery(o.content);
+ });
+
+ ed.onPostProcess.add(function(ed, o) {
+ if (o.get)
+ o.content = t._get_gallery(o.content);
+ });
+ },
+
+ _do_gallery : function(co) {
+ return co.replace(/\[gallery([^\]]*)\]/g, function(a,b){
+ return '<img src="'+tinymce.baseURL+'/plugins/wpgallery/img/t.gif" class="wpGallery mceItem" title="gallery'+tinymce.DOM.encode(b)+'" />';
+ });
+ },
+
+ _get_gallery : function(co) {
+
+ function getAttr(s, n) {
+ n = new RegExp(n + '=\"([^\"]+)\"', 'g').exec(s);
+ return n ? tinymce.DOM.decode(n[1]) : '';
+ };
+
+ return co.replace(/(?:<p[^>]*>)*(<img[^>]+>)(?:<\/p>)*/g, function(a,im) {
+ var cls = getAttr(im, 'class');
+
+ if ( cls.indexOf('wpGallery') != -1 )
+ return '<p>['+tinymce.trim(getAttr(im, 'title'))+']</p>';
+
+ return a;
+ });
+ },
+
+ _createButtons : function() {
+ var t = this, ed = tinyMCE.activeEditor, DOM = tinymce.DOM, editButton, dellButton;
+
+ DOM.remove('wp_gallerybtns');
+
+ DOM.add(document.body, 'div', {
+ id : 'wp_gallerybtns',
+ style : 'display:none;'
+ });
+
+ editButton = DOM.add('wp_gallerybtns', 'img', {
+ src : t.url+'/img/edit.png',
+ id : 'wp_editgallery',
+ width : '24',
+ height : '24',
+ title : ed.getLang('wordpress.editgallery')
+ });
+
+ tinymce.dom.Event.add(editButton, 'mousedown', function(e) {
+ var ed = tinyMCE.activeEditor;
+ ed.windowManager.bookmark = ed.selection.getBookmark('simple');
+ ed.execCommand("WP_Gallery");
+ });
+
+ dellButton = DOM.add('wp_gallerybtns', 'img', {
+ src : t.url+'/img/delete.png',
+ id : 'wp_delgallery',
+ width : '24',
+ height : '24',
+ title : ed.getLang('wordpress.delgallery')
+ });
+
+ tinymce.dom.Event.add(dellButton, 'mousedown', function(e) {
+ var ed = tinyMCE.activeEditor, el = ed.selection.getNode();
+
+ if ( el.nodeName == 'IMG' && ed.dom.hasClass(el, 'wpGallery') ) {
+ ed.dom.remove(el);
+
+ ed.execCommand('mceRepaint');
+ return false;
+ }
+ });
+ },
+
+ getInfo : function() {
+ return {
+ longname : 'Gallery Settings',
+ author : 'WordPress',
+ authorurl : 'http://wordpress.org',
+ infourl : '',
+ version : "1.0"
+ };
+ }
+ });
+
+ tinymce.PluginManager.add('wpgallery', tinymce.plugins.wpGallery);
+})();