Importation du code de ckeditor 4.3.4 en conservant les développements Plinn et en...
[ckeditor.git] / skins / ckeditor / _source / plugins / about / dialogs / about.js
diff --git a/skins/ckeditor/_source/plugins/about/dialogs/about.js b/skins/ckeditor/_source/plugins/about/dialogs/about.js
deleted file mode 100644 (file)
index 1bb2e5d..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-/*\r
-Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.\r
-For licensing, see LICENSE.html or http://ckeditor.com/license\r
-*/\r
-\r
-CKEDITOR.dialog.add( 'about', function( editor )\r
-{\r
-       var lang = editor.lang.about;\r
-\r
-       return {\r
-               title : CKEDITOR.env.ie ? lang.dlgTitle : lang.title,\r
-               minWidth : 390,\r
-               minHeight : 230,\r
-               contents : [\r
-                       {\r
-                               id : 'tab1',\r
-                               label : '',\r
-                               title : '',\r
-                               expand : true,\r
-                               padding : 0,\r
-                               elements :\r
-                               [\r
-                                       {\r
-                                               type : 'html',\r
-                                               html :\r
-                                                       '<style type="text/css">' +\r
-                                                               '.cke_about_container' +\r
-                                                               '{' +\r
-                                                                       'color:#000 !important;' +\r
-                                                                       'padding:10px 10px 0;' +\r
-                                                                       'margin-top:5px' +\r
-                                                               '}' +\r
-                                                               '.cke_about_container p' +\r
-                                                               '{' +\r
-                                                                       'margin: 0 0 10px;' +\r
-                                                               '}' +\r
-                                                               '.cke_about_container .cke_about_logo' +\r
-                                                               '{' +\r
-                                                                       'height:81px;' +\r
-                                                                       'background-color:#fff;' +\r
-                                                                       'background-image:url(' + CKEDITOR.plugins.get( 'about' ).path + 'dialogs/logo_ckeditor.png);' +\r
-                                                                       'background-position:center; ' +\r
-                                                                       'background-repeat:no-repeat;' +\r
-                                                                       'margin-bottom:10px;' +\r
-                                                               '}' +\r
-                                                               '.cke_about_container a' +\r
-                                                               '{' +\r
-                                                                       'cursor:pointer !important;' +\r
-                                                                       'color:blue !important;' +\r
-                                                                       'text-decoration:underline !important;' +\r
-                                                               '}' +\r
-                                                       '</style>' +\r
-                                                       '<div class="cke_about_container">' +\r
-                                                               '<div class="cke_about_logo"></div>' +\r
-                                                               '<p>' +\r
-                                                                       'CKEditor ' + CKEDITOR.version + ' (revision ' + CKEDITOR.revision + ')<br>' +\r
-                                                                       '<a href="http://ckeditor.com/">http://ckeditor.com</a>' +\r
-                                                               '</p>' +\r
-                                                               '<p>' +\r
-                                                                       lang.help.replace( '$1', '<a href="http://docs.cksource.com/CKEditor_3.x/Users_Guide/Quick_Reference">' + lang.userGuide + '</a>' ) +\r
-                                                               '</p>' +\r
-                                                               '<p>' +\r
-                                                                       lang.moreInfo + '<br>' +\r
-                                                                       '<a href="http://ckeditor.com/license">http://ckeditor.com/license</a>' +\r
-                                                               '</p>' +\r
-                                                               '<p>' +\r
-                                                                       lang.copy.replace( '$1', '<a href="http://cksource.com/">CKSource</a> - Frederico Knabben' ) +\r
-                                                               '</p>' +\r
-                                                       '</div>'\r
-                                       }\r
-                               ]\r
-                       }\r
-               ],\r
-               buttons : [ CKEDITOR.dialog.cancelButton ]\r
-       };\r
-} );\r