Index: /CKEditor/branches/prototype/_source/plugins/flash/dialogs/flash.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/flash/dialogs/flash.js	(revision 3069)
+++ /CKEditor/branches/prototype/_source/plugins/flash/dialogs/flash.js	(revision 3070)
@@ -489,5 +489,5 @@
 								id : 'txtWidth',
 								label : editor.lang.flash.width,
-								'default' : editor.config.flash.defaultValues.width,
+								'default' : '',
 								onChange : function()
 								{
@@ -510,5 +510,5 @@
 								id : 'txtHeight',
 								label : editor.lang.flash.height,
-								'default' : editor.config.flash.defaultValues.height,
+								'default' : '',
 								onChange : function()
 								{
@@ -531,5 +531,5 @@
 								id : 'txtHSpace',
 								label : editor.lang.flash.hSpace,
-								'default' : editor.config.flash.defaultValues.hSpace,
+								'default' : '',
 								onChange : function()
 								{
@@ -552,5 +552,5 @@
 								id : 'txtVSpace',
 								label : editor.lang.flash.vSpace,
-								'default' : editor.config.flash.defaultValues.vSpace,
+								'default' : '',
 								onChange : function()
 								{
@@ -619,5 +619,5 @@
 								type : 'select',
 								label : editor.lang.flash.scale,
-								'default' : editor.config.flash.defaultValues.scale,
+								'default' : '',
 								style : 'width : 100%;',
 								items :
@@ -638,5 +638,5 @@
 								type : 'select',
 								label : editor.lang.flash.access,
-								'default' : editor.config.flash.defaultValues.access,
+								'default' : '',
 								style : 'width : 100%;',
 								items :
@@ -664,5 +664,5 @@
 								type : 'select',
 								label : editor.lang.flash.windowMode,
-								'default' : editor.config.flash.defaultValues.windowMode,
+								'default' : '',
 								style : 'width : 100%;',
 								items :
@@ -683,5 +683,5 @@
 								type : 'select',
 								label : editor.lang.flash.quality,
-								'default' : editor.config.flash.defaultValues.quality,
+								'default' : 'high',
 								style : 'width : 100%;',
 								items :
@@ -712,5 +712,5 @@
 								type : 'select',
 								label : editor.lang.flash.align,
-								'default' : editor.config.flash.defaultValues.align,
+								'default' : '',
 								style : 'width : 100%;',
 								items :
@@ -743,5 +743,5 @@
 						id : 'txtFlashvars',
 						label : editor.lang.flash.flashvars,
-						checked : editor.config.flash.defaultValues.flashvars,
+						checked : 'true',
 						validate : function()
 						{
@@ -754,5 +754,5 @@
 						id : 'chkMenu',
 						label : editor.lang.flash.chkMenu,
-						checked : editor.config.flash.defaultValues.menu,
+						checked : 'true',
 						validate : function()
 						{
@@ -765,5 +765,5 @@
 						id : 'chkPlay',
 						label : editor.lang.flash.chkPlay,
-						checked : editor.config.flash.defaultValues.play,
+						checked : 'true',
 						validate : function()
 						{
@@ -776,5 +776,5 @@
 						id : 'chkLoop',
 						label : editor.lang.flash.chkLoop,
-						checked : editor.config.flash.defaultValues.loop,
+						checked : 'true',
 						validate : function()
 						{
@@ -786,6 +786,6 @@
 						type : 'checkbox',
 						id : 'txtChkFull',
-						label : editor.lang.flash.chkFull,
-						checked : editor.config.flash.defaultValues.allowfullscreen,
+-						label : editor.lang.flash.chkFull,
+						checked : 'true',
 						validate : function()
 						{
@@ -820,5 +820,5 @@
 								id : 'txtGenTitle',
 								label : editor.lang.common.advisoryTitle,
-								'default' : editor.config.flash.defaultValues.title,
+								'default' : '',
 								validate : function()
 								{
@@ -838,5 +838,5 @@
 								id : 'txtBgcolor',
 								label : editor.lang.flash.bgcolor,
-								'default' : editor.config.flash.defaultValues.bgcolor,
+								'default' : '',
 								validate : function()
 								{
@@ -849,5 +849,5 @@
 								id : 'txtGenClass',
 								label : editor.lang.common.cssClass,
-								'default' : editor.config.flash.defaultValues.cssClass,
+								'default' : '',
 								validate : function()
 								{
@@ -862,5 +862,5 @@
 						id : 'txtGenStyle',
 						label : editor.lang.common.cssStyle,
-						'default' : editor.config.flash.defaultValues.cssStyle,
+						'default' : '',
 						validate : function()
 						{
Index: /CKEditor/branches/prototype/_source/plugins/flash/plugin.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/flash/plugin.js	(revision 3069)
+++ /CKEditor/branches/prototype/_source/plugins/flash/plugin.js	(revision 3070)
@@ -48,26 +48,4 @@
 	 * @default false
 	 */
-	convertOnEdit : false,
-
-	defaultValues :
-	{
-		access :	'',
-		width :		'',
-		height :	'',
-		hSpace :	'',
-		vSpace :	'',
-		cssClass :	'',
-		cssStyle :	'',
-		bgcolor :	'',
-		title :		'',
-		loop :		'true',
-		play :		'true',
-		menu :		'true',
-		align :		'',
-		quality :	'high',
-		scale :		'',
-		flashvars :	'',
-		allowfullscreen:'',
-		windowMode :	''
-	}
+	convertOnEdit : false
 };
Index: /CKEditor/branches/prototype/_source/plugins/forms/dialogs/button.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/forms/dialogs/button.js	(revision 3069)
+++ /CKEditor/branches/prototype/_source/plugins/forms/dialogs/button.js	(revision 3070)
@@ -121,5 +121,5 @@
 						type : 'select',
 						label : editor.lang.button.type,
-						'default' : editor.config.forms.defaultValues.buttonType,
+						'default' : 'button',
 						accessKey : 'T',
 						items :
Index: /CKEditor/branches/prototype/_source/plugins/forms/dialogs/form.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/forms/dialogs/form.js	(revision 3069)
+++ /CKEditor/branches/prototype/_source/plugins/forms/dialogs/form.js	(revision 3070)
@@ -116,5 +116,5 @@
 						type : 'text',
 						label : editor.lang.form.action,
-						'default' : editor.config.forms.defaultValues.formAction,
+						'default' : '',
 						accessKey : 'A',
 						validate: function()
@@ -147,5 +147,5 @@
 								style : 'width:100%',
 								accessKey : 'E',
-								'default' : editor.config.forms.defaultValues.formEncoding,
+								'default' : 'text/plain',
 								items :
 								[
@@ -173,5 +173,5 @@
 								style : 'width:100%',
 								accessKey : 'M',
-								'default' : editor.config.forms.defaultValues.formTarget,
+								'default' : '',
 								items :
 								[
@@ -193,5 +193,5 @@
 								label : editor.lang.form.method,
 								accessKey : 'M',
-								'default' : editor.config.forms.defaultValues.formMethod,
+								'default' : 'GET',
 								items :
 								[
Index: /CKEditor/branches/prototype/_source/plugins/forms/dialogs/select.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/forms/dialogs/select.js	(revision 3069)
+++ /CKEditor/branches/prototype/_source/plugins/forms/dialogs/select.js	(revision 3070)
@@ -191,5 +191,5 @@
 								labelLayout : 'horizontal',
 								label : editor.lang.select.size,
-								'default' : editor.config.forms.defaultValues.selectSize,
+								'default' : '',
 								accessKey : 'S',
 								style : 'width:175px',
Index: /CKEditor/branches/prototype/_source/plugins/forms/dialogs/textarea.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/forms/dialogs/textarea.js	(revision 3069)
+++ /CKEditor/branches/prototype/_source/plugins/forms/dialogs/textarea.js	(revision 3070)
@@ -110,5 +110,5 @@
 						type : 'text',
 						label : editor.lang.textarea.cols,
-						'default' : editor.config.forms.defaultValues.textareaCols,
+						'default' : '',
 						accessKey : 'C',
 						style : 'width:50px',
@@ -126,5 +126,5 @@
 						type : 'text',
 						label : editor.lang.textarea.rows,
-						'default' : editor.config.forms.defaultValues.textareaRows,
+						'default' : '',
 						accessKey : 'R',
 						style : 'width:50px',
Index: /CKEditor/branches/prototype/_source/plugins/forms/dialogs/textfield.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/forms/dialogs/textfield.js	(revision 3069)
+++ /CKEditor/branches/prototype/_source/plugins/forms/dialogs/textfield.js	(revision 3070)
@@ -140,5 +140,5 @@
 								type : 'text',
 								label : editor.lang.textfield.charWidth,
-								'default' : editor.config.forms.defaultValues.textfieldWidth,
+								'default' : '',
 								accessKey : 'C',
 								style : 'width:50px',
@@ -156,5 +156,5 @@
 								type : 'text',
 								label : editor.lang.textfield.maxChars,
-								'default' : editor.config.forms.defaultValues.textfieldMaxChars,
+								'default' : '',
 								accessKey : 'M',
 								style : 'width:50px',
@@ -174,5 +174,5 @@
 						type : 'select',
 						label : editor.lang.textfield.type,
-						'default' : editor.config.forms.defaultValues.textfieldType,
+						'default' : '',
 						accessKey : 'M',
 						items :
Index: /CKEditor/branches/prototype/_source/plugins/forms/plugin.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/forms/plugin.js	(revision 3069)
+++ /CKEditor/branches/prototype/_source/plugins/forms/plugin.js	(revision 3070)
@@ -232,20 +232,2 @@
 	}
 }
-
-CKEDITOR.config.forms =
-{
-	defaultValues :
-	{
-		formAction : '',
-		formEncoding : 'text/plain',
-		formTarget : '',
-		formMethod : 'GET',
-		textfieldWidth : '',
-		textfieldMaxChars : '',
-		textfieldType : 'text',
-		textareaCols : '',
-		textareaRows : '',
-		selectSize : '',
-		buttonType : 'button'
-	}
-};
Index: /CKEditor/branches/prototype/_source/plugins/image/dialogs/image.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/image/dialogs/image.js	(revision 3069)
+++ /CKEditor/branches/prototype/_source/plugins/image/dialogs/image.js	(revision 3070)
@@ -748,5 +748,5 @@
 						label : editor.lang.image.alt,
 						accessKey : 'A',
-						'default' : editor.config.image.defaultValues.alt,
+						'default' : '',
 						onChange : function()
 						{
@@ -853,5 +853,5 @@
 												labelLayout : 'horizontal',
 												label : editor.lang.image.border,
-												'default' : editor.config.image.defaultValues.border,
+												'default' : '',
 												onChange : function()
 												{
@@ -872,5 +872,5 @@
 												labelLayout : 'horizontal',
 												label : editor.lang.image.hSpace,
-												'default' : editor.config.image.defaultValues.hSpace,
+												'default' : '',
 												onChange : function()
 												{
@@ -891,5 +891,5 @@
 												labelLayout : 'horizontal',
 												label : editor.lang.image.vSpace,
-												'default' : editor.config.image.defaultValues.vSpace,
+												'default' : '',
 												onChange : function()
 												{
@@ -912,5 +912,5 @@
 												style : 'width:100%',
 												label : editor.lang.image.align,
-												'default' : editor.config.image.defaultValues.align,
+												'default' : '',
 												items :
 												[
@@ -967,5 +967,5 @@
 						label : editor.lang.image.url,
 						style : 'width: 100%',
-						'default' : editor.config.image.defaultValues.link,
+						'default' : '',
 						validate: function()
 						{
@@ -993,5 +993,5 @@
 						type : 'select',
 						label : editor.lang.link.target,
-						'default' : editor.config.image.defaultValues.target,
+						'default' : '',
 						items :
 						[
@@ -1055,5 +1055,5 @@
 								style : 'width : 100%;',
 								label : editor.lang.common.langDir,
-								'default' : editor.config.image.defaultValues.langDir,
+								'default' : '',
 								items :
 								[
@@ -1072,5 +1072,5 @@
 								id : 'txtLangCode',
 								label : editor.lang.common.langCode,
-								'default' : editor.config.image.defaultValues.langCode,
+								'default' : '',
 								validate : function()
 								{
@@ -1100,5 +1100,5 @@
 								id : 'txtGenClass',
 								label : editor.lang.common.cssClass,
-								'default' : editor.config.image.defaultValues.classes,
+								'default' : '',
 								validate : function()
 								{
@@ -1111,5 +1111,5 @@
 								id : 'txtGenTitle',
 								label : editor.lang.common.advisoryTitle,
-								'default' : editor.config.image.defaultValues.title,
+								'default' : '',
 								onChange : function()
 								{
@@ -1128,5 +1128,5 @@
 						id : 'txtdlgGenStyle',
 						label : editor.lang.common.cssStyle,
-						'default' : editor.config.image.defaultValues.style,
+						'default' : '',
 						validate : function()
 						{
Index: /CKEditor/branches/prototype/_source/plugins/image/plugin.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/image/plugin.js	(revision 3069)
+++ /CKEditor/branches/prototype/_source/plugins/image/plugin.js	(revision 3070)
@@ -50,33 +50,4 @@
 	showPreview : true,
 	showAdvancedTab : true,
-	removeLinkByEmptyURL : true,
-
-	/**
-	 * Startup values
-	 * @type Text
-	 * @default ''
-	 */
-	defaultValues :
-	{
-		alt : '',
-		border : '',
-		hSpace : '',
-		vSpace : '',
-		title : '',
-		classes : '',
-		align : '',
-		style : '',
-		langCode : '',
-		langDir : '',
-
-		/**
-		 * Default Link value.
-		 * @type Text
-		 * @default ''
-		 * @example
-		 * link : './show_gallery.html',
-		 */
-		link : '',
-		target : ''
-	}
+	removeLinkByEmptyURL : true
 };
Index: /CKEditor/branches/prototype/_source/plugins/link/dialogs/link.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/link/dialogs/link.js	(revision 3069)
+++ /CKEditor/branches/prototype/_source/plugins/link/dialogs/link.js	(revision 3070)
@@ -101,6 +101,6 @@
 		else
 		{
-			this.setValueOf( 'info', 'linkType', editor.config.link.defaultValues.linkType );
-			this.setValueOf( 'info', 'protocol', editor.config.link.defaultValues.protocol );
+			this.setValueOf( 'info', 'linkType', '' );
+			this.setValueOf( 'info', 'protocol', '' );
 			this.setValueOf( 'info', 'url', '' );
 		}
@@ -184,5 +184,5 @@
 						type : 'select',
 						label : editor.lang.link.type,
-						'default' : editor.config.link.defaultValues.linkType,
+						'default' : 'url',
 						items :
 						[
@@ -207,5 +207,5 @@
 										type : 'select',
 										label : editor.lang.common.protocol,
-										'default' : editor.config.link.defaultValues.protocol,
+										'default' : 'http://',
 										style : 'width : 100%;',
 										items :
@@ -343,5 +343,5 @@
 								id : 'linkTargetType',
 								label : editor.lang.link.target,
-								'default' : editor.config.link.defaultValues.target,
+								'default' : 'notSet',
 								style : 'width : 100%;',
 								'items' :
@@ -361,5 +361,5 @@
 								id : 'linkTargetName',
 								label : editor.lang.link.targetFrameName,
-								'default' : editor.config.link.defaultValues.targetFrameName
+								'default' : ''
 							}
 						]
@@ -531,5 +531,5 @@
 										id : 'advLangDir',
 										label : editor.lang.link.langDir,
-										'default' : editor.config.link.defaultValues.langDir,
+										'default' : '',
 										style : 'width: 100%;',
 										items :
@@ -562,5 +562,5 @@
 										label : editor.lang.link.langCode,
 										id : 'advLangCode',
-										'default' : editor.config.link.defaultValues.langCode
+										'default' : ''
 									},
 									{
@@ -587,5 +587,5 @@
 										type : 'text',
 										label : editor.lang.link.advisoryTitle,
-										'default' : editor.config.link.defaultValues.title,
+										'default' : '',
 										id : 'advTitle'
 									},
@@ -593,5 +593,5 @@
 										type : 'text',
 										label : editor.lang.link.advisoryContentType,
-										'default' : editor.config.link.defaultValues.type,
+										'default' : '',
 										id : 'advContentType'
 									}
@@ -606,5 +606,5 @@
 										type : 'text',
 										label : editor.lang.link.cssClasses,
-										'default' : editor.config.link.defaultValues.classes,
+										'default' : '',
 										id : 'advCSSClasses'
 									},
@@ -612,5 +612,5 @@
 										type : 'text',
 										label : editor.lang.link.charset,
-										'default' : editor.config.link.defaultValues.charset,
+										'default' : '',
 										id : 'advCharset'
 									}
@@ -624,5 +624,5 @@
 										type : 'text',
 										label : editor.lang.link.styles,
-										'default' : editor.config.link.defaultValues.style,
+										'default' : '',
 										id : 'advStyles'
 									}
Index: /CKEditor/branches/prototype/_source/plugins/link/plugin.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/link/plugin.js	(revision 3069)
+++ /CKEditor/branches/prototype/_source/plugins/link/plugin.js	(revision 3070)
@@ -89,23 +89,4 @@
 	uploadAction : 'nowhere.php',
 	showAdvancedTab : true,
-	showTargetTab : true,
-	defaultValues :
-	{
-		/**
-		 * Startup values
-		 * @type Text
-		 * @default ''
-		 */
-		linkType : 'url',
-		protocol : 'http://',
-		target : 'notSet',
-		targetFrameName : '',
-		title : '',
-		type : '',
-		classes : '',
-		langDir : '',
-		langCode : '',
-		charset : '',
-		style : ''
-	}
+	showTargetTab : true
 };
Index: /CKEditor/branches/prototype/_source/plugins/table/dialogs/table.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/table/dialogs/table.js	(revision 3069)
+++ /CKEditor/branches/prototype/_source/plugins/table/dialogs/table.js	(revision 3070)
@@ -178,5 +178,5 @@
 										widths : [ '60%','40%' ],
 										style : 'width:105px',
-										'default' : editor.config.table.defaultValues.rows,
+										'default' : 3,
 										label : editor.lang.table.rows,
 										validate: function( ) {
@@ -198,5 +198,5 @@
 										widths : [ '60%','40%' ],
 										style : 'width:105px',
-										'default' : editor.config.table.defaultValues.columns,
+										'default' : 2,
 										label : editor.lang.table.columns,
 										validate: function( ) {
@@ -218,5 +218,5 @@
 										widths : [ '60%','40%' ],
 										style : 'width:105px',
-										'default' : editor.config.table.defaultValues.border,
+										'default' : 1,
 										label : editor.lang.table.border,
 										validate: function( ) {
@@ -236,5 +236,5 @@
 										type : 'select',
 										labelLayout : 'horizontal',
-										'default' : editor.config.table.defaultValues.align,
+										'default' : '',
 										widths : [ '40%','60%' ],
 										label : editor.lang.table.align,
@@ -271,5 +271,5 @@
 												widths : [ '50%','50%' ],
 												label : editor.lang.table.width,
-												'default' : editor.config.table.defaultValues.width,
+												'default' : 200,
 												validate: function( ) {
 													if ( this.getValue() != '' )
@@ -290,5 +290,5 @@
 												widths : [ '0%','100%' ],
 												label : '',
-												'default' : editor.config.table.defaultValues.widthType,
+												'default' : 'pixels',
 												items :
 												[
@@ -310,5 +310,5 @@
 												widths : [ '50%','50%' ],
 												label : editor.lang.table.height,
-												'default' : editor.config.table.defaultValues.height,
+												'default' : '',
 												validate: function( ) {
 													if ( this.getValue() != '' )
@@ -336,5 +336,5 @@
 										style : 'width:140px',
 										label : editor.lang.table.cellSpace,
-										'default' : editor.config.table.defaultValues.cellspacing,
+										'default' : 1,
 										validate: function( ) {
 											if ( this.getValue() != '' )
@@ -356,5 +356,5 @@
 										style : 'width:140px',
 										label : editor.lang.table.cellPad,
-										'default' : editor.config.table.defaultValues.cellpadding,
+										'default' : 1,
 										validate: function( ) {
 											if ( this.getValue() != '' )
@@ -384,5 +384,5 @@
 						widths : [ '30%','70%' ],
 						labelLayout : 'horizontal',
-						'default' : editor.config.table.defaultValues.caption,
+						'default' : '',
 						style : 'width:400px'
 					},
@@ -392,5 +392,5 @@
 						labelLayout : 'horizontal',
 						label : editor.lang.table.summary,
-						'default' : editor.config.table.defaultValues.summary,
+						'default' : '',
 						widths : [ '30%','70%' ],
 						accessKey : 'A',
Index: /CKEditor/branches/prototype/_source/plugins/table/plugin.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/table/plugin.js	(revision 3069)
+++ /CKEditor/branches/prototype/_source/plugins/table/plugin.js	(revision 3070)
@@ -19,20 +19,2 @@
 	}
 } );
-
-CKEDITOR.config.table =
-{
-	defaultValues :
-	{
-		rows :		'3',
-		columns :	'2',
-		border :	'1',
-		align :		'',
-		width :		'200',
-		widthType :	'pixels',
-		height :	'',
-		caption :	'',
-		summary :	'',
-		cellspacing :	'1',
-		cellpadding :	'1'
-	}
-};
