1 /* © 2011 Benoît Pin, MINES ParisTech */
6 var reSize
= /getResizedImage\?size=(\d+)_(\d+)$/;
8 function updateImageSizeUrlParameters(img
) {
9 if (reSize
.test(img
.src
)){
10 var matches
= reSize
.exec(img
.src
);
11 var srcWidth
= parseInt(matches
[1]);
12 var srcHeight
= parseInt(matches
[2]);
14 var imgWidth
= parseInt((img
.style
.width
) ? img
.style
.width
: img
.width
);
15 var imgHeight
= parseInt((img
.style
.height
) ? img
.style
.height
: img
.height
);
17 if ((imgWidth
&& imgHeight
) && srcWidth
!= imgWidth
&& srcHeight
!= imgHeight
) {
18 var newUrl
= img
.getAttribute('src', 2).replace(reSize
, 'getResizedImage?size=' + imgWidth
+ '_' + imgHeight
);
20 img
.height
= imgHeight
;
26 function openPlinnImageDialog(path
, editor
) {
27 var winOptions
= "location=no,menubar=no,toolbar=no,dependent=yes,dialog=yes,minimizable=no,modal=yes,alwaysRaised=yes" +
34 var win
= open(path
+ 'dialog/plinn_image.html', 'PlinnImageDialog', winOptions
);
35 win
.dialogArguments
= new Object();
36 win
.dialogArguments
.editor
= editor
;
37 win
.dialogArguments
.pluginPath
= path
;
38 win
.dialogArguments
.CKEDITOR
= CKEDITOR
;
42 CKEDITOR
.plugins
.add( 'plinn_image',
44 init : function( editor
)
46 /* Add listener on getData event to compute images
47 src attributes before saving data.
49 editor
.on('instanceReady', function(){
52 var tmpDiv
= document
.createElement('div');
53 tmpDiv
.innerHTML
= evt
.data
.dataValue
;
54 var images
= tmpDiv
.getElementsByTagName('IMG');
55 for (var i
= 0 ; i
< images
.length
; i
++)
56 updateImageSizeUrlParameters(images
[i
]);
57 evt
.data
.dataValue
= tmpDiv
.innerHTML
;
61 var pluginPath
= this.path
;
62 var command
= editor
.addCommand('plinn_image',
64 exec : function(editor
){openPlinnImageDialog(pluginPath
, editor
);}
67 editor
.ui
.addButton('PlinnImage',
69 label
: editor
.lang
.common
.image
,
70 icon
: pluginPath
+ 'dialog/plinn_image.gif',
71 command
: 'plinn_image'